./PaxHeaders/fxt-0.3.150000644000000000000000000000013215007143530011535 xustar0030 mtime=1746716504.762098589 30 atime=1746716504.802098769 30 ctime=1746716504.762098589 fxt-0.3.15/0002755000175000017500000000000015007143530011145 5ustar00samysamyfxt-0.3.15/PaxHeaders/install-sh0000644000000000000000000000007412770162330013466 xustar0030 atime=1746715490.177508985 30 ctime=1746716504.668217524 fxt-0.3.15/install-sh0000755000175000017500000003325512770162330013162 0ustar00samysamy#!/bin/sh # install - install a program, script, or datafile scriptversion=2011-11-20.07; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: fxt-0.3.15/PaxHeaders/tools0000644000000000000000000000013215007143530012540 xustar0030 mtime=1746716504.760670894 30 atime=1746716504.802098769 30 ctime=1746716504.760670894 fxt-0.3.15/tools/0002755000175000017500000000000015007143530012305 5ustar00samysamyfxt-0.3.15/tools/PaxHeaders/pids.c0000644000000000000000000000013113666401220013721 xustar0030 mtime=1591345808.831380097 30 atime=1746715490.197509076 29 ctime=1746716504.73198668 fxt-0.3.15/tools/pids.c0000644000175000017500000001177413666401220013422 0ustar00samysamy/* * Copyright (C) 2003, 2004, 2011-2012, 2016-2018 Samuel Thibault * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include #include #include #include #include #include #include "fxt.h" #include "fxt-tools.h" #include "fxt_internal.h" /* add a pid name, return 1 if new */ int fkt_add_pid(fxt_t fxt, uint64_t pid, const char name[FXT_MAXCOMMLEN+1] ) { struct pid_entry *pidentry,*hashed; for( hashed=fxt->pidentries[pid%PIDHASH_ENTRIES]; hashed && hashed->pid != pid; hashed=hashed->next ); if( hashed ) { memcpy(hashed->name,name,FXT_MAXCOMMLEN+1); return 0; } if( !(pidentry=malloc(sizeof(*pidentry))) ) { perror("couldn't allocate room for new pid"); exit(EXIT_FAILURE); } memcpy(pidentry->name,name,FXT_MAXCOMMLEN+1); pidentry->pid=pid; pidentry->next=fxt->pidentries[pid%PIDHASH_ENTRIES]; fxt->pidentries[pid%PIDHASH_ENTRIES]=pidentry; return 1; } void fkt_remove_pid(fxt_t fxt, uint64_t pid) { struct pid_entry **entry; for(entry=&fxt->pidentries[pid%PIDHASH_ENTRIES]; *entry && (*entry)->pid != pid; entry=&(*entry)->next); if( !*entry ) { EPRINTF("unknown pid %"PRIu64"\n",pid); return; } *entry=(*entry)->next; } static int recordrunningpid( char *statfilename, char pidname[FXT_MAXCOMMLEN+2+1] ) { FILE *file; int res; if( !(file = fopen(statfilename,"r")) ) return 0; /* may happen if it just died */ #if (FXT_MAXCOMMLEN+2+1) != 17+1 #error update format here: #endif res = fscanf(file,"%*d %17s",pidname); fclose(file); return res==1; } int fkt_record_pids( fxt_t fxt, int fd ) { const uint64_t zero=0; uint64_t pid, tid; DIR *dir,*dir2; struct dirent *dirent,*dirent2; char *ptr; char name[sizeof("/proc/")-1+sizeof(pid_t)*3+sizeof("/task/")-1+sizeof(pid_t)*3+sizeof("/stat")-1+1]="/proc/",*task, *c; char pidname[FXT_MAXCOMMLEN+2+1] = {}; if( !(dir = opendir("/proc")) ) { #if ! (defined(__MINGW32__) || defined(__APPLE__)) perror("opening /proc"); fprintf(stderr,"pids won't be recorded\n"); #endif } else { while( (dirent = readdir(dir)) ) { pid = strtol(dirent->d_name, &ptr, 0); if( ptr && !*ptr ) {/* ok, was fully a number */ name[strlen("/proc/")]='\0'; strcat(name+strlen("/proc/"),dirent->d_name); strcat(name+strlen("/proc/"),"/task"); task=name+strlen(name); if (!(dir2 = opendir(name))) {/* 2.4 kernel */ name[strlen("/proc/")]='\0'; strcat(name+strlen("/proc/"),dirent->d_name); strcat(name+strlen("/proc/"),"/stat"); if( !recordrunningpid(name,pidname) ) continue; if ((c = strchr(pidname,')'))) *c = '\0'; write(fd,&pid,sizeof(pid)); write(fd,pidname+1,FXT_MAXCOMMLEN+1); } else { *task++='/'; while( (dirent2 = readdir(dir2)) ) { tid = strtol(dirent2->d_name, &ptr, 0); if( ptr && !*ptr ) {/* ok, was fully a number */ *task='\0'; strcat(task,dirent2->d_name); strcat(task,"/stat"); if( !recordrunningpid(name,pidname) ) continue; if ((c = strchr(pidname,')'))) *c = '\0'; write(fd,&tid,sizeof(tid)); write(fd,pidname+1,FXT_MAXCOMMLEN+1); } } closedir(dir2); } } } closedir(dir); } /* end of list is a zero pid */ return write(fd,&zero,sizeof(zero)); } int fkt_load_pids(fxt_t fxt, FILE *fstream) { static int i; struct pid_entry *entry; if( !(entry = malloc(sizeof(*entry))) ) { perror("allocating pid entry"); return -1; } if( fread(&entry->pid, sizeof(entry->pid), 1, fstream) < 1) { perror("reading pid"); return -1; } if( !entry->pid ) { free(entry); return 0; } i++; // fprintf(stderr,"\r%d",i); if( fread(&entry->name, sizeof(entry->name), 1, fstream) < 1 ) { perror("reading pid name"); exit(EXIT_FAILURE); } entry->name[FXT_MAXCOMMLEN]='\0'; entry->next=fxt->pidentries[entry->pid%PIDHASH_ENTRIES]; fxt->pidentries[entry->pid%PIDHASH_ENTRIES]=entry; return fkt_load_pids(fxt, fstream); } const char *fxt_lookup_pid(fxt_t fxt, uint64_t pid) { struct pid_entry *cur; if( fxt->infos.space == FXT_SPACE_KERNEL && pid <= 0 ) return "idle"; for( cur=fxt->pidentries[pid%PIDHASH_ENTRIES]; cur && cur->pid != pid; cur=cur->next); if( !cur ) return "unknown"; else return cur->name; } /* vim: ts=4 */ fxt-0.3.15/tools/PaxHeaders/dolib.c0000644000000000000000000000013213636772401014065 xustar0030 mtime=1585181953.117148369 30 atime=1746715490.197509076 30 ctime=1746716504.761940964 fxt-0.3.15/tools/dolib.c0000644000175000017500000000252713636772401013561 0ustar00samysamy/* * Copyright (C) 2009, 2012 Université de Bordeaux 1 * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* Wrapper to avoid msys' tendency to turn / into \ and : into ; */ #include #include #include int main(int argc, char *argv[]) { char *prog, *arch, *def, *name, *lib; char s[1024]; if (argc != 6) { fprintf(stderr,"bad number of arguments"); exit(EXIT_FAILURE); } prog = argv[1]; arch = argv[2]; def = argv[3]; name = argv[4]; lib = argv[5]; snprintf(s, sizeof(s), "\"%s\" /machine:%s /def:%s /name:%s /out:%s", prog, arch, def, name, lib); if (system(s)) { fprintf(stderr, "%s failed\n", s); exit(EXIT_FAILURE); } exit(EXIT_SUCCESS); } fxt-0.3.15/tools/PaxHeaders/fxt.c0000644000000000000000000000013213746054711013574 xustar0030 mtime=1603819977.989170912 30 atime=1746715490.197509076 30 ctime=1746716504.728984766 fxt-0.3.15/tools/fxt.c0000644000175000017500000002110113746054711013255 0ustar00samysamy/* * Copyright (C) 2004, 2011-2012, 2017, 2020 Samuel Thibault * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include #include #include #ifndef __MINGW32__ #include #include #endif #include #include #include "fxt.h" #include "fxt-tools.h" #include "fxt_internal.h" struct fxt_block *__fxt_block_current=NULL; fxt_t fxt_setinfos(unsigned int space) { fxt_t fxt; #ifndef __MINGW32__ struct utsname unameinfo; #endif char *unamestr; int n; if (!(fxt = calloc(1,sizeof(*fxt)))) goto out; fxt->infos.space=space; fxt->infos.arch = FXT_RECORD_ARCH; if (fxt_get_cpu_info(fxt)<0) goto outfxt; fxt->infos.record_pid = getpid(); fxt->infos.page_size = getpagesize(); #ifdef __MINGW32__ unamestr=malloc(7+1); snprintf(unamestr,7+1,"mingw32"); #else if (uname(&unameinfo)) goto outfxt; n = snprintf(NULL,0,"%s %s %s %s %s", unameinfo.sysname, unameinfo.nodename, unameinfo.release, unameinfo.version, unameinfo.machine); if (!(unamestr=malloc(n+1))) goto outfxt; snprintf(unamestr,n+1,"%s %s %s %s %s", unameinfo.sysname, unameinfo.nodename, unameinfo.release, unameinfo.version, unameinfo.machine); #endif fxt->infos.uname=unamestr; if (space == FXT_SPACE_KERNEL) fkt_fill_irqs(fxt); return fxt; free(unamestr); outfxt: free(fxt); out: return NULL; } int fxt_record_time(fxt_t fxt, int fd) { int i; WRITE(32,fxt->infos.space); WRITE(32,fxt->infos.ncpus); for( i = 0; i < fxt->infos.ncpus; i++ ) WRITE(32,fxt->infos.mhz[i]); WRITE(32,fxt->infos.record_pid); WRITE(32,fxt->infos.traced_pid); WRITE(64,fxt->infos.start_time); WRITE(64,fxt->infos.stop_time); WRITE(64,fxt->infos.start_jiffies); WRITE(64,fxt->infos.stop_jiffies); WRITE(32,fxt->infos.page_size); return 0; } int fxt_load_time(fxt_t fxt, FILE *fstream) { int i; READ(32,fxt->infos.space); READ(32,fxt->infos.ncpus); if (!(fxt->infos.mhz = calloc(fxt->infos.ncpus,sizeof(*fxt->infos.mhz)))) return -1; for( i = 0; i < fxt->infos.ncpus; i++ ) READ(32,fxt->infos.mhz[i]); READ(32,fxt->infos.record_pid); READ(32,fxt->infos.traced_pid); READ(64,fxt->infos.start_time); READ(64,fxt->infos.stop_time); READ(64,fxt->infos.start_jiffies); READ(64,fxt->infos.stop_jiffies); READ(32,fxt->infos.page_size); return 0; } int fxt_fdwrite(fxt_t fxt, int fd) { int len; int ret; /* main block */ WRITE(32,myhtonl(fxt->infos.arch)); BEGIN_BLOCK(fd, FXT_BLOCK_INFOS); BEGIN_BLOCK(fd, FXT_BLOCK_TIME); if ((ret = fxt_record_time(fxt,fd))<0) return ret; END_BLOCK(fd); BEGIN_BLOCK(fd, FXT_BLOCK_IRQS); if ((ret = fkt_record_irqs(fxt,fd))<0) return ret; END_BLOCK(fd); BEGIN_BLOCK(fd, FXT_BLOCK_UNAME); len = strlen(fxt->infos.uname); WRITE(32,len); if ((ret = write(fd,fxt->infos.uname,len))<0) return ret; END_BLOCK(fd); BEGIN_BLOCK(fd, FXT_BLOCK_ADDRS); if ((ret = fxt_record_symbols(fxt,fd))<0) return ret; END_BLOCK(fd); BEGIN_BLOCK(fd, FXT_BLOCK_PIDS); if ((ret = fkt_record_pids(fxt,fd))<0) return ret; END_BLOCK(fd); /* and close the main block */ END_BLOCK(fd); return 0; } int fxt_fdwritetime(fxt_t fxt, int fd) { int ret; /* rewrite time. beware that record_time's record size shouldn't change in * the meanwhile ! */ ENTER_BLOCK_TYPE(fd, FXT_BLOCK_INFOS); ENTER_BLOCK_TYPE(fd, FXT_BLOCK_TIME); if ((ret = fxt_record_time(fxt, fd))<0) return ret; LEAVE_BLOCK(fd); LEAVE_BLOCK(fd); return 0; } int fxt_fdevents_start(fxt_t fxt, int fd, int kind) { off_t off, dummyoff=0, size; /* start block of traces. If not closed, the block is assumed * to end at the end of the file */ switch (kind) { case FXT_TRACE_KERNEL_RAW: /* Noyau, ancien format : on crée un block et on se * positionne en se plaçant sur une frontière de page */ fxt_block_begin(fd, FXT_BLOCK_TRACES_KERNEL_RAW, 0, 0, &fxt->events_block); /* seek to a page boundary */ if( (off = lseek(fd, 0, SEEK_CUR)) < 0 ) { perror("getting seek"); return -1; } off += sizeof(off_t); /* offset we will write */ size = ((off+fxt->infos.page_size-1)&(~(fxt->infos.page_size-1))) - off; WRITE(64,size); if( (dummyoff = lseek(fd, size, SEEK_CUR)) != (off+size) ) { perror("seeking to a page boundary"); return -1; } break; case FXT_TRACE_USER_RAW: /* User, ancien format : on crée un block et on * placera les données dedans */ fxt_block_begin(fd, FXT_BLOCK_TRACES_USER_RAW, 0, 0, &fxt->events_block); break; default: abort(); } return 0; } int fxt_fdevents_stop(fxt_t fxt, int fd) { fxt_block_end(fd, &fxt->events_block); return 0; } int fxt_setupeventsbuffer(fxt_t fxt, struct fxt_evbuf *buffer, size_t size, int kind) { struct fxt_block_ondisk* buf=(struct fxt_block_ondisk*)buffer; if (sizeof(struct fxt_evbuf) != sizeof(struct fxt_block_ondisk)) { abort(); } buf->size=size; switch (kind) { case FXT_TRACE_USER_RAW: buf->type=FXT_BLOCK_TRACES_USER_RAW; break; default: abort(); } buf->subtype=0; return 0; } #define SYSCALL(op) \ while ((op) == -1) \ { \ if (errno != EINTR) \ { \ perror(#op); \ exit(EXIT_FAILURE); \ } \ } int fxt_fdwriteevents(fxt_t fxt, int fd, struct fxt_evbuf *buffer) { int ret; struct fxt_block_ondisk* buf=(struct fxt_block_ondisk*)buffer; if (buf->size < sizeof(struct fxt_block_ondisk)) { abort(); } SYSCALL(ret=write(fd, buf, buf->size)); if (ret==-1) return -1; return 0; } fxt_t fxt_open(const char *path) { int fd; fxt_t fxt; if ((fd=open(path,O_RDONLY))<0) return NULL; fxt = fxt_fdopen(fd); return fxt; } fxt_t fxt_fdopen(int fd) { int ret; uint32_t len; fxt_t fxt; FILE *fstream; if (!(fxt = calloc(1,sizeof(*fxt)))) goto out; if (!(fstream = fdopen(fd, "r"))) { perror("fdopening trace"); goto outmalloc; } if( fread(&fxt->infos.arch,sizeof(fxt->infos.arch),1,fstream) < 1 ) { perror("read arch"); goto outf; } fxt->infos.arch = myntohl(fxt->infos.arch); ENTER_FBLOCK_TYPE(fstream, FXT_BLOCK_INFOS); /* main block */ ENTER_FBLOCK_TYPE(fstream, FXT_BLOCK_TIME); if ((ret = fxt_load_time(fxt, fstream))<0) goto outmalloc; LEAVE_FBLOCK(fstream); ENTER_FBLOCK_TYPE(fstream, FXT_BLOCK_IRQS); if ((ret = fkt_load_irqs(fxt, fstream))<0) goto outmalloc2; LEAVE_FBLOCK(fstream); ENTER_FBLOCK_TYPE(fstream, FXT_BLOCK_UNAME); if( fread(&len,sizeof(len), 1, fstream) < 1 ) { perror("read size of uname"); goto outmalloc2; } SWAP(32,len); { char uname[len+1]; if( fread(uname,1,len,fstream) < len ) { perror("dumping uname"); goto outmalloc2; } uname[len]='\0'; fxt->infos.uname = strdup(uname); } LEAVE_FBLOCK(fstream); ENTER_FBLOCK_TYPE(fstream, FXT_BLOCK_ADDRS); if ((ret = fxt_load_symbols(fxt, fstream))<0) goto outmalloc2; LEAVE_FBLOCK(fstream); ENTER_FBLOCK_TYPE(fstream, FXT_BLOCK_PIDS); if ((ret = fkt_load_pids(fxt, fstream))<0) goto outmalloc2; LEAVE_FBLOCK(fstream); LEAVE_FBLOCK(fstream); /* main block */ fxt->fd = fd; fxt->fstream = fstream; return fxt; outmalloc2: free(fxt->infos.mhz); outf: fclose(fstream); outmalloc: free(fxt); out: return NULL; } void fxt_close(fxt_t fxt) { unsigned i; struct code_list_item *ptr, *next_ptr; free(fxt->infos.mhz); for (ptr = fxt->irq_list; ptr; ptr = next_ptr) { next_ptr = ptr->link; free(ptr); } free((char*) fxt->infos.uname); for (i = 0; i < NAMEHASH_ENTRIES; i++) { struct address_entry *entry, *next_entry; for (entry = fxt->addresses[i]; entry; entry = next_entry) { next_entry = entry->next; free((char*) entry->name); free(entry); } } for (i = 0; i < PIDHASH_ENTRIES; i++) { struct pid_entry *entry, *next_entry; for (entry = fxt->pidentries[i]; entry; entry = next_entry) { next_entry = entry->next; free(entry); } } fclose(fxt->fstream); free(fxt->already_saw); free(fxt->secondlasttid); free(fxt->lasttid); free(fxt); } struct fxt_infos *fxt_infos(fxt_t fxt) { return &fxt->infos; } fxt-0.3.15/tools/PaxHeaders/fut_record.c0000644000000000000000000000012614713107616015130 xustar0028 mtime=1730973582.2815325 30 atime=1746715490.197509076 28 ctime=1746716504.7370196 fxt-0.3.15/tools/fut_record.c0000644000175000017500000002207014713107616014614 0ustar00samysamy#define CONFIG_FUT #include "../config.h" #ifdef MARCEL # define MARCEL_INTERNAL_INCLUDE # include "marcel.h" #else # ifdef USE_GETTID # include # include /* For SYS_xxx definitions */ # endif #endif #undef NDEBUG #include #include #include #include #ifdef HAVE_CLOCK_GETTIME #include #else /* to get an efficient implementation of the TBX_GET_TICK on various archs */ #include "tbx_timing.h" #endif #ifdef __MINGW32__ #include #endif #define tbx_unlikely(x) __builtin_expect(!!(x), 0) #include "fxt.h" #include "fxt_internal.h" #include "fut.h" extern int record_tid_activated; #ifdef PROFILE_NEW_FORMAT /* pseudo fonction pour trouver où écrire un événement dans les buffers */ /* * Structure du buffer de trace * * ADDR (a new_th.infos->end) { /* les infos ne tiennent pas dans la place du buffer * On cherche un nouveau buffer/record */ void* old_pos = pos_buffer; void* new_pos = old_pos + SIZE_BUFF; if (new_pos > end_buffer) { /* On stoppe tout comme actuellement */ ... return -E_NOSPACELEFT; } if (!lock_cmpxchg(pos_buffer, old_pos, new_pos)) { /* Des choses ont changés, peut-être nous qui avons été * interrompu et avons alors déjà réexécuté ce code * (donc donné une nouvelle zone à ce thread */ goto restart; } /* Ok, on est propriétaire de la nouvelle région qui va de * old_pos à new_pos */ /* On prévoit de la place pour : * 1) les données de controle (struct record) * 2) notre événement * */ new_th.pos=old_pos+sizeof(record_t)+size; *((struct record*)old_pos) = { .start=old_pos; .end=new_pos; .last_event=old_pos; }; /* Sur ia32, on a cmpxchg8, * mais sur ia64, on a seulement cmp4xchg8 (en fait cmp8xchg16 * vu qu'on est en 64 bits) * J'écris donc l'algo avec le plus contraignant * * cmp4xchg8 : compare 4 octets, mais en cas d'égalité on en écrit 8 * */ if (!cmp4xchg8(th_buff.pos, old_th.pos, new_th)) { /* Arghhh, on a été interrompu par une autre mesure qui * a mis en place un nouveau buffer * */ if (lock_cmpxchg(pos_buffer, new_pos, old_pos)) { /* On redonne la zone qu'on vient d'allouer si * c'est encore possible */ goto restart; } /* Bon, ben on a une zone avec une mesure et pas grand * chose d'autre à mettre dedans... * Tant pis * * cas (*) (voir TODO) * */ } } /* Écriture des données à l'adresse : * new_th.pos - size * */ ... restart_update: /* Et mise à jour du pointeur sur la dernière écriture de la zone */ int old_last_ev=new_th.infos->last_event; if (new_th.pos > old_last_ev) { if (!cmpxchg(new_th.infos->last_event, old_last_ev, new_th.pos)) { goto restart_update; } } return 0; } #else /* PROFILE_NEW_FORMAT */ #ifndef MARCEL #ifdef __MINGW32__ #ifdef __i386__ #define ma_cmpxchg(ptr,o,n) \ InterlockedCompareExchange((LONG volatile *)(ptr),(LONG)(n),(LONG)(o)) /* Returns the old value */ #define add_return(ptr,s) \ (InterlockedExchangeAdd((ptr),(s))+(s)) #elif defined (__x86_64__) #define ma_cmpxchg(ptr,o,n) \ InterlockedCompareExchange64((LONGLONG volatile *)(ptr),(LONGLONG)(n),(LONGLONG)(o)) /* Returns the old value */ #define add_return(ptr,s) \ (InterlockedExchangeAdd64((ptr),(s))+(s)) #else #error TODO test the long size #endif #else /* poor man's cmpxchg, à supprimer lorsque tbx implémentera cmpxchg lui-même */ #define ma_cmpxchg(ptr,o,n) \ __sync_val_compare_and_swap((ptr), (o), (n)) /* Returns the old value */ #define add_return(ptr,s) \ __sync_fetch_and_add((ptr), (s)) #endif #endif static unsigned long trash_buffer[8]; extern int allow_fut_flush; extern pthread_mutex_t fut_flush_lock; extern void (*fut_flush_callback)(void); #if !defined(__MINGW32__) #ifdef __GNUC__ __attribute__((weak)) #endif #endif uint64_t fut_getstamp(void) { unsigned long long tick; #ifdef HAVE_CLOCK_GETTIME struct timespec tp; # if 0 /* def CLOCK_MONOTONIC_RAW */ /* The CLOCK_MONOTONIC_RAW clock is not * subject to NTP adjustments, but is not available on all systems (in that * case we use the CLOCK_MONOTONIC clock instead). */ /* In the distributed case, we *do* want NTP adjustments, to get * somehow-coherent traces, so this is disabled */ clock_gettime(CLOCK_MONOTONIC_RAW, &tp); # else clock_gettime(CLOCK_MONOTONIC, &tp); # endif tick = 1000000000ULL*tp.tv_sec+ tp.tv_nsec; #elif defined(__MINGW32__) struct timeval tv; gettimeofday(&tv, NULL); tick = 1000000ULL * tv.tv_sec + tv.tv_usec; #else TBX_GET_TICK(tick); #endif return tick; } unsigned long* __fut_record_event(fxt_trace_user_raw_t * rec, uint64_t stamp, unsigned long code) { rec->tick = stamp; #ifdef MA__FUT_RECORD_TID rec->tid=(unsigned long)MARCEL_SELF; #else if (record_tid_activated) { # ifdef USE_GETTID rec->tid = syscall(SYS_gettid); # else #ifdef __MINGW32__ rec->tid = GetCurrentThreadId(); #else rec->tid = (uintptr_t) pthread_self(); #endif # endif } else { rec->tid = 0; } #endif rec->code = code; return (unsigned long*)(rec->args); } unsigned long* fut_getstampedbuffer(unsigned long code, int size) { unsigned long *prev_slot, *next_slot, *first_slot; uint64_t stamp; assert(size <= FUT_SIZE(FXT_MAX_PARAMS)); retry: #if ! FUT_USE_SPINLOCKS /* compare and swap method */ do { /* Wait for flusher to finish flushing */ do { first_slot = fut_first_slot; rmb(); prev_slot = (unsigned long*) fut_next_slot; } while (tbx_unlikely(prev_slot < first_slot || (void*) prev_slot > (void*) first_slot + fut_nallocated)); /* Note: we allow prev_slot to be exactly last_slot, to properly * detect overflowing the buffer in that case. */ next_slot = (unsigned long*)((void *) prev_slot + size); /* Note: we don't want to use add_return here, as we want to * make sure we are not reserving beyond last slot */ } while (tbx_unlikely(prev_slot != ma_cmpxchg(&fut_next_slot, prev_slot, next_slot))); stamp = fut_getstamp(); #else /* spin lock method: guarantees coherency between stamp and trace * order, but is much less scalable. */ pthread_spin_lock(&fut_slot_lock); stamp = fut_getstamp(); first_slot = fut_first_slot; prev_slot = fut_next_slot; fut_next_slot = next_slot = prev_slot + size; pthread_spin_unlock(&fut_slot_lock); #endif if (tbx_unlikely((void*) next_slot > (void*) first_slot + fut_nallocated)) { if(allow_fut_flush) { /* our record doesn't fit, flush the buffer to disk */ if ((void*) prev_slot > (void*) first_slot + fut_nallocated) abort(); /* another thread is already going to flush the buffer */ //goto retry; pthread_mutex_lock(&fut_flush_lock); /* Wait for all previous threads to commit their writes */ while (fut_filled_slot < (void*) prev_slot - (void*) fut_first_slot) rmb(); /* Make sure others have finished writing */ rmb(); assert(fut_filled_slot == (void*) prev_slot - (void*) fut_first_slot); /* Ok, nobody will write to the buffer any more, * let writers start filling it * while we flush this one. */ __fut_reset_pointers(); /* Can now take the time to flush buffer to disk */ fut_flush(NULL, first_slot, prev_slot, 1); /* synchronize between the flush and other threads */ mb(); /* We're done, let another flusher proceed */ pthread_mutex_unlock(&fut_flush_lock); if (fut_flush_callback) { (*fut_flush_callback)(); } /* And try to get our slot */ goto retry; } else { /* stop recording events */ fut_active=0; /* Pourquoi on restaure ici ? Pas de race condition possible ? */ fut_next_slot = prev_slot; return trash_buffer; } } fxt_trace_user_raw_t *rec=(fxt_trace_user_raw_t *)prev_slot; return __fut_record_event(rec, stamp, code); } void fut_commitstampedbuffer(int size) { unsigned int new_filled; #if !FUT_USE_SPINLOCKS /* Make sure flusher sees our writes */ wmb(); new_filled = add_return(&fut_filled_slot, size) + size; #else pthread_spin_lock(&fut_slot_lock); new_filled = fut_filled_slot += size; pthread_spin_unlock(&fut_slot_lock); #endif assert((fut_nallocated && new_filled <= fut_nallocated) ||(!fut_nallocated && new_filled <= sizeof(trash_buffer))); } #endif /* PROFILE_NEW_FORMAT */ fxt-0.3.15/tools/PaxHeaders/fkt_timestats-log0000644000000000000000000000007410271436743016216 xustar0030 atime=1746715490.197509076 30 ctime=1746716504.757266285 fxt-0.3.15/tools/fkt_timestats-log0000755000175000017500000000052110271436743015700 0ustar00samysamy#!/bin/bash EPS=${1/.timedat/.eps} [ -n "$1" -a -n "$2" -a "$2" != "$1" ] && EPS="$2" if [ "$EPS" = "$1" ] then echo "Usage: $0 file.timedat [output.eps]" exit 1 fi (cat << EOF set terminal postscript eps enhanced color solid set xlabel "Mcy" plot "$1" using (\$2/1000000):(-log(\$3)) title "log(cy)" with lines EOF ) | gnuplot > $EPS fxt-0.3.15/tools/PaxHeaders/Makefile.am0000644000000000000000000000013115007143257014656 xustar0029 mtime=1746716335.15133124 30 atime=1746716498.237983821 30 ctime=1746716504.709797206 fxt-0.3.15/tools/Makefile.am0000644000175000017500000000521515007143257014350 0ustar00samysamy ldflags = noinst_PROGRAMS = if FXT_HAVE_WINDOWS ldflags += -Xlinker --output-def -Xlinker .libs/libfxt.def if FXT_HAVE_MS_LIB .libs/libfxt-2.lib: libfxt.la dolib ./dolib "$(FXT_MS_LIB)" $(FXT_MS_LIB_ARCH) .libs/libfxt.def libfxt-2 .libs/libfxt-2.lib all-local: .libs/libfxt-2.lib endif FXT_HAVE_MS_LIB endif # Flags globaux AM_CFLAGS= @AM_LFS_CFLAGS@ AM_LDFLAGS= @AM_LFS_LDFLAGS@ AM_CPPFLAGS= -I$(srcdir)/../kernel/linux-fkt/include libfxt_la_LDFLAGS = $(ldflags) -no-undefined -version-info 2:0:0 libfxt_la_LIBADD = $(FXT_LIBS) noinst_HEADERS = fxt_internal.h fut-template.h timer.h dist_noinst_SCRIPTS = template2h.pl makediff include_HEADERS = fxt-tools.h fxt.h fut.h pkginclude_HEADERS = fxt-tools.h fxt.h fut.h dist_bin_SCRIPTS = sigmund noinst_PROGRAMS += fut_bench EXTRA_DIST = fkt_bufstats fkt_timestats fkt_timestats-log time.c timer.c tbx_timing.h dolib.c # Les programmes bin_PROGRAMS = fxt_print if FKT bin_PROGRAMS += fkt_record fkt_setmask fkt_extract fkt_print if X11 bin_PROGRAMS += fkt_select endif SYMLINKS_PROGS = fkt_disable fkt_enable fkt_probe0 endif noinst_PROGRAMS += test TESTS = test install-exec-hook: set -e; \ cd $(DESTDIR)$(bindir) ; \ $(foreach prog, $(SYMLINKS_PROGS), \ $(RM) $(prog)$(EXEEXT) ; \ $(LN_S) fkt_setmask$(EXEEXT) $(prog)$(EXEEXT) ;) if FXT_HAVE_WINDOWS $(INSTALL) .libs/libfxt.def $(DESTDIR)$(libdir) if FXT_HAVE_MS_LIB $(INSTALL) .libs/libfxt-2.lib $(DESTDIR)$(libdir) $(INSTALL) .libs/libfxt-2.exp $(DESTDIR)$(libdir) endif FXT_HAVE_MS_LIB endif fxt_print_LDADD = libfxt.la fxt_print.$(OBJEXT): fut.h fut_print.h fkt_print_LDADD = libfxt.la fkt_print.$(OBJEXT): fut.h fut_print.h fkt_record_LDADD = libfxt.la fkt_select_LDADD = -L/usr/X11R6/lib -lX11 fut_bench_LDADD = libfxt.la -lpthread test_LDADD = libfxt.la test.$(OBJEXT): fut.h fut_print.h ev.lo: fut.h # La bibliothèque lib_LTLIBRARIES = libfxt.la libfxt_la_SOURCES = fxt.c names.c symbols.c pids.c get_cpu_info.c ev.c fut_setup.c fut_record.c libfxt_la_SOURCES += fxt/trap_names.h fxt/sysirq_names.h fxt/syscall_names.h fkt_code_name.h # Les trucs spéciaux CLEANFILES = fut.h fut_print.h temp temp2 fxt_print.log fxt_print.1 BUILT_SOURCES = fut.h fut_print.h fut.h: fut-template.h template2h.pl ./template2h.pl < $< > $@ fut_print.h: fut.h $(AWK) 'BEGIN \ { print "/* this is a generated file,"\ "do not edit it */" \ }\ /^#define.*FUT_.*_CODE/ \ { print "{ "$$2", \"" \ tolower(gensub("_CODE$$","","g",$$2)) \ "\"}," \ }' \ $< > $@ || ( $(RM) -f $@ ; exit 1 ) if HAVE_HELP2MAN fxt_print.1: fxt_print help2man --version-string=$(VERSION) -N -n "Dump the content of an FxT trace file" --output=$@ ./$< man1_MANS = fxt_print.1 endif fxt-0.3.15/tools/PaxHeaders/time.c0000644000000000000000000000013213636772401013732 xustar0030 mtime=1585181953.117148369 30 atime=1746715490.207509121 30 ctime=1746716504.758347511 fxt-0.3.15/tools/time.c0000644000175000017500000000325513636772401013425 0ustar00samysamy/* * Copyright (C) 2004 Samuel Thibault * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include void record_time( int ncpus, double mhz[] ) { int i; BEGIN_BLOCK(fd); if( write(fd, (void *)&ncpus, sizeof(ncpus)) < 0 ) perror("write ncpus"); for( i = 0; i < ncpus; i++ ) { if( write(fd, (void *)&mhz[i], sizeof(mhz[i])) < 0 ) perror("write mhz"); } if( write(fd, (void *)&pid, sizeof(pid)) < 0 ) perror("write pid"); if( write(fd, (void *)&kpid, sizeof(kpid)) < 0 ) perror("write kpid"); if( write(fd, (void *)&start_time, sizeof(start_time)) < 0 ) perror("write start_time"); if( write(fd, (void *)&stop_time, sizeof(stop_time)) < 0 ) perror("write stop_time"); if( write(fd, (void *)&start_jiffies, sizeof(start_jiffies)) < 0 ) perror("write start_jiffies"); if( write(fd, (void *)&stop_jiffies, sizeof(stop_jiffies)) < 0 ) perror("write stop_jiffies"); if( write(fd, (void *)&page_size, sizeof(page_size)) < 0 ) perror("write page size"); END_BLOCK(fd); } fxt-0.3.15/tools/PaxHeaders/fkt_print.c0000644000000000000000000000013213636772401014774 xustar0030 mtime=1585181953.117148369 30 atime=1746715490.207509121 30 ctime=1746716504.746373882 fxt-0.3.15/tools/fkt_print.c0000644000175000017500000017705513636772401014501 0ustar00samysamy/* fkt_print.c fkt_print -- program to analyse and print trace files produced by fkt_record using fkt (fast kernel tracing) in the kernel. Copyright (C) 2000, 2001 Robert D. Russell -- rdr@unh.edu 2003, 2004, 2012 Samuel Thibault -- samuel.thibault@ens-lyon.org 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* As of 30-Jul-03, * unshifted codes (for traps/syscalls/irqs) MUST be less than FKT_UNSHIFTED_LIMIT_CODE. singleton codes (i.e., those that are NOT paired in entry-exit pairs) MUST be greater than FKT_UNPAIRED_LIMIT_CODE and be less thant GCC_TRACED_FUNCTION_X86_MINI FKT_SETUP_CODE and less than FKT_LAST_FKT_CORE. function entry and exit codes MUST be greater than FKT_UNSHIFTED_LIMIT_CODE. function entry codes MUST have the FKT_GENERIC_EXIT_OFFSET bit set. gcc traced functions codes are greater than GCC_TRACED_FUNCTION_X86_MINI entry codes must have FXT_GCC_TRACED_FUNCTION_X86_EXIT bit set */ #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_SYS_MOUNT_H #include #endif #include #include #include #include #include #include #include #include #include "fxt.h" #include "fxt_internal.h" #include "fxt-tools.h" #include "fut.h" struct fxt_code_name fut_code_table [] = { # if !defined(PREPROC) && !defined(DEPEND) # include "fut_print.h" # endif {0, NULL } }; #define MALLOC(t,fmt,...) \ do \ if( (t = malloc(sizeof(typeof(*t)))) == NULL ) \ { \ fprintf(stderr, "unable to malloc " fmt "\n", ## __VA_ARGS__); \ exit(EXIT_FAILURE); \ } \ while (0); #define CALLOC(t,size) \ do \ if( (t = calloc(size, sizeof(typeof(*t)))) == NULL ) \ { \ fprintf(stderr, "unable to calloc "#t"[%d]\n", size); \ exit(EXIT_FAILURE); \ } \ while (0); #define REALLOC(t,size) \ do \ if( (t = realloc(t, size * sizeof(typeof(*t)))) == NULL ) \ { \ fprintf(stderr, "unable to realloc "#t"[%d]\n", size); \ exit(EXIT_FAILURE); \ } \ while (0); #if 1 #define printf(fmt, ...) do {\ printf(fmt, ## __VA_ARGS__); \ fflush(stdout); \ } while (0) #define fprintf(f, fmt, ...) do {\ fprintf(f, fmt, ## __VA_ARGS__); \ fflush(f); \ } while (0) #endif #define HISTO_SIZE 512 #define MAX_HISTO_BAR_LENGTH 25 #define HISTO_CHAR '*' #define NAMELEN 28 #define NAMELENONLY 23 /* leave some space for " ONLY" */ #define CYCLEN 14 #define COUNTLEN 9 #define AVGLEN 7 #define _S(x) #x #define S(x) _S(x) #define NAMESTR "%" S(NAMELEN) "s" #define NAMESTRONLY "%" S(NAMELENONLY) "s" #define CYCSTR "%" S(CYCLEN) "s" #define CYCNUM "%" S(CYCLEN) PRIu64 #define COUNTSTR "%" S(COUNTLEN) "s" #define COUNTNUM "%" S(COUNTLEN) "u" #define AVGSTR "%" S(AVGLEN) "s" #define AVGNUM "%" S(AVGLEN) ".0f" #define COMMSTR " %" S(FXT_MAXCOMMLEN) "s" #define COMMNAME "Command" #define COMMUNDERLINE "-------" #if \ (FKT_SWITCH_TO_CODE != FUT_SWITCH_TO_CODE) || \ (FKT_SETUP_CODE != FUT_SETUP_CODE) || \ (FKT_KEYCHANGE_CODE != FUT_KEYCHANGE_CODE) || \ (FKT_RESET_CODE != FUT_RESET_CODE) || \ (FKT_CALIBRATE0_CODE != FUT_CALIBRATE0_CODE) || \ (FKT_CALIBRATE1_CODE != FUT_CALIBRATE1_CODE) || \ (FKT_CALIBRATE2_CODE != FUT_CALIBRATE2_CODE) || \ (FKT_GCC_INSTRUMENT_ENTRY_CODE != FUT_GCC_INSTRUMENT_ENTRY_CODE) || \ (FKT_GCC_INSTRUMENT_EXIT_CODE != FUT_GCC_INSTRUMENT_EXIT_CODE) || \ (FKT_DO_FORK_CODE != FUT_THREAD_BIRTH_CODE) || \ (FKT_END_OF_PID_CODE != FUT_THREAD_DEATH_CODE) || \ (FKT_DO_EXECVE_CODE != FUT_SET_THREAD_NAME_CODE) || \ 0 #error some code not the same #endif #define FXT_SWITCH_TO_CODE FKT_SWITCH_TO_CODE #define FXT_SETUP_CODE FKT_SETUP_CODE #define FXT_KEYCHANGE_CODE FKT_KEYCHANGE_CODE #define FXT_RESET_CODE FKT_RESET_CODE #define FXT_CALIBRATE0_CODE FKT_CALIBRATE0_CODE #define FXT_CALIBRATE1_CODE FKT_CALIBRATE1_CODE #define FXT_CALIBRATE2_CODE FKT_CALIBRATE2_CODE #define FXT_GCC_INSTRUMENT_ENTRY_CODE FKT_GCC_INSTRUMENT_ENTRY_CODE #define FXT_GCC_INSTRUMENT_EXIT_CODE FKT_GCC_INSTRUMENT_EXIT_CODE #define FXT_NEW_PID_CODE FKT_DO_FORK_CODE #define FXT_END_PID_CODE FKT_END_OF_PID_CODE #define FXT_SET_NAME_CODE FKT_DO_EXECVE_CODE #define UNAMESTRLEN 256 /* use 64-bit arithmetic for all times */ typedef uint64_t u_64; /* * * Settings variables * */ /* set by -a switch to know which pid to take statistics for */ static int statspid = -1; /* set by -p switch to know which pid to print */ static int printpid = -1; /* if the pid is prepended with +, only that pid will be printed */ static int printonlypid; static int printing; /* set to stdout by -d, /dev/null else */ static FILE *stdbug; /* set to 1 by -k switch to ignore user time */ static int kernel_only; /* set by -b to record the page buffering statistics */ static char *pagebufstats; /* set by -t to record pages filling time */ static char *pagetimestats; /* * lib fxt structure */ static fxt_t fxt; static struct fxt_infos *info; /* * * Some limits and their actual use * */ /* number of function probes */ #define MAX_FUNS 2000 static unsigned int actual_max_funs_pos = 0; /* number of times the same function could be called (nested or between * processes) */ #define MAX_EACH_FUN_RECUR 256 static unsigned int actual_max_cycles_pos = 0; /* nesting level of processes stacks */ #define MAX_FUN_RECUR 64 static unsigned int actual_max_pos = 0; /* * * Machine information * */ static size_t page_size; static int trace_space; static const char* trace_space_name[] = { [FXT_SPACE_KERNEL]="Kernel traces", [FXT_SPACE_USER]="User traces", }; static unsigned int lastcpu = -1; /* fun_time is initially 0. * set to 1 when hit first entry for kidpid task * while 1, allows accumulation of entry/exit statistics * set to -1 when hit burying of kidpid task and it is already set to 1. */ static int fun_time = 0; /* called once to start statistics taking */ void start_taking_stats( void ) { fprintf(stdbug, "start taking stats, lastcpu %u\n", lastcpu); fun_time = 1; /* start the statistics taking */ } /* called once to stop statistics taking */ void stop_taking_stats( void ) {/* this times() occurred while taking statistics */ fprintf(stdbug, "stop taking stats\n"); fun_time = -1; /* stop the statistics taking */ } /* * * Per-process total cycles accounting (both user and kernel level) * */ struct pid_cycles_item { u_64 pid; u_64 total_cycles; int dead; char name[FXT_MAXCOMMLEN+1]; struct pid_cycles_item *next; }; static struct pid_cycles_item *pid_cycles_list; static u_64 pid; static u_64 kidpid; void find_category( u_64 z, char *category, const char **name ) { if( z == kidpid ) {/* this is the user process */ *name=fxt_lookup_pid(fxt,z); *category = 'u'; } else if( trace_space == FXT_SPACE_KERNEL && z <= 0 ) {/* this is an idle process (z <= 0) */ *name = "idle process"; /* mustn't be longer than FXT_MAXCOMMLEN */ *category = 'i'; } else if( z == pid ) { /* this is fkt_record process */ *name=fxt_lookup_pid(fxt,z); *category = 'f'; } else {/* this is some other process (z != 0) */ *name=fxt_lookup_pid(fxt,z); *category = 'o'; } } const char *find_name(unsigned long code, int keep, int maxlen) { const char *res; if (trace_space == FXT_SPACE_USER) { if (code >= FUT_I386_FUNCTION_MINI) res=fxt_lookup_symbol(fxt,code&~FUT_I386_FUNCTION_EXIT); else res=fxt_find_name(fxt, code, keep, maxlen, fut_code_table); } else { if (code >= FKT_I386_FUNCTION_MINI) res=fxt_lookup_symbol(fxt,code|FKT_I386_FUNCTION_EXIT); else res=fxt_find_name(fxt, code, keep, maxlen, fkt_code_table); } return res; } void update_pid_cycles( u_64 cycles, u_64 pid ) { struct pid_cycles_item *ptr; for( ptr = pid_cycles_list; ptr != NULL; ptr = ptr->next ) { if( ptr->pid == pid && !ptr->dead ) {/* found item for this pid, just increment its cycles */ ptr->total_cycles += cycles; fprintf(stdbug, "add %"PRIu64" cycles to pid %"PRId64", total now %"PRIu64"\n", cycles, pid, ptr->total_cycles); return; } } /* loop finishes when item for this pid not found, make a new one */ MALLOC(ptr,"pid_cycles_item"); ptr->pid = pid; ptr->total_cycles = cycles; ptr->dead = 0; strcpy(ptr->name,fxt_lookup_pid(fxt,pid)); ptr->next = pid_cycles_list; /* add to front of list */ pid_cycles_list = ptr; fprintf(stdbug,"create new cycles for pid %"PRId64", initial %"PRIu64"\n",pid,cycles); } void update_pid_name(u_64 pid, char *name) { struct pid_cycles_item *ptr; for( ptr = pid_cycles_list; ptr != NULL; ptr = ptr->next ) { if( ptr->pid == pid && !ptr->dead ) { strcpy(ptr->name, name); return; } } /* loop finishes when item for this pid not found, make a new one */ MALLOC(ptr,"pid_cycles_item"); ptr->pid = pid; ptr->total_cycles = 0; ptr->dead = 0; strcpy(ptr->name,name); ptr->next = pid_cycles_list; /* add to front of list */ pid_cycles_list = ptr; fprintf(stdbug,"create new cycles for pid %"PRId64"\n",pid); } void bury_pid( u_64 pid ) { struct pid_cycles_item *ptr; if( statspid>0 && pid == statspid ) stop_taking_stats(); if( printpid>0 && pid == printpid ) printing = -1; for( ptr = pid_cycles_list; ptr; ptr = ptr->next ) { if( ptr->pid == pid && !ptr->dead) {/* found the process to bury */ ptr->dead=1; break; } } /* if it was not found, well, no problem, we hadn't seen it alive, * that's all */ } /* draw a horizontal line of 80 c characters onto stdout */ void my_print_line( int c ) { int i; for( i = 0; i < 80; i++ ) putchar(c); putchar('\n'); } void print_cycles( u_64 ratio ) { struct pid_cycles_item *ptr; double t, r, jtot, ptot; u_64 total; char category; const char *name; r = (double)ratio; total = 0ULL; jtot = 0.0; ptot = 0.0; printf("\n\n%48s\n\n","PROCESSES CYCLES"); my_print_line('*'); printf("\n"); printf("%c"COMMSTR" %6s "CYCSTR" %15s %11s\n", ' ', COMMNAME, "pid", "cycles", "jiffies", "percent"); printf("%c"COMMSTR" %6s "CYCSTR" %15s %11s\n", ' ', COMMUNDERLINE, "---", "------", "-------", "-------"); for( ptr = pid_cycles_list; ptr != NULL; ptr = ptr->next ) { t = ((double)ptr->total_cycles); total += ptr->total_cycles; jtot += t/r; } for( ptr = pid_cycles_list; ptr != NULL; ptr = ptr->next ) { t = ((double)ptr->total_cycles); find_category(ptr->pid,&category,&name); printf("%c"COMMSTR" %6"PRId64" "CYCNUM" %15.2f %10.2f%%\n", category, ptr->name, ptr->pid, ptr->total_cycles, t/r, t*100.0/((double)total)); ptot += t*100.0/((double)total); } printf("%c"COMMSTR" %6s "CYCNUM" %15.2f %10.2f%%\n", ' ', "", "TOTAL", total, jtot, ptot); } /* * * Page buffering statistics * * We count the pages flushing and write a data file in order to be able to * draw a nice gnuplot graph * */ /* record the state of fkt pages at the end of each record page */ struct page_status { u_64 time; /* time of the end of this page on CPU 0 */ unsigned writing; /* currently writing pages*/ unsigned nbsyncs; /* nb of synchronizations done */ unsigned written; /* actually written pages */ unsigned extra_written; /* written pages in a hurry */ unsigned nbpages; /* nb of pages */ }; static struct page_status *page_status, *current_page_status; /* count the number of syncs we had to do */ static u_64 nbsyncs; void page_stats(unsigned long code, int arg) { switch(code) { case FXT_SETUP_CODE: current_page_status->nbpages=arg; break; case FKT_RECORD_WRITING_CODE: current_page_status->writing++; break; case FKT_RECORD_WRITTEN_CODE: current_page_status->written++; break; case FKT_RECORD_EXTRA_WRITTEN_CODE: current_page_status->extra_written++; break; case FKT_RECORD_EXTRA_PAGE_CODE: current_page_status->nbpages++; break; case FKT_FKT_FORCE_SYNC_ENTRY_CODE: current_page_status->nbsyncs++; nbsyncs++; break; } } void page_stats_print(unsigned long nbpages) { /* bad: we're assuming every cpu is at the same speed */ unsigned i; FILE *stats; u_64 lasttime=0ULL; if( pagebufstats ) { if( !(stats=fopen(pagebufstats,"w")) ) { fprintf(stderr,"can't open buffer stats data file %s\n",pagebufstats); exit(EXIT_FAILURE); } for (i=0;i %d\n",page_status[0].nbpages,page_status[nbpages].nbpages); printf("total synchronizations: %"PRIu64"\n",nbsyncs); } /* Each function has its own fun_item element in the funs[] array. start_cycle Exit codes for each function are 0x100 more than the entry probe codes. Therefore, the way that the time spent on executing a function is calculated is as follows. When a function is entered for the first time, store it in the array "funs", with its entry code, and cycles in the start_cycle. when the exit code is seen for that function, index into the "funs" array and subtract the entry cycles from the exit cycle. The difference is stored in the field "total" cumulatively. If before seeing an exit, another entry for the same function is seen, no problem, this can also be stored in the start_cycle and popped out appropriately... caller_pid lets parallel calls properly handled: start_cycle gets shifted when the top of calls for a process is not the top of calls for this function. */ /* One of these items in funs[] array for each function called */ struct fun_item { /* the code identifying this func */ unsigned long code; /* total number of calls to this func */ unsigned int counter; /* total number of cycles in this func */ u_64 total; /* total number of cycles in this func ONLY */ u_64 self_total; /* stack of start times of nested or parallel open calls to this func (-1 if not open call) */ u_64 start_cycle[MAX_EACH_FUN_RECUR]; /* stack of pid that made open call */ /* a pid is signed: negative values are for idle processes, and denote */ /* the cpu */ u_64 caller_pid[MAX_EACH_FUN_RECUR]; /* ith slot is cycles spent in func i when called from this func */ u_64 called_funs_cycles[MAX_FUNS]; /* ith slot is number of calls to func i from this func */ unsigned int called_funs_ctr[MAX_FUNS]; }; /* The funs[] array stores information for unique functions actually called */ static int newfun_pos; /* index to next slot to use in funs[] */ static struct fun_item funs[MAX_FUNS]; /* stacks keep track of start cycle and code for nested function calls. One stack per processus, kept in linked-list headed by stack_head. Current stack is pointed to by cpu_stack[lastcpu]. */ /* Keep kernel function nesting statistics in the stack arrays. Every cycle is accounted for exactly once. Each time a kernel function is entered, push (pos++) onto the code stack its entry code, and onto the start_cycle stack the time it occurred. When the corresponding kernel function returns, pop (pos--) the stacks, using the difference between the start_cycle and the time of the return to compute the time spent in the function. Add this time to all the other start_cycle times in this stack (thereby removing the cycles spent in this nested function from those that called it) Note that the first entry of the array is used to keep the starting time of the process (considered as the main function to some extends) */ struct stack_item { /* the pid to whom this item belongs */ u_64 pid; /* the last cpu that worked on this item */ unsigned int cpu; /* total number of cycles used in user level by this pid */ u_64 user_cycles; /* last reltime seen for this pid */ u_64 lastreltime; /* index to next unused slot on v3 stacks */ unsigned int pos; /* stack of start cycles for open function calls */ u_64 start_cycle[MAX_FUN_RECUR]; /* stack of entry codes for open function calls */ unsigned long code[MAX_FUN_RECUR]; /* stack of indexes to entry codes in funs array */ unsigned int fun_index[MAX_FUNS]; /* index to next unused slot on index_array */ unsigned int next_fun_index; /* link to item for next pid */ struct stack_item *next; }; static struct stack_item *stack_head; static struct stack_item **cpu_stack; /* once a process is dead, it's useless to keep its stack, only keep its * process cycle count and pid * This also avoids mixing processes with the same pid */ struct dead_process { /* the pid the process had, only for displaying */ u_64 pid; /* total number of cycles used in user level by this pid */ u_64 user_cycles; char name[FXT_MAXCOMMLEN+1]; /* next dead process */ struct dead_process *next; }; static struct dead_process *grave_head; /* arrays to keep track of number of occurrences and time accumulated */ static u_64 syscall_cycles[FKT_UNSHIFTED_LIMIT_CODE]; static unsigned int syscall_counter[FKT_UNSHIFTED_LIMIT_CODE]; /* basetime[thiscpu] is first absolute time ever seen for thiscpu */ /* lasttime[thiscpu] is last absolute time ever seen for thiscpu */ /* lastreltime[thiscpu] is last relative time ever seen for thiscpu */ /* should have lastreltime = lasttime - basetime */ /* basehigh is the current 32bit hi part of the 64bit time */ static u_64 basetime,*lasttime; static u_64 *basehigh; static u_64 *lastreltime; /* start_time_cpu[thiscpu] is 1st relative time for thiscpu once taking stats*/ /* end_time_cpu[thiscpu] is 1st relative time for thiscpu after taking stats */ static u_64 *start_time_cpu, *end_time_cpu; /* already_saw[thiscpu] is 0 before any slot for thiscpu is seen, else 1 */ /* fun_time_cpu[thiscpu] is 1 after thiscpu has started taking stats, -1 after thiscpu has finished taking stats */ static int *already_saw, *fun_time_cpu; static u_64 *lastpid; static clock_t start_jiffies, stop_jiffies; static int fd; /* this gets incremented each time we charge a a function with * cycles, to detect incoherencies as soon as possible */ static u_64 accounted; /* first probe for this pid, create and initialize a new stack item for it */ struct stack_item *create_stack( u_64 thispid, unsigned int thiscpu, u_64 stack_start_time ) { struct stack_item *stack; fprintf(stdbug, "create_stack for pid %"PRId64", cpu %u, rel time %"PRIu64"\n", thispid, thiscpu, stack_start_time); MALLOC(stack,"stack for pid %"PRId64"", thispid); stack->pid = thispid; stack->cpu = thiscpu; stack->user_cycles = 0LL; stack->pos = 0; stack->code[0] = 0; stack->start_cycle[0] = stack_start_time; stack->next_fun_index = 0; stack->fun_index[0] = 0; stack->next = stack_head; /* push on stack list */ stack_head = stack; return stack; } /* shift function start cycles when a function returns (including switch_to) */ void update_stack( struct stack_item *stack, u_64 delta, unsigned long code ) { unsigned int i, k; /* move up start time of all previous in nesting */ for( i = 0; i < stack->pos; i++ ) stack->start_cycle[i] += delta; /* if this is a switch, update functions as well */ if ( code == FKT_SWITCH_TO_CODE || (trace_space == FXT_SPACE_KERNEL && code < FKT_UNSHIFTED_LIMIT_CODE) ) { for( k = 0; k < newfun_pos; k++ ) for ( i = 0; ipid) funs[k].start_cycle[i] += delta; } /* then pop the stack */ stack->pos--; fprintf(stdbug, "stack updated by %"PRIu64", pop stack for pid %"PRId64", pos %d\n", delta, stack->pid, stack->pos); } /* setup stack for this pid, also update this pid's stack */ void setup_stack( u_64 cyc_time, u_64 thispid ) { u_64 delta, off_cyc_time = lastreltime[lastcpu]; fprintf(stdbug, "setup_stack for pid %"PRId64", cpu %u\n", thispid, lastcpu); if( cpu_stack[lastcpu] == NULL ) {/* first time through here, we need a stack */ cpu_stack[lastcpu] = create_stack(thispid, lastcpu, cyc_time); } else if( cpu_stack[lastcpu]->pid != thispid ) {/* next probe not the current pid, find a stack for the new pid */ struct stack_item *stack; /* search list of existing items to find one for this pid */ for( stack = stack_head; stack != NULL; stack = stack->next ) { if( stack->pid == thispid) {/* found an existing stack for the new pid */ fprintf(stdbug, "go back to stack for pid %"PRId64", cpu %u, pos %d\n", thispid, stack->cpu, stack->pos); if( stack->code[stack->pos] == FXT_SWITCH_TO_CODE ) {/* top of previous stack is switch_to, pop it off */ cpu_stack[lastcpu] = stack; /* and use the time of the last probe (this process might * have handled an IRQ just before actually yielding) */ delta = off_cyc_time - stack->lastreltime; /* move up start of all previous in nesting and pop stack */ update_stack(stack, delta, FXT_SWITCH_TO_CODE); } else /* we've already seen this pid before, it should have switched*/ EPRINTF("previous stack does not have switch_to on top," " pos = %d\n", stack->pos); stack->cpu = lastcpu; /* remember last cpu to work here */ break; } } if( stack == NULL ) /* first probe for this pid, create and initialize a new stack */ stack = create_stack(thispid, lastcpu, lastreltime[lastcpu]); cpu_stack[lastcpu] = stack; } else { /* same processus as before, but might not have really switched */ } cpu_stack[lastcpu]->lastreltime=cyc_time; } /* exiting the corresponding entry in funs array at slot k */ void exit_function( struct stack_item *stack, int k, u_64 thispid, u_64 cyc_time ) { int i, j = -1; u_64 cycdiff; /* find top of start_cycle stack for this pid (start time of last call to this function) */ for ( i = 0; i < MAX_EACH_FUN_RECUR; i++ ) { if ( funs[k].start_cycle[i] == -1LL ) break; if ( funs[k].caller_pid[i] == thispid ) j = i; } if( j == -1 ) /* no open (unexited) call to this function for this pid !?! */ EPRINTF("no open call to function %s from pid %"PRId64"\n", find_name(funs[k].code,1,-1), thispid); else {/* compute time spent in last call to this function */ cycdiff = cyc_time - funs[k].start_cycle[j]; /* add this time to total time ever spent in function */ funs[k].total += cycdiff; funs[k].counter++; fprintf(stdbug,"adding %"PRIu64" cycles to this function, reaching %"PRIu64"\n", cycdiff, funs[k].total); /* "shift" the stack of calls to this function */ memmove(&funs[k].start_cycle[j],&funs[k].start_cycle[j+1], ((char *) (&funs[k].start_cycle[i]))- ((char *) (&funs[k].start_cycle[j]))); memmove(&funs[k].caller_pid[j],&funs[k].caller_pid[j+1], ((char *) (&funs[k].caller_pid[i]))- ((char *) (&funs[k].caller_pid[j]))); if (k == stack->fun_index[stack->next_fun_index - 1]) { if (stack->next_fun_index >= 2 ) {/* update information for the caller function */ j = stack->fun_index[stack->next_fun_index - 2]; funs[j].called_funs_cycles[k] += cycdiff; } stack->fun_index[stack->next_fun_index]=-1; stack->next_fun_index--; } else EPRINTF("closing call to %s does not match the stack of pid %"PRId64"\n", find_name(funs[k].code,1,-1), thispid); } } /* code for return from kernel functions, updating the stack */ /* this is the exit corresponding to a previously stacked entry */ /* or a switch back to previously stacked switch from */ void return_from_function( struct stack_item *stack, unsigned long code, u_64 cyc_time ) { int k; u_64 delta = cyc_time - stack->start_cycle[stack->pos]; /* move up start time of all previous in nesting and pop stack */ update_stack(stack, delta, code); /* and update this function self total cycles */ for( k = 0; k < newfun_pos; k++ ) { if ( code == funs[k].code ) { funs[k].self_total += delta; accounted += delta; fprintf(stdbug, "update function %s ONLY by %"PRIu64", total now %"PRIu64"\n", find_name(code,1,-1), delta, funs[k].self_total); return; } } EPRINTF("function %s wasn't opened\n",find_name(code,1,-1)); } /* code for return from system calls */ void return_from_sys_call( struct stack_item *stack, unsigned long code, u_64 cyc_time ) { char category; const char *name; int should_be_hex; u_64 delta; if( stack->pos > 0 && codestart_cycle[stack->pos]; syscall_cycles[code] += delta; syscall_counter[code] += 1; accounted += delta; fprintf(stdbug, "update %c %s by %"PRIu64", total now %"PRIu64"\n", category, name, delta, syscall_cycles[code]); /* move up start time of all previous in nesting & pop stack */ update_stack(stack, delta, code); } else if( stack->pos == 0 ) {/* return to a process that entered the kernel before we started to record trace info, just ignore this return */ fprintf(stdbug, "unmatched return from sys_call, ignored\n"); } else EPRINTF("return from system call improperly nested: " "code %08lx, depth %d\n", code,stack->pos); } /* here to close a non-empty v3 stack (pos>0) when we stop taking stats */ /* cyc_time is current (relative) time since the starting base time */ void close_stack( struct stack_item *stack, u_64 thispid, u_64 cyc_time ) { unsigned long code; fprintf(stdbug, "close stack for pid %4"PRId64", pos %u, cyc_time %"PRIu64"\n", thispid, stack->pos, cyc_time); if( stack->pos > 0 && stack->code[stack->pos] == FXT_SWITCH_TO_CODE ) {/* top of current stack is switch_to, ie the process was blocked * use its time and pop it */ cyc_time = stack->lastreltime; stack->pos--; } while( stack->pos > 0 ) { /* code gets code at top of this stack */ code = stack->code[stack->pos]; fprintf(stdbug, "v3[%u] ", stack->pos); if( trace_space == FXT_SPACE_KERNEL && code < FKT_UNSHIFTED_LIMIT_CODE ) {/* this is a trap/syscall/irq entry */ int z, should_be_hex; char category; const char *name; z = fkt_find_syscall(fxt,code, &category, &name, &should_be_hex); fprintf(stdbug, "%c ", category); if( should_be_hex ) fprintf(stdbug, "%04x", z); else fprintf(stdbug, "%4d", z); fprintf(stdbug, " %08lx %28s\n", code, name); } else fprintf(stdbug, "%13s %08lx %28s\n", "function", code, find_name(code,1,-1)); /* if( code == FKT_SWITCH_TO_CODE ) EPRINTF("switch_to within a stack\n"); This *can* happend */ stack->pos--; /* and do as if it was never called... */ } stack->user_cycles = cyc_time-stack->start_cycle[0]; fprintf(stdbug, "pid %4"PRId64" process cycles %"PRIu64"\n\n", thispid, stack->user_cycles); } /* here we free the stack and put the process in grave */ void bury_stack( u_64 pid, u_64 cyc_time ) { struct dead_process *grave; struct stack_item *stack,*previous; u_64 delta; for( stack = stack_head, previous = NULL; stack != NULL; previous = stack, stack = stack->next ) if ( stack->pid == pid ) { fprintf(stdbug,"burying pid %"PRId64"\n", pid); if ( stack->code[stack->pos] != FXT_SWITCH_TO_CODE) EPRINTF("dead pid %"PRId64" has bad last code %lx\n", pid, stack->code[stack->pos]); /* simulate return from exit system call */ delta = cyc_time - stack->lastreltime; update_stack(stack, delta, FXT_SWITCH_TO_CODE); // FUT: TODO !! if (trace_space == FXT_SPACE_KERNEL) return_from_sys_call( stack, 1, cyc_time ); stack->user_cycles = cyc_time-stack->start_cycle[0]; MALLOC(grave,"grave for pid %"PRId64"",pid); grave->pid = pid; grave->user_cycles = stack->user_cycles; strcpy(grave->name,fxt_lookup_pid(fxt,pid)); fkt_remove_pid(fxt,pid); grave->next = grave_head; grave_head = grave; if (previous) previous->next = stack->next; else stack_head = stack->next; free(stack); return; } } void do_stats_code( unsigned long code, u_64 cyc_time, u_64 thispid, unsigned long param1, unsigned long param2, unsigned long *params ) { unsigned long i; int j, k; setup_stack(cyc_time, thispid); /* now guaranteed that cpu_stack[lastcpu] points to stack for this pid */ /* i gets code at top of this stack */ i = cpu_stack[lastcpu]->code[cpu_stack[lastcpu]->pos]; if( trace_space == FXT_SPACE_KERNEL && code < FKT_UNSHIFTED_LIMIT_CODE) { /* this is a trap/syscall/irq entry, put it in v2 stack. */ if( cpu_stack[lastcpu]->pos >= MAX_FUN_RECUR - 1 ) EPRINTF("nesting stack overflow\n"); else {/* push new item onto stack */ cpu_stack[lastcpu]->pos++; if( actual_max_pos < cpu_stack[lastcpu]->pos ) actual_max_pos = cpu_stack[lastcpu]->pos; cpu_stack[lastcpu]->start_cycle [cpu_stack[lastcpu]->pos] = cyc_time; cpu_stack[lastcpu]->code [cpu_stack[lastcpu]->pos] = code; fprintf(stdbug, "push stack for pid %"PRId64", pos %d, code %08lx, " "trap/syscall/irq\n", thispid, cpu_stack[lastcpu]->pos, code); } return; } else if( trace_space == FXT_SPACE_KERNEL && code == FKT_RET_FROM_SYS_CALL_CODE ) {/* code for return from system calls */ return_from_sys_call(cpu_stack[lastcpu], i, cyc_time); return; } else if( (trace_space == FXT_SPACE_KERNEL && code >= FKT_UNPAIRED_LIMIT_CODE && code < FKT_I386_FUNCTION_MINI) || (trace_space == FXT_SPACE_USER && code >= FUT_UNPAIRED_LIMIT_CODE && code < FUT_I386_FUNCTION_MINI) ) { switch( code ) { case FXT_END_PID_CODE: /* this process buried a child, do it as well */ /* total cycles count */ bury_pid(param1); /* stack */ bury_stack(param1, cyc_time); break; case FXT_NEW_PID_CODE: fkt_add_pid(fxt,param1,fxt_lookup_pid(fxt,thispid)); break; case FXT_SET_NAME_CODE: { char *name=(char *)(params + (trace_space == FXT_SPACE_USER)); if( fkt_add_pid(fxt,thispid,name) ) EPRINTF("new pid execve()ing\n"); update_pid_name(thispid,name); break; } } return; /* do nothing for unpaired entries */ } else {/* code for the exit of a function entry/exit */ if( ( trace_space == FXT_SPACE_KERNEL && ( (!(code>=FKT_I386_FUNCTION_MINI) && (code & FKT_GENERIC_EXIT_OFFSET) == 0 && code == i + FKT_GENERIC_EXIT_OFFSET) || ((code>=FKT_I386_FUNCTION_MINI) && (code & FKT_I386_FUNCTION_EXIT) == 0 && code == i - FKT_I386_FUNCTION_EXIT)) ) || ( trace_space == FXT_SPACE_USER && ( (!(code>=FUT_I386_FUNCTION_MINI) && (code & FUT_GENERIC_EXIT_OFFSET) == 0 && code == i + FUT_GENERIC_EXIT_OFFSET) || ((code>=FUT_I386_FUNCTION_MINI) && (code & FUT_I386_FUNCTION_EXIT) != 0 && code == i + FUT_I386_FUNCTION_EXIT)) ) ) { /* this is the exit corresponding to a previously stacked entry */ return_from_function(cpu_stack[lastcpu], i, cyc_time); } else {/* this should be an entry code */ if( ( trace_space == FXT_SPACE_KERNEL && ( (!(code>=FKT_I386_FUNCTION_MINI) && (code & FKT_GENERIC_EXIT_OFFSET) == 0) || ( (code&FKT_I386_FUNCTION_MINI) && (code & FKT_I386_FUNCTION_EXIT) == 0) ) ) || ( trace_space == FXT_SPACE_USER && ( (!(code>=FUT_I386_FUNCTION_MINI) && (code & FUT_GENERIC_EXIT_OFFSET) == 0) || ( (code&FUT_I386_FUNCTION_MINI) && (code & FUT_I386_FUNCTION_EXIT) != 0) ) ) ) {/* this is an exit code, not an entry code */ /* if the stack is not empty, it means something bad happened */ if (cpu_stack[lastcpu]->pos>0) { EPRINTF("exiting from function code %08lx, %s,\n", code, find_name(code, 1, -1)); EPRINTF("but code %08lx, %s was on the stack\n", i, find_name(i, 1, -1)); } /* else ignore it */ return; } if( cpu_stack[lastcpu]->pos >= MAX_FUN_RECUR - 1 ) EPRINTF("nesting stack overflow\n"); else {/* this is a function entry, or a switch_to */ cpu_stack[lastcpu]->pos++; if( actual_max_pos < cpu_stack[lastcpu]->pos ) actual_max_pos = cpu_stack[lastcpu]->pos; cpu_stack[lastcpu]->start_cycle [cpu_stack[lastcpu]->pos] = cyc_time; cpu_stack[lastcpu]->code[cpu_stack[lastcpu]->pos] = code; fprintf(stdbug, "push stack for pid %"PRId64", pos %d, code %08lx, %s\n", thispid, cpu_stack[lastcpu]->pos, code, code==FXT_SWITCH_TO_CODE?"switch_to":"function"); } } } if( code == FXT_SWITCH_TO_CODE ) return; /* this is a function entry or matched exit */ /* search the funs array to see if we have seen this code before */ for( k = 0; k < newfun_pos; k++ ) { if( code == funs[k].code || ( trace_space == FXT_SPACE_KERNEL && ( (!(code>=FKT_I386_FUNCTION_MINI) && code == funs[k].code + FKT_GENERIC_EXIT_OFFSET) || ((code>=FKT_I386_FUNCTION_MINI) && code == funs[k].code - FKT_I386_FUNCTION_EXIT) ) ) || ( trace_space == FXT_SPACE_USER && ( (!(code>=FUT_I386_FUNCTION_MINI) && code == funs[k].code + FUT_GENERIC_EXIT_OFFSET) || ((code>=FUT_I386_FUNCTION_MINI) && code == funs[k].code + FUT_I386_FUNCTION_EXIT) ) ) ) {/* funs[k] is the entry code that matches this code's entry or exit */ if ( code == funs[k].code ) {/* this code is the entry code */ /* push pointer to this code's funs array slot on fun_index */ cpu_stack[lastcpu]->fun_index [cpu_stack[lastcpu]->next_fun_index]=k; if ( cpu_stack[lastcpu]->next_fun_index >= 1 ) {/* update the caller stats */ j = cpu_stack[lastcpu]->fun_index [cpu_stack[lastcpu]->next_fun_index-1]; funs[j].called_funs_ctr[k]++; } cpu_stack[lastcpu]->next_fun_index++; /* find top of start_cycle stack in funs slot for this function */ for ( i = 0; i < MAX_EACH_FUN_RECUR; i ++ ) { if ( funs[k].start_cycle[i] == -1LL ) break; } if( i >= MAX_EACH_FUN_RECUR ) { EPRINTF("too many open calls to function %s, please increase MAX_EACH_FUN_RECUR\n", find_name(funs[k].code,1,-1)); exit(EXIT_FAILURE); } if( actual_max_cycles_pos < i ) actual_max_cycles_pos = i; /* time of last call to this function at top of start_cycle */ funs[k].start_cycle[i] = cyc_time; funs[k].caller_pid[i] = thispid; /* count total number of calls to this function */ } else /* this code is the exit corresponding to entry k in funs array */ /* find top of start_cycle stack (start time of last call to this function) */ if( cpu_stack[lastcpu]->next_fun_index > 0 ) exit_function(cpu_stack[lastcpu], k, thispid, cyc_time); return; } } /* if loop terminates this is first time we have seen this code */ /* initialize and push a new slot at top of funs array */ if( newfun_pos >= MAX_FUNS ) {/* funs stack overflow */ EPRINTF("too many unique functions called, max of %d\n", MAX_FUNS); exit(EXIT_FAILURE); } if( actual_max_funs_pos < newfun_pos ) actual_max_funs_pos = newfun_pos; funs[newfun_pos].code = code; funs[newfun_pos].total = 0; funs[newfun_pos].counter = 0; for ( i = 0; i < MAX_EACH_FUN_RECUR; i++ ) { funs[newfun_pos].start_cycle[i] = -1LL; funs[newfun_pos].caller_pid[i] = 0; } for( i = 0; i < MAX_FUNS; i++ ) { funs[newfun_pos].called_funs_cycles[i] = 0LL; funs[newfun_pos].called_funs_ctr[i] = 0; } if( (trace_space == FXT_SPACE_KERNEL && ( (!(code >= FKT_I386_FUNCTION_MINI) && code & FKT_GENERIC_EXIT_OFFSET) || ( (code >= FKT_I386_FUNCTION_MINI) && code & FKT_I386_FUNCTION_EXIT) ) ) || (trace_space == FXT_SPACE_USER && ( (!(code >= FUT_I386_FUNCTION_MINI) && code & FUT_GENERIC_EXIT_OFFSET) || ( (code >= FUT_I386_FUNCTION_MINI) && !(code & FUT_I386_FUNCTION_EXIT)) ) ) ) {/* if this is an entry */ /* also push pointer to this called function on fun_index */ cpu_stack[lastcpu]->fun_index [cpu_stack[lastcpu]->next_fun_index] = newfun_pos; if ( cpu_stack[lastcpu]->next_fun_index >= 1 ) { j = cpu_stack[lastcpu]->fun_index [cpu_stack[lastcpu]->next_fun_index - 1]; if (funs[j].called_funs_ctr[k] == 0 ) funs[j].called_funs_ctr[k]++; } cpu_stack[lastcpu]->next_fun_index++; /* save pid of caller and time of this call to this function */ funs[newfun_pos].start_cycle[0] = cyc_time; funs[newfun_pos].caller_pid[0] = thispid; } newfun_pos++; } /* make sure this cpu is in the correct statistics taking state */ void adjust_cpu_state( unsigned int thiscpu, u_64 reltime ) { if( fun_time != fun_time_cpu[thiscpu] ) {/* first time this cpu is active since a stat-taking state change */ if( fun_time_cpu[thiscpu] == 0 ) {/* this cpu not active yet, must get a start time for it */ start_time_cpu[thiscpu] = reltime; fprintf(stdbug, "cpu %u start time %"PRIu64"\n", thiscpu, reltime); } if( fun_time < 0 ) {/* this cpu still active but stat-taking has stopped */ end_time_cpu[thiscpu] = reltime; fprintf(stdbug, "cpu %u end time %"PRIu64"\n", thiscpu, reltime); } /* force cpu state to be the same as the global state */ fun_time_cpu[thiscpu] = fun_time; } } /* check coherency between accounted, processes cycles and cpu cycles */ void check_coherency(void) { int i; int64_t total_accounted; struct stack_item *stack; if (fun_time<1) return; total_accounted=accounted; for ( i = 0; i < info->ncpus; i++ ) { if (fun_time_cpu[i] == 1) total_accounted -= lastreltime[i]-start_time_cpu[i]; } for ( stack = stack_head; stack; stack = stack->next ) { if (stack->user_cycles) total_accounted += stack->user_cycles; else total_accounted += stack->lastreltime-stack->start_cycle[0]; } if (total_accounted != 0) EPRINTF("incoherent computing: %"PRId64" cycles\n",total_accounted); } static void error_format(const char* str) { fprintf(stderr, "Format %i (%s) not yet supported (%s)\n", trace_space, trace_space_name[trace_space], str); exit(EXIT_FAILURE); } /* bufptr[0] is the first item for each line ie cycles bufptr[1] is pid in low half, processor number in high half bufptr[2] is code bufptr[3] is P1 bufptr[4] is P2 ... bufptr[n] is P(n-2) */ /* * * dump one slot * */ void dumpslot( struct fxt_ev_native *ev ) { uint64_t curtime = ev->time; unsigned int thiscpu = ev->cpu; u_64 thispid = ev->kernel.pid; unsigned long code = ev->code; unsigned int params = ev->nb_params; unsigned long *param = ev->param; unsigned int i; u_64 reltime, r; int print_this = printing; if (trace_space == FXT_SPACE_USER) thispid = ev->user.tid; fprintf(stdbug,"\n"); #if 0 printf("value: %16"PRIx64" %8x %8x (%i, %i) %8x %8x %8x %8x %8x\n", *(u_64*)bufptr, bufptr[2], bufptr[3], bufptr[3]>>8, bufptr[3]&0xff, bufptr[4], bufptr[5], bufptr[6], bufptr[7], bufptr[8]); #endif if (!basetime) { basetime = curtime; fprintf(stdout, "initial: basetime %"PRIu64"\n", basetime); } if( thiscpu >= info->ncpus ) { info->ncpus = thiscpu+1; if (info->space==FXT_SPACE_KERNEL) { REALLOC(basehigh,info->ncpus); } REALLOC(lasttime,info->ncpus); REALLOC(lastreltime,info->ncpus); REALLOC(start_time_cpu,info->ncpus); REALLOC(end_time_cpu,info->ncpus); REALLOC(lastpid,info->ncpus); REALLOC(already_saw,info->ncpus); REALLOC(fun_time_cpu,info->ncpus); REALLOC(cpu_stack,info->ncpus); } else if( !already_saw[thiscpu] ) {/* this is first time we have seen this cpu */ lasttime[thiscpu] = curtime; already_saw[thiscpu] = 1; /* mark that we have seen this cpu*/ lastcpu = thiscpu; } else if( lastcpu != thiscpu ) {/* changing cpus */ fprintf(stdbug, "changing from cpu %u to cpu %u\n", lastcpu, thiscpu); lastcpu = thiscpu; } lasttime[thiscpu] = curtime; reltime = curtime - basetime; r = reltime-lastreltime[thiscpu]; if (trace_space == FXT_SPACE_KERNEL && !thispid) thispid=-thiscpu; if( code == FXT_CALIBRATE0_CODE || code == FXT_CALIBRATE1_CODE || code == FXT_CALIBRATE2_CODE ) print_this = 1; if( !printing && (printpid == -1 || (printpid > 0 && thispid == printpid)) ) { print_this = 1; if( !printonlypid ) printing = 1; } fprintf(stdbug, "dumpslot: thiscpu %u, lastpid %"PRId64"(%s), thispid %"PRId64"(%s), code 0x%04lx, delta %"PRIu64"u\n", thiscpu, lastpid[thiscpu], fxt_lookup_pid(fxt,lastpid[thiscpu]), thispid, fxt_lookup_pid(fxt,thispid), code, r); if( fun_time == 0 && (statspid == -1 || (statspid > 0 && thispid == statspid)) ) start_taking_stats(); /* start taking stats */ if( fun_time_cpu[thiscpu] > 0 ) update_pid_cycles(r, thispid); /* make sure this cpu is in the correct statistics taking state */ adjust_cpu_state(thiscpu, reltime); if( print_this ) switch (trace_space) { case FXT_SPACE_KERNEL: printf( "%8"PRIu64"u "CYCNUM" %2u %5"PRId64""COMMSTR, r, reltime, thiscpu, thispid, fxt_lookup_pid(fxt,thispid)); break; case FXT_SPACE_USER: printf( "%8"PRIu64"u "CYCNUM" %2u %.08"PRIx64""COMMSTR, r, reltime, thiscpu, thispid, fxt_lookup_pid(fxt,thispid)); break; default: error_format("printf"); } if (trace_space == FXT_SPACE_KERNEL && code < FKT_UNSHIFTED_LIMIT_CODE ) {/* unshifted code, no parameters */ char workspace[128]; if( code <= FKT_SYS_CALL_MASK ) if ( code == FKT_LCALL7 || code == FKT_LCALL27 ) { i = (code==FKT_LCALL7)?7:0x27; sprintf(workspace, "lcall%x",i); if( print_this ) printf(" "NAMESTR" %-s", workspace, workspace); } else { i = code; sprintf(workspace, "system call %u", i); if( i > FKT_I386_NSYSCALLS ) i = FKT_I386_NSYSCALLS; if( print_this ) printf(" "NAMESTR" %-s", workspace, fkt_i386_syscalls[i]); } else if( code < FKT_TRAP_LIMIT_CODE ) { i = code - FKT_TRAP_BASE; sprintf(workspace, "trap %u", i); if( i > FKT_I386_NTRAPS ) i = FKT_I386_NTRAPS; if( print_this ) printf(" "NAMESTR" %-s", workspace, fkt_i386_traps[i]); } else if( code < FKT_IRQ_SYS ) { i = code - FKT_IRQ_TIMER; sprintf(workspace, "IRQ %u", i); if( print_this ) printf(" "NAMESTR" %-s", workspace, fkt_find_irq(fxt,i)); } else { i = code - FKT_IRQ_SYS; sprintf(workspace, "sysIRQ 0x%x", i+0xee); if( print_this ) printf(" "NAMESTR" %-s", workspace, fkt_i386_sysirqs[i]); } } else if( code == FXT_GCC_INSTRUMENT_ENTRY_CODE || code == FXT_GCC_INSTRUMENT_EXIT_CODE) { const char *s; if( print_this ) printf(" "NAMESTR, code==FXT_GCC_INSTRUMENT_ENTRY_CODE? "gcc-traced function entry":"gcc-traced function exit"); if (trace_space == FXT_SPACE_KERNEL) { code=param[0]-(code==FXT_GCC_INSTRUMENT_ENTRY_CODE?0:FKT_GCC_TRACED_FUNCTION_X86_EXIT); if( print_this && (s=fxt_lookup_symbol(fxt,code|FKT_GCC_TRACED_FUNCTION_X86_EXIT)) ) printf(" %s",s); } else { code=param[0]+(code==FXT_GCC_INSTRUMENT_ENTRY_CODE?0:FUT_GCC_TRACED_FUNCTION_X86_EXIT); if( print_this && (s=fxt_lookup_symbol(fxt,code&(~(FUT_GCC_TRACED_FUNCTION_X86_EXIT)))) ) printf(" %s",s); } } else {/* shifted code or parameter */ if( print_this ) printf(" "NAMESTR, find_name(code, 1, NAMELEN)); } if( print_this ) { if( code == FXT_SET_NAME_CODE || (trace_space == FXT_SPACE_KERNEL && code == FKT_OPEN_ENTRY_CODE) ) { char *comm = (char *)(param + (trace_space == FXT_SPACE_USER)); printf(" %s",comm); } if( trace_space == FXT_SPACE_KERNEL && code == FXT_SWITCH_TO_CODE && !param[0]) { param[0]= -thiscpu; /* Idle */ } for( i = 0; i < params; i++ ) { if( i == 0 ) printf(" "); /* first time only */ else printf(", "); /* not the first time */ if( param[i] > (typeof(param[i])) -256 ) printf("%d", (int)param[i]); else if( param[i] <= 0xffff ) printf("%lu", param[i]); else printf("%#08lx", param[i]); } printf("\n"); } if (trace_space == FXT_SPACE_KERNEL) page_stats(code,params >=4 ? param[3] : 0); if( fun_time > 0 ) do_stats_code(code, reltime, thispid, params >=1 ? param[0] : 0, params >=2 ? param[1] : 0, param); lastreltime[thiscpu] = reltime; if (trace_space == FXT_SPACE_USER && code == FXT_SWITCH_TO_CODE ) { thispid = param[0]; } lastpid[thiscpu] = thispid; /* uncomment this if you have incoherencies */ #if 0 check_coherency(); #endif } /* * * Dump the file * */ /* returns 0 if ok, else -1 */ int dump_native(fxt_blockev_t evs) { struct fxt_ev_native ev; struct stack_item *stack; int ret; int n; if( printpid ) { if (trace_space == FXT_SPACE_KERNEL) { printf("%8s " CYCSTR " %3s %4s" COMMSTR" %28s", "Delta", "Cycles", "Cpu","Pid", COMMNAME, "Name"); printf(" P1, P2, P3, ...\n"); printf("%8s " CYCSTR " %3s %4s" COMMSTR" %28s", "------", "-----", "---","---", COMMUNDERLINE, "----"); printf(" ---------------\n"); } else { printf("%8s " CYCSTR " %3s %8s" COMMSTR" %28s", "Delta", "Cycles", "Cpu","Pid", COMMNAME, "Name"); printf(" P1, P2, P3, ...\n"); printf("%8s " CYCSTR " %3s %8s" COMMSTR" %28s", "------", "-----", "---","---", COMMUNDERLINE, "----"); printf(" ---------------\n"); } } while (FXT_EV_OK == (ret=fxt_next_ev(evs, FXT_EV_TYPE_NATIVE, (struct fxt_ev *)&ev))) { #if 0 printf("value: %16"PRIx64" %8x %8x (%i, %i) %8x %8x %8x %8x %8x\n", *(u_64*)bufptr, bufptr[2], bufptr[3], bufptr[3]>>8, bufptr[3]&0xff, bufptr[4], bufptr[5], bufptr[6], bufptr[7], bufptr[8]); #endif dumpslot(&ev); } if (ret != FXT_EV_EOT) { printf("Stopping on code %i\n", ret); } // TODO: remettre fprintf(stderr,"\r%3.1f%%...", 100.*(((double)n)/((double)*npages))); if( fun_time > 0 ) /* never stopped stat taking */ stop_taking_stats(); /* end times on all cpus */ for( n = 0; n < info->ncpus; n++ ) adjust_cpu_state(n, lastreltime[n]); /* now close up all stacks */ for(stack = stack_head; stack != NULL; stack = stack->next ) close_stack(stack,stack->pid,lastreltime[stack->cpu]); printf("\n"); return 0; } /* * * Results printing functions * */ void draw_histogram( int n, u_64 histo_sum, u_64 histo_max, char **histo_name, u_64 *histo_cycles) { int i, k, length; u_64 sum; printf("\n"); printf("%28s %14s %7s\n", "Name", "Cycles", "Percent"); printf("%28s %14s %7s\n", "----", "------", "-------"); sum = 0LL; for( k = 0; k < n; k++ ) { if (strlen(histo_name[k])>NAMELEN) histo_name[k][NAMELEN]='\0'; printf(NAMESTR" "CYCNUM" %6.2f%% ", histo_name[k], histo_cycles[k], 100.*((double)histo_cycles[k])/((double)histo_sum)); length = (histo_cycles[k]*MAX_HISTO_BAR_LENGTH)/histo_max; sum += histo_cycles[k]; for( i = 0; i < length; i++ ) putchar(HISTO_CHAR); putchar('\n'); } printf(NAMESTR" "CYCNUM" %6.2f%%\n\n", "Total elapsed cycles", sum, 100.*((double)sum)/((double)histo_sum)); } void print_stats(u_64 CycPerJiffy) { int i, z, k; u_64 sum_other_cycles = 0LL; u_64 timediff, totaltimetaken, totalcounted, sum; /***** double Timems; *****/ double Main_fun_sum; double called_fun_percent, only_fun_percent; struct stack_item *stack; struct dead_process *grave; u_64 histo_max; u_64 histo_sum; char category, commname[FXT_MAXCOMMLEN+2+5+1]; const char *name; char *histo_name[HISTO_SIZE]; u_64 histo_cycles[HISTO_SIZE]; printf("%44s\n\n","CPU CYCLES"); my_print_line('*'); printf("\n"); printf("%30s ", ""); for( i = 0; i < info->ncpus; i++ ) printf("%11s %2d", "cpu", i); printf("\n"); printf ("%30s:", "Cycles at start of stat taking"); for( i = 0; i < info->ncpus; i++ ) printf(CYCNUM, start_time_cpu[i]); printf("\n"); printf ("%30s:", "Cycles at end of stat taking"); for( i = 0; i < info->ncpus; i++ ) printf(CYCNUM, end_time_cpu[i]); printf("\n"); totaltimetaken = 0ll; printf ("%30s:", "Number of elapsed stat cycles"); for( i = 0; i < info->ncpus; i++ ) { timediff = end_time_cpu[i] - start_time_cpu[i]; totaltimetaken += timediff; printf(CYCNUM, timediff); } printf("\n\n"); printf ("%30s:"CYCNUM"\n", "Total elapsed stat cycles", totaltimetaken); /***** printf ("%36s : %10"PRIu64"\n", "Cycles Per Jiffy", CycPerJiffy); Timems = ((double)TimeDiff) * 10.0 / ((double)CycPerJiffy); printf ("%36s : %10.2fms\n", "Time taken is", Timems); *****/ print_cycles(CycPerJiffy); printf("\n\n%48s\n\n","FUNCTIONS CYCLES"); my_print_line('*'); printf("\n"); /* print table of all function names */ if( newfun_pos > 0 ) { printf(NAMESTR" "CYCSTR" "COUNTSTR" "AVGSTR"\n", "Name", "Cycles", "Count", "Average"); printf(NAMESTR" "CYCSTR" "COUNTSTR" "AVGSTR"\n", "----", "------", "-----", "-------"); for ( k = 0; k < newfun_pos; k++ ) { if( funs[k].code > 0 ) { printf(NAMESTR" "CYCNUM" "COUNTNUM, find_name(funs[k].code,0,NAMELEN), funs[k].total, funs[k].counter); if( funs[k].counter > 0 ) printf(" "AVGNUM, (double)funs[k].total/funs[k].counter); printf("\n"); } } /* duplicate printf("\n\n"); printf("%4s %25s "CYCSTR" "COUNTSTR"\n", "From", "To", "Cycles", "Count"); printf("%4s %25s "CYCSTR" "COUNTSTR"\n", "----", "--", "------", "-----"); for ( k = 0; k < newfun_pos; k++ ) { if( funs[k].code > 0 ) { printf("%s\n", find_name(funs[k].code,0)); for ( z = 0; z < newfun_pos; z++ ) { if ( funs[k].called_funs_ctr[z] != 0 ) { printf(NAMESTR" %04x "CYCNUM" "COUNTNUM"\n", find_name(funs[z].code,0,NAMELEN), funs[k].called_funs_cycles[z], funs[k].called_funs_ctr[z]); } } printf("\n"); } } */ printf("\n\n"); printf("%50s\n\n", "NESTING SUMMARY"); my_print_line('*'); printf("\n"); for ( k = 0; k < newfun_pos; k++ ) { if( funs[k].code > 0 ) { printf(NAMESTR" "CYCSTR" "COUNTSTR" "AVGSTR" %7s\n", "Name", "Cycles", "Count", "Average", "Percent"); printf(NAMESTR" "CYCSTR" "COUNTSTR" "AVGSTR" %7s\n", "----", "------", "-----", "-------", "-------"); Main_fun_sum = (double)funs[k].total; for ( z = 0; z < newfun_pos; z++ ) { if( funs[z].code > 0 && funs[k].called_funs_ctr[z] != 0 ) { called_fun_percent = (double)funs[k].called_funs_cycles[z] / Main_fun_sum * 100.0; printf(NAMESTR" "CYCNUM" "COUNTNUM" "AVGNUM" %6.2f%%\n", find_name(funs[z].code,0,NAMELEN), funs[k].called_funs_cycles[z], funs[k].called_funs_ctr[z], (double) funs[k].called_funs_cycles[z] / funs[k].called_funs_ctr[z], called_fun_percent); sum_other_cycles += funs[k].called_funs_cycles[z]; } } printf(NAMESTRONLY" ONLY ", find_name(funs[k].code,0,NAMELEN)); if( sum_other_cycles > funs[k].total ) printf(CYCNUM" ** sum of cycles too big compared to %"PRIu64" **\n\n",sum_other_cycles,funs[k].total); else { only_fun_percent = (double)(funs[k].total - sum_other_cycles) / Main_fun_sum * 100.0; printf(CYCNUM" "COUNTNUM" "AVGNUM" %6.2f%%\n\n", funs[k].total - sum_other_cycles, funs[k].counter, (double)(funs[k].total-sum_other_cycles)/funs[k].counter, only_fun_percent); } printf(NAMESTR" "CYCNUM" "COUNTNUM" "AVGNUM" %6.2f%%\n", find_name(funs[k].code,0,NAMELEN), funs[k].total, funs[k].counter, (double)funs[k].total/funs[k].counter, 100.0); sum_other_cycles = 0LL; printf("\n"); my_print_line('-'); printf("\n"); } } } printf("\n\n"); /***** printf(NAMESTR": "CYCNUM" cycles %9.3f ms %6.2f%%\n", "Total time taken", TimeDiff, Timems, 100.0); *****/ /* make sure every stack was closed */ for( stack = stack_head; stack != NULL; stack = stack->next ) { if( stack->pos > 0 ) EPRINTF("stack for pid %"PRId64" still has pos %d\n", stack->pid, stack->pos); } totalcounted = totaltimetaken; /* substract user time if wanted */ if (kernel_only) { for( stack = stack_head; stack; stack = stack->next ) totalcounted -= stack->user_cycles; for( grave = grave_head; grave; grave = grave->next ) totalcounted -= grave->user_cycles; printf (NAMESTR": "CYCNUM"\n", "Total kernel stat cycles", totalcounted); } /* now print out the precise accounting statistics from the v3 arrays */ sum = 0LL; k = 0; histo_max = 1LL; histo_sum = 0LL; printf("\n\n\n"); printf("%60s\n\n", "Accounting for every cycle exactly once"); my_print_line('*'); printf("\n%c "NAMESTR" "CYCSTR" "COUNTSTR" "AVGSTR" %7s\n", ' ', "Name", "Cycles", "Count", "Average", "Percent"); printf( "%c "NAMESTR" "CYCSTR" "COUNTSTR" "AVGSTR" %7s\n", ' ', "----", "------", "-----", "-------", "-------"); if (trace_space == FXT_SPACE_KERNEL) for( i = 0; i < FKT_UNSHIFTED_LIMIT_CODE; i++ ) { if( syscall_counter[i] > 0 ) {/* this occurred at least once, print it */ int should_be_hex; z = fkt_find_syscall(fxt, i, &category, &name, &should_be_hex); if( (histo_name[k] = malloc(strlen(name)+10)) == NULL ) { fprintf(stderr, "no space to malloc histo_name\n"); exit(EXIT_FAILURE); } histo_cycles[k] = syscall_cycles[i]; sum += histo_cycles[k]; histo_sum += histo_cycles[k]; if( histo_max < histo_cycles[k] ) histo_max = histo_cycles[k]; printf("%c "NAMESTR" ", category, name); strcpy(histo_name[k],name); printf(CYCNUM" "COUNTNUM" "AVGNUM" %6.2f%%\n", histo_cycles[k], syscall_counter[i], ((double)histo_cycles[k])/((double)syscall_counter[i]), 100.*((double)histo_cycles[k])/((double)totaltimetaken)); if (++k>=HISTO_SIZE) { EPRINTF("please increase HISTO_SIZE\n"); return; } } } for( i = 0; i < newfun_pos; i++ ) { z = funs[i].code; name = find_name(z,0,NAMELEN); if( (histo_name[k] = malloc(strlen(name)+10)) == NULL ) { fprintf(stderr, "no space to malloc histo_name\n"); exit(EXIT_FAILURE); } strcpy(histo_name[k],name); histo_cycles[k] = funs[i].self_total; sum += histo_cycles[k]; histo_sum += histo_cycles[k]; if( histo_max < histo_cycles[k] ) histo_max = histo_cycles[k]; printf("%c "NAMESTR" "CYCNUM" "COUNTNUM" "AVGNUM" %6.2f%%\n", 'F', name, histo_cycles[k], funs[i].counter, ((double)histo_cycles[k])/((double)funs[i].counter), 100.0*((double)histo_cycles[k])/(double)totaltimetaken); if (++k>=HISTO_SIZE) { EPRINTF("please increase HISTO_SIZE\n"); return; } } /* now print out process information from stacks */ for( stack = stack_head; stack != NULL; stack = stack->next ) { find_category( (z=stack->pid), &category, &name ); sum += stack->user_cycles; if( kernel_only ) histo_name[k]=commname; else { if( (histo_name[k] = malloc(FXT_MAXCOMMLEN+2+5+1)) == NULL ) { fprintf(stderr, "no space to malloc histo_name\n"); exit(EXIT_FAILURE); } histo_cycles[k] = stack->user_cycles; histo_sum += histo_cycles[k]; if( histo_max < histo_cycles[k] ) histo_max = histo_cycles[k]; } if( trace_space == FXT_SPACE_KERNEL ) sprintf(histo_name[k], "%s(%"PRId64")", name, stack->pid); else sprintf(histo_name[k], "%s(%.08"PRIx64")", name, stack->pid); printf("%c "NAMESTR" "CYCNUM" "COUNTSTR" "AVGSTR" %6.2f%%\n", category, histo_name[k], stack->user_cycles, "", "", 100.0*((double)stack->user_cycles)/(double)totaltimetaken); if (!kernel_only && ++k>=HISTO_SIZE) { EPRINTF("please increase HISTO_SIZE\n"); return; } } for( grave = grave_head; grave; grave = grave->next ) { sum += grave->user_cycles; if( kernel_only ) histo_name[k]=commname; else { if( (histo_name[k] = malloc(FXT_MAXCOMMLEN+2+5+1)) == NULL ) { fprintf(stderr, "no space to malloc histo_name\n"); exit(EXIT_FAILURE); } histo_cycles[k] = grave->user_cycles; histo_sum += grave->user_cycles; if( histo_max < histo_cycles[k] ) histo_max = histo_cycles[k]; } if( trace_space == FXT_SPACE_KERNEL ) sprintf(histo_name[k], "%s(%"PRId64")", grave->name, grave->pid); else sprintf(histo_name[k], "%s(%.08"PRIx64")", grave->name, grave->pid); printf("%c "NAMESTR" "CYCNUM" "COUNTSTR" "AVGSTR" %6.2f%%\n", 'o', histo_name[k], grave->user_cycles, "", "", 100.0*((double)grave->user_cycles)/(double)totaltimetaken); if( !kernel_only && ++k>=HISTO_SIZE) { EPRINTF("please increase HISTO_SIZE\n"); return; } } printf("%c "NAMESTR" "CYCNUM" "COUNTSTR" "AVGSTR" %6.2f%%\n", ' ', "Total elapsed cycles", sum, "", "", 100.0*((double)sum)/(double)totaltimetaken); if (sum!=totaltimetaken) EPRINTF("Final total not coherent\n"); printf("\n\n%65s\n", "Histogram accounting for every cycle exactly once"); if (kernel_only) printf("%64s\n", "excluding all user processes and idle processes"); printf("\n"); my_print_line('*'); draw_histogram(k, histo_sum, histo_max, histo_name, histo_cycles); } void get_the_time( time_t the_time, char *message ) { struct tm *breakout; char buffer[128]; if( (breakout = localtime(&the_time)) == NULL ) { fprintf(stderr, "Unable to break out %s\n", message); exit(EXIT_FAILURE); } if( strftime(buffer, 128, "%d-%b-%Y %H:%M:%S", breakout) == 0 ) { fprintf(stderr, "Unable to convert %s\n", message); exit(EXIT_FAILURE); } printf("%14s = %s\n", message, buffer); } #define OPTIONS ":f:p:s:dqhkb:t:" #ifndef WHITE_SPACE #define WHITE_SPACE " \t\n\f\v\r" #endif void usage(char *progname) { printf("Usage: %s [-f record-file] [-p pid] [-s pid] [-c] [-d] [-k] [-q] [-b record.bufdat] [ -t record.timedat ]\n\ \n\ if -f is not given, look for TRACE_FILE environment variable, and\n\ if that is not given, read from \"" DEFAULT_TRACE_FILE "\".\n\ \n\ if -p is given, printing starts with first item belonging to the given\n\ pid. If the pid starts with +, printing will be done only for that\n\ pid. If the pid is 0, no printing will be done. If the pid is -1,\n\ printing will be always done (default).\n\ \n\ if -s is given, statistics will accumulute between the first entry\n\ belonging to the given pid, until its death. If the pid is 0, no\n\ statistics will be done (but -b and -t options will still work).\n\ If the pid is -1, statistics will be always done (default).\n\ \n\ if -d is given, turn on debug printout to stdout for stack nesting\n\ if that is not given, no debug printout is printed\n\ \n\ if -k is given, percentages will be relative to the kernel time.\n\ user time won't be taken into account\n\ \n\ if -b is given, statistics about the page buffer will be printed in\n\ the file, easily printable with gnuplot\n\ \n\ if -t is given, statistics about the time each page took to be filled will\n\ be printed in the file, easily printable with gnuplot\n\ ", progname); } int main( int argc, char *argv[] ) { char *infile,*ptr; int c; unsigned long npages=0; struct stat st; off_t off=0; size_t size; u_64 ratio; kidpid = 0; infile = NULL; stdbug = NULL; opterr = 0; while( (c = getopt(argc, argv, OPTIONS)) != EOF ) switch( c ) { case 's': statspid = strtol(optarg, &ptr, 0); if( strspn(ptr, WHITE_SPACE) != strlen(ptr) ) { fprintf(stderr, "illegal pid parameter %s\n", optarg); exit(EXIT_FAILURE); } break; case 'p': printpid = strtol(optarg, &ptr, 0); if( strspn(ptr, WHITE_SPACE) != strlen(ptr) ) { fprintf(stderr, "illegal pid parameter %s\n", optarg); exit(EXIT_FAILURE); } printonlypid = optarg[0]=='+'; break; case 'd': stdbug = stdout; break; case 'f': infile = optarg; break; case 'k': kernel_only=1; break; case 'b': pagebufstats = optarg; break; case 't': pagetimestats = optarg; break; case 'h': usage(argv[0]); exit(EXIT_SUCCESS); case ':': fprintf(stderr, "missing parameter to switch %c\n", optopt); usage(argv[0]); exit(EXIT_FAILURE); case '?': fprintf(stderr, "illegal switch %c\n", optopt); usage(argv[0]); exit(EXIT_FAILURE); } /* switch */ if( optind < argc ) fprintf(stderr, "extra command line arguments ignored\n"); if( stdbug == NULL ) { if( (stdbug = fopen("/dev/null", "w")) == NULL ) { perror("/dev/null"); stdbug = stdout; } } if( infile == NULL ) { if( (infile = getenv("TRACE_FILE")) == NULL ) infile = DEFAULT_TRACE_FILE; } while( (fd = open(infile, O_RDONLY)) < 0 ) {/* could not open the indicated file name for reading */ perror(infile); if( strcmp(infile, DEFAULT_TRACE_FILE) == 0 ) /* can't open the default file, have to give up */ exit(EXIT_FAILURE); infile = DEFAULT_TRACE_FILE; fprintf(stderr, "input defaulting to %s\n", infile); } if (!(fxt = fxt_fdopen(fd))) { perror("fxt_fdopen"); exit(EXIT_FAILURE); } info = fxt_infos(fxt); printf("%14s = %i\n", "ncpus", info->ncpus); if (info->space==FXT_SPACE_KERNEL) { CALLOC(basehigh,info->ncpus); } CALLOC(lasttime,info->ncpus); CALLOC(lastreltime,info->ncpus); CALLOC(start_time_cpu,info->ncpus); CALLOC(end_time_cpu,info->ncpus); CALLOC(lastpid,info->ncpus); CALLOC(already_saw,info->ncpus); CALLOC(fun_time_cpu,info->ncpus); CALLOC(cpu_stack,info->ncpus); pid = info->record_pid; kidpid = info->traced_pid; get_the_time(info->start_time, "start time"); get_the_time(info->stop_time, "stop time"); printf("%14s = %lu\n", "stop jiffies", (unsigned long)info->stop_jiffies); printf("%14s = %lu\n", "total jiffies", (unsigned long)info->stop_jiffies - (unsigned long)info->start_jiffies); page_size = info->page_size; printf("%14s = %zu\n", "page size", page_size); trace_space = info->space; printf("%14s = %u (%s)\n", "trace space", trace_space, trace_space_name[trace_space]); printf("%s", info->uname); printf("\n"); if (fstat(fd, &st)) { perror("fstat"); exit(EXIT_FAILURE); } #ifdef BLKGETSIZE if( S_ISBLK(st.st_mode) ) { int sectors; if( ioctl(fd,BLKGETSIZE,§ors) ) { perror("getting device size\n"); exit(EXIT_FAILURE); } if( sectors >= 0xffffffffUL >> 9 ) size=0xffffffffUL; else size = sectors << 9; } else #endif size=st.st_size; printf("%14s = %"PRIu64"\n", "bytes", (uint64_t)(size-off)); CALLOC(page_status,(int)((size-off+page_size-1)/page_size + 1)); current_page_status=page_status; memset(current_page_status,0,sizeof(*current_page_status)); if( size > off ) { fxt_blockev_t evs; evs=fxt_blockev_enter(fxt); //if (dump) { // dump64(evs, time_offset, time_delta); //} else { dump_native(evs); //} } ratio = 0LL; if (stop_jiffies) {/* fkt_record could write the stop time, good */ ratio = (u_64)(stop_jiffies - start_jiffies); if( ratio != 0LL ) ratio = lastreltime[lastcpu] / ratio; printf("%"PRIu64" clock cycles in %u jiffies = %"PRIu64" cycles per jiffy\n", lastreltime[lastcpu], (unsigned int)(stop_jiffies - start_jiffies), ratio); printf("\n"); } print_stats(ratio); /* print final statistics about storage usage */ printf("\n\n"); printf("internal storage usage statistics\n\n"); printf("%21s %3u, last possible %3d, percentage used %7.2f%%\n", "last used pos", actual_max_pos, MAX_FUN_RECUR-1, ((double)actual_max_pos)*100.0/((double)(MAX_FUN_RECUR-1))); printf("%21s %3u, last possible %3d, percentage used %7.2f%%\n", "last used cycles_pos", actual_max_cycles_pos, MAX_EACH_FUN_RECUR-1, ((double)actual_max_cycles_pos)*100.0/ ((double)(MAX_EACH_FUN_RECUR-1))); printf("%21s %3u, last possible %3d, percentage used %7.2f%%\n", "last used newfun_pos", actual_max_funs_pos, MAX_FUNS-1, ((double)actual_max_funs_pos)*100.0/((double)(MAX_FUNS-1))); if (npages) page_stats_print(npages); return EXIT_SUCCESS; } /* vim: ts=4 */ fxt-0.3.15/tools/PaxHeaders/fkt_code_name.h0000644000000000000000000000013213064530241015544 xustar0030 mtime=1490202785.401127012 30 atime=1746715490.207509121 30 ctime=1746716504.743783451 fxt-0.3.15/tools/fkt_code_name.h0000644000175000017500000003763613064530241015251 0ustar00samysamy/* * Copyright (C) 2000, 2001 Robert Russell * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ {FKT_SETUP_CODE, "fkt_setup"}, {FKT_KEYCHANGE_CODE, "fkt_keychange"}, {FKT_RESET_CODE, "fkt_reset"}, {FKT_CALIBRATE0_CODE, "fkt_calibrate0"}, {FKT_CALIBRATE1_CODE, "fkt_calibrate1"}, {FKT_CALIBRATE2_CODE, "fkt_calibrate2"}, {FKT_RECORD_WRITING_CODE, "fkt_record_writing"}, {FKT_RECORD_WRITTEN_CODE, "fkt_record_written"}, {FKT_RECORD_EXTRA_WRITTEN_CODE, "fkt_record_extra_written"}, {FKT_RECORD_EXTRA_PAGE_CODE, "fkt_record_extra_page"}, {FKT_RECORD_FORCE_SYNC_CODE, "fkt_record_force_sync"}, {FKT_RECORD_KILLED_CODE, "fkt_record_killed"}, {FKT_END_IO_SYNC_CODE, "end_buffer_io_sync"}, {FKT_END_IO_ASYNC_CODE, "end_buffer_io_async"}, {FKT_DO_FORK_CODE, "do_fork"}, {FKT_DO_EXECVE_CODE, "do_execve"}, {FKT_END_OF_PID_CODE, "end_of_pid"}, {FKT_USER_FORK_CODE, "user_fork"}, {FKT_KILL_CODE, "kill"}, {FKT_RET_FROM_SYS_CALL_CODE, "ret_from_sys_call"}, {FKT_FKT_FORCE_SYNC_ENTRY_CODE, "fkt_force_sync_entry"}, {FKT_FKT_FORCE_SYNC_EXIT_CODE, "fkt_force_sync_exit"}, {FKT_FKT_EXTRA_ALLOC_ENTRY_CODE,"fkt_extra_alloc_entry"}, {FKT_FKT_EXTRA_ALLOC_EXIT_CODE, "fkt_extra_alloc_exit"}, {FKT_TASKLET_ENTRY_CODE, "tasklet_entry"}, {FKT_TASKLET_EXIT_CODE, "tasklet_exit"}, {FKT_TASKLET_HI_ENTRY_CODE, "tasklet_hi_entry"}, {FKT_TASKLET_HI_EXIT_CODE, "tasklet_hi_exit"}, {FKT_PAGE_ALLOC_ENTRY_CODE, "page_alloc_entry"}, {FKT_PAGE_ALLOC_EXIT_CODE, "page_alloc_exit"}, {FKT_PAGE_FREE_ENTRY_CODE, "page_free_entry"}, {FKT_PAGE_FREE_EXIT_CODE, "page_free_exit"}, {FKT_LL_RW_BLOCK_ENTRY_CODE, "ll_rw_block_entry"}, {FKT_LL_RW_BLOCK_EXIT_CODE, "ll_rw_block_exit"}, // {FKT_EXT2_WRITE_ENTRY_CODE, "ext2_file_write_entry"}, // {FKT_EXT2_WRITE_EXIT_CODE, "ext2_file_write_exit"}, {FKT_EXT2_GETBLK_ENTRY_CODE, "ext2_getblk_entry"}, {FKT_EXT2_GETBLK_EXIT_CODE, "ext2_getblk_exit"}, // {FKT_INODE_GETBLK_ENTRY_CODE, "inode_getblk_entry"}, // {FKT_INODE_GETBLK_EXIT_CODE, "inode_getblk_exit"}, // {FKT_BLOCK_GETBLK_ENTRY_CODE, "block_getblk_entry"}, // {FKT_BLOCK_GETBLK_EXIT_CODE, "block_getblk_exit"}, {FKT_OPEN_ENTRY_CODE, "open_entry"}, {FKT_OPEN_EXIT_CODE, "open_exit"}, {FKT_CLOSE_ENTRY_CODE, "close_entry"}, {FKT_CLOSE_EXIT_CODE, "close_exit"}, {FKT_IOCTL_ENTRY_CODE, "ioctl_entry"}, {FKT_IOCTL_EXIT_CODE, "ioctl_exit"}, {FKT_SELECT_ENTRY_CODE, "select_entry"}, {FKT_SELECT_EXIT_CODE, "select_exit"}, {FKT_POLL_ENTRY_CODE, "poll_entry"}, {FKT_POLL_EXIT_CODE, "poll_exit"}, {FKT_SWITCH_TO_CODE, "switch_to"}, {FKT_WAIT4_ENTRY_CODE, "wait4_entry"}, {FKT_WAIT4_EXIT_CODE, "wait4_exit"}, {FKT_GENERIC_MAKE_REQUEST_ENTRY_CODE, "generic_make_request_entry"}, {FKT_GENERIC_MAKE_REQUEST_EXIT_CODE, "generic_make_request_exit"}, {FKT___MAKE_REQUEST_ENTRY_CODE, "__make_request_entry"}, {FKT___MAKE_REQUEST_EXIT_CODE, "__make_request_exit"}, {FKT_FSYNC_BUFFERS_LIST_ENTRY_CODE, "fsync_buffers_list_entry"}, {FKT_FSYNC_BUFFERS_LIST_EXIT_CODE, "fsync_buffers_list_exit"}, /* sadhna start */ /* socket interface routines */ {FKT_SOCKET_ENTRY_CODE, "socket_entry"}, {FKT_SOCKET_EXIT_CODE, "socket_exit"}, {FKT_BIND_ENTRY_CODE, "bind_entry"}, {FKT_BIND_EXIT_CODE, "bind_exit"}, {FKT_LISTEN_ENTRY_CODE, "listen_entry"}, {FKT_LISTEN_EXIT_CODE, "listen_exit"}, {FKT_ACCEPT_ENTRY_CODE, "accept_entry"}, {FKT_ACCEPT_EXIT_CODE, "accept_exit"}, {FKT_CONNECT_ENTRY_CODE, "connect_entry"}, {FKT_CONNECT_EXIT_CODE, "connect_exit"}, {FKT_SEND_ENTRY_CODE, "send_entry"}, {FKT_SEND_EXIT_CODE, "send_exit"}, {FKT_SENDTO_ENTRY_CODE, "sendto_entry"}, {FKT_SENDTO_EXIT_CODE, "sendto_exit"}, {FKT_RECVFROM_ENTRY_CODE, "recvfrom_entry"}, {FKT_RECVFROM_EXIT_CODE, "recvfrom_exit"}, {FKT_SHUTDOWN_ENTRY_CODE, "shutdown_entry"}, {FKT_SHUTDOWN_EXIT_CODE, "shutdown_exit"}, /* lamp routines */ {FKT_LAMP_CREATE_ENTRY_CODE, "lamp_create_entry"}, {FKT_LAMP_CREATE_EXIT_CODE, "lamp_create_exit"}, {FKT_LAMP_BIND_ENTRY_CODE, "lamp_bind_entry"}, {FKT_LAMP_BIND_EXIT_CODE, "lamp_bind_exit"}, {FKT_LAMP_LISTEN_ENTRY_CODE, "lamp_listen_entry"}, {FKT_LAMP_LISTEN_EXIT_CODE, "lamp_listen_exit"}, {FKT_LAMP_ACCEPT_ENTRY_CODE, "lamp_accept_entry"}, {FKT_LAMP_ACCEPT_EXIT_CODE, "lamp_accept_exit"}, {FKT_LAMP_CONNECT_ENTRY_CODE, "lamp_connect_entry"}, {FKT_LAMP_CONNECT_EXIT_CODE, "lamp_connect_exit"}, {FKT_LAMP_SENDMSG_ENTRY_CODE, "lamp_sendmsg_entry"}, {FKT_LAMP_SENDMSG_EXIT_CODE, "lamp_sendmsg_exit"}, {FKT_LAMP_RECVMSG_ENTRY_CODE, "lamp_recvmsg_entry"}, {FKT_LAMP_RECVMSG_EXIT_CODE, "lamp_recvmsg_exit"}, {FKT_LAMP_DATA_RCV_ENTRY_CODE, "lamp_data_rcv_entry"}, {FKT_LAMP_DATA_RCV_EXIT_CODE, "lamp_data_rcv_exit"}, {FKT_LAMP_SIGNAL_RCV_ENTRY_CODE,"lamp_signal_rcv_entry"}, {FKT_LAMP_SIGNAL_RCV_EXIT_CODE, "lamp_signal_rcv_exit"}, {FKT_LAMP_SHUTDOWN_ENTRY_CODE, "lamp_shutdown_entry"}, {FKT_LAMP_SHUTDOWN_EXIT_CODE, "lamp_shutdown_exit"}, {FKT_LAMP_RECVMSG_SCHEDI_CODE, "lamp_recvmsg_sched_entry"}, {FKT_LAMP_RECVMSG_SCHEDO_CODE, "lamp_recvmsg_sched_exit"}, /* inet routines */ {FKT_INET_CREATE_ENTRY_CODE, "inet_create_entry"}, {FKT_INET_CREATE_EXIT_CODE, "inet_create_exit"}, {FKT_INET_BIND_ENTRY_CODE, "inet_bind_entry"}, {FKT_INET_BIND_EXIT_CODE, "inet_bind_exit"}, {FKT_INET_LISTEN_ENTRY_CODE, "inet_listen_entry"}, {FKT_INET_LISTEN_EXIT_CODE, "inet_listen_exit"}, {FKT_INET_ACCEPT_ENTRY_CODE, "inet_accept_entry"}, {FKT_INET_ACCEPT_EXIT_CODE, "inet_accept_exit"}, {FKT_INET_STREAM_CONNECT_ENTRY_CODE,"inet_stream_connect_entry"}, {FKT_INET_STREAM_CONNECT_EXIT_CODE, "inet_stream_connect_exit"}, {FKT_INET_SENDMSG_ENTRY_CODE, "inet_sendmsg_entry"}, {FKT_INET_SENDMSG_EXIT_CODE, "inet_sendmsg_exit"}, {FKT_INET_RECVMSG_ENTRY_CODE, "inet_recvmsg_entry"}, {FKT_INET_RECVMSG_EXIT_CODE, "inet_recvmsg_exit"}, {FKT_INET_SHUTDOWN_ENTRY_CODE, "inet_shutdown_entry"}, {FKT_INET_SHUTDOWN_EXIT_CODE, "inet_shutdown_exit"}, /* net routines */ {FKT_NET_RX_ACTION_ENTRY_CODE, "net_rx_action_entry"}, {FKT_NET_RX_ACTION_EXIT_CODE, "net_rx_action_exit"}, // {FKT_NET_BH_QUEUE_ENTRY_CODE, "net_bh_queue_entry"}, // {FKT_NET_BH_QUEUE_EXIT_CODE, "net_bh_queue_exit"}, {FKT_NETIF_RX_ENTRY_CODE, "netif_rx_entry"}, {FKT_NETIF_RX_EXIT_CODE, "netif_rx_exit"}, {FKT_NET_RX_DEQUEUE_ENTRY_CODE, "net_rx_dequeue_entry"}, {FKT_NET_RX_DEQUEUE_EXIT_CODE, "net_rx_dequeue_exit"}, /* sadhna end */ /* miru start */ /* tcp routines */ {FKT_TCP_SENDMSG_ENTRY_CODE, "tcp_sendmsg_entry"}, {FKT_TCP_SENDMSG_EXIT_CODE, "tcp_sendmsg_exit"}, {FKT_TCP_SEND_SKB_ENTRY_CODE, "tcp_send_skb_entry"}, {FKT_TCP_SEND_SKB_EXIT_CODE, "tcp_send_skb_exit"}, {FKT_TCP_TRANSMIT_SKB_ENTRY_CODE,"tcp_transmit_skb_entry"}, {FKT_TCP_TRANSMIT_SKB_EXIT_CODE,"tcp_transmit_skb_exit"}, {FKT_TCP_WRITE_XMIT_ENTRY_CODE, "tcp_write_xmit_entry"}, {FKT_TCP_WRITE_XMIT_EXIT_CODE, "tcp_write_xmit_exit"}, {FKT_TCP_V4_RCV_ENTRY_CODE, "tcp_v4_rcv_entry"}, {FKT_TCP_V4_RCV_EXIT_CODE, "tcp_v4_rcv_exit"}, // {FKT_TCP_RECVMSG_SCHEDI_CODE, "tcp_data_wait_entry"}, // {FKT_TCP_RECVMSG_SCHEDO_CODE, "tcp_data_wait_exit"}, {FKT_TCP_RCV_ESTABLISHED_ENTRY_CODE,"tcp_rcv_established_entry"}, {FKT_TCP_RCV_ESTABLISHED_EXIT_CODE,"tcp_rcv_established_exit"}, {FKT_TCP_DATA_ENTRY_CODE, "tcp_data_entry"}, {FKT_TCP_DATA_EXIT_CODE, "tcp_data_exit"}, {FKT_TCP_ACK_ENTRY_CODE, "tcp_ack_entry"}, {FKT_TCP_ACK_EXIT_CODE, "tcp_ack_exit"}, {FKT_TCP_RECVMSG_ENTRY_CODE, "tcp_recvmsg_entry"}, {FKT_TCP_RECVMSG_EXIT_CODE, "tcp_recvmsg_exit"}, // {FKT_TCP_V4_RCV_CSUM_ENTRY_CODE,"tcp_v4_checksum_init_entry"}, // {FKT_TCP_V4_RCV_CSUM_EXIT_CODE, "tcp_v4_checksum_init_exit"}, {FKT_TCP_RECVMSG_OK_ENTRY_CODE, "tcp_recvmsg_ok_entry"}, {FKT_TCP_RECVMSG_OK_EXIT_CODE, "tcp_recvmsg_ok_exit"}, {FKT_TCP_SEND_ACK_ENTRY_CODE, "tcp_send_ack_entry"}, {FKT_TCP_SEND_ACK_EXIT_CODE, "tcp_send_ack_exit"}, // {FKT_TCP_V4_RCV_HW_ENTRY_CODE, "tcp_v4_rcv_hw_entry"}, // {FKT_TCP_V4_RCV_HW_EXIT_CODE, "tcp_v4_rcv_hw_exit"}, // {FKT_TCP_V4_RCV_NONE_ENTRY_CODE,"tcp_v4_rcv_none_entry"}, // {FKT_TCP_V4_RCV_NONE_EXIT_CODE, "tcp_v4_rcv_none_exit"}, {FKT_WAIT_FOR_TCP_MEMORY_ENTRY_CODE,"wait_for_tcp_memory_entry"}, {FKT_WAIT_FOR_TCP_MEMORY_EXIT_CODE,"wait_for_tcp_memory_exit"}, // {FKT_TCP_RECVMSG_CSUM_ENTRY_CODE,"tcp_recvmsg_csum_entry"}, // {FKT_TCP_RECVMSG_CSUM_EXIT_CODE,"tcp_recvmsg_csum_exit"}, // {FKT_TCP_RECVMSG_CSUM2_ENTRY_CODE,"tcp_recvmsg_csum2_entry"}, // {FKT_TCP_RECVMSG_CSUM2_EXIT_CODE,"tcp_recvmsg_csum2_exit"}, {FKT_TCP_SYNC_MSS_ENTRY_CODE, "tcp_sync_mss_entry"}, {FKT_TCP_SYNC_MSS_EXIT_CODE, "tcp_sync_mss_exit"}, {FKT_TCP_ALLOC_PAGE_ENTRY_CODE, "tcp_alloc_page_entry"}, {FKT_TCP_ALLOC_PAGE_EXIT_CODE, "tcp_alloc_page_exit"}, /* udp routines */ {FKT_UDP_SENDMSG_ENTRY_CODE, "udp_sendmsg_entry"}, {FKT_UDP_SENDMSG_EXIT_CODE, "udp_sendmsg_exit"}, {FKT_UDP_QUEUE_RCV_SKB_ENTRY_CODE,"udp_queue_rcv_skb_entry"}, {FKT_UDP_QUEUE_RCV_SKB_EXIT_CODE,"udp_queue_rcv_skb_exit"}, {FKT_UDP_GETFRAG_ENTRY_CODE, "udp_getfrag_entry"}, {FKT_UDP_GETFRAG_EXIT_CODE, "udp_getfrag_exit"}, {FKT_UDP_RECVMSG_ENTRY_CODE, "udp_recvmsg_entry"}, {FKT_UDP_RECVMSG_EXIT_CODE, "udp_recvmsg_exit"}, {FKT_UDP_RCV_ENTRY_CODE, "udp_rcv_entry"}, {FKT_UDP_RCV_EXIT_CODE, "udp_rcv_exit"}, /* ip routines */ {FKT_IP_RCV_ENTRY_CODE, "ip_rcv_entry"}, {FKT_IP_RCV_EXIT_CODE, "ip_rcv_exit"}, {FKT_IP_QUEUE_XMIT_ENTRY_CODE, "ip_queue_xmit_entry"}, {FKT_IP_QUEUE_XMIT_EXIT_CODE, "ip_queue_xmit_exit"}, {FKT_IP_BUILD_XMIT_ENTRY_CODE, "ip_build_xmit_entry"}, {FKT_IP_BUILD_XMIT_EXIT_CODE, "ip_build_xmit_exit"}, {FKT_IP_LOCAL_DELIVER_ENTRY_CODE,"ip_local_deliver_entry"}, {FKT_IP_LOCAL_DELIVER_EXIT_CODE,"ip_local_deliver_exit"}, {FKT_IP_DEFRAG_ENTRY_CODE, "ip_defrag_entry"}, {FKT_IP_DEFRAG_EXIT_CODE, "ip_defrag_exit"}, {FKT_IP_FRAG_REASM_ENTRY_CODE, "ip_frag_reasm_entry"}, {FKT_IP_FRAG_REASM_EXIT_CODE, "ip_frag_reasm_exit"}, /* ethernet cards */ {FKT_TULIP_START_XMIT_ENTRY_CODE,"tulip_start_xmit_entry"}, {FKT_TULIP_START_XMIT_EXIT_CODE,"tulip_start_xmit_exit"}, {FKT_TULIP_INTERRUPT_ENTRY_CODE,"tulip_interrupt_entry"}, {FKT_TULIP_INTERRUPT_EXIT_CODE, "tulip_interrupt_exit"}, {FKT_TULIP_RX_ENTRY_CODE, "tulip_rx_entry"}, {FKT_TULIP_RX_EXIT_CODE, "tulip_rx_exit"}, {FKT_TULIP_TX_ENTRY_CODE, "tulip_tx_entry"}, {FKT_TULIP_TX_EXIT_CODE, "tulip_tx_exit"}, {FKT_VORTEX_INTERRUPT_ENTRY_CODE,"vortex_interrupt_entry"}, {FKT_VORTEX_INTERRUPT_EXIT_CODE,"vortex_interrupt_exit"}, {FKT_BOOMERANG_INTERRUPT_ENTRY_CODE,"boomerang_interrupt_entry"}, {FKT_BOOMERANG_INTERRUPT_EXIT_CODE,"boomerang_interrupt_exit"}, {FKT_BOOMERANG_START_XMIT_ENTRY_CODE,"boomerang_start_xmit_entry"}, {FKT_BOOMERANG_START_XMIT_EXIT_CODE,"boomerang_start_xmit_exit"}, {FKT_BOOMERANG_RX_ENTRY_CODE, "boomerang_rx_entry"}, {FKT_BOOMERANG_RX_EXIT_CODE, "boomerang_rx_exit"}, {FKT_BOOMERANG_TX_ENTRY_CODE, "boomerang_tx_entry"}, {FKT_BOOMERANG_TX_EXIT_CODE, "boomerang_tx_exit"}, {FKT_ALLOC_SKB_ENTRY_CODE, "alloc_skb_entry"}, {FKT_ALLOC_SKB_EXIT_CODE, "alloc_skb_exit"}, {FKT_DO_SOFTIRQ_ENTRY_CODE, "do_softirq_entry"}, {FKT_DO_SOFTIRQ_EXIT_CODE, "do_softirq_exit"}, {FKT_ACE_INTERRUPT_ENTRY_CODE, "ace_interrupt_entry"}, {FKT_ACE_INTERRUPT_EXIT_CODE, "ace_interrupt_exit"}, {FKT_ACE_RX_INT_ENTRY_CODE, "ace_rx_int_entry"}, {FKT_ACE_RX_INT_EXIT_CODE, "ace_rx_int_exit"}, {FKT_ACE_TX_INT_ENTRY_CODE, "ace_tx_int_entry"}, {FKT_ACE_TX_INT_EXIT_CODE, "ace_tx_int_exit"}, {FKT_ACE_START_XMIT_ENTRY_CODE, "ace_start_xmit_entry"}, {FKT_ACE_START_XMIT_EXIT_CODE, "ace_start_xmit_exit"}, /* miru end */ /* the sys_xxx functions */ /* achadda start */ {FKT_READ_ENTRY_CODE, "sys_read_entry"}, {FKT_READ_EXIT_CODE, "sys_read_exit"}, /* vs start */ {FKT_WRITE_ENTRY_CODE, "sys_write_entry"}, {FKT_WRITE_EXIT_CODE, "sys_write_exit"}, /* rdr */ {FKT_LSEEK_ENTRY_CODE, "sys_lseek_entry"}, {FKT_LSEEK_EXIT_CODE, "sys_lseek_exit"}, /* vs start */ {FKT_FSYNC_ENTRY_CODE, "sys_fsync_entry"}, {FKT_FSYNC_EXIT_CODE, "sys_fsync_exit"}, {FKT_NANOSLEEP_ENTRY_CODE, "sys_nanosleep_entry"}, {FKT_NANOSLEEP_EXIT_CODE, "sys_nanosleep_exit"}, /* rdr start */ // {FKT_DO_SD_REQUEST_ENTRY_CODE, "do_sd_request_entry"}, // {FKT_DO_SD_REQUEST_EXIT_CODE, "do_sd_request_exit"}, // {FKT_REQUEUE_SD_REQUEST_ENTRY_CODE, "requeue_sd_request_entry"}, // {FKT_REQUEUE_SD_REQUEST_EXIT_CODE, "requeue_sd_request_exit"}, {FKT_SD_OPEN_ENTRY_CODE, "sd_open_entry"}, {FKT_SD_OPEN_EXIT_CODE, "sd_open_exit"}, {FKT_SD_RELEASE_ENTRY_CODE, "sd_release_entry"}, {FKT_SD_RELEASE_EXIT_CODE, "sd_release_exit"}, {FKT_SD_IOCTL_ENTRY_CODE, "sd_ioctl_entry"}, {FKT_SD_IOCTL_EXIT_CODE, "sd_ioctl_exit"}, {FKT_SCSI_DO_CMD_ENTRY_CODE, "scsi_do_cmd_entry"}, {FKT_SCSI_DO_CMD_EXIT_CODE, "scsi_do_cmd_exit"}, {FKT_SCSI_IOCTL_ENTRY_CODE, "scsi_ioctl_entry"}, {FKT_SCSI_IOCTL_EXIT_CODE, "scsi_ioctl_exit"}, {FKT_SCSI_DONE_ENTRY_CODE, "scsi_done_entry"}, {FKT_SCSI_DONE_EXIT_CODE, "scsi_done_exit"}, {FKT_SCSI_DISPATCH_CMD_ENTRY_CODE,"scsi_dispatch_cmd_entry"}, {FKT_SCSI_DISPATCH_CMD_EXIT_CODE,"scsi_dispatch_cmd_exit"}, {FKT_SCSI_RETRY_COMMAND_ENTRY_CODE,"scsi_retry_command_entry"}, {FKT_SCSI_RETRY_COMMAND_EXIT_CODE,"scsi_retry_command_exit"}, {FKT_SG_OPEN_ENTRY_CODE, "sg_open_entry"}, {FKT_SG_OPEN_EXIT_CODE, "sg_open_exit"}, {FKT_SG_RELEASE_ENTRY_CODE, "sg_release_entry"}, {FKT_SG_RELEASE_EXIT_CODE, "sg_release_exit"}, {FKT_SG_IOCTL_ENTRY_CODE, "sg_ioctl_entry"}, {FKT_SG_IOCTL_EXIT_CODE, "sg_ioctl_exit"}, {FKT_SG_READ_ENTRY_CODE, "sg_read_entry"}, {FKT_SG_READ_EXIT_CODE, "sg_read_exit"}, {FKT_SG_NEW_READ_ENTRY_CODE, "sg_new_read_entry"}, {FKT_SG_NEW_READ_EXIT_CODE, "sg_new_read_exit"}, {FKT_SG_WRITE_ENTRY_CODE, "sg_write_entry"}, {FKT_SG_WRITE_EXIT_CODE, "sg_write_exit"}, {FKT_SG_NEW_WRITE_ENTRY_CODE, "sg_new_write_entry"}, {FKT_SG_NEW_WRITE_EXIT_CODE, "sg_new_write_exit"}, {FKT_SG_GET_RQ_MARK_ENTRY_CODE, "sg_get_rq_mark_entry"}, {FKT_SG_GET_RQ_MARK_EXIT_CODE, "sg_get_rq_mark_exit"}, {FKT_SG_CMD_DONE_BH_ENTRY_CODE, "sg_cmd_done_bh_entry"}, {FKT_SG_CMD_DONE_BH_EXIT_CODE, "sg_cmd_done_bh_exit"}, {FKT_SCSI_SEP_IOCTL_ENTRY_CODE, "scsi_sep_ioctl_entry"}, {FKT_SCSI_SEP_IOCTL_EXIT_CODE, "scsi_sep_ioctl_exit"}, {FKT_SCSI_SEP_QUEUECOMMAND_ENTRY_CODE,"scsi_sep_queuecommand_entry"}, {FKT_SCSI_SEP_QUEUECOMMAND_EXIT_CODE,"scsi_sep_queuecommand_exit"}, /* rdr end */ /* vs start */ // {FKT_SEAGATE_INTERNAL_CMD_ENTRY_CODE,"seagate_internal_cmd_entry"}, // {FKT_SEAGATE_INTERNAL_CMD_EXIT_CODE,"seagate_internal_cmd_exit"}, // {FKT_QLOGIC_QCMND_ENTRY_CODE, "qlogic_qcmnd_entry"}, // {FKT_QLOGIC_QCMND_EXIT_CODE, "qlogic_qcmnd_exit"}, // {FKT_ISP_RET_STATUS_ENTRY_CODE, "qlogic_ret_status_entry"}, // {FKT_ISP_RET_STATUS_EXIT_CODE, "qlogic_ret_status_exit"}, // {AM53C974_QCMD_ENTRY_CODE, "am53c974_qcmd_entry"}, // {AM53C974_QCMD_EXIT_CODE, "am53c974_qcmd_exit"}, /***** vs: old codes, need to be reassigned if used again ***** {0x581, "ext2_sync_file_entry"}, {0x681, "ext2_sync_file_exit"}, {0x582, "sync_tind_entry"}, {0x682, "sync_tind_exit"}, {0x583, "sync_dind_entry"}, {0x683, "sync_dind_exit"}, {0x584, "sync_indirect_entry"}, {0x684, "sync_indirect_exit"}, {0x585, "sync_direct_entry"}, {0x685, "sync_direct_exit"}, {0x586, "sync_iblock_entry"}, {0x686, "sync_iblock_exit"}, {0x587, "sync_block_entry"}, {0x687, "sync_block_exit"}, *****/ // {REQUE_DEVM_DEV_BLK_CODE, "reque_prior_devm_dev_blk"}, // {REQUE_BLK_CODE, "reque_after_blk"}, /* vs end */ fxt-0.3.15/tools/PaxHeaders/test.c0000644000000000000000000000013213773357047013762 xustar0030 mtime=1609424423.234746653 30 atime=1746715490.217509167 30 ctime=1746716504.753987911 fxt-0.3.15/tools/test.c0000644000175000017500000000547513773357047013463 0ustar00samysamy/* * Copyright (C) 2016-2017 Universite de Bordeaux * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #define CONFIG_FUT #if defined(_WIN32) && !defined(__CYGWIN__) #include #else #include #endif #include #include #define BUFFER_SIZE (1<<20) long myid(void) { #if defined(_WIN32) && !defined(__CYGWIN__) return (long) GetCurrentThreadId(); #else return (long) pthread_self(); #endif } int main(void) { fprintf(stderr,"setting filename\n"); fut_set_filename("temp"); fprintf(stderr,"setting flush\n"); enable_fut_flush(); fprintf(stderr,"setting up\n"); if (fut_setup(BUFFER_SIZE, 0xffff, myid()) < 0) { perror("fut_setup"); exit(EXIT_FAILURE); } fprintf(stderr,"setting key\n"); if (fut_keychange(FUT_ENABLE, 0x7fffff, myid()) < 0) { perror("fut_keychange"); exit(EXIT_FAILURE); } fprintf(stderr,"setting filename again\n"); fut_set_filename("temp2"); fprintf(stderr,"running probes\n"); FUT_PROBE1(0x1, 0x101, 1234); FUT_PROBE2(0x1, 0x102, 1234, 1234); FUT_PROBE3(0x1, 0x103, 1234, 1234, 1234); FUT_PROBE4(0x1, 0x104, 1234, 1234, 1234, 1234); FUT_PROBE5(0x1, 0x105, 1234, 1234, 1234, 1234, 1234); FUT_PROBE6(0x1, 0x106, 1234, 1234, 1234, 1234, 1234, 1234); FUT_PROBE7(0x1, 0x107, 1234, 1234, 1234, 1234, 1234, 1234, 1234); fprintf(stderr,"running string probe\n"); FUT_PROBESTR(0x1, 0x200, "foof"); fprintf(stderr,"ending up\n"); if (fut_endup("temp2") < 0) { perror("fut_endup"); exit(EXIT_FAILURE); } fprintf(stderr,"done\n"); if (fut_done() < 0) { perror("fut_done"); exit(EXIT_FAILURE); } fprintf(stderr,"ok\n"); if (system("./fxt_print -f temp2 > fxt_print.log") != 0) { fprintf(stderr,"error fxt_print"); exit(EXIT_FAILURE); } if (system("grep \"4294967295 107(7) unknown code 107 4d2 4d2 4d2 4d2 4d2 4d2 4d2\" fxt_print.log") != 0) { system("cat fxt_print.log"); fprintf(stderr,"error fxt_print string output"); exit(EXIT_FAILURE); } if (system("grep \"4294967295 200(1) unknown code 200 666f6f66\" fxt_print.log") != 0) { system("cat fxt_print.log"); fprintf(stderr,"error fxt_print string output"); exit(EXIT_FAILURE); } exit(EXIT_SUCCESS); } fxt-0.3.15/tools/PaxHeaders/depcomp0000644000000000000000000000007310271436743014204 xustar0030 atime=1746715490.217509167 29 ctime=1746716504.72784932 fxt-0.3.15/tools/depcomp0000755000175000017500000003305210271436743013674 0ustar00samysamy#! /bin/sh # depcomp - compile a program generating dependencies as side-effects # Copyright 1999, 2000, 2003 Free Software Foundation, Inc. # 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., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, 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 Alexandre Oliva . if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # `libtool' can also be set to `yes' or `no'. if test -z "$depfile"; then base=`echo "$object" | sed -e 's,^.*/,,' -e 's,\.\([^.]*\)$,.P\1,'` dir=`echo "$object" | sed 's,/.*$,/,'` if test "$dir" = "$object"; then dir= fi # FIXME: should be _deps on DOS. depfile="$dir.deps/$base" fi tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> $depfile echo >> $depfile # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> $depfile else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. stripped=`echo "$object" | sed 's/\(.*\)\..*$/\1/'` tmpdepfile="$stripped.u" if test "$libtool" = yes; then "$@" -Wc,-M else "$@" -M fi stat=$? if test -f "$tmpdepfile"; then : else stripped=`echo "$stripped" | sed 's,^.*/,,'` tmpdepfile="$stripped.u" fi if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi if test -f "$tmpdepfile"; then outname="$stripped.o" # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^$outname:,$object :," < "$tmpdepfile" > "$depfile" sed -e "s,^$outname: \(.*\)$,\1:," < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1="$dir.libs/$base.lo.d" tmpdepfile2="$dir.libs/$base.d" "$@" -Wc,-MD else tmpdepfile1="$dir$base.o.d" tmpdepfile2="$dir$base.d" "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi if test -f "$tmpdepfile1"; then tmpdepfile="$tmpdepfile1" else tmpdepfile="$tmpdepfile2" fi if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix="`echo $object | sed 's/^.*\././'`" touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 fxt-0.3.15/tools/PaxHeaders/fxt0000644000000000000000000000013215007143530013341 xustar0030 mtime=1746716504.742098498 30 atime=1746716504.802098769 30 ctime=1746716504.742098498 fxt-0.3.15/tools/fxt/0002755000175000017500000000000015007143530013106 5ustar00samysamyfxt-0.3.15/tools/fxt/PaxHeaders/trap_names.h0000644000000000000000000000007410271436743015736 xustar0030 atime=1746715490.217509167 30 ctime=1746716504.739172057 fxt-0.3.15/tools/fxt/trap_names.h0000644000175000017500000000255210271436743015423 0ustar00samysamy/* * Copyright (C) 2000, 2001 Robert Russell * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ "divide_error", /* 0 */ "debug", /* 1 */ "nmi", /* 2 */ "int3", /* 3 */ "overflow", /* 4 */ "bounds", /* 5 */ "invalid_op", /* 6 */ "device_not_available", /* 7 */ "double_fault", /* 8 */ "coprocessor_seg_overrun", /* 9 */ "invalid_TSS", /* 10 */ "segment_not_present", /* 11 */ "stack_segment", /* 12 */ "general_protection", /* 13 */ "page_fault", /* 14 */ "spurious_interrupt_bug", /* 15 */ "coprocessor_error", /* 16 */ "alignment_check", /* 17 */ "machine_check", /* 18 */ "simd_coprocessor_error", /* 19 */ "unknown trap", /* 20 */ /* vim: ts=4 */ fxt-0.3.15/tools/fxt/PaxHeaders/sysirq_names.h0000644000000000000000000000007310271436743016321 xustar0030 atime=1746715490.217509167 29 ctime=1746716504.74123606 fxt-0.3.15/tools/fxt/sysirq_names.h0000644000175000017500000000235510271436743016010 0ustar00samysamy/* * Copyright (C) 2000, 2001 Robert Russell * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ "local perfctr", /* 0xee */ "local timer", /* 0xef */ "thermal APIC", /* 0xf0 */ "reserved f1", /* 0xf1 */ "reserved f2", /* 0xf2 */ "reserved f3", /* 0xf3 */ "reserved f4", /* 0xf4 */ "reserved f5", /* 0xf5 */ "reserved f6", /* 0xf6 */ "reserved f7", /* 0xf7 */ "reserved f8", /* 0xf8 */ "reserved f9", /* 0xf9 */ "reserved fa", /* 0xfa */ "call function", /* 0xfb */ "reschedule", /* 0xfc */ "invalidate TLB", /* 0xfd */ "error APIC", /* 0xfe */ "spurious APIC", /* 0xff */ fxt-0.3.15/tools/fxt/PaxHeaders/syscall_names.h0000644000000000000000000000007410271436743016442 xustar0030 atime=1746715490.217509167 30 ctime=1746716504.742486648 fxt-0.3.15/tools/fxt/syscall_names.h0000644000175000017500000001375410271436743016135 0ustar00samysamy/* * Copyright (C) 2000, 2001 Robert Russell * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ "sys_setup", /* 0 */ "sys_exit", "sys_fork", "sys_read", "sys_write", "sys_open", /* 5 */ "sys_close", "sys_waitpid", "sys_creat", "sys_link", "sys_unlink", /* 10 */ "sys_execve", "sys_chdir", "sys_time", "sys_mknod", "sys_chmod", /* 15 */ "sys_chown", "sys_break", "sys_stat", "sys_lseek", "sys_getpid", /* 20 */ "sys_mount", "sys_umount", "sys_setuid", "sys_getuid", "sys_stime", /* 25 */ "sys_ptrace", "sys_alarm", "sys_fstat", "sys_pause", "sys_utime", /* 30 */ "sys_stty", "sys_gtty", "sys_access", "sys_nice", "sys_ftime", /* 35 */ "sys_sync", "sys_kill", "sys_rename", "sys_mkdir", "sys_rmdir", /* 40 */ "sys_dup", "sys_pipe", "sys_times", "sys_prof", "sys_brk", /* 45 */ "sys_setgid", "sys_getgid", "sys_signal", "sys_geteuid", "sys_getegid", /* 50 */ "sys_acct", "sys_phys/umount", "sys_lock", "sys_ioctl", "sys_fcntl", /* 55 */ "sys_mpx", "sys_setpgid", "sys_ulimit", "sys_olduname", "sys_umask", /* 60 */ "sys_chroot", "sys_ustat", "sys_dup2", "sys_getppid", "sys_getpgrp", /* 65 */ "sys_setsid", "sys_sigaction", "sys_sgetmask", "sys_ssetmask", "sys_setreuid", /* 70 */ "sys_setregid", "sys_sigsuspend", "sys_sigpending", "sys_sethostname", "sys_setrlimit", /* 75 */ "sys_getrlimit", "sys_getrusage", "sys_gettimeofday", "sys_settimeofday", "sys_getgroups", /* 80 */ "sys_setgroups", "old_select", "sys_symlink", "sys_lstat", "sys_readlink", /* 85 */ "sys_uselib", "sys_swapon", "sys_reboot", "old_readdir", "old_mmap", /* 90 */ "sys_munmap", "sys_truncate", "sys_ftruncate", "sys_fchmod", "sys_fchown", /* 95 */ "sys_getpriority", "sys_setpriority", "sys_profil", "sys_statfs", "sys_fstatfs", /* 100 */ "sys_ioperm", "sys_socketcall", "sys_syslog", "sys_setitimer", "sys_getitimer", /* 105 */ "sys_newstat", "sys_newlstat", "sys_newfstat", "sys_uname", "sys_iopl", /* 110 */ "sys_vhangup", "sys_idle", "sys_vm86", "sys_wait4", "sys_swapoff", /* 115 */ "sys_sysinfo", "sys_ipc", "sys_fsync", "sys_sigreturn", "sys_clone", /* 120 */ "sys_setdomainname", "sys_newuname", "sys_modify_ldt", "sys_adjtimex", "sys_mprotect", /* 125 */ "sys_sigprocmask", "sys_create_module", "sys_init_module", "sys_delete_module", "sys_get_kernel_syms", /* 130 */ "sys_quotactl", "sys_getpgid", "sys_fchdir", "sys_bdflush", "sys_sysfs", /* 135 */ "sys_personality", "sys_afs_syscall", "sys_setfsuid", "sys_setfsgid", "sys_llseek", /* 140 */ "sys_getdents", "sys_select", "sys_flock", "sys_msync", "sys_readv", /* 145 */ "sys_writev", "sys_getsid", "sys_fdatasync", "sys_sysctl", "sys_mlock", /* 150 */ "sys_munlock", "sys_mlockall", "sys_munlockall", "sys_sched_setparam", "sys_sched_getparam", /* 155 */ "sys_sched_setscheduler", "sys_sched_getscheduler", "sys_sched_yield", "sys_sched_get_priority_max", "sys_sched_get_priority_min", /* 160 */ "sys_sched_rr_get_interval", "sys_nanosleep", "sys_mremap", "sys_setresuid", "sys_getresuid", /* 165 */ "sys_vm86", "sys_query_module", "sys_poll", "sys_nfsservctl", "sys_setresgid", /* 170 */ "sys_getresgid", "sys_prctl", "sys_rt_sigreturn", "sys_rt_sigaction", "sys_rt_sigprocmask", /* 175 */ "sys_rt_sigpending", "sys_rt_sigtimedwait", "sys_rt_sigqueueinfo", "sys_rt_sigsuspend", "sys_pread", /* 180 */ "sys_pwrite", "sys_chown", "sys_getcwd", "sys_capget", "sys_capset", /* 185 */ "sys_sigaltstack", "sys_sendfile", "sys_streams1", "sys_streams2", "sys_vfork", /* 190 */ "sys_getrlimit", "sys_mmap2", "sys_truncate64", "sys_ftruncate64", "sys_stat64", /* 195 */ "sys_lstat64", "sys_fstat64", "sys_lchown", "sys_getuid", "sys_getgid", /* 200 */ "sys_geteuid", "sys_getegid", "sys_setreuid", "sys_setregid", "sys_getgroups", /* 205 */ "sys_setgroups", "sys_fchown", "sys_setresuid", "sys_getresuid", "sys_setresgid", /* 210 */ "sys_getresgid", "sys_chown", "sys_setuid", "sys_setgid", "sys_setfsuid", /* 215 */ "sys_setfsgid", "sys_pivot_root", "sys_mincore", "sys_madvise", "sys_getdents64", /* 220 */ "sys_fcntl64", "sys_TUX", "sys_Security", "sys_gettid", "sys_readahead", /* 225 */ "sys_lsetxattr", "sys_fsetxattr", "sys_getxattr", "sys_lgetxattr", /* 230 */ "sys_fgetxattr", "sys_listxattr", "sys_llistxattr", "sys_flistxattr", "sys_removexattr", /* 235 */ "sys_lremovexattr", "sys_fremovexattr", "sys_tkill", "sys_sendfile64", "sys_ni_syscall", /* 240 reserved for futex */ "sys_sched_setaffinity", "sys_sched_getaffinity", "sys_set_thread_area", "sys_get_thread_area", "sys_io_setup", /* 245 */ "sys_io_destroy", "sys_io_getevents", "sys_io_submit", "sys_io_cancel", "sys_fadvise64", /* 250 */ "sys_old_free_hugepages", "sys_exit_group", "sys_lookup_dcookie", "sys_epoll_create", "sys_epoll_ctl", /* 255 */ "sys_epoll_wait", "sys_remap_file_pages", "sys_set_tid_address", "sys_timer_create", "sys_timer_settime", /* 260 */ "sys_timer_gettime", "sys_timer_getoverrun", "sys_timer_delete", "sys_clock_settime", "sys_clock_gettime", /* 265 */ "sys_clock_getres", "sys_clock_nanosleep", "sys_statfs64", "sys_fstatfs64", "sys_tgkill", /* 270 */ "sys_utimes", "sys_fadvise64_64", "sys_vserver", "sys_mbind", "sys_set_mempolicy", /* 275 */ "sys_get_mempolicy", "sys_mq_open", "sys_mq_unlink", "sys_mq_timedsend", "sys_mq_timedreceive", /* 280 */ "sys_mq_notify", "sys_mq_getsetattr", "sys_kexec", /* vi: ts=4 */ fxt-0.3.15/tools/PaxHeaders/ChangeLog0000644000000000000000000000013213774117013014375 xustar0030 mtime=1609604619.031813696 30 atime=1746715490.217509167 30 ctime=1746716504.726838243 fxt-0.3.15/tools/ChangeLog0000644000175000017500000004141513774117013014070 0ustar00samysamy2021-01-02 17:23 sthibaul * fut-template.h: Make the non-fut path the fastpath 2020-12-31 15:21 sthibaul * fxt.h: Convert files to utf-8 2020-12-31 15:20 sthibaul * test.c: Avoid latin encoding 2020-10-27 18:35 sthibaul * ev.c, fxt.h: Add fxt_blockev_leave to free fxt_blockev_t 2020-10-27 18:35 sthibaul * fxt.c: Really free fxt_t content 2020-10-26 12:56 sthibaul * fxt.c, fxt_internal.h: Don't try not to close user-provided fd (it's always closed by fclose...) 2020-10-26 12:50 sthibaul * fxt.c: Fix fxt_close logic... 2020-09-25 12:32 sthibaul * fxt.c, fxt_internal.h: Add missing fxt_close 2020-06-05 10:31 sthibaul * get_cpu_info.c, pids.c: iAvoid opening /proc files on MacOS It doesn't have them anyway. Submitted by Raymond Namyst. 2020-03-26 01:34 sthibaul * Makefile.am: Fix soname version 2020-03-26 01:28 sthibaul * Makefile.am: Clean generated manpage 2020-03-26 01:22 sthibaul * fut-template.h: Add missing parameters 2020-03-26 01:19 sthibaul * fut-template.h, fut_setup.c, fxt_internal.h: Add missing filename const qualifier 2020-03-26 00:55 sthibaul * fut_record.c, fut_setup.c: Fix crash when trying to record an event after fut_done is over 2020-02-26 20:15 sthibaul * fxt.c, fxt.h: Also make fxt_setupeventsbuffer use large size 2020-02-26 20:10 sthibaul * fut-template.h, fut_record.c, fut_setup.c, fxt_internal.h: support big buffers (>= 2GB) We need to make all size parameters bigger. This will require an ABI bump on release. From Philippe Swartvagher 2019-12-14 19:04 sthibaul * Makefile.am: Add whatis section to generated manpage 2019-12-14 18:59 sthibaul * Makefile.am, fxt_print.c: generate manpage from help 2019-07-12 12:00 vdanjean * .cvsignore, Makefile.am, fut-template.h, fxt.h, template2h.pl.in: Add macro for 32 parameters (and ABI accept up to 254 parameters) 2019-07-12 11:17 vdanjean * Makefile.am: cleanup build system 2018-07-30 15:31 sthibaul * pids.c: Fix overflow on systems with 32bit pids 2018-06-26 13:19 sthibaul * fxt.h: Add riscv64 arch 2018-06-26 13:13 sthibaul * fut-template.h, fxt.h: Fix link of c++ programs 2017-11-22 17:05 sthibaul * fxt.h: Use limits.h to determine 32bit vs 64bit 2017-11-22 16:58 sthibaul * fxt.h: Fix mips64el 2017-11-22 15:41 sthibaul * fxt.h: Fix sparc64 2017-11-22 15:28 sthibaul * test.c: Fix output check on big-endian systems 2017-11-22 15:28 sthibaul * fxt.c: Fix error check 2017-11-22 11:23 sthibaul * Makefile.am, fxt.h, test.c: Fix ppc64el, and actually test output of fxt_print 2017-07-05 17:28 sthibaul * fxt_internal.h: Fix declaration of variable 2017-06-04 10:59 sthibaul * pids.c: Fix unbound buffer filling 2017-06-02 21:05 sthibaul * symbols.c: fix memleaks 2017-06-02 21:04 sthibaul * names.c: Fix array overflow 2017-06-02 21:01 sthibaul * get_cpu_info.c: Fix bogus parenthesis 2017-06-02 20:54 sthibaul * fut-template.h, fxt_internal.h: Move fut_slot_lock declaration, we do not need to expose it 2017-03-24 09:35 sthibaul * fut_setup.c: Use FUT_CODE macro instead of hardcoded computation 2017-03-22 18:17 sthibaul * fut-template.h, fut_record.c, fut_setup.c, fxt_internal.h: Fix flushing: it needs to be passed the proper start of buffer for double-buffering 2017-03-22 18:13 sthibaul * fut-template.h, fut_record.c, fut_setup.c: Avoid macro name conflict 2017-03-22 18:12 sthibaul * fut-template.h: Fix warning 2017-03-22 18:10 sthibaul * fut_record.c, fut_setup.c, fxt_internal.h: Implement double-buffering to avoid making all threads get stuck while one of them is flushing the trace 2017-03-22 14:05 sthibaul * fut_record.c: Tell the compiler that it is unlikely to have conflicts 2017-03-22 14:02 sthibaul * fut_record.c: Do not use CLOCK_MONOTONIC_RAW, it is slower than CLOCK_MONOTONIC, and we actually want NTP synchronization for traces over several machines 2017-03-03 16:07 sthibaul * fut-template.h: Add FUT_DO_ALWAYS_* macros which ignore the fut_active keymask 2016-10-17 20:10 sthibaul * get_cpu_info.c: Fix crash on short read from /proc/cpuinfo 2016-10-17 17:36 sthibaul * get_cpu_info.c, pids.c, symbols.c: Avoid warning about /proc not being available on windows. 2016-10-17 16:23 sthibaul * fut_setup.c: Add missing initialization 2016-09-20 15:59 sthibaul * fut_record.c: drop knl port attempt: it's really an x86_64 for barriers 2016-09-20 13:44 sthibaul * fut_record.c: try to support KNL 2016-09-20 10:08 sthibaul * Makefile.am, test.c: Add a small test 2016-09-20 10:08 sthibaul * fut_record.c: Fix memory barriers on Xeon Phi 2016-09-04 19:31 sthibaul * fkt_print.c: fix insecurely not using a format 2016-08-23 16:15 sthibaul * fut_bench.c, fut_record.c: mingw32 build fixes 2015-10-01 15:04 sthibaul * fut-template.h: Don't use pthread_spinlock_t when not using spinlocks 2014-09-01 12:51 sthibaul * fut-template.h: Avoid void* arithmetic, it is refused by msvc 2014-04-30 11:22 sthibaul * fut-template.h: Fix STR macros 2014-04-30 11:06 sthibaul * fut-template.h: Fix some buffer overflow 2014-04-14 18:11 sthibaul * fut-template.h, fut_record.c, fut_setup.c: Fix flush atomicity 2013-11-08 15:51 sthibaul * fut-template.h: Add 7-parameter macro 2013-10-30 17:45 ftrahay * fut-template.h, fut_record.c, fut_setup.c: fix a compilation error on MacOSX (pthread_spinlock is not available on MacOSX) 2013-10-22 16:56 sthibaul * fut-template.h: Rename 'args' variable used in macros into __args, to avoid warnings about clashing with application variables 2013-07-11 11:02 ftrahay * fut-template.h: fix a type conversion error that occurs with some compilers (eg. nvcc) 2013-04-23 11:02 sthibaul * fut_setup.c: Try to rename the output file when fut_set_filename is called after fut_flush, instead of just printing an error 2013-04-02 15:25 sthibaul * fxt.h: Add more architectures 2013-01-30 14:44 sthibaul * Makefile.am: Fix static link of libbfd. AC_HAVE_LIBRARY *prepends* the library to LIBS, so we have to look for libz and libiberty *before* looking at libbfd 2013-01-30 14:20 sthibaul * Makefile.am: Pass libfxt.la in LDADD instead of -lfxt, which fixes all dependency issues 2013-01-25 17:47 sthibaul * fut_setup.c: Fix closing and restarting a trace recording 2012-12-14 17:11 sthibaul * fut_bench.c: add missing file 2012-12-14 17:10 sthibaul * fut-template.h: Fix build 2012-12-10 14:57 sthibaul * Makefile.am, fut-template.h, fut_record.c, fut_setup.c, fxt_internal.h: Add spinlock method for locking slots, but not enabled for now. Add fut_bench to measure the inefficiency. 2012-11-30 19:48 sthibaul * fut-template.h, fut_record.c: Permit application to provide its own time stamps, useful for simgrid for instance 2012-08-10 03:48 sthibaul * fut_record.c: Use GetCurrentThreadId instead of GetCurrentThread since the latter only returns a pseudo-handle. 2012-08-09 20:13 sthibaul * Makefile.am, dolib.c, fkt_print.c, fkt_record.c, fut_record.c, fut_setup.c, fxt-tools.h, fxt.c, fxt_print.c, pids.c, symbols.c: Add mingw build support 2012-08-03 21:48 sthibaul * fut_setup.c: Do not reset fut_active on fut_flush, as that would actually stop record although enable_fut_flush was called 2012-08-03 16:16 sthibaul * fut-template.h: add yet another prototype... 2012-08-03 15:25 sthibaul * fkt_record.c, fut_record.c, fut_setup.c, fxt_internal.h, fxt_print.c: fix build warnings 2012-08-03 15:20 sthibaul * fut-template.h: Add enable/disable_fut_flush prototypes 2012-04-09 23:08 sthibaul * fut_record.c: Do not set fut_active to 1, it is not reset to 0 2012-04-05 18:12 ftrahay * ev.c, fut-template.h, fut_record.c, fut_setup.c: implement fut_flush. When enabled (by calling enabel_fut_flush), when the buffer is full of events, it is dumped to disk, allowing to record remaining events. 2012-03-07 15:42 ftrahay * Makefile.am, template2h.pl, template2h.pl.in: use @PERL@ instead of hardcoded /usr/bin/perl 2012-03-01 01:53 sthibaul * Makefile.am: Fix libbfd link, by including libiberty and libz 2012-02-28 14:11 sthibaul * Makefile.am: Restore cleaning temporary sources 2012-02-28 14:08 sthibaul * Makefile.am: Fix make -j 2012-02-01 11:13 sthibaul * fxt_print.c: Fix 'security' issue 2011-11-14 13:09 sthibaul * ev.c, fxt-tools.h, fxt.c, fxt.h, fxt_internal.h, names.c, pids.c, symbols.c: Propagate using streams to all reading function, to avoid fd vs stream mess 2011-08-26 16:24 ftrahay * Makefile.am, ev.c, fxt-tools.h, fxt.c, fxt_internal.h, symbols.c: use fread instead of read to improve performance. 2011-04-13 11:12 sthibaul * fut-template.h: Add *PROBE6 functions, thanks to Charles Aulagnon 2011-03-14 13:22 sthibaul * fut_record.c: only use gettid if requested at configure time (it's not portable) 2011-03-14 13:13 sthibaul * symbols.c: drop unneeded variable 2011-03-11 14:23 ftrahay * Makefile.am, fut-template.h, fut_record.c, fut_setup.c: recording the thread id is now decided at runtime. 2011-03-10 20:49 sthibaul * names.c: comment spurious stdout output 2011-03-10 09:25 ftrahay * Makefile.am, ev.c, fut_record.c: add an option that enables the collection of thread id when recording an event. 2011-03-03 17:46 ftrahay * Makefile.am: * add missing tbx_timing.h in the tarball * librt is only needed if clock_gettime was found --> this should be enough for compiling fxt on Mac OS X 2011-01-12 17:33 sthibaul * symbols.c: drop debugging printfs 2010-06-17 14:34 sthibaul * pids.c: some compilers don't consider strlen() to be constant 2010-05-27 14:13 caugonne * fut_setup.c: Memset the buffer at during fut_setup to avoid page faults and to prevent valgrind's warnings. 2010-04-16 14:37 ftrahay * fut-template.h: Fix possible SIGSEVG when calling FUT_DO_PROBE while profiling is stopped 2010-03-05 17:35 sthibaul * fut_record.c: use clock_gettime by default when available 2010-03-05 17:20 sthibaul * fut_record.c, fxt-tools.h: fix unsignedness 2009-10-15 16:04 caugonne * pids.c, symbols.c: Remove useless (and annoying) printf debug outputs. 2009-09-20 22:01 sthibaul * pids.c: fix memory leak 2009-05-10 16:06 caugonne * Makefile.am, fut_record.c: In case we do not have synchronous clocks on the different processors, we may use a monotonic clock instead of processor ticks. This non-portable option can be enabled using --enable-sync-clock. 2009-03-28 16:08 caugonne * fut-template.h: fut.h depends on fxt.h so we include it 2009-03-16 12:01 sthibaul * ev.c, fkt_print.c, symbols.c: use PRI*64 where useful 2008-10-04 18:39 caugonne * fut_record.c: cursp is never used anyway : that fixes my some trace corruption problem (at last) 2008-09-10 11:29 caugonne * fut_record.c: make cmpxchg safe using GCC intrinsics 2008-08-12 11:52 caugonne * fkt_select.c: Recent kernels should not include anymore, we remove it since it compiles without it as well. 2008-04-22 19:16 caugonne * Makefile.am, fut_record.c, fut_setup.c, tbx_timing.h: Starts the process of making FxT independant of PM2 so that it may be used without rewriting all the code that was put in PM2 to initialize the FUT lib. For now, this mostly consists in taking files from the PM2 project. It was only tested on x86_64 for now. 2007-07-10 18:55 sthibaul * pids.c: make valgrind happy 2007-07-05 17:56 sthibaul * symbols.c: c++ generates long names... 2007-07-04 16:28 sthibaul * Makefile.am: library objects are suffixed .lo, not .o... 2007-05-25 10:32 sthibaul * fxt_internal.h: comment 2007-05-07 15:45 sthibaul * fxt.h: ev_32 and ev_native are not that useful actually 2007-05-07 15:37 sthibaul * Makefile.am: add missing dependency 2007-05-07 15:30 sthibaul * ev.c, fkt_print.c, fxt.c, fxt.h, fxt_internal.h, fxt_print.c: factorization of cpu detection code for FUT 2007-04-04 15:58 sthibaul * fut-template.h: fix c++ compilation 2007-03-20 16:08 sthibaul * ev.c, fut-template.h, fxt.h: added facilities for putting strings in probes 2007-03-15 23:49 vdanjean * Makefile.am: add all needed files in dist 2007-03-02 12:10 sthibaul * fxt-tools.h: don't use same local variable as in caller. It was pure luck that it was working... 2007-02-02 18:25 sthibaul * Makefile.am: permit X11-less compiling 2007-01-30 16:18 sthibaul * pids.c: fix for systems that don't have /proc 2007-01-30 15:52 sthibaul * ev.c, fkt_extract.c, fkt_select.c, fkt_setmask.c, fxt.c, get_cpu_info.c, names.c, pids.c, symbols.c, time.c, timer.c: always include config.h first 2007-01-24 19:27 sthibaul * fxt.c: typo 2007-01-24 17:40 sthibaul * fxt_print.c: fixup 2007-01-23 15:13 sthibaul * ev.c, fxt-tools.h, fxt.c, fxt.h, fxt_internal.h: hopefully fixed little/bigendian issue 2007-01-13 13:55 sthibaul * Makefile.am, fkt_print.c, fxt_print.c: LFS fixes 2006-12-06 12:19 sthibaul * fkt_select.c: sendfile is not used 2006-12-05 16:24 sthibaul * fkt_print.c, fkt_record.c, fxt_print.c: sys/mount.h n'est pas disponible partout, et BLKGETSIZE encore moins, du coup 2006-11-29 11:49 sthibaul * pids.c: fix 64bit-pid printing 2006-11-29 11:47 sthibaul * fxt.h: uint64_t needs stdint.h 2006-11-29 11:44 sthibaul * fxt.h, fxt_internal.h, pids.c: fix the pid size to 64bits 2006-11-29 10:39 sthibaul * fkt_extract.c: systems don't necessarily have PAGE_SIZE, but getpagesize() yes 2006-11-28 18:07 sthibaul * fxt.h: AIX support 2006-11-28 17:21 sthibaul * fxt.h: definition dependency 2006-11-28 17:04 sthibaul * fkt_print.c, fxt.c, fxt.h, fxt_print.c: centralized arch-specific defines 2006-11-27 17:57 sthibaul * Makefile.am, ev.c, fxt.c, fxt_internal.h, get_cpu_info.c, pids.c: don't use off64_t/lseek64 (linuxism), use _FILE_OFFSET_BITS instead 2006-11-24 17:35 sthibaul * fkt_print.c, fxt.c, fxt.h, fxt_print.c, get_cpu_info.c, pids.c, symbols.c: portability fixes 2006-11-24 10:50 sthibaul * Makefile.am, symbols.c: we can work without libbfd 2006-10-18 16:09 sthibaul * fkt_print.c, fxt.h, fxt_internal.h, pids.c: x86_64 support 2006-10-18 15:36 sthibaul * fkt_print.c: x86_64 support 2006-10-18 15:21 sthibaul * fut-template.h: x86_64 support 2006-10-18 15:17 sthibaul * fxt.h: x86_64 support 2006-10-18 15:13 sthibaul * fkt_print.c: missing braces 2006-06-09 18:42 sthibaul * symbols.c: strange symboles are not so strange on x86_64 2006-06-09 18:06 sthibaul * fkt_print.c, fxt.c, fxt.h, fxt_print.c: x86_84 support 2006-06-06 15:16 sthibaul * pids.c: the process name may contain a space character 2006-05-22 16:14 sthibaul * fkt_print.c: typo 2006-05-03 17:06 sthibaul * fkt_record.c: negative integers don't necessarily mean an error, only -1 does 2006-04-29 01:03 sthibaul * fut-template.h: fut_getstampedbuffer prototype is needed early 2006-04-27 14:01 sthibaul * fut-template.h: the _pointer_ is volatile, not data... 2006-03-27 14:21 sthibaul * fkt_print.c: correction noms threads pour FUT 2006-02-01 13:49 sthibaul * fxt_print.c: we added the tid as first parameter 2006-02-01 12:02 sthibaul * fxt.h: plus de commentaires 2005-12-23 22:48 sthibaul * symbols.c: correction tailles des champs 2005-12-23 22:47 sthibaul * fxt_internal.h: correction tailles champs, fixes désormais 2005-12-23 22:47 sthibaul * fxt.c: oubli écriture du type d'archi 2005-10-18 15:34 sthibaul * ev.c, fkt_print.c, fxt-tools.h, fxt_print.c, names.c, symbols.c: corrected printf formats 2005-10-18 15:28 sthibaul * fxt_internal.h: besoin de pouvoir lire des adresses 64 bits sur archi 32 bits 2005-09-06 16:00 sthibaul * fkt_print.c: FUT corrections 2005-09-06 16:00 sthibaul * ev.c: Hum, bad commit 2005-09-06 14:20 sthibaul * ev.c: forgot a little break; ... 2005-09-06 14:11 sthibaul * Makefile.am: installer fxt-tools.h aussi pour pm2 2005-07-26 15:42 sthibaul * Makefile.am, depcomp, ev.c, fkt_bufstats, fkt_code_name.h, fkt_extract.c, fkt_print.c, fkt_record.c, fkt_select.c, fkt_setmask.c, fkt_timestats, fkt_timestats-log, fut-template.h, fxt-tools.h, fxt.c, fxt.h, fxt_internal.h, fxt_print.c, get_cpu_info.c, makediff, names.c, pids.c, sigmund, symbols.c, template2h.pl, time.c, timer.c, timer.h, fxt/syscall_names.h, fxt/sysirq_names.h, fxt/trap_names.h: Initial revision 2005-07-26 15:42 sthibaul * Makefile.am, depcomp, ev.c, fkt_bufstats, fkt_code_name.h, fkt_extract.c, fkt_print.c, fkt_record.c, fkt_select.c, fkt_setmask.c, fkt_timestats, fkt_timestats-log, fut-template.h, fxt-tools.h, fxt.c, fxt.h, fxt_internal.h, fxt_print.c, get_cpu_info.c, makediff, names.c, pids.c, sigmund, symbols.c, template2h.pl, time.c, timer.c, timer.h, fxt/syscall_names.h, fxt/sysirq_names.h, fxt/trap_names.h: initial import fxt-0.3.15/tools/PaxHeaders/fut_bench.c0000644000000000000000000000013214713107660014725 xustar0030 mtime=1730973616.969694668 30 atime=1746715490.217509167 30 ctime=1746716504.751575014 fxt-0.3.15/tools/fut_bench.c0000644000175000017500000000401614713107660014414 0ustar00samysamy/* fut_setup.c */ /* * Copyright (C) 2012, 2016, 2024 Université Bordeaux 1 * * 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. */ #define CONFIG_FUT 1 #ifndef __MINGW32__ #include #else #include #endif #include #include #include #include void *f(void*arg) { unsigned i = (uintptr_t) arg; if (i) while (1) FUT_DO_PROBE0(0x1000); else { struct timeval start, end; gettimeofday(&start, NULL); unsigned n = 0; while (1) { unsigned long diff; unsigned j; for (j = 0; j < 1000; j++) FUT_DO_PROBE0(0x1000); n++; gettimeofday(&end, NULL); diff = end.tv_usec - start.tv_usec + ((end.tv_sec - start.tv_sec) * 1000000); if (diff > 1000000) { printf("%u Kps\n", n); n = 0; gettimeofday(&start, NULL); } } } } int main(int argc, char *argv[]) { unsigned n, i; pthread_t *threads; if (argc < 2) { fprintf(stderr, "I need the number of threads to start\n"); exit(EXIT_FAILURE); } n = atoi(argv[1]); if (n < 1) { fprintf(stderr,"I need at least one thread\n"); exit(EXIT_FAILURE); } threads = malloc(n * sizeof(*threads)); fut_set_filename("/dev/null"); enable_fut_flush(); fut_setup(64<<20, FUT_KEYMASKALL, #ifdef __MINGW32__ GetCurrentThreadId() #else (uintptr_t) pthread_self() #endif ); fut_keychange(FUT_ENABLE, FUT_KEYMASKALL, #ifdef __MINGW32__ GetCurrentThreadId() #else (uintptr_t) pthread_self() #endif ); for (i=0; i #include /** \defgroup timing_interface timing interface * * This is the timing interface * * @{ */ /* Hum hum... Here we suppose that X86ARCH => Pentium! */ #if defined(__i386) || defined(__x86_64__) typedef unsigned long long tbx_tick_t, *p_tbx_tick_t; #ifdef __x86_64__ #define TBX_GET_TICK(t) do { \ unsigned int __a,__d; \ asm volatile("rdtsc" : "=a" (__a), "=d" (__d)); \ (t) = ((unsigned long)__a) | (((unsigned long)__d)<<32); \ } while(0) #else #define TBX_GET_TICK(t) \ __asm__ volatile("rdtsc" : "=A" (t)) #endif #define TBX_TICK_RAW_DIFF(t1, t2) \ ((t2) - (t1)) #elif defined(ALPHA_ARCH) typedef unsigned long tbx_tick_t, *p_tbx_tick_t; #define TBX_GET_TICK(t) \ __asm__ volatile("rpcc %0\n\t" : "=r"(t)) #define TBX_TICK_RAW_DIFF(t1, t2) \ (((t2) & 0xFFFFFFFF) - ((t1) & 0xFFFFFFFF)) #elif defined(__ia64) typedef unsigned long tbx_tick_t, *p_tbx_tick_t; #define TBX_GET_TICK(t) \ __asm__ volatile("mov %0=ar%1" : "=r" ((t)) : "i"(44)) #define TBX_TICK_RAW_DIFF(t1, t2) \ ((t2) - (t1)) #elif defined(__ppc__) || defined(__powerpc__) || defined(_ARCH_PPC) typedef unsigned long tbx_tick_t, *p_tbx_tick_t; #define TBX_GET_TICK(t) __asm__ volatile("mftb %0" : "=r" (t)) #define TBX_TICK_RAW_DIFF(t1, t2) \ ((t2) - (t1)) #elif defined(__PPC64__) || defined(__powerpc64__) typedef unsigned long tbx_tick_t, *p_tbx_tick_t; #define TBX_GET_TICK(t) __asm__ volatile("mftb %0" : "=r" (t)) #define TBX_TICK_RAW_DIFF(t1, t2) \ ((t2) - (t1)) #else /* fall back to imprecise but portable way */ #define TBX_TIMING_GETTIMEOFDAY typedef struct timeval tbx_tick_t, *p_tbx_tick_t; #define TBX_GET_TICK(t) \ gettimeofday(&(t), NULL) #define TBX_TICK_RAW_DIFF(t1, t2) \ ((t2.tv_sec * 1000000L + t2.tv_usec) - \ (t1.tv_sec * 1000000L + t1.tv_usec)) #endif #define TBX_TICK_DIFF(t1, t2) (TBX_TICK_RAW_DIFF(t1, t2) - tbx_residual) #define TBX_TIMING_DELAY(t1, t2) tbx_tick2usec(TBX_TICK_DIFF(t1, t2)) extern unsigned long long tbx_residual; extern tbx_tick_t tbx_new_event; extern tbx_tick_t tbx_last_event; char *tbx_tick2str(long long t); /* @} */ #endif /* TBX_TIMING_H */ fxt-0.3.15/tools/PaxHeaders/Makefile.in0000644000000000000000000000013215007143522014663 xustar0030 mtime=1746716498.273735485 30 atime=1746716502.812089763 30 ctime=1746716504.722613827 fxt-0.3.15/tools/Makefile.in0000644000175000017500000014470115007143522014360 0ustar00samysamy# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2024 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@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) am__rm_f = rm -f $(am__rm_f_notfound) am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd 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@ noinst_PROGRAMS = fut_bench$(EXEEXT) test$(EXEEXT) @FXT_HAVE_WINDOWS_TRUE@am__append_1 = -Xlinker --output-def -Xlinker .libs/libfxt.def bin_PROGRAMS = fxt_print$(EXEEXT) $(am__EXEEXT_1) $(am__EXEEXT_2) @FKT_TRUE@am__append_2 = fkt_record fkt_setmask fkt_extract fkt_print @FKT_TRUE@@X11_TRUE@am__append_3 = fkt_select TESTS = test$(EXEEXT) subdir = tools ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/amx_silent_rules.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(dist_bin_SCRIPTS) \ $(dist_noinst_SCRIPTS) $(include_HEADERS) $(noinst_HEADERS) \ $(pkginclude_HEADERS) $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = template2h.pl CONFIG_CLEAN_VPATH_FILES = @FKT_TRUE@am__EXEEXT_1 = fkt_record$(EXEEXT) fkt_setmask$(EXEEXT) \ @FKT_TRUE@ fkt_extract$(EXEEXT) fkt_print$(EXEEXT) @FKT_TRUE@@X11_TRUE@am__EXEEXT_2 = fkt_select$(EXEEXT) am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" \ "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" \ "$(DESTDIR)$(includedir)" "$(DESTDIR)$(pkgincludedir)" PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS) 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 = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \ } LTLIBRARIES = $(lib_LTLIBRARIES) am__DEPENDENCIES_1 = libfxt_la_DEPENDENCIES = $(am__DEPENDENCIES_1) am_libfxt_la_OBJECTS = fxt.lo names.lo symbols.lo pids.lo \ get_cpu_info.lo ev.lo fut_setup.lo fut_record.lo libfxt_la_OBJECTS = $(am_libfxt_la_OBJECTS) AM_V_lt = $(am__v_lt_@AM_V@) am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@) am__v_lt_0 = --silent am__v_lt_1 = libfxt_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(libfxt_la_LDFLAGS) $(LDFLAGS) -o $@ fkt_extract_SOURCES = fkt_extract.c fkt_extract_OBJECTS = fkt_extract.$(OBJEXT) fkt_extract_LDADD = $(LDADD) fkt_print_SOURCES = fkt_print.c fkt_print_OBJECTS = fkt_print.$(OBJEXT) fkt_print_DEPENDENCIES = libfxt.la fkt_record_SOURCES = fkt_record.c fkt_record_OBJECTS = fkt_record.$(OBJEXT) fkt_record_DEPENDENCIES = libfxt.la fkt_select_SOURCES = fkt_select.c fkt_select_OBJECTS = fkt_select.$(OBJEXT) fkt_select_DEPENDENCIES = fkt_setmask_SOURCES = fkt_setmask.c fkt_setmask_OBJECTS = fkt_setmask.$(OBJEXT) fkt_setmask_LDADD = $(LDADD) fut_bench_SOURCES = fut_bench.c fut_bench_OBJECTS = fut_bench.$(OBJEXT) fut_bench_DEPENDENCIES = libfxt.la fxt_print_SOURCES = fxt_print.c fxt_print_OBJECTS = fxt_print.$(OBJEXT) fxt_print_DEPENDENCIES = libfxt.la test_SOURCES = test.c test_OBJECTS = test.$(OBJEXT) test_DEPENDENCIES = libfxt.la SCRIPTS = $(dist_bin_SCRIPTS) $(dist_noinst_SCRIPTS) AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp am__maybe_remake_depfiles = depfiles am__depfiles_remade = ./$(DEPDIR)/ev.Plo ./$(DEPDIR)/fkt_extract.Po \ ./$(DEPDIR)/fkt_print.Po ./$(DEPDIR)/fkt_record.Po \ ./$(DEPDIR)/fkt_select.Po ./$(DEPDIR)/fkt_setmask.Po \ ./$(DEPDIR)/fut_bench.Po ./$(DEPDIR)/fut_record.Plo \ ./$(DEPDIR)/fut_setup.Plo ./$(DEPDIR)/fxt.Plo \ ./$(DEPDIR)/fxt_print.Po ./$(DEPDIR)/get_cpu_info.Plo \ ./$(DEPDIR)/names.Plo ./$(DEPDIR)/pids.Plo \ ./$(DEPDIR)/symbols.Plo ./$(DEPDIR)/test.Po am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \ $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \ $(AM_CFLAGS) $(CFLAGS) AM_V_CC = $(am__v_CC_@AM_V@) am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@) am__v_CC_0 = @echo " CC " $@; am__v_CC_1 = CCLD = $(CC) LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \ $(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \ $(AM_LDFLAGS) $(LDFLAGS) -o $@ AM_V_CCLD = $(am__v_CCLD_@AM_V@) am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@) am__v_CCLD_0 = @echo " CCLD " $@; am__v_CCLD_1 = SOURCES = $(libfxt_la_SOURCES) fkt_extract.c fkt_print.c fkt_record.c \ fkt_select.c fkt_setmask.c fut_bench.c fxt_print.c test.c DIST_SOURCES = $(libfxt_la_SOURCES) fkt_extract.c fkt_print.c \ fkt_record.c fkt_select.c fkt_setmask.c fut_bench.c \ fxt_print.c test.c am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac man1dir = $(mandir)/man1 NROFF = nroff MANS = $(man1_MANS) HEADERS = $(include_HEADERS) $(noinst_HEADERS) $(pkginclude_HEADERS) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` am__tty_colors_dummy = \ mgn= red= grn= lgn= blu= brg= std=; \ am__color_tests=no am__tty_colors = { \ $(am__tty_colors_dummy); \ if test "X$(AM_COLOR_TESTS)" = Xno; then \ am__color_tests=no; \ elif test "X$(AM_COLOR_TESTS)" = Xalways; then \ am__color_tests=yes; \ elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \ am__color_tests=yes; \ fi; \ if test $$am__color_tests = yes; then \ red=''; \ grn=''; \ lgn=''; \ blu=''; \ mgn=''; \ brg=''; \ std=''; \ fi; \ } am__recheck_rx = ^[ ]*:recheck:[ ]* am__global_test_result_rx = ^[ ]*:global-test-result:[ ]* am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]* # A command that, given a newline-separated list of test names on the # standard input, print the name of the tests that are to be re-run # upon "make recheck". am__list_recheck_tests = $(AWK) '{ \ recheck = 1; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ { \ if ((getline line2 < ($$0 ".log")) < 0) \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \ { \ recheck = 0; \ break; \ } \ else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \ { \ break; \ } \ }; \ if (recheck) \ print $$0; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # A command that, given a newline-separated list of test names on the # standard input, create the global log from their .trs and .log files. am__create_global_log = $(AWK) ' \ function fatal(msg) \ { \ print "fatal: making $@: " msg | "cat >&2"; \ exit 1; \ } \ function rst_section(header) \ { \ print header; \ len = length(header); \ for (i = 1; i <= len; i = i + 1) \ printf "="; \ printf "\n\n"; \ } \ { \ copy_in_global_log = 1; \ global_test_result = "RUN"; \ while ((rc = (getline line < ($$0 ".trs"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".trs"); \ if (line ~ /$(am__global_test_result_rx)/) \ { \ sub("$(am__global_test_result_rx)", "", line); \ sub("[ ]*$$", "", line); \ global_test_result = line; \ } \ else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \ copy_in_global_log = 0; \ }; \ if (copy_in_global_log) \ { \ rst_section(global_test_result ": " $$0); \ while ((rc = (getline line < ($$0 ".log"))) != 0) \ { \ if (rc < 0) \ fatal("failed to read from " $$0 ".log"); \ print line; \ }; \ printf "\n"; \ }; \ close ($$0 ".trs"); \ close ($$0 ".log"); \ }' # Restructured Text title. am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; } # Solaris 10 'make', and several other traditional 'make' implementations, # pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it # by disabling -e (using the XSI extension "set +e") if it's set. am__sh_e_setup = case $$- in *e*) set +e;; esac # Default flags passed to test drivers. am__common_driver_flags = \ --color-tests "$$am__color_tests" \ $$am__collect_skipped_logs \ --enable-hard-errors "$$am__enable_hard_errors" \ --expect-failure "$$am__expect_failure" # To be inserted before the command running the test. Creates the # directory for the log if needed. Stores in $dir the directory # containing $f, in $tst the test, in $log the log. Executes the # developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and # passes TESTS_ENVIRONMENT. Set up options for the wrapper that # will run the test scripts (or their associated LOG_COMPILER, if # thy have one). am__check_pre = \ $(am__sh_e_setup); \ $(am__vpath_adj_setup) $(am__vpath_adj) \ $(am__tty_colors); \ srcdir=$(srcdir); export srcdir; \ case "$@" in \ */*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \ *) am__odir=.;; \ esac; \ test "x$$am__odir" = x"." || test -d "$$am__odir" \ || $(MKDIR_P) "$$am__odir" || exit $$?; \ if test -f "./$$f"; then dir=./; \ elif test -f "$$f"; then dir=; \ else dir="$(srcdir)/"; fi; \ tst=$$dir$$f; log='$@'; \ if test -n '$(IGNORE_SKIPPED_LOGS)'; then \ am__collect_skipped_logs='--collect-skipped-logs no'; \ else \ am__collect_skipped_logs=''; \ fi; \ if test -n '$(DISABLE_HARD_ERRORS)'; then \ am__enable_hard_errors=no; \ else \ am__enable_hard_errors=yes; \ fi; \ case " $(XFAIL_TESTS) " in \ *[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \ am__expect_failure=yes;; \ *) \ am__expect_failure=no;; \ esac; \ $(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT) # A shell command to get the names of the tests scripts with any registered # extension removed (i.e., equivalently, the names of the test logs, with # the '.log' extension removed). The result is saved in the shell variable # '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly, # we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)", # since that might cause problem with VPATH rewrites for suffix-less tests. # See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'. am__set_TESTS_bases = \ bases='$(TEST_LOGS)'; \ bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \ bases=`echo $$bases` AM_TESTSUITE_SUMMARY_HEADER = ' for $(PACKAGE_STRING)' RECHECK_LOGS = $(TEST_LOGS) AM_RECURSIVE_TARGETS = check recheck TEST_SUITE_LOG = test-suite.log TEST_EXTENSIONS = @EXEEXT@ .test LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS) am__set_b = \ case '$@' in \ */*) \ case '$*' in \ */*) b='$*';; \ *) b=`echo '$@' | sed 's/\.log$$//'`; \ esac;; \ *) \ b='$*';; \ esac am__test_logs1 = $(TESTS:=.log) am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log) TEST_LOGS = $(am__test_logs2:.test.log=.log) TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \ $(TEST_LOG_FLAGS) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/template2h.pl.in \ $(top_srcdir)/build-aux/depcomp \ $(top_srcdir)/build-aux/test-driver ChangeLog depcomp DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AM_LFS_CFLAGS = @AM_LFS_CFLAGS@ AM_LFS_LDFLAGS = @AM_LFS_LDFLAGS@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CSCOPE = @CSCOPE@ CTAGS = @CTAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EPSTOPDF = @EPSTOPDF@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FILECMD = @FILECMD@ FXT_LIBS = @FXT_LIBS@ FXT_MS_LIB = @FXT_MS_LIB@ FXT_MS_LIB_ARCH = @FXT_MS_LIB_ARCH@ GREP = @GREP@ HELP2MAN = @HELP2MAN@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LATEX = @LATEX@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ am__xargs_n = @am__xargs_n@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ldflags = $(am__append_1) # Flags globaux AM_CFLAGS = @AM_LFS_CFLAGS@ AM_LDFLAGS = @AM_LFS_LDFLAGS@ AM_CPPFLAGS = -I$(srcdir)/../kernel/linux-fkt/include libfxt_la_LDFLAGS = $(ldflags) -no-undefined -version-info 2:0:0 libfxt_la_LIBADD = $(FXT_LIBS) noinst_HEADERS = fxt_internal.h fut-template.h timer.h dist_noinst_SCRIPTS = template2h.pl makediff include_HEADERS = fxt-tools.h fxt.h fut.h pkginclude_HEADERS = fxt-tools.h fxt.h fut.h dist_bin_SCRIPTS = sigmund EXTRA_DIST = fkt_bufstats fkt_timestats fkt_timestats-log time.c timer.c tbx_timing.h dolib.c @FKT_TRUE@SYMLINKS_PROGS = fkt_disable fkt_enable fkt_probe0 fxt_print_LDADD = libfxt.la fkt_print_LDADD = libfxt.la fkt_record_LDADD = libfxt.la fkt_select_LDADD = -L/usr/X11R6/lib -lX11 fut_bench_LDADD = libfxt.la -lpthread test_LDADD = libfxt.la # La bibliothèque lib_LTLIBRARIES = libfxt.la libfxt_la_SOURCES = fxt.c names.c symbols.c pids.c get_cpu_info.c ev.c \ fut_setup.c fut_record.c fxt/trap_names.h fxt/sysirq_names.h \ fxt/syscall_names.h fkt_code_name.h # Les trucs spéciaux CLEANFILES = fut.h fut_print.h temp temp2 fxt_print.log fxt_print.1 BUILT_SOURCES = fut.h fut_print.h @HAVE_HELP2MAN_TRUE@man1_MANS = fxt_print.1 all: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) all-am .SUFFIXES: .SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs $(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 ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign tools/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign tools/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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ 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 $(am__aclocal_m4_deps): template2h.pl: $(top_builddir)/config.status $(srcdir)/template2h.pl.in cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p \ || test -f $$p1 \ ; then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' \ -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' \ `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && $(am__rm_f) $$files clean-binPROGRAMS: $(am__rm_f) $(bin_PROGRAMS) test -z "$(EXEEXT)" || $(am__rm_f) $(bin_PROGRAMS:$(EXEEXT)=) clean-noinstPROGRAMS: $(am__rm_f) $(noinst_PROGRAMS) test -z "$(EXEEXT)" || $(am__rm_f) $(noinst_PROGRAMS:$(EXEEXT)=) install-libLTLIBRARIES: $(lib_LTLIBRARIES) @$(NORMAL_INSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ list2=; for p in $$list; do \ if test -f $$p; then \ list2="$$list2 $$p"; \ else :; fi; \ done; \ test -z "$$list2" || { \ echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \ } uninstall-libLTLIBRARIES: @$(NORMAL_UNINSTALL) @list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \ for p in $$list; do \ $(am__strip_dir) \ echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \ $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \ done clean-libLTLIBRARIES: -$(am__rm_f) $(lib_LTLIBRARIES) @list='$(lib_LTLIBRARIES)'; \ locs=`for p in $$list; do echo $$p; done | \ sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \ sort -u`; \ echo rm -f $${locs}; \ $(am__rm_f) $${locs} libfxt.la: $(libfxt_la_OBJECTS) $(libfxt_la_DEPENDENCIES) $(EXTRA_libfxt_la_DEPENDENCIES) $(AM_V_CCLD)$(libfxt_la_LINK) -rpath $(libdir) $(libfxt_la_OBJECTS) $(libfxt_la_LIBADD) $(LIBS) fkt_extract$(EXEEXT): $(fkt_extract_OBJECTS) $(fkt_extract_DEPENDENCIES) $(EXTRA_fkt_extract_DEPENDENCIES) @rm -f fkt_extract$(EXEEXT) $(AM_V_CCLD)$(LINK) $(fkt_extract_OBJECTS) $(fkt_extract_LDADD) $(LIBS) fkt_print$(EXEEXT): $(fkt_print_OBJECTS) $(fkt_print_DEPENDENCIES) $(EXTRA_fkt_print_DEPENDENCIES) @rm -f fkt_print$(EXEEXT) $(AM_V_CCLD)$(LINK) $(fkt_print_OBJECTS) $(fkt_print_LDADD) $(LIBS) fkt_record$(EXEEXT): $(fkt_record_OBJECTS) $(fkt_record_DEPENDENCIES) $(EXTRA_fkt_record_DEPENDENCIES) @rm -f fkt_record$(EXEEXT) $(AM_V_CCLD)$(LINK) $(fkt_record_OBJECTS) $(fkt_record_LDADD) $(LIBS) fkt_select$(EXEEXT): $(fkt_select_OBJECTS) $(fkt_select_DEPENDENCIES) $(EXTRA_fkt_select_DEPENDENCIES) @rm -f fkt_select$(EXEEXT) $(AM_V_CCLD)$(LINK) $(fkt_select_OBJECTS) $(fkt_select_LDADD) $(LIBS) fkt_setmask$(EXEEXT): $(fkt_setmask_OBJECTS) $(fkt_setmask_DEPENDENCIES) $(EXTRA_fkt_setmask_DEPENDENCIES) @rm -f fkt_setmask$(EXEEXT) $(AM_V_CCLD)$(LINK) $(fkt_setmask_OBJECTS) $(fkt_setmask_LDADD) $(LIBS) fut_bench$(EXEEXT): $(fut_bench_OBJECTS) $(fut_bench_DEPENDENCIES) $(EXTRA_fut_bench_DEPENDENCIES) @rm -f fut_bench$(EXEEXT) $(AM_V_CCLD)$(LINK) $(fut_bench_OBJECTS) $(fut_bench_LDADD) $(LIBS) fxt_print$(EXEEXT): $(fxt_print_OBJECTS) $(fxt_print_DEPENDENCIES) $(EXTRA_fxt_print_DEPENDENCIES) @rm -f fxt_print$(EXEEXT) $(AM_V_CCLD)$(LINK) $(fxt_print_OBJECTS) $(fxt_print_LDADD) $(LIBS) test$(EXEEXT): $(test_OBJECTS) $(test_DEPENDENCIES) $(EXTRA_test_DEPENDENCIES) @rm -f test$(EXEEXT) $(AM_V_CCLD)$(LINK) $(test_OBJECTS) $(test_LDADD) $(LIBS) install-dist_binSCRIPTS: $(dist_bin_SCRIPTS) @$(NORMAL_INSTALL) @list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \ $(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n' \ -e 'h;s|.*|.|' \ -e 'p;x;s,.*/,,;$(transform)' | sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1; } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) { files[d] = files[d] " " $$1; \ if (++n[d] == $(am__install_max)) { \ print "f", d, files[d]; n[d] = 0; files[d] = "" } } \ else { print "f", d "/" $$4, $$1 } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_SCRIPT) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_SCRIPT) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-dist_binSCRIPTS: @$(NORMAL_UNINSTALL) @list='$(dist_bin_SCRIPTS)'; test -n "$(bindir)" || exit 0; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 's,.*/,,;$(transform)'`; \ dir='$(DESTDIR)$(bindir)'; $(am__uninstall_files_from_dir) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ev.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fkt_extract.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fkt_print.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fkt_record.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fkt_select.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fkt_setmask.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fut_bench.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fut_record.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fut_setup.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fxt.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/fxt_print.Po@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/get_cpu_info.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/names.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pids.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/symbols.Plo@am__quote@ # am--include-marker @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test.Po@am__quote@ # am--include-marker $(am__depfiles_remade): @$(MKDIR_P) $(@D) @: >>$@ am--depfiles: $(am__depfiles_remade) .c.o: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $< .c.obj: @am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-man1: $(man1_MANS) @$(NORMAL_INSTALL) @list1='$(man1_MANS)'; \ list2=''; \ test -n "$(man1dir)" \ && test -n "`echo $$list1$$list2`" \ || exit 0; \ echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \ $(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \ { for i in $$list1; do echo "$$i"; done; \ if test -n "$$list2"; then \ for i in $$list2; do echo "$$i"; done \ | sed -n '/\.1[a-z]*$$/p'; \ fi; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list='$(man1_MANS)'; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir) install-includeHEADERS: $(include_HEADERS) @$(NORMAL_INSTALL) @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(includedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(includedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \ done uninstall-includeHEADERS: @$(NORMAL_UNINSTALL) @list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(includedir)'; $(am__uninstall_files_from_dir) install-pkgincludeHEADERS: $(pkginclude_HEADERS) @$(NORMAL_INSTALL) @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgincludedir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(pkgincludedir)'"; \ $(INSTALL_HEADER) $$files "$(DESTDIR)$(pkgincludedir)" || exit $$?; \ done uninstall-pkgincludeHEADERS: @$(NORMAL_UNINSTALL) @list='$(pkginclude_HEADERS)'; test -n "$(pkgincludedir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgincludedir)'; $(am__uninstall_files_from_dir) ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-am TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-am CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscopelist: cscopelist-am cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags # Recover from deleted '.trs' file; this should ensure that # "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create # both 'foo.log' and 'foo.trs'. Break the recipe in two subshells # to avoid problems with "make -n". .log.trs: rm -f $< $@ $(MAKE) $(AM_MAKEFLAGS) $< # Leading 'am--fnord' is there to ensure the list of targets does not # expand to empty, as could happen e.g. with make check TESTS=''. am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck) am--force-recheck: @: $(TEST_SUITE_LOG): $(TEST_LOGS) @$(am__set_TESTS_bases); \ am__f_ok () { test -f "$$1" && test -r "$$1"; }; \ redo_bases=`for i in $$bases; do \ am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \ done`; \ if test -n "$$redo_bases"; then \ redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \ redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \ if $(am__make_dryrun); then :; else \ rm -f $$redo_logs && rm -f $$redo_results || exit 1; \ fi; \ fi; \ if test -n "$$am__remaking_logs"; then \ echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \ "recursion detected" >&2; \ elif test -n "$$redo_logs"; then \ am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \ fi; \ if $(am__make_dryrun); then :; else \ st=0; \ errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \ for i in $$redo_bases; do \ test -f $$i.trs && test -r $$i.trs \ || { echo "$$errmsg $$i.trs" >&2; st=1; }; \ test -f $$i.log && test -r $$i.log \ || { echo "$$errmsg $$i.log" >&2; st=1; }; \ done; \ test $$st -eq 0 || exit 1; \ fi @$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \ ws='[ ]'; \ results=`for b in $$bases; do echo $$b.trs; done`; \ test -n "$$results" || results=/dev/null; \ all=` grep "^$$ws*:test-result:" $$results | wc -l`; \ pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \ fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \ skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \ xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \ xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \ error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \ if test `expr $$fail + $$xpass + $$error` -eq 0; then \ success=true; \ else \ success=false; \ fi; \ br='==================='; br=$$br$$br$$br$$br; \ result_count () \ { \ if test x"$$1" = x"--maybe-color"; then \ maybe_colorize=yes; \ elif test x"$$1" = x"--no-color"; then \ maybe_colorize=no; \ else \ echo "$@: invalid 'result_count' usage" >&2; exit 4; \ fi; \ shift; \ desc=$$1 count=$$2; \ if test $$maybe_colorize = yes && test $$count -gt 0; then \ color_start=$$3 color_end=$$std; \ else \ color_start= color_end=; \ fi; \ echo "$${color_start}# $$desc $$count$${color_end}"; \ }; \ create_testsuite_report () \ { \ result_count $$1 "TOTAL:" $$all "$$brg"; \ result_count $$1 "PASS: " $$pass "$$grn"; \ result_count $$1 "SKIP: " $$skip "$$blu"; \ result_count $$1 "XFAIL:" $$xfail "$$lgn"; \ result_count $$1 "FAIL: " $$fail "$$red"; \ result_count $$1 "XPASS:" $$xpass "$$red"; \ result_count $$1 "ERROR:" $$error "$$mgn"; \ }; \ output_system_information () \ { \ echo; \ { uname -a | $(AWK) '{ \ printf "System information (uname -a):"; \ for (i = 1; i < NF; ++i) \ { \ if (i != 2) \ printf " %s", $$i; \ } \ printf "\n"; \ }'; } 2>&1; \ if test -r /etc/os-release; then \ echo "Distribution information (/etc/os-release):"; \ sed 8q /etc/os-release; \ elif test -r /etc/issue; then \ echo "Distribution information (/etc/issue):"; \ cat /etc/issue; \ fi; \ }; \ please_report () \ { \ echo "Some test(s) failed. Please report this to $(PACKAGE_BUGREPORT),"; \ echo "together with the test-suite.log file (gzipped) and your system"; \ echo "information. Thanks."; \ }; \ { \ echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \ $(am__rst_title); \ create_testsuite_report --no-color; \ output_system_information; \ echo; \ echo ".. contents:: :depth: 2"; \ echo; \ for b in $$bases; do echo $$b; done \ | $(am__create_global_log); \ } >$(TEST_SUITE_LOG).tmp || exit 1; \ mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \ if $$success; then \ col="$$grn"; \ else \ col="$$red"; \ test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \ fi; \ echo "$${col}$$br$${std}"; \ echo "$${col}Testsuite summary"$(AM_TESTSUITE_SUMMARY_HEADER)"$${std}"; \ echo "$${col}$$br$${std}"; \ create_testsuite_report --maybe-color; \ echo "$$col$$br$$std"; \ if $$success; then :; else \ echo "$${col}See $(subdir)/$(TEST_SUITE_LOG) for debugging.$${std}";\ if test -n "$(PACKAGE_BUGREPORT)"; then \ please_report | sed -e "s/^/$${col}/" -e s/'$$'/"$${std}"/; \ fi; \ echo "$$col$$br$$std"; \ fi; \ $$success || exit 1 check-TESTS: @$(am__rm_f) $(RECHECK_LOGS) @$(am__rm_f) $(RECHECK_LOGS:.log=.trs) @$(am__rm_f) $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ log_list=`for i in $$bases; do echo $$i.log; done`; \ log_list=`echo $$log_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \ exit $$?; recheck: all @$(am__rm_f) $(TEST_SUITE_LOG) @set +e; $(am__set_TESTS_bases); \ bases=`for i in $$bases; do echo $$i; done \ | $(am__list_recheck_tests)` || exit 1; \ log_list=`for i in $$bases; do echo $$i.log; done`; \ log_list=`echo $$log_list`; \ $(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \ am__force_recheck=am--force-recheck \ TEST_LOGS="$$log_list"; \ exit $$? test.log: test$(EXEEXT) @p='test$(EXEEXT)'; \ b='test'; \ $(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) .test.log: @p='$<'; \ $(am__set_b); \ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ --log-file $$b.log --trs-file $$b.trs \ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ "$$tst" $(AM_TESTS_FD_REDIRECT) @am__EXEEXT_TRUE@.test$(EXEEXT).log: @am__EXEEXT_TRUE@ @p='$<'; \ @am__EXEEXT_TRUE@ $(am__set_b); \ @am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \ @am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \ @am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \ @am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT) distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$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 $(MAKE) $(AM_MAKEFLAGS) check-TESTS check: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) check-am @FXT_HAVE_MS_LIB_FALSE@all-local: @FXT_HAVE_WINDOWS_FALSE@all-local: all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(SCRIPTS) $(MANS) \ $(HEADERS) all-local install-binPROGRAMS: install-libLTLIBRARIES installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(includedir)" "$(DESTDIR)$(pkgincludedir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) install-am install-exec: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) 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: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: -$(am__rm_f) $(TEST_LOGS) -$(am__rm_f) $(TEST_LOGS:.log=.trs) -$(am__rm_f) $(TEST_SUITE_LOG) clean-generic: -$(am__rm_f) $(CLEANFILES) distclean-generic: -$(am__rm_f) $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." -$(am__rm_f) $(BUILT_SOURCES) clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \ clean-libtool clean-noinstPROGRAMS mostlyclean-am distclean: distclean-am -rm -f ./$(DEPDIR)/ev.Plo -rm -f ./$(DEPDIR)/fkt_extract.Po -rm -f ./$(DEPDIR)/fkt_print.Po -rm -f ./$(DEPDIR)/fkt_record.Po -rm -f ./$(DEPDIR)/fkt_select.Po -rm -f ./$(DEPDIR)/fkt_setmask.Po -rm -f ./$(DEPDIR)/fut_bench.Po -rm -f ./$(DEPDIR)/fut_record.Plo -rm -f ./$(DEPDIR)/fut_setup.Plo -rm -f ./$(DEPDIR)/fxt.Plo -rm -f ./$(DEPDIR)/fxt_print.Po -rm -f ./$(DEPDIR)/get_cpu_info.Plo -rm -f ./$(DEPDIR)/names.Plo -rm -f ./$(DEPDIR)/pids.Plo -rm -f ./$(DEPDIR)/symbols.Plo -rm -f ./$(DEPDIR)/test.Po -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-includeHEADERS install-man \ install-pkgincludeHEADERS install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-dist_binSCRIPTS \ install-libLTLIBRARIES @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) install-exec-hook install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-man1 install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -f ./$(DEPDIR)/ev.Plo -rm -f ./$(DEPDIR)/fkt_extract.Po -rm -f ./$(DEPDIR)/fkt_print.Po -rm -f ./$(DEPDIR)/fkt_record.Po -rm -f ./$(DEPDIR)/fkt_select.Po -rm -f ./$(DEPDIR)/fkt_setmask.Po -rm -f ./$(DEPDIR)/fut_bench.Po -rm -f ./$(DEPDIR)/fut_record.Plo -rm -f ./$(DEPDIR)/fut_setup.Plo -rm -f ./$(DEPDIR)/fxt.Plo -rm -f ./$(DEPDIR)/fxt_print.Po -rm -f ./$(DEPDIR)/get_cpu_info.Plo -rm -f ./$(DEPDIR)/names.Plo -rm -f ./$(DEPDIR)/pids.Plo -rm -f ./$(DEPDIR)/symbols.Plo -rm -f ./$(DEPDIR)/test.Po -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-dist_binSCRIPTS \ uninstall-includeHEADERS uninstall-libLTLIBRARIES \ uninstall-man uninstall-pkgincludeHEADERS uninstall-man: uninstall-man1 .MAKE: all check check-am install install-am install-exec \ install-exec-am install-strip .PHONY: CTAGS GTAGS TAGS all all-am all-local am--depfiles check \ check-TESTS check-am clean clean-binPROGRAMS clean-generic \ clean-libLTLIBRARIES clean-libtool clean-noinstPROGRAMS \ cscopelist-am ctags ctags-am distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am \ install-dist_binSCRIPTS install-dvi install-dvi-am \ install-exec install-exec-am install-exec-hook install-html \ install-html-am install-includeHEADERS install-info \ install-info-am install-libLTLIBRARIES install-man \ install-man1 install-pdf install-pdf-am \ install-pkgincludeHEADERS install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am recheck tags tags-am uninstall \ uninstall-am uninstall-binPROGRAMS uninstall-dist_binSCRIPTS \ uninstall-includeHEADERS uninstall-libLTLIBRARIES \ uninstall-man uninstall-man1 uninstall-pkgincludeHEADERS .PRECIOUS: Makefile @FXT_HAVE_MS_LIB_TRUE@@FXT_HAVE_WINDOWS_TRUE@.libs/libfxt-2.lib: libfxt.la dolib @FXT_HAVE_MS_LIB_TRUE@@FXT_HAVE_WINDOWS_TRUE@ ./dolib "$(FXT_MS_LIB)" $(FXT_MS_LIB_ARCH) .libs/libfxt.def libfxt-2 .libs/libfxt-2.lib @FXT_HAVE_MS_LIB_TRUE@@FXT_HAVE_WINDOWS_TRUE@all-local: .libs/libfxt-2.lib install-exec-hook: set -e; \ cd $(DESTDIR)$(bindir) ; \ $(foreach prog, $(SYMLINKS_PROGS), \ $(RM) $(prog)$(EXEEXT) ; \ $(LN_S) fkt_setmask$(EXEEXT) $(prog)$(EXEEXT) ;) @FXT_HAVE_WINDOWS_TRUE@ $(INSTALL) .libs/libfxt.def $(DESTDIR)$(libdir) @FXT_HAVE_MS_LIB_TRUE@@FXT_HAVE_WINDOWS_TRUE@ $(INSTALL) .libs/libfxt-2.lib $(DESTDIR)$(libdir) @FXT_HAVE_MS_LIB_TRUE@@FXT_HAVE_WINDOWS_TRUE@ $(INSTALL) .libs/libfxt-2.exp $(DESTDIR)$(libdir) fxt_print.$(OBJEXT): fut.h fut_print.h fkt_print.$(OBJEXT): fut.h fut_print.h test.$(OBJEXT): fut.h fut_print.h ev.lo: fut.h fut.h: fut-template.h template2h.pl ./template2h.pl < $< > $@ fut_print.h: fut.h $(AWK) 'BEGIN \ { print "/* this is a generated file,"\ "do not edit it */" \ }\ /^#define.*FUT_.*_CODE/ \ { print "{ "$$2", \"" \ tolower(gensub("_CODE$$","","g",$$2)) \ "\"}," \ }' \ $< > $@ || ( $(RM) -f $@ ; exit 1 ) @HAVE_HELP2MAN_TRUE@fxt_print.1: fxt_print @HAVE_HELP2MAN_TRUE@ help2man --version-string=$(VERSION) -N -n "Dump the content of an FxT trace file" --output=$@ ./$< # 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: # Tell GNU make to disable its built-in pattern rules. %:: %,v %:: RCS/%,v %:: RCS/% %:: s.% %:: SCCS/s.% fxt-0.3.15/tools/PaxHeaders/fxt_internal.h0000644000000000000000000000013213745534563015504 xustar0030 mtime=1603713395.913327165 30 atime=1746715490.217509167 30 ctime=1746716504.719411304 fxt-0.3.15/tools/fxt_internal.h0000644000175000017500000002417013745534563015176 0ustar00samysamy/* * Copyright (C) 2004, 2011-2012, 2017, 2020 Samuel Thibault * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __FXT_INTERNAL_H #define __FXT_INTERNAL_H #include #include #include #include "fxt-tools.h" struct fxt_block { off_t start; struct fxt_block *parent; struct fxt_block_ondisk { uint64_t size; int32_t type; int32_t subtype; } ondisk ; }; extern struct fxt_block *__fxt_block_current; /****************************************************************************** * * opened trace structure */ struct code_list_item { unsigned long long code; const char *name; struct code_list_item *link; }; /* names are hashed according to the first 5 low bits of the 2 first characters, * i.e. 1024 entries */ #define NAMEHASH_ENTRIES 1024 struct address_entry { const char *name; uint32_t len; uint64_t address; fxt_symbol_source source; struct address_entry *next; }; struct module_entry { char *name; unsigned long base; const char *path; struct module_entry *next; }; #define PIDHASH_ENTRIES 256 struct pid_entry { uint64_t pid; char name[FXT_MAXCOMMLEN+1]; struct pid_entry *next; }; struct _fxt { /* first and uname block: misc informations */ struct fxt_infos infos; /* irq block */ unsigned int nirqs; struct code_list_item *irq_list; /* addresses block */ struct address_entry *addresses[NAMEHASH_ENTRIES]; struct module_entry *modules_entries; /* pids block */ struct pid_entry *pidentries[PIDHASH_ENTRIES]; /* opened file */ int fd; FILE* fstream; struct fxt_block events_block; /* lwp status */ int nlwps; int *already_saw; uint64_t *secondlasttid; uint64_t *lasttid; }; /****************************************************************************** * * Names */ extern int fkt_record_irqs(fxt_t fxt, int fd); extern int fkt_load_irqs(fxt_t fxt, FILE *fstream); extern int fkt_record_pids(fxt_t fxt, int fd); extern int fkt_load_pids(fxt_t fxt, FILE *fstream); extern int fxt_record_symbols(fxt_t fxt, int fd); extern int fxt_load_symbols(fxt_t fxt, FILE *fstream); /****************************************************************************** * * Record facilities */ extern int fxt_get_cpu_info(fxt_t fxt); /****************************************************************************** * * Blocks management */ #define FXT_ALIGN 8 /* this is used to enforce the record file structure, with an offset field at * the beginning of every block, which tells the size of the block and then an * int describing the type of the block */ #define GET_BLOCK_TYPE(block) (block).ondisk.type #define GET_BLOCK_SUBTYPE(block) (block).ondisk.subtype inline static off_t fxt_block_align(int fd) { off_t start; if( (start=lseek(fd,0,SEEK_CUR)) < 0 ) { perror("lseek getting current position"); exit(EXIT_FAILURE); } #if 0 if ( start & (FXT_ALIGN-1) ) { if ( (start=lseek(fd, FXT_ALIGN-(start & (FXT_ALIGN-1)), SEEK_CUR)) < 0) { perror("lseek aligning position"); exit(EXIT_FAILURE); } } #endif return start; } inline static off_t fxt_block_falign(FILE *fstream) { off_t start; if( (start=ftell(fstream)) < 0 ) { perror("ftell getting current position"); exit(EXIT_FAILURE); } #if 0 if ( start & (FXT_ALIGN-1) ) { if ( (fseek(fstream, FXT_ALIGN-(start & (FXT_ALIGN-1)), SEEK_CUR)) < 0) { perror("lseek aligning position"); exit(EXIT_FAILURE); } start = ftell(fstream); } #endif return start; } #define ENTER_FBLOCK(fstream) \ { \ struct fxt_block __fxt_block; \ fxt_fblock_enter(fxt, fstream, &__fxt_block); inline static void fxt_fblock_enter(fxt_t fxt, FILE *fstream, struct fxt_block *block) { block->start=fxt_block_falign(fstream); block->parent=__fxt_block_current; if( fread(&block->ondisk, sizeof(struct fxt_block_ondisk), 1, fstream) < 1 ) { perror("entering block"); exit(EXIT_FAILURE); } SWAP(64,block->ondisk.size); SWAP(32,block->ondisk.type); SWAP(32,block->ondisk.subtype); if (0==block->ondisk.size && block->parent && block->parent->ondisk.size) { block->ondisk.size=block->parent->ondisk.size; } __fxt_block_current=block; } #define ENTER_FBLOCK_TYPE(fstream, type) \ ENTER_FBLOCK(fstream); \ fxt_block_ensure_type(&__fxt_block, type); #define ENTER_BLOCK(fd) \ { \ struct fxt_block __fxt_block; \ fxt_block_enter(fxt, fd, &__fxt_block); inline static void fxt_block_enter(fxt_t fxt, int fd, struct fxt_block *block) { block->start=fxt_block_align(fd); block->parent=__fxt_block_current; if( read(fd,&block->ondisk, sizeof(struct fxt_block_ondisk)) < (ssize_t) sizeof(struct fxt_block_ondisk) ) { perror("entering block"); exit(EXIT_FAILURE); } SWAP(64,block->ondisk.size); SWAP(32,block->ondisk.type); SWAP(32,block->ondisk.subtype); if (0==block->ondisk.size && block->parent && block->parent->ondisk.size) { block->ondisk.size=block->parent->ondisk.size; } __fxt_block_current=block; } #define ENTER_BLOCK_TYPE(fd, type) \ ENTER_BLOCK(fd); \ fxt_block_ensure_type(&__fxt_block, type); inline static void fxt_block_ensure_type(struct fxt_block *block, int type) { if (block->ondisk.type != type) { fprintf(stderr, "Should entering block type %i, but loading type %i\n", type, block->ondisk.type); exit(EXIT_FAILURE); } } #define LEAVE_BLOCK(fd) \ fxt_block_leave(fd, &__fxt_block); \ } /* matching {} */ inline static void fxt_block_leave(int fd, struct fxt_block *block) { off_t end=block->start + block->ondisk.size; if (block->ondisk.size==0) { /* special value 0: block spans up to the end of file */ if (lseek(fd, 0, SEEK_END) < 0) { perror("seeking forward to end of block"); exit(EXIT_FAILURE); } } else { if (lseek(fd, end, SEEK_SET) != end ) { perror("seeking forward to end of block"); exit(EXIT_FAILURE); } } __fxt_block_current=block->parent; } #define LEAVE_FBLOCK(fstream) \ fxt_fblock_leave(fstream, &__fxt_block); \ } /* matching {} */ inline static void fxt_fblock_leave(FILE *fstream, struct fxt_block *block) { off_t end=block->start + block->ondisk.size; if (block->ondisk.size==0) { /* special value 0: block spans up to the end of file */ if (fseek(fstream, 0, SEEK_END) < 0) { perror("seeking forward to end of block"); exit(EXIT_FAILURE); } } else { if (fseek(fstream, end, SEEK_SET) != 0 ) { perror("seeking forward to end of block"); exit(EXIT_FAILURE); } } __fxt_block_current=block->parent; } #define BEGIN_BLOCK(fd, type) \ { \ struct fxt_block __fxt_block; \ fxt_block_begin(fd, type, 0, 0, &__fxt_block); inline static void fxt_block_begin(int fd, int type, int subtype, off_t size, struct fxt_block *block) { block->start=fxt_block_align(fd); block->ondisk.size=size; block->ondisk.type=type; block->ondisk.subtype=subtype; if( write(fd,&block->ondisk,sizeof(block->ondisk)) != sizeof(block->ondisk) ) { perror("writing dummy offset"); exit(EXIT_FAILURE); } block->parent=__fxt_block_current; __fxt_block_current=block; } #define END_BLOCK(fd) \ fxt_block_end(fd, &__fxt_block); \ } inline static void fxt_block_end(int fd, struct fxt_block *block) { off_t end; if( (end=lseek(fd,0,SEEK_CUR)) < 0 ) { perror("getting block end seek"); exit(EXIT_FAILURE); } if( lseek(fd,block->start,SEEK_SET) != block->start ) { perror("seeking back to beginning of block"); exit(EXIT_FAILURE); } block->ondisk.size = end - block->start; if( write(fd,&block->ondisk.size,sizeof(block->ondisk.size)) < (ssize_t) sizeof(block->ondisk.size) ) { perror("writing end of block size\n"); exit(EXIT_FAILURE); } fxt_block_leave(fd, block); } inline static void skip_block( fxt_t fxt ) { off_t size; if( fread(&size,sizeof(size),1,fxt->fstream) < 1 ) { perror("reading end of block size\n"); exit(EXIT_FAILURE); } SWAP(32,size); if (size==0) { if (fseek(fxt->fstream,0,SEEK_END)<0) { perror("seeking forward to end of block"); exit(EXIT_FAILURE); } } if( fseek(fxt->fstream,size-sizeof(size),SEEK_CUR) < 0 ) { perror("seeking forward to end of block"); exit(EXIT_FAILURE); } } enum { FXT_BLOCK_INFOS=1, FXT_BLOCK_TIME=0x10, FXT_BLOCK_UNAME, FXT_BLOCK_IRQS, FXT_BLOCK_ADDRS, FXT_BLOCK_PIDS, FXT_BLOCK_TRACES_KERNEL_RAW32=0x100, FXT_BLOCK_TRACES_KERNEL_RAW64, FXT_BLOCK_TRACES_USER_RAW32=0x200, FXT_BLOCK_TRACES_USER_RAW64, }; #ifdef FUT_USE_SPINLOCKS extern pthread_spinlock_t fut_slot_lock; #endif unsigned long* __fut_record_event(fxt_trace_user_raw_t * rec, uint64_t stamp, unsigned long code); uint64_t fut_flush( const char* filename, void *first_slot, void* next_slot, int record_flush_events ); void __fut_reset_pointers(); extern uint64_t fut_nallocated; #define i386_sync() __asm__ __volatile__("lock; addl $0,0(%%esp)" ::: "memory") #define x86_64_sync() __asm__ __volatile__("lock; addl $0,0(%%rsp)" ::: "memory") #define ppc_sync() __asm__ __volatile__("sync" ::: "memory") #if defined(__i386__) #define mb() i386_sync() #define rmb() i386_sync() #define wmb() i386_sync() #elif defined(__KNC__) || defined(__KNF__) #define mb() x86_64_sync() #define rmb() mb() #define wmb() mb() #elif defined(__x86_64__) #define mb() x86_64_sync() #define rmb() __asm__ __volatile__("lfence" ::: "memory") #define wmb() __asm__ __volatile__("sfence" ::: "memory") #elif defined(__ppc__) || defined(__ppc64__) #define mb() ppc_sync() #define rmb() ppc_sync() #define wmb() ppc_sync() #else #define mb() __sync_synchronize() #define rmb() __sync_synchronize() #define wmb() __sync_synchronize() #endif #endif /* __FXT_INTERNAL_H */ fxt-0.3.15/tools/PaxHeaders/ev.c0000644000000000000000000000013014713107545013402 xustar0028 mtime=1730973541.9973468 30 atime=1746715490.217509167 30 ctime=1746716504.734925105 fxt-0.3.15/tools/ev.c0000644000175000017500000002450014713107545013073 0ustar00samysamy/* ev.c ev -- events management. Copyright (C) 2000, 2001 Robert D. Russell -- rdr@unh.edu 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /***** 15-Oct-00 rdr modified for 2.4.0-test9 *****/ /* also commented out use of FKT_TCP_RECVMSG_SCHEDI_CODE */ #include #include #include #include #include #include #include #include "fxt.h" #include "fut.h" #include "linux/fkt.h" #include "fxt-tools.h" #include "fxt_internal.h" struct fxt_blockev { /* fichier contenant les traces */ fxt_t fxt; /* types d'événements (FXT_TRACE_...) */ long type; /* block disque contenant les événements */ struct fxt_block block; /* position courante dans le fichier * A étoffer en lisant le fichier par block... */ off_t cur_pos; /* Données particulières pour chaque type de trace */ union { struct { /* offset de fin des données (après il faut * aller à la page suivante) */ off_t end_data; /* offset du début de la page de données (null à l'initialisation) */ off_t start_data; } raw; }; }; static int fxt_fill_blockev(fxt_t fxt, fxt_blockev_t evs) { off_t offset=0; FILE *fstream=evs->fxt->fstream; fxt_fblock_enter(fxt, fstream, &evs->block); switch (GET_BLOCK_TYPE(evs->block)) { case FXT_BLOCK_TRACES_KERNEL_RAW32: evs->type=FXT_TRACE_KERNEL_RAW32; break; case FXT_BLOCK_TRACES_KERNEL_RAW64: evs->type=FXT_TRACE_KERNEL_RAW64; break; case FXT_BLOCK_TRACES_USER_RAW32: evs->type=FXT_TRACE_USER_RAW32; break; case FXT_BLOCK_TRACES_USER_RAW64: evs->type=FXT_TRACE_USER_RAW64; break; default: fprintf(stderr,"Unknown block trace type %u\n", GET_BLOCK_TYPE(evs->block)); return -1; } switch (evs->type) { case FXT_TRACE_KERNEL_RAW32: case FXT_TRACE_KERNEL_RAW64: READ(64, offset); /* Fall thru */ case FXT_TRACE_USER_RAW32: case FXT_TRACE_USER_RAW64: if ((fseek(fstream,offset,SEEK_CUR))<0) { perror("seeking to start of events"); return -1; } evs->cur_pos=ftell(fstream); break; } switch (evs->type) { case FXT_TRACE_KERNEL_RAW32: case FXT_TRACE_KERNEL_RAW64: evs->raw.end_data =evs->cur_pos; evs->raw.start_data=evs->cur_pos - evs->fxt->infos.page_size; break; case FXT_TRACE_USER_RAW32: case FXT_TRACE_USER_RAW64: evs->raw.end_data = evs->block.start + evs->block.ondisk.size; evs->raw.start_data=evs->cur_pos; break; } return 0; } fxt_blockev_t fxt_blockev_enter(fxt_t fxt) { fxt_blockev_t evs; if (!(evs = malloc(sizeof(*evs)))) goto out; evs->fxt=fxt; if (fxt_fill_blockev(fxt, evs) < 0) goto outmalloc; return evs; outmalloc: free(evs); out: return NULL; } void fxt_blockev_leave(fxt_blockev_t evs) { free(evs); } #define NOT_MANAGED \ fprintf(stderr, "Error: trace type %li not yet managed\n", evs->type); \ abort() int fxt_next_ev(fxt_blockev_t evs, int ev_type, struct fxt_ev *ev) { fxt_t fxt = evs->fxt; FILE *fstream = fxt->fstream; int size_ev=0; int i; int ret=0; struct fxt_ev_64 e; #define READEV_VAR(size, var) \ { READ(size, var); \ size_ev += size/8 ; \ } #define READEV(size, field) \ READEV_VAR(size, e.field) switch (evs->type) { case FXT_TRACE_KERNEL_RAW32: case FXT_TRACE_KERNEL_RAW64: case FXT_TRACE_USER_RAW32: case FXT_TRACE_USER_RAW64: /* Est-on encore dans la trace ? */ if (evs->cur_pos >= evs->raw.end_data) { /* Est-ce la fin ? */ if (evs->cur_pos!=0 && (evs->type == FXT_TRACE_USER_RAW32 || evs->type == FXT_TRACE_USER_RAW64)) { return FXT_EV_EOT; } /* On repositionne cur_pos */ evs->cur_pos = evs->raw.start_data+fxt->infos.page_size; evs->raw.start_data=evs->cur_pos; if (fseek(fstream,evs->cur_pos,SEEK_SET)!=0) { fprintf(stderr, "Unable to go to next page at offset %"PRIu64"u\n", evs->cur_pos); return 1; } switch (evs->type) { case FXT_TRACE_KERNEL_RAW32: { uint32_t u32; int res; res = fread(&u32, sizeof(u32), 1, fxt->fstream); SWAP(32,u32); if (res < 0) return -1; if (res < 1 /* FIXME: pas forcément fin de fichier */ || u32 == FKT_EOF) return FXT_EV_EOT; if (!u32) { fprintf(stderr,"null size !\n"); return 1; } if (u32 == FKT_POISON) { fprintf(stderr,"poisoned size !\n"); return 1; } if (u32>fxt->infos.page_size) { fprintf(stderr,"big page size ! %#010x\n",u32); return 1; } evs->raw.end_data = evs->raw.start_data + u32; evs->cur_pos += 32/8; } } } break; default: NOT_MANAGED; } /* L'événement est présent, on peut le lire dans 'e' */ switch (evs->type) { case FXT_TRACE_KERNEL_RAW32: READEV(32,time); READEV(16, kernel.pid); READEV(16, cpu); READEV(32, code); break; case FXT_TRACE_KERNEL_RAW64: READEV(32,time); READEV(64, code); break; case FXT_TRACE_USER_RAW32: READEV(64,time); READEV(32, user.tid); READEV(32, code); break; case FXT_TRACE_USER_RAW64: READEV(64,time); READEV(64, user.tid); READEV(64, code); break; default: NOT_MANAGED; } /* calcul du nombre de paramètres */ switch (evs->type) { case FXT_TRACE_KERNEL_RAW32: case FXT_TRACE_KERNEL_RAW64: if( e.code < FKT_UNSHIFTED_LIMIT_CODE ) { e.nb_params = 0; } else { switch (evs->type) { case FXT_TRACE_KERNEL_RAW32: if( e.code & 3 ) fprintf(stderr, "code & 0x3 != 0 !!!\n"); e.nb_params = (e.code & 0xff) / 4; break; case FXT_TRACE_KERNEL_RAW64: if( e.code & 7 ) fprintf(stderr, "code & 0x3 != 0 !!!\n"); e.nb_params = (e.code & 0xff) / 8; break; } e.code >>= 8; } break; case FXT_TRACE_USER_RAW32: case FXT_TRACE_USER_RAW64: e.nb_params=e.code & 0xff; if (e.nb_params == 0) { fprintf(stderr, "code & 0xff == 0 !!!\n"); } else { e.nb_params--; } if (e.nb_params > FXT_MAX_PARAMS) { fprintf(stderr, "warning: %u arguments in trace (code %"PRIx64") whereas only room for %i\n", e.nb_params, e.code, FXT_MAX_PARAMS); } e.code >>= 8; break; default: NOT_MANAGED; } /* lecture des paramètres */ for (i=0;itype) { case FXT_TRACE_KERNEL_RAW32: case FXT_TRACE_USER_RAW32: { uint32_t param; READRAW(32,param); if ((i+1)*4<=FXT_MAX_DATA) memcpy(&e.raw[i*4],¶m,4); if (itype) { case FXT_TRACE_KERNEL_RAW32: case FXT_TRACE_USER_RAW32: if (i*4 < FXT_MAX_DATA) memset(&e.raw[i*4],0,FXT_MAX_DATA-i*4); break; case FXT_TRACE_KERNEL_RAW64: case FXT_TRACE_USER_RAW64: if (i*8 < FXT_MAX_DATA) memset(&e.raw[i*8],0,FXT_MAX_DATA-i*8); break; default: NOT_MANAGED; } switch (evs->type) { case FXT_TRACE_USER_RAW32: case FXT_TRACE_USER_RAW64: { int thislwp = 0; if (e.code == FUT_NEW_LWP_CODE) thislwp = e.param[0]; if (e.code == FUT_NEW_LWP_CODE || fxt->nlwps == 0) { if (thislwp >= fxt->nlwps) { fxt->nlwps = thislwp+1; fxt->secondlasttid = realloc(fxt->secondlasttid, fxt->nlwps*sizeof(*fxt->secondlasttid)); fxt->lasttid = realloc(fxt->lasttid, fxt->nlwps*sizeof(*fxt->lasttid)); fxt->already_saw = realloc(fxt->already_saw, fxt->nlwps*sizeof(*fxt->already_saw)); } fxt->lasttid[thislwp] = e.user.tid; fxt->already_saw[thislwp] = 1; } else { #ifdef MA__FUT_RECORD_TID for (thislwp=0; thislwpnlwps; thislwp++) { if (fxt->already_saw[thislwp] && fxt->lasttid[thislwp] == e.user.tid) break; } if (thislwp == fxt->nlwps) { for (thislwp=0; thislwpnlwps; thislwp++) { if (fxt->already_saw[thislwp] && fxt->secondlasttid[thislwp] == e.user.tid) break; } if (thislwp == fxt->nlwps) { fprintf(stderr,"warning: couldn't find cpu for tid %"PRIx64"\n",e.user.tid); thislwp = -1; } } if (thislwp >=0 && e.code == FUT_SWITCH_TO_CODE) { fxt->secondlasttid[thislwp] = fxt->lasttid[thislwp]; fxt->lasttid[thislwp] = e.param[0]; } #else thislwp = -1; #endif } e.cpu = thislwp; } } switch (ev_type) { #ifdef FXT_ARCH_32 case FXT_EV_TYPE_NATIVE: #endif case FXT_EV_TYPE_32: switch (evs->type) { case FXT_TRACE_KERNEL_RAW32: case FXT_TRACE_USER_RAW32: # define COPY(field) ev->ev32.field=e.field COPY(time); switch (evs->type) { case FXT_TRACE_KERNEL_RAW32: COPY(kernel.pid); break; case FXT_TRACE_USER_RAW32: COPY(user.tid); break; } COPY(cpu); COPY(code); COPY(nb_params); for (i=0;iev32.raw,e.raw,sizeof(e.raw)); # undef COPY break; case FXT_TRACE_KERNEL_RAW64: case FXT_TRACE_USER_RAW64: ret=FXT_EV_TYPEERROR; break; default: NOT_MANAGED; } break; #ifdef FXT_ARCH_64 case FXT_EV_TYPE_NATIVE: # define COPY(field) ev->native.field=e.field COPY(time); switch (evs->type) { case FXT_TRACE_KERNEL_RAW64: COPY(kernel.pid); break; case FXT_TRACE_USER_RAW64: COPY(user.tid); break; } COPY(cpu); COPY(code); COPY(nb_params); for (i=0;inative.raw,e.raw,sizeof(e.raw)); # undef COPY break; #endif case FXT_EV_TYPE_64: ev->ev64=e; break; default: fprintf(stderr, "warning: unknown event type %i\n", ev_type); abort(); } evs->cur_pos += size_ev; return ret; } int fxt_rewind(fxt_blockev_t evs) { if (fseek(evs->fxt->fstream,evs->block.start,SEEK_SET)!=0) { perror("seeking to start of events"); return -1; } return fxt_fill_blockev(evs->fxt, evs); } fxt-0.3.15/tools/PaxHeaders/makediff0000644000000000000000000000007310271436743014323 xustar0030 atime=1746715490.217509167 29 ctime=1746716504.71268766 fxt-0.3.15/tools/makediff0000755000175000017500000000116610271436743014014 0ustar00samysamy#!/bin/sh # call this from the directory which holds # linux-$VERSION-orig and linux-$VERSION-fkt # it will output patches to $PATCHDIR/linux-patch-$VERSION [ -z "$VERSION" ] && VERSION=2.6.12-rc2 PATCHDIR=~/FxT/kernel DIRORIG=linux-$VERSION-orig DIRNEW=linux-$VERSION-fkt rm $DIRNEW/include/asm -f FILES=`diff -urq --exclude=SCCS --exclude=BitKeeper $DIRORIG $DIRNEW | grep -v "^Only in " | grep -v "^Seulement dans " | sed -e "s:^[^/]*/\([^ ]*\) .*$:\1:"` echo $FILES for i in $FILES do mkdir -p $PATCHDIR/linux-patches-$VERSION/`dirname $i` diff -up $DIRORIG/$i $DIRNEW/$i > $PATCHDIR/linux-patches-$VERSION/$i.patch done fxt-0.3.15/tools/PaxHeaders/fkt_setmask.c0000644000000000000000000000013213636772401015307 xustar0030 mtime=1585181953.117148369 30 atime=1746715490.217509167 30 ctime=1746716504.750222906 fxt-0.3.15/tools/fkt_setmask.c0000644000175000017500000000361313636772401015000 0ustar00samysamy/* fkt_setmask.c fkt_setmask -- program to set current FKT mask Copyright (C) 2003, 2004 Samuel Thibault 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include #include #include #include #include #define TRYARGV(s,new_todo) \ if (!strcmp(argv[0]+strlen(argv[0])-strlen(s),s)) todo=new_todo; int main(int argc, char **argv) { int fd; int arg; int todo=-1; /* what to do, depending on how we were called */ TRYARGV("setmask",FKT_SETMASK); TRYARGV("enable",FKT_ENABLE); TRYARGV("disable",FKT_DISABLE); TRYARGV("probe0",FKT_USER_PROBE0); if (todo == -1) { fprintf(stderr,"please call me as setmask, enable or disable\n"); exit(1); } if (argc<2) { fprintf(stderr,"I need the "); switch(todo) { case FKT_SETMASK: printf("mask\n"); break; case FKT_ENABLE: printf("bit to enable\n"); break; case FKT_DISABLE: printf("bit to disable\n"); break; case FKT_USER_PROBE0: printf("code to use\n"); break; } exit(2); } arg=strtol(argv[1],NULL,0); fd = open("/dev/fkt",O_RDONLY); if (fd<0) { perror("open fkt"); exit(3); } if (ioctl(fd,todo,arg)<0) { perror("ioctl"); exit(4); } return 0; } fxt-0.3.15/tools/PaxHeaders/fkt_record.c0000644000000000000000000000013213636772401015116 xustar0030 mtime=1585181953.117148369 30 atime=1746715490.217509167 30 ctime=1746716504.747704242 fxt-0.3.15/tools/fkt_record.c0000644000175000017500000003105313636772401014606 0ustar00samysamy/* fkt_record.c fkt_record -- control program to allow a user to trace his/her programs with fkt (fast kernel tracing) in the kernel. Copyright (C) 2000, 2001 Robert D. Russell -- rdr@unh.edu 2003, 2004, 2012 Samuel Thibault -- samuel.thibault@ens-lyon.org 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include #include #include #include #include #include #include #include #include #include #include #ifdef HAVE_SYS_MOUNT_H #include #endif #include #include #include #include #include #include #include "timer.h" #include "fxt.h" #include "fxt-tools.h" #ifndef WHITE_SPACE #define WHITE_SPACE " \t\n\f\v\r" #endif #define OPTIONS ":f:k:s:p:dhnS:" #define FKT_DEV "/dev/fkt" #define MAXCPUS 16 static int fd,fkt; static int kpid = -1; static size_t size = 0; struct code_list_item { unsigned int code; char *name; struct code_list_item *link; }; void dumptime( char *message , time_t *the_time, clock_t *the_jiffies ) { struct tms cur_time; struct tm *breakout; char buffer[128]; if( (*the_time = time(NULL)) == -1 ) perror("time"); if( (*the_jiffies = times(&cur_time)) == (clock_t) -1 ) perror("times"); if( (breakout = localtime(the_time)) == NULL ) fprintf(stderr, "Unable to break out current time\n"); if( strftime(buffer, 128, "%d-%b-%Y %H:%M:%S", breakout) == 0 ) fprintf(stderr, "Unable to convert current time\n"); printf("%7s: %s: user_time = %ld, system_time = %ld, jiffies = %ld\n", message, buffer, (long)cur_time.tms_utime, (long)cur_time.tms_stime, (long)*the_jiffies); fflush(stdout); } double pr_times( FILE * fp, clock_t real, struct tms * tmsstart, struct tms * tmsend, int verbose ) { static long clktck; double elapsed; if (clktck == 0) if((clktck = sysconf(_SC_CLK_TCK)) < 0) perror("sysconf error"); elapsed = ((double)real)/((double)clktck); if( verbose ) { fprintf(fp, "Elapsed: %7.2f, ", elapsed); fprintf(fp, "user: %7.2f, ", (tmsend->tms_utime - tmsstart->tms_utime) / (double) clktck); fprintf(fp, "sys: %7.2f\n", (tmsend->tms_stime - tmsstart->tms_stime) / (double) clktck); } return elapsed; } /* this is the stuff that will be traced if user doesn't supply anything else*/ pid_t do_some_stuff( void ) { pid_t kidpid; int i, j, sum; struct tms tmsstart, tmsstop; clock_t start, stop; fflush(stdout); if( (kidpid = fork()) < 0 ) { perror("fork"); sleep(4); } else if( kidpid == 0 ) {/* this is the kid */ printf("job with pid %d started\n", (int)getpid()); fflush(stdout); ioctl(fkt,FKT_WAITREADY); /* wait for sendfile to settle down */ if( (start = times(&tmsstart)) < 0 ) exit(EXIT_FAILURE); for( i = 0; i < 4; i++ ) { sum = 0; for( j = 0; j < 1000000; j++ ) sum += j; printf("new kid: i = %d, j = %d\n", i, j); fflush(stdout); sleep(1); } if( (stop = times(&tmsstop)) < 0 ) exit(EXIT_FAILURE); printf("job with pid %d finished\n", (int)getpid()); fflush(stdout); pr_times(stdout, stop-start, &tmsstart, &tmsstop, 1); exit(EXIT_SUCCESS); } /* this is the parent, just return the kid's pid */ kpid = kidpid; return kidpid; } /* this creates a job requested by user and traces that */ pid_t spawn_stuff( int argc, char *argv[] ) { pid_t kidpid; fflush(stdout); if( (kidpid = fork()) < 0 ) { perror("fork"); } else if( kidpid == 0 ) {/* this is the kid */ struct tms tms; ioctl(fkt,FKT_WAITREADY); /* wait for sendfile to settle down */ if (times(&tms)<0) { perror("times"); exit(EXIT_FAILURE); } printf("executing %s\n",argv[optind]); execvp(argv[optind], &argv[optind]); perror(argv[optind]); exit(EXIT_FAILURE); } /* this is the parent, just return the kid's pid */ kpid = kidpid; return kidpid; } /* handler for SIGINT */ void int_handler(int signo) { printf("\n PARENT HANDLER"); fflush(stdout); if(kpid != -1 && kill(kpid, SIGINT) == -1) { perror("\nError in kill"); } } /* handler for child death, just to have sendfile interrupted */ void chld_handler(int signo) { printf("\n Child died"); fflush(stdout); } void usage(char *progname) { printf("\ Usage: %s [-k mask] [-f output-file] [-s size] [-S System.map] [-p pow]\n\ [--] [program p1 p2 p3 ...]\n\ \n\ if -f is not given, look for TRACE_FILE environment variable, and\n\ if that is not given, write to \"trace_file\".\n\ \n\ if -k is given, use the indicated mask to enable tracing.\n\ if that is not given, use mask of 1 (only syscalls, irqs and traps).\n\ \n\ if -s is not given or set to 0, the filesystem's size is used.\n\ (K, M and G suffixes are accepted)\n\ \n\ if -S is given, the given System.map is merged with /proc/kallsyms or\n\ /proc/ksyms and recorded before the actual recording. An error is raised\n\ if an inconsistency is detected (i.e. this System.map does not\n\ correspond to the current kernel.\n\ \n\ if -n is given, no program is launched at all, you have to press ^C to\n\ interrupt recording\n\ \n\ if -p is given, fkt will allocate 2^pow pages for its recording buffer\n\ it is useful if load pikes are expected during the recording.\n\ the default is 7.\n\ \n\ if program is not given, just spawn a nonsense kid to burn cpu.\n\ ",progname); } int main( int argc, char *argv[] ) { pid_t kidpid = 0, donepid = 0; int status = 0; int c, i; char *outfile, *ptr; unsigned int keymask; int powpages=0,dma=0,nop=0; off_t dummyoff=0; struct sigaction sig_act1; struct statfs statfs; struct stat st; ssize_t ret; fxt_t fxt; struct fxt_infos *info; sig_act1.sa_handler = int_handler; sigemptyset(&sig_act1.sa_mask); sig_act1.sa_flags = 0; sigaddset(&sig_act1.sa_mask, SIGINT); outfile = NULL; keymask = 1; opterr = 0; if (!(fxt = fxt_setinfos(FXT_SPACE_KERNEL))) { perror("allocating fxt record"); exit(EXIT_FAILURE); } while( (c = getopt(argc, argv, OPTIONS)) != EOF ) switch( c ) { case 'k': keymask = strtoll(optarg, &ptr, 0); if( strspn(ptr, WHITE_SPACE) != strlen(ptr) ) { fprintf(stderr, "illegal keymask parameter %s\n", optarg); exit(EXIT_FAILURE); } break; case 'f': outfile = optarg; break; case 's': { size_t mult = 1; switch (optarg[strlen(optarg)-1]) { case 'K': case 'k': mult = 1 << 10; break; case 'M': case 'm': mult = 1 << 20; break; case 'G': case 'g': mult = 1 << 30; break; } if (mult>1) optarg[strlen(optarg)-1]='\0'; size = strtol(optarg, &ptr, 0) * mult; if( strspn(ptr, WHITE_SPACE) != strlen(ptr) ) { fprintf(stderr, "illegal size parameter %s\n", optarg); exit(EXIT_FAILURE); } break; } case 'p': powpages = strtol(optarg, &ptr, 0); if( strspn(ptr, WHITE_SPACE) != strlen(ptr) ) { fprintf(stderr, "illegal power parameter %s\n", optarg); exit(EXIT_FAILURE); } break; case 'd': dma = 1; break; case 'n': nop = 1; break; case 'S': fxt_get_symbols(fxt,optarg,FXT_SYSMAP_FILE,0); break; case ':': fprintf(stderr, "missing parameter to switch %c\n", optopt); usage(argv[0]); exit(EXIT_FAILURE); case 'h': usage(argv[0]); exit(0); case '?': fprintf(stderr, "illegal switch %c\n", optopt); usage(argv[0]); exit(EXIT_FAILURE); } /* switch */ /* get the cpu info here */ info = fxt_infos(fxt); printf("%7s: %d\n", "n_cpus", info->ncpus); for( i = 0; i < info->ncpus; i++ ) printf(" cpu %d: %d MHZ\n", i, info->mhz[i]); printf("%7s: %d\n", "pid", info->record_pid); if( outfile == NULL ) { if( (outfile = getenv("TRACE_FILE")) == NULL ) outfile = DEFAULT_TRACE_FILE; } while( (fd = open(outfile, O_RDWR|O_CREAT|O_TRUNC, 0666)) < 0 ) {/* could not open the indicated file name for writing */ perror(outfile); if( strcmp(outfile, DEFAULT_TRACE_FILE) == 0 ) /* can't open the default file, have to give up */ exit(EXIT_FAILURE); outfile = DEFAULT_TRACE_FILE; fprintf(stderr, "output defaulting to %s\n", outfile); } if( size == 0 ) { if( fstat(fd, &st) ) { perror("getting attributes of trace file"); exit(EXIT_FAILURE); } #ifdef BLKGETSIZE if( S_ISBLK(st.st_mode) ) { int sectors; printf("block device\n"); if( ioctl(fd,BLKGETSIZE,§ors) ) { perror("getting device size\n"); exit(EXIT_FAILURE); } if( sectors >= 0xffffffffUL >> 9 ) size=0xffffffffUL; else size = sectors << 9; } else #endif { if( fstatfs(fd, &statfs) ) { perror("getting file system size\n"); exit(EXIT_FAILURE); } if( statfs.f_bavail >= 0xffffffffUL / statfs.f_bsize ) size = 0xffffffffUL; else size = statfs.f_bsize * statfs.f_bavail; } printf("%zuM\n",size>>20); } /* force all I/O to be synchronized at this point */ for( i = 0; i <= fd; i++ ) fsync(i); if( (fkt = open(FKT_DEV, O_RDONLY|O_NONBLOCK)) < 0 ) { perror("open(\"" FKT_DEV "\")"); exit(EXIT_FAILURE); } if( ioctl(fkt, FKT_SETINITMASK, keymask) < 0 ) { perror("setting initial mask"); exit(EXIT_FAILURE); } if( powpages ) if( ioctl(fkt, FKT_SETINITPOWPAGES, powpages) < 0 ) { perror("setting initial number of pages"); exit(EXIT_FAILURE); } if( dma ) if( ioctl(fkt, FKT_SETTRYDMA, dma) < 0 ) perror("asking for trying to get dma"); if(sigaction(SIGINT, &sig_act1, NULL)) { perror("\nsigaction SIGINT\n"); } signal(SIGCHLD,chld_handler); if( !nop ) { if( optind < argc ) kidpid = spawn_stuff(argc, argv); else kidpid = do_some_stuff(); } /* record information as soon as now: in case we crash, * only the stop_time & jiffies will be wrong (doesn't hurt that much * for the analysis) */ dumptime("start", &info->start_time, &info->start_jiffies); /* merge of System.map and /proc/ksyms */ if( !stat("/proc/kallsyms",&st) ) {/* on >=2.5 kernels, kallsyms gives everything we may want */ fxt_get_symbols(fxt,"/proc/kallsyms",FXT_MODLIST,0); fxt_get_symbols(fxt,"/proc/kallsyms",FXT_PROC,0); } else {/* but on 2.4 kernels, only ksyms is available */ fxt_get_symbols(fxt,"/proc/ksyms",FXT_MODLIST,0); fxt_get_symbols(fxt,"/proc/ksyms",FXT_PROC,0); } if (fxt_fdwrite(fxt,fd)<0) { perror("fxt_fdwrite"); exit(EXIT_FAILURE); } if (fxt_fdevents_start(fxt,fd,FXT_TRACE_KERNEL_RAW)<0) { perror("fxt_fdstartevents"); exit(EXIT_FAILURE); } /* ok, now we've consumed our quota, wait for a second to get back some * priority for the recording. */ sleep(1); printf("launching recording\n"); ret = sendfile(fd, fkt, &dummyoff, size); if( ret < 0 ) { perror("sendfile"); fprintf(stderr,"hoping the trace wasn't lost\n"); } dumptime("stop", &info->stop_time, &info->stop_jiffies); if( kidpid > 0 ) {/* control came back with kidpid>0, child started ok, wait for it */ if (!(donepid = waitpid(kidpid, &status, WNOHANG))) { /* kill kid if not dead already, since recording ended */ if(kill(kidpid, SIGINT) == -1) { perror("\nError in kill"); } donepid = waitpid(kidpid, &status, 0); } /* print out stuff about the kid */ kpid = kidpid; printf("job with pid %d started\n", (int)kidpid); if( donepid < 0 ) perror("waitpid"); else if( WIFEXITED(status) ) printf("job with pid %d exited with status %d\n", (int)kidpid, WEXITSTATUS(status)); else if( WIFSIGNALED(status) ) printf("job with pid %d killed by signal %d\n", (int)kidpid, WTERMSIG(status)); else printf("job with pid %d terminated for unknown reason\n", (int)kidpid); fflush(stdout); } if (fxt_fdevents_stop(fxt,fd)<0) { perror("fxt_fdstartevents"); exit(EXIT_FAILURE); } if ( lseek(fd, 0, SEEK_SET) < 0 ) { perror("seeking back to the beginning"); exit(EXIT_FAILURE); } if (fxt_fdwritetime(fxt, fd)<0) { perror("fxt_fdwritetime"); exit(EXIT_FAILURE); } return 0; } /* vim: ts=4 */ fxt-0.3.15/tools/PaxHeaders/fkt_bufstats0000644000000000000000000000007410271436743015255 xustar0030 atime=1746715490.217509167 30 ctime=1746716504.755091134 fxt-0.3.15/tools/fkt_bufstats0000755000175000017500000000132410271436743014741 0ustar00samysamy#!/bin/bash EPS=${1/.bufdat/.eps} [ -n "$1" -a -n "$2" -a "$2" != "$1" ] && EPS="$2" if [ "$EPS" = "$1" ] then echo "Usage: $0 file.bufdat [output.eps]" exit 1 fi (cat << EOF set terminal postscript eps enhanced color solid set xlabel "Mcy" set key top left plot "$1" using (\$2/1000000):(\$1) title "probes" with lines lt 7,\ "$1" using (\$2/1000000):(\$4) title "synchronizations" with points pt 5,\ "$1" using (\$2/1000000):(\$3) title "writing" with lines lt 3,\ "$1" using (\$2/1000000):(\$5+\$6) title "written" with lines lt 2,\ "$1" using (\$2/1000000):(\$5+\$6+\$7) title "available" with lines lt 1,\ "$1" using (\$2/1000000):(\$7) title "pages" with lines lt 6 EOF ) | gnuplot > $EPS fxt-0.3.15/tools/PaxHeaders/fxt-tools.h0000644000000000000000000000013113064530241014724 xustar0029 mtime=1490202785.41112694 30 atime=1746715490.217509167 30 ctime=1746716504.714734264 fxt-0.3.15/tools/fxt-tools.h0000644000175000017500000000655013064530241014421 0ustar00samysamy/* * Copyright (C) 2003, 2004, 2011-2012 Samuel Thibault * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __FXT_TOOLS_H__ #define __FXT_TOOLS_H__ #include #include #ifndef __MINGW32__ #include #endif #define EPRINTF(fmt,...) do {\ fprintf(stderr, "=== " fmt, ## __VA_ARGS__); \ printf("=== " fmt, ## __VA_ARGS__); \ fflush(stdout); \ } while (0) #define DEFAULT_TRACE_FILE "trace_file" #define WRITE(n,value) do { \ int res; \ uint##n##_t __val = (typeof(__val)) (value); \ res = write(fd, (void *)&__val, sizeof(__val)); \ if (res < 0) return -1; \ if (res < sizeof(__val)) { \ errno = EINVAL; \ return -1; \ } \ } while (0) #define READRAW(n,value) do { \ uint##n##_t __val; \ int res; \ res = fread((void *)&__val, sizeof(__val), 1, fstream); \ if (res < 0) return -1; \ if (res < 1) { \ errno = EINVAL; \ return -1; \ } \ (value) = (typeof(value)) __val; \ } while (0) extern void unsupported_swap(void); #define DO_SWAP(n, var) { \ uint##n##_t ___val = (var); \ switch(n) { \ case 64: ___val = \ (___val & 0x00000000000000ffULL) << 56 | \ (___val & 0x000000000000ff00ULL) << 40 | \ (___val & 0x0000000000ff0000ULL) << 24 | \ (___val & 0x00000000ff000000ULL) << 8 | \ (___val & 0x000000ff00000000ULL) >> 8 | \ (___val & 0x0000ff0000000000ULL) >> 24 | \ (___val & 0x00ff000000000000ULL) >> 40 | \ (___val & 0xff00000000000000ULL) >> 56; \ break; \ case 32: ___val = \ (___val & 0x000000ffUL) << 24 | \ (___val & 0x0000ff00UL) << 8 | \ (___val & 0x00ff0000UL) >> 8 | \ (___val & 0xff000000UL) >> 24; \ break; \ case 16: ___val = \ (___val & 0x00ffU) << 8 | \ (___val & 0xff00U) >> 8; \ break; \ case 8: break; \ default: unsupported_swap(); \ } \ var = ___val; \ } #ifdef IS_BIG_ENDIAN #define SWAP(n, var) do { \ if (fxt->infos.arch < 0x10000) \ /* little endian trace, swap */ \ DO_SWAP(n, var); \ } while(0) #else #define SWAP(n, var) do { \ if (fxt->infos.arch >= 0x10000) \ /* big endian trace, swap */ \ DO_SWAP(n, var); \ } while(0) #endif #ifdef __MINGW32__ #define myswap32(v) ({ \ uint32_t ___val = (v); \ (___val & 0x000000ffUL) << 24 | \ (___val & 0x0000ff00UL) << 8 | \ (___val & 0x00ff0000UL) >> 8 | \ (___val & 0xff000000UL) >> 24; \ }) #define myntohl(v) myswap32(v) #define myhtonl(v) myswap32(v) #else #define myntohl(v) ntohl(v) #define myhtonl(v) htonl(v) #endif #define READ(n,value) do { \ uint##n##_t __val; \ int res; \ res = fread((void *)&__val, sizeof(__val), 1, fstream); \ if (res < 0) return -1; \ if (res < 1) { \ errno = EINVAL; \ return -1; \ } \ SWAP(n,__val); \ (value) = (typeof(value)) __val; \ } while (0) #endif /* __FXT_TOOLS_H__ */ fxt-0.3.15/tools/PaxHeaders/timer.h0000644000000000000000000000013113064530241014105 xustar0029 mtime=1490202785.41112694 30 atime=1746715490.217509167 30 ctime=1746716504.721504519 fxt-0.3.15/tools/timer.h0000644000175000017500000000237313064530241013601 0ustar00samysamy/* * Copyright (C) 2000, 2001 Robert Russell * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include #include #include #include #include #ifndef WHITE_SPACE #define WHITE_SPACE " \f\n\r\t\v" #endif #define MEGA (1000000.0) extern double pr_times( FILE * fp, clock_t real, struct tms * tmsstart, struct tms * tmsend, int verbose ); extern void fpr_times(FILE * fp, int amount, clock_t real); extern void err_dump( char *s, int n ); extern int cnvint( char *text ); fxt-0.3.15/tools/PaxHeaders/timer.c0000644000000000000000000000013213636772401014114 xustar0030 mtime=1585181953.117148369 30 atime=1746715490.217509167 30 ctime=1746716504.759410895 fxt-0.3.15/tools/timer.c0000644000175000017500000000426213636772401013606 0ustar00samysamy/* * Copyright (C) 2000, 2001 Robert Russell * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include "timer.h" double pr_times( FILE * fp, clock_t real, struct tms * tmsstart, struct tms * tmsend, int verbose ) { static long clktck; double elapsed; if (clktck == 0) if((clktck = sysconf(_SC_CLK_TCK)) < 0) perror("sysconf error"); elapsed = ((double)real)/((double)clktck); if( verbose ) { fprintf(fp, "Elapsed: %7.2f, ", elapsed); fprintf(fp, "user: %7.2f, ", (tmsend->tms_utime - tmsstart->tms_utime) / (double) clktck); fprintf(fp, "sys: %7.2f\n", (tmsend->tms_stime - tmsstart->tms_stime) / (double) clktck); } return elapsed; } void err_dump( char *s, int n ) { fprintf(stderr, "%s: %s\n", s, strerror(n)); exit(EXIT_FAILURE); } int cnvint( char *text ) { int n; char *ptr; errno = 0; n = strtol(text, &ptr, 10); if( errno != 0 ) {/* probably number to convert is outside range */ perror(text); exit(EXIT_FAILURE); } if( strspn(ptr, WHITE_SPACE) != strlen(ptr) ) {/* garbage in the text string that couldn't be converted */ fprintf(stderr, "%s: illegal integer number\n", text); exit(EXIT_FAILURE); } return n; } void fpr_times( FILE * fp, int amount, clock_t real) { static long clktck; if (clktck == 0) if((clktck = sysconf(_SC_CLK_TCK)) < 0) perror("sysconf error"); fprintf(fp, "%d\t", amount); fprintf(fp, "%7.2f\n", real / (double) clktck); } /* vim: ts=4 */ fxt-0.3.15/tools/PaxHeaders/get_cpu_info.c0000644000000000000000000000013113666401157015434 xustar0029 mtime=1591345775.58123129 30 atime=1746715490.217509167 30 ctime=1746716504.732998679 fxt-0.3.15/tools/get_cpu_info.c0000644000175000017500000000775013666401157015134 0ustar00samysamy/* * Copyright (C) 2000, 2001 Robert Russell * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #include #include #include #include "fxt.h" #include "fxt_internal.h" #define BUF_SIZE 4096 #define TAGMHZ1 "cpu MHz" #define TAGMHZ2 "Clocking" #define TAGMHZ3 "cpu clock" #define TAGMHZ4 "clock" #define TAGMHZ5 "Clock" #define TAGMHZ6 "CPU clock" #define TAGHZ1 "ClkTck" #define TAGHZ2 "cycle frequency [Hz]" #define TAGHZ3 "CPU-Clock" #define PROC_FILE "/proc/cpuinfo" int fxt_get_cpu_info( fxt_t fxt ) { FILE *fptr; char *ptr, buffer[BUF_SIZE]; double cpu_mhz; unsigned long long cpu_hz; if (fxt->infos.mhz) free(fxt->infos.mhz); fxt->infos.ncpus = 0; #if ! (defined(__MINGW32__) || defined(__APPLE__)) if( (fptr=fopen(PROC_FILE, "r")) == NULL ) { perror("fopen"); fprintf(stderr, "unable to open %s\n", PROC_FILE); fprintf(stderr, "Assuming 1 1GHz proc\n"); #endif fxt->infos.mhz = malloc(sizeof(*fxt->infos.mhz)); fxt->infos.mhz[0] = 1000; return fxt->infos.ncpus = 1; #if ! (defined(__MINGW32__) || defined(__APPLE__)) } for( ; ; ) {/* once around loop for each line in the file */ if( fgets(buffer, BUF_SIZE, fptr) == NULL ) { if( feof(fptr) ) {/* end of the file, did we find any cpus? */ fclose(fptr); if( fxt->infos.ncpus <= 0 ) { /* no, end of file was premature */ fprintf(stderr, "end of file on %s\n", PROC_FILE); fprintf(stderr, "Assuming 1 1GHz proc\n"); fxt->infos.mhz = malloc(sizeof(*fxt->infos.mhz)); fxt->infos.mhz[0] = 1000; return fxt->infos.ncpus = 1; } else /* yes, normal return with that number */ return fxt->infos.ncpus; } else fprintf(stderr, "unable to read %s\n", PROC_FILE); return -1; } /***** fputs(buffer, stdout); *****/ if( strncmp(buffer, TAGMHZ1, strlen(TAGMHZ1)) == 0 ||strncmp(buffer, TAGMHZ2, strlen(TAGMHZ2)) == 0 ||strncmp(buffer, TAGMHZ3, strlen(TAGMHZ3)) == 0 ||strncmp(buffer, TAGMHZ4, strlen(TAGMHZ4)) == 0 ||strncmp(buffer, TAGMHZ5, strlen(TAGMHZ5)) == 0 ||strncmp(buffer, TAGMHZ6, strlen(TAGMHZ6)) == 0 ) {/* found the line starting with the tag */ /***** fprintf(stderr, "found line starting with %s\n", TAG); *****/ if( (ptr = strchr(buffer, ':')) == NULL ) { fprintf(stderr, "cannot find ':' in %s\n", buffer); return -1; } if( sscanf(ptr+1, "%lf", &cpu_mhz) != 1 ) { fprintf(stderr, "cannot find number after ':' in %s\n", buffer); return -1; } /***** fprintf(stderr, "found cpu mhz %.2f\n", cpu_mhz); *****/ } else if( strstr(buffer, TAGHZ1) ||strncmp(buffer, TAGHZ2, strlen(TAGHZ2)) == 0 ||strncmp(buffer, TAGHZ3, strlen(TAGHZ3)) == 0 ) { if( (ptr = strchr(buffer, ':')) == NULL ) { fprintf(stderr, "cannot find ':' in %s\n", buffer); return -1; } if( sscanf(ptr+1, "%llx", &cpu_hz) != 1 ) { fprintf(stderr, "cannot find number after ':' in %s\n", buffer); return -1; } cpu_mhz = cpu_hz / 1000000; } else continue; if( !(fxt->infos.mhz = realloc(fxt->infos.mhz,(fxt->infos.ncpus+1)*sizeof(*fxt->infos.mhz))) ) { fprintf(stderr, "cannot allocate memory for cpu %u\n",fxt->infos.ncpus); return -1; } fxt->infos.mhz[fxt->infos.ncpus++] = cpu_mhz; } #endif } /* vim: ts=4 */ fxt-0.3.15/tools/PaxHeaders/fkt_select.c0000644000000000000000000000013213636772401015117 xustar0030 mtime=1585181953.117148369 30 atime=1746715490.217509167 30 ctime=1746716504.748956578 fxt-0.3.15/tools/fkt_select.c0000644000175000017500000002467213636772401014620 0ustar00samysamy/* fkt_select.c fkt_select -- program to graphically select a range is a trace numbers. Copyright (C) 2003, 2004 Samuel Thibault 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #define __USE_ISOC99 #include #include #include #include #include #include #include #include #include #include #include #include static struct page { unsigned long nb; unsigned long long cyc; unsigned long long time; } *pages; static unsigned long long maxtime=0,mintime=0xffffffffffffull; static unsigned long nbpages=1<<10; static Display *display; static Window window; static GC gcblack,gcwhite,gcred,gcgray; static int screen; static unsigned long black,white; static XSizeHints hints; /* current viewed bunch of pages */ static unsigned pageBegin,pageEnd; /* current window size */ #define STATUSHEIGHT 18 static unsigned curW=350,curH=250-STATUSHEIGHT; /* current selected portion within the window */ static unsigned selBegin,selEnd; static struct col { unsigned long long firstValue; unsigned long long lastValue; unsigned long long minValue; unsigned long long maxValue; unsigned long minPage; unsigned long maxPage; } *cols=NULL; static void recompute( void ) { struct col *col; struct page *page; unsigned value; unsigned long long cycwide=pages[pageEnd].cyc-pages[pageBegin].cyc; selBegin=curW; selEnd=0; cols=realloc(cols,curW*sizeof(*cols)); page=pages+pageBegin; for(col=cols; colminValue=0xffffffffffffffffULL; col->maxValue=0; col->minPage=page->nb; col->lastValue=col->firstValue=((page->time-mintime)*((long long)curH))/(maxtime-mintime); while(page->cyc-pages[pageBegin].cyc<((unsigned long long)(col+1-cols))*cycwide/curW) { col->lastValue=value=((page->time-mintime)*((long long)curH))/(maxtime-mintime); if( value > col->maxValue ) col->maxValue = value; if( value < col->minValue ) col->minValue = value; page++; } col->maxPage=(page-1)->nb; } } static void redrawStatus( unsigned mousex, unsigned mousey ) { static char buffer[128],*c; buffer[1]='\0'; c=buffer; if( selBegin<=selEnd ) { c+=snprintf(c,128-(c-buffer)," %lldMcy -> %lldMcy = %lldMcy", pages[cols[selBegin].minPage].cyc/1000000ULL, pages[cols[selEnd].maxPage].cyc/1000000ULL, (pages[cols[selEnd].maxPage].cyc- pages[cols[selBegin].minPage].cyc)/1000000ULL); } if( mousex >= 0 && mousex < curW && mousey >= 0 && mousey < curH ) { c+=snprintf(c,128-(c-buffer)," %lldMcy", (pages[cols[mousex].minPage].cyc + pages[cols[mousex].maxPage].cyc)/2000000ULL); if( cols[mousex].minValue<=cols[mousex].maxValue ) c+=snprintf(c,128-(c-buffer),"(%lldKcy)", (((cols[mousex].minValue+cols[mousex].maxValue) *(maxtime-mintime))/(2ULL*((long long)curH))+mintime)/1000ULL); c+=snprintf(c,128-(c-buffer)," %lldKcy", ((((long long)mousey)*(maxtime-mintime))/ ((long long)curH)+mintime)/1000ULL); } XFillRectangle(display,window,gcwhite,0,curH,curW,STATUSHEIGHT); XDrawImageString(display,window,gcblack,2,curH+STATUSHEIGHT-2,buffer+1,strlen(buffer+1)); } static void redraw( void ) { unsigned x; unsigned lastx=0,lasty=0; XClearWindow(display,window); if( selEnd>=selBegin && selEnd>selBegin+1 ) XFillRectangle(display,window,gcgray,selBegin+1,0,selEnd-1-selBegin,curH); for( x = 0; x < curW; x++ ) { if( cols[x].maxValue>=cols[x].minValue ) { if( x ) XDrawLine(display,window,gcred,lastx,lasty,x,cols[x].firstValue); XDrawLine(display,window,gcred,x,cols[x].maxValue,x,cols[x].minValue); lastx = x; lasty = cols[x].lastValue; } } if( selEnd>=selBegin ) { XDrawLine(display,window,gcblack,selBegin,0,selBegin,curH-1); XDrawLine(display,window,gcblack,selEnd,0,selEnd,curH-1); } redrawStatus(-1,-1); } void updatebutton( int button, int x ) { if( x < 0 ) x = 0; if( x >= curW ) x = curW-1; switch( button ) { case 1: selBegin = x; if( selEnd < selBegin ) selEnd = x; break; case 2: selBegin = selEnd = x; break; case 3: selEnd = x; if( selEnd < selBegin ) selBegin = x; break; } redraw(); } unsigned *stack, stacksize=16, stackptr; void zoomin( void ) { unsigned *newstack; if( selEnd <= selBegin ) return; if( stackptr == stacksize ) { if( !(newstack = realloc(stack,(stacksize*2)*sizeof(stack[0]))) ) { fprintf(stderr,"couldn't allocate bigger stack\n"); return; } else { stacksize <<= 1; stack = newstack; } } stack[stackptr++] = pageBegin; stack[stackptr++] = pageEnd; pageBegin=cols[selBegin].minPage; pageEnd=cols[selEnd].maxPage; recompute(); redraw(); } void zoomout( void ) { unsigned *newstack; if( !stackptr ) return; pageEnd = stack[--stackptr]; pageBegin = stack[--stackptr]; recompute(); redraw(); if( stackptr < stacksize/2 ) { if( (newstack = realloc(stack,(stacksize/2)*sizeof(stack[0]))) ) { stack = newstack; stacksize >>= 1; } } } static void usage( char *argv0 ) { fprintf(stderr,"\ usage: %s file.timedat\n\ where file.timedat was produced by fkt_timestats\n\ ",argv0); exit(EXIT_FAILURE); } int main( int argc, char *argv[] ) { int done,i; XEvent event; char keystr[10]; KeySym keysym; FILE* fd; unsigned long page; XColor color,exact; Colormap cmap; int curbutton=0; if( argc < 2 ) usage(argv[0]); if( !(fd=fopen(argv[1],"r")) ) { fprintf(stderr,"couldn't open %s\n",argv[1]); perror("open"); exit(EXIT_FAILURE); } if( !(pages=malloc(nbpages*sizeof(*pages))) ) { perror("malloc"); exit(EXIT_FAILURE); } if( !(stack=malloc(stacksize*sizeof(stack[0]))) ) { perror("malloc"); exit(EXIT_FAILURE); } page=0; while (fscanf(fd,"%lu %llu %llu\n",&pages[page].nb,&pages[page].cyc,&pages[page].time) == 3) { if( !(page%1000) ) fprintf(stderr,"\r%lu",page); if( pages[page].nb!=page ) { fprintf(stderr,"bad time file\n"); exit(EXIT_FAILURE); } if( pages[page].time > maxtime ) maxtime = pages[page].time; if( pages[page].time < mintime ) mintime = pages[page].time; if( ++page == nbpages ) { nbpages <<= 1; if( !(pages=realloc(pages,nbpages*sizeof(*pages))) ) { perror("realloc"); exit(EXIT_FAILURE); } } } fprintf(stderr,"\r%lu pages\ntype 'h' for help\n",page); fclose(fd); nbpages = page; pageBegin = 0; pageEnd = nbpages-1; if( !(pages=realloc(pages,nbpages*sizeof(*pages))) ) { perror("realloc"); exit(EXIT_FAILURE); } if( !(display=XOpenDisplay("")) ) { exit(EXIT_FAILURE); } screen=DefaultScreen(display); white=WhitePixel(display,screen); black=BlackPixel(display,screen); hints.width=curW; hints.height=curH + STATUSHEIGHT; hints.flags=PSize; recompute(); window=XCreateSimpleWindow(display, DefaultRootWindow(display), hints.x, hints.y, hints.width, hints.height, 5 /* border */, black, white); XSetStandardProperties(display, window, "fkt selection", "fkt selection", None, argv, argc, &hints); gcblack = XCreateGC(display,window,0,0); gcwhite = XCreateGC(display,window,0,0); gcred = XCreateGC(display,window,0,0); gcgray = XCreateGC(display,window,0,0); XSetBackground(display, gcblack, white); XSetBackground(display, gcwhite, white); XSetBackground(display, gcred, white); XSetBackground(display, gcgray, white); XSetForeground(display, gcblack, black); XSetForeground(display, gcwhite, white); cmap=XDefaultColormap(display,screen); if( !XAllocNamedColor(display,cmap,"Red",&exact,&color) ) { fprintf(stderr,"couldn't get red color"); exit(EXIT_FAILURE); } XSetForeground(display, gcred, color.pixel); if( !XAllocNamedColor(display,cmap,"Gray",&exact,&color) ) { fprintf(stderr,"couldn't get red color"); exit(EXIT_FAILURE); } XSetForeground(display, gcgray, color.pixel); XSelectInput(display, window, ButtonPressMask | ButtonReleaseMask | PointerMotionMask | KeyPressMask | ExposureMask | StructureNotifyMask ); XMapRaised(display, window); done=0; while(!done) { XNextEvent(display,&event); switch(event.type) { case Expose: if( !event.xexpose.count ) redraw(); break; case ConfigureNotify: if( curW != event.xconfigure.width || curH != event.xconfigure.height ) { curW = event.xconfigure.width; curH = event.xconfigure.height-STATUSHEIGHT; recompute(); } redraw(); break; case MappingNotify: XRefreshKeyboardMapping((XMappingEvent *)&event); break; case ButtonPress: curbutton = event.xbutton.button; updatebutton(curbutton,event.xbutton.x); break; case MotionNotify: if( curbutton ) updatebutton(curbutton,event.xmotion.x); redrawStatus(event.xmotion.x, event.xmotion.y); break; case ButtonRelease: curbutton = 0; break; case KeyPress: i = XLookupString((XKeyEvent *)&event, keystr, 10, &keysym, 0); if( i == 1 ) /*len*/ switch( tolower(keystr[0]) ) { case 'q': done = 1; break; case 's': printf("selection: %lu %lu\n",cols[selBegin].minPage, cols[selEnd].maxPage); break; case 'z': zoomin(); break; case 'u': zoomout(); break; case 'h': fprintf(stderr,"\ keys:\n\ q quits\n\ s shows the selection page numbers, to give to the fkt_extract command\n\ z zooms on the selected area, after pushing current view\n\ u unzooms (unpops)\n\ h you just pressed it\n\ \n\ mouse buttons:\n\ left choose left boundary\n\ right choose rigth boundary\n\ middle choose left & right boundary (not really useful)\n\ "); } break; } } XFreeGC(display,gcblack); XFreeGC(display,gcwhite); XFreeGC(display,gcred); XFreeGC(display,gcgray); XDestroyWindow(display,window); XCloseDisplay(display); exit(EXIT_SUCCESS); } /* vim: ts=4 */ fxt-0.3.15/tools/PaxHeaders/symbols.c0000644000000000000000000000013213636772401014464 xustar0030 mtime=1585181953.117148369 30 atime=1746715490.217509167 30 ctime=1746716504.731006873 fxt-0.3.15/tools/symbols.c0000644000175000017500000002626013636772401014160 0ustar00samysamy/* * Copyright (C) 2003, 2004, 2011-2012, 2016-2017 Samuel Thibault * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #include #ifndef __MINGW32__ #include #endif #include #include #include #include #include #include #ifdef HAVE_LIBBFD #include #endif #include "fxt.h" #include "fxt-tools.h" #include "fxt_internal.h" #define MAXNAMELEN 128 /* System.map is sorted, but /proc/ksyms is not, so we have to sort out a little * bit ourselves */ /* add a symbol, return 1 if new */ int fxt_add_symbol( fxt_t fxt, struct address_entry *entry ) { struct address_entry *cur,*found=NULL; struct address_entry **hash; unsigned long hashkey; const char *c; for( hashkey=0, c=entry->name; *c; hashkey+=*c, c++); hash = &fxt->addresses[hashkey%NAMEHASH_ENTRIES]; for( cur = *hash; cur; cur = cur->next ) if( !strcmp(cur->name,entry->name) && cur->source!=FXT_USER && cur->source!=entry->source && (!found || found->address != entry->address) ) /* if the same name is found in another source, and we didn't already, * or with another address, update the found pointer */ found = cur; if( found ) { if( found->address != entry->address ) {/* different address and built-in */ fprintf(stderr,"incoherent symbol %s: %"PRIx64" and %"PRIx64"\n", entry->name, entry->address, found->address); fprintf(stderr,"please provide the /boot/System.map file of the current running kernel\nthanks to the -S option\n"); exit(EXIT_FAILURE); } return 0; } else { entry->next = *hash; *hash = entry; return 1; } } static void get_symbolsfd( fxt_t fxt, FILE *fd, fxt_symbol_source source, unsigned long base); static void add_elfsymbols( fxt_t fxt, const char *path, unsigned long base ) { #ifdef HAVE_LIBBFD static int bfd_inited = 0; bfd *abfd; long symcount; void *minisyms,*curminisym; unsigned int size; asymbol *store,*cur; struct address_entry *entry; if (!bfd_inited) { bfd_init(); bfd_set_default_target(""); bfd_inited=1; } if (!(abfd = bfd_openr(path,NULL))) /* bad target */ goto out; if (!bfd_check_format(abfd,bfd_object)) goto out_bfd; if (!(bfd_get_file_flags(abfd)&HAS_SYMS)) goto out_bfd; if ((symcount=bfd_read_minisymbols(abfd, 0, &minisyms, &size)) <= 0) /* no symbols or error */ goto out_bfd; if (!(store=bfd_make_empty_symbol(abfd))) goto out_minisym; for (curminisym = minisyms; curminisym < minisyms + symcount*size; curminisym += size) { if (!(cur = bfd_minisymbol_to_symbol(abfd, 0, curminisym, store))) { bfd_perror("bfd_minisymbol_to_symbol"); exit(EXIT_FAILURE); } if (!cur->value || !cur->name || !*(cur->name) || !(cur->flags&BSF_FUNCTION)) continue; if( !(entry = malloc(sizeof(*entry))) ) { fprintf(stderr,"couldn't allocate memory for symbol\n"); perror("malloc"); exit(EXIT_FAILURE); } entry->source = FXT_USER; entry->name = strdup(cur->name); entry->len = strlen(cur->name); entry->address = cur->value + cur->section->vma + base; //printf("%s(%p:%s): %#010llx\n+%#010llx\n+%#010lx\n=%#010lx\n",entry->name,cur->section,cur->section->name,cur->value,cur->section->vma,base,entry->address); if (!fxt_add_symbol(fxt, entry)) free(entry); } out_minisym: free(minisyms); out_bfd: bfd_close(abfd); out: return; #endif } void fut_get_mysymbols( fxt_t fxt ) { FILE *maps; char attrs[5]; char path[256]; unsigned long base,size,offset; int n; int first=1; if (!(maps=fopen("/proc/self/maps","r"))) { #ifndef __MINGW32__ perror("opening /proc/self/maps"); fprintf(stderr,"symbols will be missing\n"); #endif return; } while (1) { if ((n=(fscanf(maps,"%lx-%*s%s%lx%*s%ld",&base,attrs,&offset,&size)))==EOF) break; if (n==4 && size) { if ((n=fscanf(maps,"%s",path))==EOF) break; if (n==1 && attrs[2]=='x') add_elfsymbols(fxt,path,first?0: #ifdef __ia64 # warning no base add_elfsymbols in fut_get_mysymbols on IA64 #else base+ #endif offset); if (first) first=0; } do { n=fgetc(maps); } while( n!=EOF && n!='\n' ); } fclose(maps); } #ifndef __MINGW32__ void fkt_addmodule_symbols( fxt_t fxt, struct module_entry *module ) { int fd[2]; FILE *ffd; char *d; pid_t pid; /* try to nm the module */ if( (d = strstr(module->path,".o_M")) ) *(d+2)='\0'; /* strip module version */ fprintf(stderr,"\rnming %s\n",module->path); if( pipe(fd) ) { perror("couldn't make a pipe for nm\n"); exit(EXIT_FAILURE); } if( !(pid=fork()) ) {/* exec nm on this file */ close(fd[0]); close(STDOUT_FILENO); if( dup2(fd[1],STDOUT_FILENO) < 0 ) { perror("couldn't redirect output of nm\n"); exit(EXIT_FAILURE); } close(fd[1]); execlp("nm", "nm", module->path, NULL); fprintf(stderr,"couldn't launch nm on %s\n",module->path); perror("execlp"); exit(EXIT_FAILURE); } close(fd[1]); if( !(ffd=fdopen(fd[0],"r")) ) /* couldn't open nm output, give up */ kill(pid,SIGTERM); else get_symbolsfd(fxt, ffd, FXT_SYSMAP_FILE, module->base); wait(NULL); } #endif static void get_symbolsfd( fxt_t fxt, FILE *fd, fxt_symbol_source source, unsigned long base) { int i=0,j,n; char *c; struct address_entry *entry=NULL; struct module_entry *module; char *name; unsigned long address; int len; char type; for(;;i++) { //fprintf(stderr,"\r%d",i); if( !(name = malloc(MAXNAMELEN)) ) { fprintf(stderr,"couldn't allocate memory for name\n"); perror("malloc"); exit(EXIT_FAILURE); } type=0; if( (n = fscanf(fd, "%lx ", &address)) == EOF || (n > 0 && (n = fscanf(fd, "%s%n", name, &len)) == EOF) || (n > 0 && len<=1 && (type=name[0], n = fscanf(fd, "%s%n", name, &len)) == EOF ) ) {/* end of file, stop */ //fprintf(stderr," done\n"); free(name); return; } do { j=fgetc(fd); } while( j!=EOF && j!='\n' ); if( !n || (type != 0 && type != 't' && type != 'T') ) /* garbage or non text, continue */ { free(name); continue; } for( c=name; csource = source; entry->name = name; entry->len = len; entry->address = address + base; } #ifndef __MINGW32__ /* look for module insertion tags */ if( !strncmp(name,"__insmod_",strlen("__insmod_")) ) { if( source != FXT_MODLIST ) {/* but ignore them if not a module list */ free(name); continue; } if( (c = strstr(name,"_O/")) ) {/* module load tag, record it */ /* look for text address to add the module path */ for( module=fxt->modules_entries; module && (strncmp(module->name,name,c-name) ||strncmp(module->name+(c-name),"_S.text_L", strlen("_S.text_L"))); module = module->next); if( module ) { free(module->name); module->name = name + strlen("__insmod_"); module->path = c+2; fkt_addmodule_symbols(fxt, module); } else { if( !(module=malloc(sizeof(*module))) ) { perror("couldn't allocate module entry\n"); exit(EXIT_FAILURE); } module->name = name; module->path = c+2; module->next = fxt->modules_entries; fxt->modules_entries = module; } } else if( (c = strstr(name,"_S.text_L")) ) {/* module text address */ /* look for module load tag to add the base address */ for( module = fxt->modules_entries; module && (strncmp(module->name,name,c-name) ||strncmp(module->name+(c-name),"_O/", strlen("_O/"))); module = module->next); if( module ) { module->base = address; free(name); fkt_addmodule_symbols(fxt, module); } else { if( !(module=malloc(sizeof(*module))) ) { perror("couldn't allocate module entry\n"); exit(EXIT_FAILURE); } module->name = name; module->base = address; module->next = fxt->modules_entries; fxt->modules_entries = module; } } } else #endif /* only add symbol if not module list */ if( source != FXT_MODLIST && !fxt_add_symbol(fxt, entry) ) free(entry); } } void fxt_get_symbols( fxt_t fxt, const char *file, fxt_symbol_source source, unsigned long base ) { FILE *fd; if( !file ) return; //fprintf(stderr,"opening %s\n", file); if( (fd = fopen(file, "r")) < 0 ) { fprintf(stderr,"opening %s\n",file); perror("open"); exit(EXIT_FAILURE); } get_symbolsfd( fxt, fd, source, base ); fclose(fd); } int fxt_record_symbols( fxt_t fxt, int fd ) { int i; const uint64_t zero=0; struct address_entry *cur; for( i=0; iaddresses[i]; cur; cur=cur->next ) { #ifdef __ia64 # warning all adresse valid... #else if (cur->address<0x00400000) fprintf(stderr,"strange symbol %s: %"PRIx64"\n",cur->name,cur->address); else #endif if (cur->len>1000) fprintf(stderr,"strange name length: %s: %x\n",cur->name,cur->len); else { write(fd,&cur->address,sizeof(cur->address)); write(fd,&cur->len,sizeof(cur->len)); write(fd,cur->name,cur->len); } } /* end of list is a zero address */ write(fd,&zero,sizeof(zero)); return 0; } int fxt_load_symbols( fxt_t fxt, FILE *fstream ) { //static int i; struct address_entry *entry; char *name; restart: if( !(entry = malloc(sizeof(*entry))) ) { perror("allocating System map entry"); return -1; } READ(64,entry->address); if( !entry->address ) { free(entry); return 0; } // if (!((i++)%1024)) // fprintf(stderr,"\r%d",i); READ(32,entry->len); if( !(name = malloc(entry->len+1)) ) { perror("allocating System map entry name"); return -1; } if( entry->len && fread(name, 1, entry->len, fstream) < entry->len ) { free(name); perror("reading System map name"); return -1; } name[entry->len]='\0'; entry->name=name; entry->next=fxt->addresses[entry->address%NAMEHASH_ENTRIES]; fxt->addresses[entry->address%NAMEHASH_ENTRIES]=entry; //printf("Registering symbol %lx=%s\n", entry->address, entry->name); goto restart; } char nosymb[256]; const char *fxt_lookup_symbol( fxt_t fxt, unsigned long address ) { struct address_entry *cur; for( cur=fxt->addresses[address%NAMEHASH_ENTRIES]; cur && cur->address != address; cur=cur->next); if( !cur ) { snprintf(nosymb, 255, "No symbol at %lx", address); return nosymb; } return cur->name; } /* vim: ts=4 */ fxt-0.3.15/tools/PaxHeaders/fkt_timestats0000644000000000000000000000007110271436743015434 xustar0030 atime=1746715490.217509167 27 ctime=1746716504.756187 fxt-0.3.15/tools/fkt_timestats0000755000175000017500000000052010271436743015120 0ustar00samysamy#!/bin/bash EPS=${1/.timedat/.eps} [ -n "$1" -a -n "$2" -a "$2" != "$1" ] && EPS="$2" if [ "$EPS" = "$1" ] then echo "Usage: $0 file.timedat [output.eps]" exit 1 fi (cat << EOF set terminal postscript eps enhanced color solid set xlabel "Mcy" plot "$1" using (\$2/1000000):(-\$3/1000000) title "Mcy" with lines EOF ) | gnuplot > $EPS fxt-0.3.15/tools/PaxHeaders/template2h.pl.in0000644000000000000000000000013213512105463015626 xustar0030 mtime=1562938163.216741195 30 atime=1746715490.217509167 30 ctime=1746716504.723646257 fxt-0.3.15/tools/template2h.pl.in0000755000175000017500000000416613512105463015326 0ustar00samysamy#!@PERL@ use strict; my @names; my @series; sub banner { print "/**************************************\n"; print " * DO NOT EDIT THIS FILE *\n"; print " * File autogenerated from a template *\n"; print " * DO NOT EDIT THIS FILE *\n"; print " **************************************/\n"; } banner(); while (<>) { chomp; if (/^__BEGIN_TEMPLATE_ARGS_NAME__$/) { @names=(); @series=(); ARGS_NAME: { banner(); while (<>) { chomp; if (/^__END_TEMPLATE_ARGS_NAME__$/) { last ARGS_NAME; } if (! /^[a-zA-Z0-9_]+$/) { die "Invalid name '$_'"; } push @names, $_; } print STDERR "End of file while reading ARGS_NAME\n"; exit 1; } } elsif (/^__BEGIN_TEMPLATE_ARGS__$/) { my @args; ARGS: { while (<>) { chomp; if (/^__END_TEMPLATE_ARGS__$/) { last ARGS; } push @args, $_; } print STDERR "End of file while reading ARGS\n"; exit 1; } if (scalar(@args) != scalar(@names)) { die "Bad number of ARGS"; } push @series, \@args; } elsif (/^__TEMPLATE_ARGS_AUTOFILL__([0-9]*)$/) { my $nmax=$1; for(my $i=1; $i<$nmax; $i++) { my @args; push @args, $i; my ($list_params, $store_params); for(my $j=1; $j<=$i; $j++) { $list_params .= ',P'.$j; $store_params .= '*(__args++)=(unsigned long)(P'.$j.');'; } push @args, $list_params, $list_params, $store_params; if (scalar(@args) != scalar(@names)) { die "Bad number of ARGS: "; } push @series, \@args; } } elsif (/^__BEGIN_TEMPLATE__$/) { my @code; TEMPLATE: { while (<>) { chomp; if (/^__END_TEMPLATE__$/) { last TEMPLATE; } push @code, $_; } print STDERR "End of file while reading TEMPLATE\n"; exit 1; } foreach my $serie (@series) { my @block=@code; foreach my $line (@block) { my $index=0; foreach my $name (@names) { $line =~ s/__${name}__/$serie->[$index]/g; $index++; } } print join("\n", @block)."\n"; } } else { print $_."\n"; } } fxt-0.3.15/tools/PaxHeaders/template2h.pl0000644000000000000000000000013115007143526015223 xustar0030 mtime=1746716502.795140974 29 atime=1746716502.86208999 30 ctime=1746716504.711751086 fxt-0.3.15/tools/template2h.pl0000755000175000017500000000417515007143526014724 0ustar00samysamy#!/usr/bin/perl use strict; my @names; my @series; sub banner { print "/**************************************\n"; print " * DO NOT EDIT THIS FILE *\n"; print " * File autogenerated from a template *\n"; print " * DO NOT EDIT THIS FILE *\n"; print " **************************************/\n"; } banner(); while (<>) { chomp; if (/^__BEGIN_TEMPLATE_ARGS_NAME__$/) { @names=(); @series=(); ARGS_NAME: { banner(); while (<>) { chomp; if (/^__END_TEMPLATE_ARGS_NAME__$/) { last ARGS_NAME; } if (! /^[a-zA-Z0-9_]+$/) { die "Invalid name '$_'"; } push @names, $_; } print STDERR "End of file while reading ARGS_NAME\n"; exit 1; } } elsif (/^__BEGIN_TEMPLATE_ARGS__$/) { my @args; ARGS: { while (<>) { chomp; if (/^__END_TEMPLATE_ARGS__$/) { last ARGS; } push @args, $_; } print STDERR "End of file while reading ARGS\n"; exit 1; } if (scalar(@args) != scalar(@names)) { die "Bad number of ARGS"; } push @series, \@args; } elsif (/^__TEMPLATE_ARGS_AUTOFILL__([0-9]*)$/) { my $nmax=$1; for(my $i=1; $i<$nmax; $i++) { my @args; push @args, $i; my ($list_params, $store_params); for(my $j=1; $j<=$i; $j++) { $list_params .= ',P'.$j; $store_params .= '*(__args++)=(unsigned long)(P'.$j.');'; } push @args, $list_params, $list_params, $store_params; if (scalar(@args) != scalar(@names)) { die "Bad number of ARGS: "; } push @series, \@args; } } elsif (/^__BEGIN_TEMPLATE__$/) { my @code; TEMPLATE: { while (<>) { chomp; if (/^__END_TEMPLATE__$/) { last TEMPLATE; } push @code, $_; } print STDERR "End of file while reading TEMPLATE\n"; exit 1; } foreach my $serie (@series) { my @block=@code; foreach my $line (@block) { my $index=0; foreach my $name (@names) { $line =~ s/__${name}__/$serie->[$index]/g; $index++; } } print join("\n", @block)."\n"; } } else { print $_."\n"; } } fxt-0.3.15/tools/PaxHeaders/fut-template.h0000644000000000000000000000013214630027010015370 xustar0030 mtime=1717579272.176977426 30 atime=1746715490.227509212 30 ctime=1746716504.720450979 fxt-0.3.15/tools/fut-template.h0000644000175000017500000002650614630027010015067 0ustar00samysamy/* fut.h */ /* Generated from fut-template.h by template2h.pl */ /* * PM2: Parallel Multithreaded Machine * Copyright (C) 2001 "the PM2 team" (see AUTHORS file) * * 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. */ #ifndef __FUT_H__ #define __FUT_H__ #ifdef __cplusplus extern "C" { #endif /* fut = Fast User Tracing */ #ifdef MARCEL # include "sys/marcel_flags.h" #endif #include #include #include #include "fxt.h" /* Macros for use from within the kernel */ #ifndef __ASSEMBLY__ extern volatile unsigned int fut_active; #endif #if defined(CONFIG_FUT) /***********************************************/ /* Les macros * * FUT_CODE(code, nb_param) : calcul du code avec décalage * nécessaire pour : * FUT_RAW_PROBEx(...) * FUT_*_PROBE(...) [avec * dans 'RAW' 'DO' 'FULL' et ''] * mais pas pour : * FUT_*_PROBEx(...) [avec * dans 'DO' 'FULL' et ''] * * FUT_SIZE(nb_param) : calcul de la taille de la structure * * FUT_RAW_PROBEx(fut_code, ...) : fut_code est déjà décalé * FUT_DO_PROBEx(code, ...) : code n'est pas encode décalé * FUT_FULL_PROBEx(keymask, code, ...) : enregistre si le keymask est actif * FUT_PROBEx(keymask, code, ...) : idem, sauf avec CONFIG_FUT_TIME_ONLY * (dans ce cas, on enregistre aucun paramètre) * * FUT_*_PROBE([keymask,] fut_code, ...) : nombre variable d'arguments * fut_code est déjà décalé */ __BEGIN_TEMPLATE_ARGS_NAME__ NUMBER DECLARE_ARGS CALL_ARGS ARGS_REGISTER __END_TEMPLATE_ARGS_NAME__ __BEGIN_TEMPLATE_ARGS__ 0 __END_TEMPLATE_ARGS__ __TEMPLATE_ARGS_AUTOFILL__32 #ifdef __GNUC__ # define FUT_UNLIKELY(expr) (__builtin_expect((expr),0)) # define FUT_LIKELY(expr) (__builtin_expect(!!(expr),1)) #else # define FUT_UNLIKELY(expr) (expr) # define FUT_LIKELY(expr) (expr) #endif #define FUT_CODE(CODE, n) ((((unsigned long)(CODE))<<8) | ((n) + 1)) #define FUT_SIZE(n) (sizeof(fxt_trace_user_raw_t)+(n)*sizeof(long)) #define FUT_STRLEN(s) ((strlen(s)+sizeof(long)-1)/sizeof(long)) #define FUT_NEEDS_COMMIT __BEGIN_TEMPLATE__ #define FUT_RAW_ALWAYS_PROBE__NUMBER__(CODE__DECLARE_ARGS__) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(__NUMBER__)); \ __ARGS_REGISTER__ \ fut_commitstampedbuffer(FUT_SIZE(__NUMBER__)); \ } while (0) #define FUT_RAW_PROBE__NUMBER__(CODE__DECLARE_ARGS__) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE__NUMBER__(CODE__CALL_ARGS__); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE__NUMBER__STR(CODE__DECLARE_ARGS__,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - __NUMBER__) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = __NUMBER__ + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ __ARGS_REGISTER__ \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE__NUMBER__STR(CODE__DECLARE_ARGS__,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE__NUMBER__STR(CODE__CALL_ARGS__,S); \ } \ } while (0) __END_TEMPLATE__ #define FUT_RAW_ALWAYS_PROBESTR(CODE,S) do { \ const char *__s = (S); \ size_t __len = strlen(__s); \ size_t __n = FUT_STRLEN(__s); \ unsigned long *__args __attribute__((unused)) = \ fut_getstampedbuffer(CODE, FUT_SIZE(__n)); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __n*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__n)); \ } while (0) #define FUT_RAW_PROBESTR(CODE,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBESTR(CODE, S); \ } \ } while (0) __BEGIN_TEMPLATE__ #define FUT_DO_ALWAYS_PROBE__NUMBER__(CODE__DECLARE_ARGS__) do { \ FUT_RAW_ALWAYS_PROBE__NUMBER__(FUT_CODE(CODE, __NUMBER__)__CALL_ARGS__); \ } while (0) #define FUT_DO_PROBE__NUMBER__(CODE__DECLARE_ARGS__) do { \ FUT_RAW_PROBE__NUMBER__(FUT_CODE(CODE, __NUMBER__)__CALL_ARGS__); \ } while (0) #define FUT_DO_ALWAYS_PROBE__NUMBER__STR(CODE__DECLARE_ARGS__,S) do { \ FUT_RAW_ALWAYS_PROBE__NUMBER__STR(CODE__CALL_ARGS__,S); \ } while (0) #define FUT_DO_PROBE__NUMBER__STR(CODE__DECLARE_ARGS__,S) do { \ FUT_RAW_PROBE__NUMBER__STR(CODE__CALL_ARGS__,S); \ } while (0) __END_TEMPLATE__ #define FUT_DO_PROBESTR(CODE,S) do { \ FUT_RAW_PROBESTR(FUT_CODE(CODE, FUT_STRLEN(__s)), S); \ } while (0) #define FUT_DO_ALWAYS_PROBESTR(CODE,S) do { \ FUT_RAW_ALWAYS_PROBESTR(FUT_CODE(CODE, FUT_STRLEN(__s)), S); \ } while (0) /******************************************************/ /* NEVER call fut_getstampedbuffer or */ /* fut_commitstampedbuffer directly */ /* Interface can change without forewarning */ /******************************************************/ extern unsigned long* fut_getstampedbuffer(unsigned long code, int size); extern void fut_commitstampedbuffer(int size); /* This can be overriden by the user */ extern uint64_t fut_getstamp(void); inline static void #ifndef __cplusplus __attribute__((no_instrument_function)) #endif FUT_RAW_PROBE(unsigned long code, ...) { if(FUT_UNLIKELY(fut_active)) { int nb=(code&0xff)-1, orig_nb = nb; unsigned long *args=fut_getstampedbuffer(code, FUT_SIZE(nb)); va_list list; va_start(list, code); while (nb--) { *(args++)=va_arg(list, unsigned long); } va_end(list); fut_commitstampedbuffer(FUT_SIZE(orig_nb)); } } #define FUT_DO_PROBE(CODE, ...) do { \ FUT_RAW_PROBE(CODE , ##__VA_ARGS__); \ } while (0) __BEGIN_TEMPLATE_ARGS__ ,... , ##__VA_ARGS__ __END_TEMPLATE_ARGS__ __BEGIN_TEMPLATE__ #define FUT_FULL_PROBE__NUMBER__(KEYMASK,CODE__DECLARE_ARGS__) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE__NUMBER__(FUT_CODE(CODE, __NUMBER__)__CALL_ARGS__); \ } \ } while(0) __END_TEMPLATE__ #define FUT_FULL_PROBESTR(KEYMASK,CODE,S) do { \ if ( FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBESTR(FUT_CODE(CODE, FUT_STRLEN(__s)),S); \ } \ } while(0) #else /* CONFIG_FUT */ __BEGIN_TEMPLATE__ #define FUT_DO_PROBE__NUMBER__(CODE__DECLARE_ARGS__) do {} while (0) #define FUT_FULL_PROBE__NUMBER__(MASK,CODE__DECLARE_ARGS__) do {} while (0) __END_TEMPLATE__ #define FUT_DO_PROBESTR(CODE,S) do {} while (0) #define FUT_FULL_PROBESTR(MASK,CODE,S) do {} while (0) #endif #if defined(CONFIG_FUT_TIME_ONLY) __BEGIN_TEMPLATE__ #define FUT_PROBE__NUMBER__(KEYMASK,CODE__DECLARE_ARGS__) FUT_FULL_PROBE0(KEYMASK,CODE) __END_TEMPLATE__ #define FUT_PROBESTR(KEYMASK,CODE,S) FUt_FULL_PROBESTR(KEYMASK,CODE) #else /* CONFIG_FUT_TIME_ONLY */ __BEGIN_TEMPLATE__ #define FUT_PROBE__NUMBER__(KEYMASK,CODE__DECLARE_ARGS__) FUT_FULL_PROBE__NUMBER__(KEYMASK,CODE__CALL_ARGS__) __END_TEMPLATE__ #define FUT_PROBESTR(KEYMASK,CODE,S) FUT_FULL_PROBESTR(KEYMASK,CODE,S) #endif /* CONFIG_FUT_TIME_ONLY */ /* "how" parameter values, analagous to "how" parameters to FKT */ #define FUT_ENABLE 0xCE03 /* for enabling probes with 1's in keymask */ #define FUT_DISABLE 0xCE04 /* for disabling probes with 1's in keymask */ #define FUT_SETMASK 0xCE05 /* for enabling 1's, disabling 0's in keymask */ /* Simple keymasks */ #define FUT_KEYMASK0 0x00000001 #define FUT_KEYMASK1 0x00000002 #define FUT_KEYMASK2 0x00000004 #define FUT_KEYMASK3 0x00000008 #define FUT_KEYMASK4 0x00000010 #define FUT_KEYMASK5 0x00000020 #define FUT_KEYMASK6 0x00000040 #define FUT_KEYMASK7 0x00000080 #define FUT_KEYMASK8 0x00000100 #define FUT_KEYMASK9 0x00000200 #define FUT_KEYMASK10 0x00000400 #define FUT_KEYMASK11 0x00000800 #define FUT_KEYMASK12 0x00001000 #define FUT_KEYMASK13 0x00002000 #define FUT_KEYMASK14 0x00004000 #define FUT_KEYMASK15 0x00008000 #define FUT_KEYMASK16 0x00010000 #define FUT_KEYMASK17 0x00020000 #define FUT_KEYMASK18 0x00040000 #define FUT_KEYMASK19 0x00080000 #define FUT_KEYMASK20 0x00100000 #define FUT_KEYMASK21 0x00200000 #define FUT_KEYMASK22 0x00400000 #define FUT_KEYMASK23 0x00800000 #define FUT_KEYMASK24 0x01000000 #define FUT_KEYMASK25 0x02000000 #define FUT_KEYMASK26 0x04000000 #define FUT_KEYMASK27 0x08000000 #define FUT_KEYMASK28 0x10000000 #define FUT_KEYMASK29 0x20000000 #define FUT_KEYMASK30 0x40000000 #define FUT_KEYMASK31 0x80000000 #define FUT_KEYMASKALL 0xffffffff #define FUT_GCC_INSTRUMENT_KEYMASK FUT_KEYMASK29 /* Fixed parameters of the fut coding scheme */ #define FUT_GENERIC_EXIT_OFFSET 0x100 /* exit this much above entry */ #define FUT_UNPAIRED_LIMIT_CODE 0xf000 /* all unpaired codes above this limit */ /* Codes for fut use */ #define FUT_SETUP_CODE 0xffff #define FUT_KEYCHANGE_CODE 0xfffe #define FUT_RESET_CODE 0xfffd #define FUT_CALIBRATE0_CODE 0xfffc #define FUT_CALIBRATE1_CODE 0xfffb #define FUT_CALIBRATE2_CODE 0xfffa #define FUT_THREAD_BIRTH_CODE 0xfff9 #define FUT_THREAD_DEATH_CODE 0xfff8 #define FUT_SET_THREAD_NAME_CODE 0xfff7 #define FUT_NEW_LWP_CODE 0xfff6 #define FUT_START_FLUSH_CODE 0xfff5 #define FUT_STOP_FLUSH_CODE 0xfff4 #define FUT_RQS_NEWLEVEL 0xffef #define FUT_RQS_NEWLWPRQ 0xffee #define FUT_RQS_NEWRQ 0xffed #define FUT_SWITCH_TO_CODE 0x31a #define FUT_MAIN_ENTRY_CODE 0x301 #define FUT_MAIN_EXIT_CODE 0x401 /* -finstrument-functions code */ #define FUT_GCC_INSTRUMENT_ENTRY_CODE 0x320 #define FUT_GCC_INSTRUMENT_EXIT_CODE 0x420 #ifndef __ASSEMBLY__ extern unsigned long * volatile fut_next_slot; extern unsigned long * volatile fut_first_slot; extern unsigned long * volatile fut_last_slot; extern size_t volatile fut_filled_slot; extern int64_t fut_setup( uint64_t nints, unsigned int keymask, unsigned int threadid ); extern int64_t fut_setup_flush_callback( uint64_t nints, unsigned int keymask, unsigned int threadid, void (*flush_callback)(void) ); extern uint64_t fut_endup( const char *filename ); extern int fut_done(void ); extern int fut_keychange( int how, unsigned int keymask, unsigned int threadid ); extern int64_t fut_reset( unsigned int keymask, unsigned int threadid ); extern uint64_t fut_getbuffer( uint64_t *nints, unsigned long **buffer, unsigned long *first_slot, unsigned long *next_slot); extern int fut_header( unsigned long head, ... ); extern void enable_fut_flush( void ); extern void disable_fut_flush( void ); extern void fut_set_filename( const char *filename ); /* activate the recording of thread id */ extern void fut_enable_tid_logging( void ); /* disactivate the recording of thread id */ extern void fut_disable_tid_logging( void ); #endif #ifdef __cplusplus } #endif #endif fxt-0.3.15/tools/PaxHeaders/fxt.h0000644000000000000000000000013214470712703013576 xustar0030 mtime=1692636611.102500321 30 atime=1746715490.227509212 30 ctime=1746716504.716549518 fxt-0.3.15/tools/fxt.h0000644000175000017500000002723414470712703013274 0ustar00samysamy/* * Copyright (C) 2004, 2011, 2013, 2017-2018, 2020 Samuel Thibault * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __FXT_H #define __FXT_H #ifdef __cplusplus extern "C" { #endif #include #include #include #include #include /****************************************************************************** * * fxt_t holds every information found in blocks, as well as pointers on the * trace */ typedef struct _fxt *fxt_t; /****************************************************************************** * * opening a trace file */ /* open a trace file, given its name */ extern fxt_t fxt_open(const char *path); /* the same, but for an already-opened trace file (via a pipe etc) */ extern fxt_t fxt_fdopen(int fd); /* close the trace file */ extern void fxt_close(fxt_t fxt); /****************************************************************************** * * tools for trace recorders: */ #define FXT_TRACE_KERNEL_RAW32 0 #define FXT_TRACE_KERNEL_RAW64 1 #define FXT_TRACE_USER_RAW32 2 #define FXT_TRACE_USER_RAW64 3 typedef struct fxt_evbuf { char __fxt_internal[16]; /* must match block header size */ long data[]; } *fxt_evbuf_t; extern fxt_t fxt_setinfos(unsigned int space); extern int fxt_fdwrite(fxt_t fxt, int fd); extern int fxt_fdwritetime(fxt_t fxt, int fd); extern int fxt_fdevents_start(fxt_t fxt, int fd, int kind); extern int fxt_fdevents_stop(fxt_t fxt, int fd); extern int fxt_setupeventsbuffer(fxt_t fxt, struct fxt_evbuf *buffer, size_t size, int kind); extern int fxt_fdwriteevents(fxt_t fxt, int fd, struct fxt_evbuf *buffer); /****************************************************************************** * * misc informations */ struct fxt_infos { #define FXT_SPACE_KERNEL 0 #define FXT_SPACE_USER 1 unsigned int space; /* Little-endian machines */ #define FXT_ARCH_I386 0 #define FXT_ARCH_IA64 1 #define FXT_ARCH_X86_64 2 #define FXT_ARCH_ALPHA 3 #define FXT_ARCH_ARM32 4 #define FXT_ARCH_ARM64 5 #define FXT_ARCH_MIPSEL 6 #define FXT_ARCH_SH 7 #define FXT_ARCH_PPC64EL 8 #define FXT_ARCH_RISCV64 9 #define FXT_ARCH_UNKNOWN_EL 255 /* Big-endian machines */ #define FXT_ARCH_PPC 0x10000 #define FXT_ARCH_PPC64 0x20000 #define FXT_ARCH_AVR32 0x30000 #define FXT_ARCH_HPPA 0x40000 #define FXT_ARCH_M68K 0x50000 #define FXT_ARCH_MIPS 0x60000 #define FXT_ARCH_S390 0x70000 #define FXT_ARCH_S390X 0x80000 #define FXT_ARCH_SPARC 0x90000 #define FXT_ARCH_SPARC 0x90000 #define FXT_ARCH_UNKNOWN_EB 0xff0000 uint32_t arch; /* so that syscalls/irqs/... are known */ unsigned int ncpus; unsigned int *mhz; /* ncpus array */ pid_t record_pid; /* recording process pid */ pid_t traced_pid; /* traced process pid */ time_t start_time; time_t stop_time; clock_t start_jiffies; clock_t stop_jiffies; unsigned long page_size; const char *uname; }; struct fxt_infos *fxt_infos(fxt_t fxt); /****************************************************************************** * * irq information */ extern int fkt_fill_irqs(fxt_t fxt); extern const char *fkt_find_irq(fxt_t fxt, unsigned long code); extern int fkt_find_syscall(fxt_t fxt, unsigned long code, char *category, const char **name, int *should_be_hex); /****************************************************************************** * * symbols information */ typedef enum { FXT_SYSMAP_FILE, FXT_MODLIST, FXT_PROC, FXT_USER, } fxt_symbol_source; struct fxt_code_name { unsigned long code; const char *name; }; #define FKT_I386_NTRAPS 21 #define FKT_I386_NSYSIRQS 18 #define FKT_I386_NSYSCALLS 283 extern const char *fkt_i386_traps[FKT_I386_NTRAPS]; extern const char *fkt_i386_sysirqs[FKT_I386_NSYSIRQS]; extern const char *fkt_i386_syscalls[FKT_I386_NSYSCALLS]; extern struct fxt_code_name fkt_code_table[]; extern const char *fxt_find_name(fxt_t fxt, unsigned long code, int keep_entry, int maxlen, struct fxt_code_name *table); extern void fxt_get_symbols(fxt_t fxt, const char *file, fxt_symbol_source source, unsigned long base); extern void fut_get_mysymbols(fxt_t fxt); extern int fxt_load_symbols(fxt_t fxt, FILE *fstream); extern const char *fxt_lookup_symbol(fxt_t fxt, unsigned long address); /****************************************************************************** * * Codes space */ #define FKT_I386_FUNCTION_MINI 0x80000000ULL #define FKT_I386_FUNCTION_EXIT 0x40000000ULL #define FUT_I386_FUNCTION_MINI 0x00400000ULL #define FUT_I386_FUNCTION_EXIT 0x80000000ULL #define FKT_GCC_TRACED_FUNCTION_X86_MINI 0x80000000UL #define FKT_GCC_TRACED_FUNCTION_X86_EXIT 0x40000000UL #define FUT_GCC_TRACED_FUNCTION_X86_MINI 0x00400000UL #define FUT_GCC_TRACED_FUNCTION_X86_EXIT 0x80000000UL /****************************************************************************** * * pids information */ #define FXT_MAXCOMMLEN 15 extern int fkt_add_pid(fxt_t fxt, uint64_t pid, const char name[FXT_MAXCOMMLEN+1]); extern void fkt_remove_pid(fxt_t fxt, uint64_t pid); extern const char *fxt_lookup_pid(fxt_t fxt, uint64_t pid); /****************************************************************************** * * Trace events */ #include #define FXT_MAX_PARAMS 254 #define FXT_MAX_DATA (FXT_MAX_PARAMS*sizeof(uint64_t)) /* TODO: only keep ev_64 */ struct fxt_ev_native { uint64_t time; union { struct { unsigned int /*pid_t*/ pid; } kernel; struct { unsigned long tid; } user; }; unsigned int cpu; unsigned long code; unsigned int nb_params; unsigned long param[FXT_MAX_PARAMS]; unsigned char raw[FXT_MAX_DATA]; }; struct fxt_ev_32 { uint64_t time; union { struct { uint32_t pid; } kernel; struct { uint32_t tid; } user; }; uint32_t cpu; uint32_t code; unsigned int nb_params; uint32_t param[FXT_MAX_PARAMS]; unsigned char raw[FXT_MAX_DATA]; }; struct fxt_ev_64 { uint64_t time; union { struct { uint32_t pid; } kernel; struct { uint64_t tid; } user; }; uint32_t cpu; uint64_t code; unsigned int nb_params; uint64_t param[FXT_MAX_PARAMS]; unsigned char raw[FXT_MAX_DATA]; }; #define FXT_EV_TYPE_NATIVE 0 #define FXT_EV_TYPE_32 1 #define FXT_EV_TYPE_64 2 struct fxt_ev { union { struct fxt_ev_native native; struct fxt_ev_32 ev32; struct fxt_ev_64 ev64; }; }; /* represents the event stream */ typedef struct fxt_blockev *fxt_blockev_t; /* enter the event stream of the trace file */ fxt_blockev_t fxt_blockev_enter(fxt_t fxt); #define FXT_EV_OK 0 #define FXT_EV_ERROR -1 #define FXT_EV_EOT 1 /* End Of Trace */ #define FXT_EV_TYPEERROR 2 /* on essaie de forcer une trace 64 dans un * type 32 */ /* get next event in the event stream */ int fxt_next_ev(fxt_blockev_t evs, int ev_type, struct fxt_ev *ev); /* rewind within the event stream */ int fxt_rewind(fxt_blockev_t evs); /* close event stream */ void fxt_blockev_leave(fxt_blockev_t evs); // fonctions avancées: savoir le type d'évènement et en extraire des infos: // // TIME_OFFSET -> 64 bits (32hi << 32) // // SWITCH_TO -> next // FUNC_ENTER -> identifiant de la fonction puis fonction d'impression // FUNC_EXIT // // ENTER_KERNEL (irq, syscall) -> id_enter // EXIT_KERNEL -> () // // NEW_ENTITY -> nouveau pid // SET_ENTITY_NAME -> nom du processus // END_ENTITY -> pid tué // BIND_USER_ENTITY -> utid // // OTHER // // fonctions. // // // id fn -> nom // id enter -> nom, type(irq(numéro)/syscall(nom)) // // trace user / noyau ? // deux fichiers différents pour infos & trace -> pouvoir ajouter des infos // ids en début de blocks // // format de trace: usertid enregistré ou pas, 64/32 bits // little/big endian // // numéro du processeur, rajouter dans struct ev à la lecture // // premier block: assurément params de la trace // // le reste ordre quelconque, id. // // // la trace est dans un bloc (pas terminé) // #include /* Structures utilisées par le code enregistrant les traces (et ev.c * pour lire ces traces) */ struct fxt_trace_kernel_raw32 { uint64_t tick; uint16_t cpu; uint16_t pid; uint32_t code; uint32_t args[]; }; struct fxt_trace_user_raw32 { uint64_t tick; uint32_t tid; uint32_t code; uint32_t args[]; }; struct fxt_trace_user_raw64 { uint64_t tick; uint64_t tid; uint64_t code; uint64_t args[]; }; #ifdef __i386 # define FXT_RECORD_ARCH FXT_ARCH_I386 #elif defined __ia64 # define FXT_RECORD_ARCH FXT_ARCH_IA64 #elif defined __x86_64__ # define FXT_RECORD_ARCH FXT_ARCH_X86_64 #elif defined(__alpha__) || defined(__alpha) # define FXT_RECORD_ARCH FXT_ARCH_ALPHA #elif defined(__arm__) # define FXT_RECORD_ARCH FXT_ARCH_ARM32 #elif defined(__aarch64__) # define FXT_RECORD_ARCH FXT_ARCH_ARM64 #elif defined(__AVR__) || defined(__AVR) # define FXT_RECORD_ARCH FXT_ARCH_AVR32 #elif defined(__hppa__) || defined(__hppa) # define FXT_RECORD_ARCH FXT_ARCH_HPPA #elif defined(__m68k__) # define FXT_RECORD_ARCH FXT_ARCH_M68K #elif defined(__MIPSEL__) # define FXT_RECORD_ARCH FXT_ARCH_MIPSEL #elif defined(__mips__) || defined(__mips) # define FXT_RECORD_ARCH FXT_ARCH_MIPS #elif defined(__PPC64__) || defined(__powerpc64__) # ifdef __LITTLE_ENDIAN__ # define FXT_RECORD_ARCH FXT_ARCH_PPC64EL # else # define FXT_RECORD_ARCH FXT_ARCH_PPC64 # endif #elif defined(__powerpc__) || defined(__ppc__) || defined(_ARCH_PPC) # define FXT_RECORD_ARCH FXT_ARCH_PPC #elif defined(__s390x__) # define FXT_RECORD_ARCH FXT_ARCH_S390X #elif defined(__s390__) # define FXT_RECORD_ARCH FXT_ARCH_S390 #elif defined(__sparc__) || defined(__sparc) # define FXT_RECORD_ARCH FXT_ARCH_SPARC #elif defined(__sh__) # define FXT_RECORD_ARCH FXT_ARCH_SH #elif defined(__riscv) && (__riscv_xlen==64) # define FXT_RECORD_ARCH FXT_ARCH_RISCV64 #else # if defined(__LITTLE_ENDIAN__) # define FXT_RECORD_ARCH FXT_ARCH_UNKNOWN_EL # elif defined(__BIG_ENDIAN__) # define FXT_RECORD_ARCH FXT_ARCH_UNKNOWN_EB # elif __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__ # define FXT_RECORD_ARCH FXT_ARCH_UNKNOWN_EL # elif __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__ # define FXT_RECORD_ARCH FXT_ARCH_UNKNOWN_EL # else # error Unable to find a supported host architecture # endif #endif #if ULONG_MAX == 4294967295UL # define FXT_ARCH_32 #elif ULONG_MAX == 18446744073709551615UL # define FXT_ARCH_64 #endif #ifdef FXT_ARCH_32 # define FXT_TRACE_KERNEL_RAW FXT_TRACE_KERNEL_RAW32 # define FXT_TRACE_USER_RAW FXT_TRACE_USER_RAW32 # define FXT_BLOCK_TRACES_KERNEL_RAW FXT_BLOCK_TRACES_KERNEL_RAW32 # define FXT_BLOCK_TRACES_USER_RAW FXT_BLOCK_TRACES_USER_RAW32 # define FXT_BLOCK_TRACES_USER_RAW_NATIVE FXT_BLOCK_TRACES_USER_RAW32 typedef struct fxt_trace_user_raw32 fxt_trace_user_raw_t; typedef struct fxt_trace_kernel_raw32 fxt_trace_kernel_raw_t; #else /* FXT_ARCH_64 */ # define FXT_TRACE_KERNEL_RAW FXT_TRACE_KERNEL_RAW64 # define FXT_TRACE_USER_RAW FXT_TRACE_USER_RAW64 # define FXT_BLOCK_TRACES_KERNEL_RAW FXT_BLOCK_TRACES_KERNEL_RAW64 # define FXT_BLOCK_TRACES_USER_RAW FXT_BLOCK_TRACES_USER_RAW64 # define FXT_BLOCK_TRACES_USER_RAW_NATIVE FXT_BLOCK_TRACES_USER_RAW64 typedef struct fxt_trace_user_raw64 fxt_trace_user_raw_t; #endif #ifdef __cplusplus } #endif #endif /* __FXT_H */ fxt-0.3.15/tools/PaxHeaders/fut.h0000644000000000000000000000013115007143530013563 xustar0029 mtime=1746716504.27209637 30 atime=1746716504.282096416 30 ctime=1746716504.718081169 fxt-0.3.15/tools/fut.h0000644000175000017500000042242415007143530013262 0ustar00samysamy/************************************** * DO NOT EDIT THIS FILE * * File autogenerated from a template * * DO NOT EDIT THIS FILE * **************************************/ /* fut.h */ /* Generated from fut-template.h by template2h.pl */ /* * PM2: Parallel Multithreaded Machine * Copyright (C) 2001 "the PM2 team" (see AUTHORS file) * * 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. */ #ifndef __FUT_H__ #define __FUT_H__ #ifdef __cplusplus extern "C" { #endif /* fut = Fast User Tracing */ #ifdef MARCEL # include "sys/marcel_flags.h" #endif #include #include #include #include "fxt.h" /* Macros for use from within the kernel */ #ifndef __ASSEMBLY__ extern volatile unsigned int fut_active; #endif #if defined(CONFIG_FUT) /***********************************************/ /* Les macros * * FUT_CODE(code, nb_param) : calcul du code avec décalage * nécessaire pour : * FUT_RAW_PROBEx(...) * FUT_*_PROBE(...) [avec * dans 'RAW' 'DO' 'FULL' et ''] * mais pas pour : * FUT_*_PROBEx(...) [avec * dans 'DO' 'FULL' et ''] * * FUT_SIZE(nb_param) : calcul de la taille de la structure * * FUT_RAW_PROBEx(fut_code, ...) : fut_code est déjà décalé * FUT_DO_PROBEx(code, ...) : code n'est pas encode décalé * FUT_FULL_PROBEx(keymask, code, ...) : enregistre si le keymask est actif * FUT_PROBEx(keymask, code, ...) : idem, sauf avec CONFIG_FUT_TIME_ONLY * (dans ce cas, on enregistre aucun paramètre) * * FUT_*_PROBE([keymask,] fut_code, ...) : nombre variable d'arguments * fut_code est déjà décalé */ /************************************** * DO NOT EDIT THIS FILE * * File autogenerated from a template * * DO NOT EDIT THIS FILE * **************************************/ #ifdef __GNUC__ # define FUT_UNLIKELY(expr) (__builtin_expect((expr),0)) # define FUT_LIKELY(expr) (__builtin_expect(!!(expr),1)) #else # define FUT_UNLIKELY(expr) (expr) # define FUT_LIKELY(expr) (expr) #endif #define FUT_CODE(CODE, n) ((((unsigned long)(CODE))<<8) | ((n) + 1)) #define FUT_SIZE(n) (sizeof(fxt_trace_user_raw_t)+(n)*sizeof(long)) #define FUT_STRLEN(s) ((strlen(s)+sizeof(long)-1)/sizeof(long)) #define FUT_NEEDS_COMMIT #define FUT_RAW_ALWAYS_PROBE0(CODE) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(0)); \ \ fut_commitstampedbuffer(FUT_SIZE(0)); \ } while (0) #define FUT_RAW_PROBE0(CODE) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE0(CODE); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE0STR(CODE,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 0) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 0 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE0STR(CODE,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE0STR(CODE,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE1(CODE,P1) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(1)); \ *(__args++)=(unsigned long)(P1); \ fut_commitstampedbuffer(FUT_SIZE(1)); \ } while (0) #define FUT_RAW_PROBE1(CODE,P1) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE1(CODE,P1); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE1STR(CODE,P1,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 1) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 1 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE1STR(CODE,P1,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE1STR(CODE,P1,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE2(CODE,P1,P2) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(2)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2); \ fut_commitstampedbuffer(FUT_SIZE(2)); \ } while (0) #define FUT_RAW_PROBE2(CODE,P1,P2) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE2(CODE,P1,P2); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE2STR(CODE,P1,P2,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 2) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 2 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE2STR(CODE,P1,P2,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE2STR(CODE,P1,P2,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE3(CODE,P1,P2,P3) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(3)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3); \ fut_commitstampedbuffer(FUT_SIZE(3)); \ } while (0) #define FUT_RAW_PROBE3(CODE,P1,P2,P3) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE3(CODE,P1,P2,P3); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE3STR(CODE,P1,P2,P3,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 3) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 3 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE3STR(CODE,P1,P2,P3,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE3STR(CODE,P1,P2,P3,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE4(CODE,P1,P2,P3,P4) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(4)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4); \ fut_commitstampedbuffer(FUT_SIZE(4)); \ } while (0) #define FUT_RAW_PROBE4(CODE,P1,P2,P3,P4) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE4(CODE,P1,P2,P3,P4); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE4STR(CODE,P1,P2,P3,P4,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 4) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 4 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE4STR(CODE,P1,P2,P3,P4,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE4STR(CODE,P1,P2,P3,P4,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE5(CODE,P1,P2,P3,P4,P5) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(5)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5); \ fut_commitstampedbuffer(FUT_SIZE(5)); \ } while (0) #define FUT_RAW_PROBE5(CODE,P1,P2,P3,P4,P5) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE5(CODE,P1,P2,P3,P4,P5); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE5STR(CODE,P1,P2,P3,P4,P5,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 5) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 5 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE5STR(CODE,P1,P2,P3,P4,P5,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE5STR(CODE,P1,P2,P3,P4,P5,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE6(CODE,P1,P2,P3,P4,P5,P6) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(6)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6); \ fut_commitstampedbuffer(FUT_SIZE(6)); \ } while (0) #define FUT_RAW_PROBE6(CODE,P1,P2,P3,P4,P5,P6) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE6(CODE,P1,P2,P3,P4,P5,P6); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE6STR(CODE,P1,P2,P3,P4,P5,P6,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 6) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 6 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE6STR(CODE,P1,P2,P3,P4,P5,P6,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE6STR(CODE,P1,P2,P3,P4,P5,P6,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE7(CODE,P1,P2,P3,P4,P5,P6,P7) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(7)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7); \ fut_commitstampedbuffer(FUT_SIZE(7)); \ } while (0) #define FUT_RAW_PROBE7(CODE,P1,P2,P3,P4,P5,P6,P7) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE7(CODE,P1,P2,P3,P4,P5,P6,P7); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE7STR(CODE,P1,P2,P3,P4,P5,P6,P7,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 7) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 7 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE7STR(CODE,P1,P2,P3,P4,P5,P6,P7,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE7STR(CODE,P1,P2,P3,P4,P5,P6,P7,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE8(CODE,P1,P2,P3,P4,P5,P6,P7,P8) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(8)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8); \ fut_commitstampedbuffer(FUT_SIZE(8)); \ } while (0) #define FUT_RAW_PROBE8(CODE,P1,P2,P3,P4,P5,P6,P7,P8) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE8(CODE,P1,P2,P3,P4,P5,P6,P7,P8); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE8STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 8) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 8 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE8STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE8STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE9(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(9)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9); \ fut_commitstampedbuffer(FUT_SIZE(9)); \ } while (0) #define FUT_RAW_PROBE9(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE9(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE9STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 9) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 9 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE9STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE9STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE10(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(10)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10); \ fut_commitstampedbuffer(FUT_SIZE(10)); \ } while (0) #define FUT_RAW_PROBE10(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE10(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE10STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 10) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 10 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE10STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE10STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE11(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(11)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11); \ fut_commitstampedbuffer(FUT_SIZE(11)); \ } while (0) #define FUT_RAW_PROBE11(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE11(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE11STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 11) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 11 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE11STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE11STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE12(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(12)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12); \ fut_commitstampedbuffer(FUT_SIZE(12)); \ } while (0) #define FUT_RAW_PROBE12(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE12(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE12STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 12) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 12 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE12STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE12STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE13(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(13)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13); \ fut_commitstampedbuffer(FUT_SIZE(13)); \ } while (0) #define FUT_RAW_PROBE13(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE13(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE13STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 13) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 13 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE13STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE13STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE14(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(14)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14); \ fut_commitstampedbuffer(FUT_SIZE(14)); \ } while (0) #define FUT_RAW_PROBE14(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE14(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE14STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 14) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 14 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE14STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE14STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE15(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(15)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15); \ fut_commitstampedbuffer(FUT_SIZE(15)); \ } while (0) #define FUT_RAW_PROBE15(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE15(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE15STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 15) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 15 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE15STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE15STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE16(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(16)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16); \ fut_commitstampedbuffer(FUT_SIZE(16)); \ } while (0) #define FUT_RAW_PROBE16(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE16(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE16STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 16) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 16 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE16STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE16STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE17(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(17)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17); \ fut_commitstampedbuffer(FUT_SIZE(17)); \ } while (0) #define FUT_RAW_PROBE17(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE17(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE17STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 17) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 17 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE17STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE17STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE18(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(18)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18); \ fut_commitstampedbuffer(FUT_SIZE(18)); \ } while (0) #define FUT_RAW_PROBE18(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE18(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE18STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 18) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 18 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE18STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE18STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE19(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(19)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19); \ fut_commitstampedbuffer(FUT_SIZE(19)); \ } while (0) #define FUT_RAW_PROBE19(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE19(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE19STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 19) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 19 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE19STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE19STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE20(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(20)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20); \ fut_commitstampedbuffer(FUT_SIZE(20)); \ } while (0) #define FUT_RAW_PROBE20(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE20(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE20STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 20) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 20 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE20STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE20STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE21(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(21)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21); \ fut_commitstampedbuffer(FUT_SIZE(21)); \ } while (0) #define FUT_RAW_PROBE21(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE21(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE21STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 21) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 21 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE21STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE21STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE22(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(22)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22); \ fut_commitstampedbuffer(FUT_SIZE(22)); \ } while (0) #define FUT_RAW_PROBE22(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE22(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE22STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 22) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 22 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE22STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE22STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE23(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(23)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23); \ fut_commitstampedbuffer(FUT_SIZE(23)); \ } while (0) #define FUT_RAW_PROBE23(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE23(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE23STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 23) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 23 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE23STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE23STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE24(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(24)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24); \ fut_commitstampedbuffer(FUT_SIZE(24)); \ } while (0) #define FUT_RAW_PROBE24(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE24(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE24STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 24) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 24 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE24STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE24STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE25(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(25)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25); \ fut_commitstampedbuffer(FUT_SIZE(25)); \ } while (0) #define FUT_RAW_PROBE25(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE25(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE25STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 25) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 25 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE25STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE25STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE26(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(26)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25);*(__args++)=(unsigned long)(P26); \ fut_commitstampedbuffer(FUT_SIZE(26)); \ } while (0) #define FUT_RAW_PROBE26(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE26(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE26STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 26) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 26 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25);*(__args++)=(unsigned long)(P26); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE26STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE26STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE27(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(27)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25);*(__args++)=(unsigned long)(P26);*(__args++)=(unsigned long)(P27); \ fut_commitstampedbuffer(FUT_SIZE(27)); \ } while (0) #define FUT_RAW_PROBE27(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE27(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE27STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 27) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 27 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25);*(__args++)=(unsigned long)(P26);*(__args++)=(unsigned long)(P27); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE27STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE27STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE28(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(28)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25);*(__args++)=(unsigned long)(P26);*(__args++)=(unsigned long)(P27);*(__args++)=(unsigned long)(P28); \ fut_commitstampedbuffer(FUT_SIZE(28)); \ } while (0) #define FUT_RAW_PROBE28(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE28(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE28STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 28) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 28 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25);*(__args++)=(unsigned long)(P26);*(__args++)=(unsigned long)(P27);*(__args++)=(unsigned long)(P28); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE28STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE28STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE29(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(29)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25);*(__args++)=(unsigned long)(P26);*(__args++)=(unsigned long)(P27);*(__args++)=(unsigned long)(P28);*(__args++)=(unsigned long)(P29); \ fut_commitstampedbuffer(FUT_SIZE(29)); \ } while (0) #define FUT_RAW_PROBE29(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE29(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE29STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 29) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 29 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25);*(__args++)=(unsigned long)(P26);*(__args++)=(unsigned long)(P27);*(__args++)=(unsigned long)(P28);*(__args++)=(unsigned long)(P29); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE29STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE29STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE30(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(30)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25);*(__args++)=(unsigned long)(P26);*(__args++)=(unsigned long)(P27);*(__args++)=(unsigned long)(P28);*(__args++)=(unsigned long)(P29);*(__args++)=(unsigned long)(P30); \ fut_commitstampedbuffer(FUT_SIZE(30)); \ } while (0) #define FUT_RAW_PROBE30(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE30(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE30STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 30) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 30 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25);*(__args++)=(unsigned long)(P26);*(__args++)=(unsigned long)(P27);*(__args++)=(unsigned long)(P28);*(__args++)=(unsigned long)(P29);*(__args++)=(unsigned long)(P30); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE30STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE30STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE31(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31) do { \ unsigned long *__args __attribute__((unused))= \ fut_getstampedbuffer(CODE, \ FUT_SIZE(31)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25);*(__args++)=(unsigned long)(P26);*(__args++)=(unsigned long)(P27);*(__args++)=(unsigned long)(P28);*(__args++)=(unsigned long)(P29);*(__args++)=(unsigned long)(P30);*(__args++)=(unsigned long)(P31); \ fut_commitstampedbuffer(FUT_SIZE(31)); \ } while (0) #define FUT_RAW_PROBE31(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE31(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBE31STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31,S) do { \ const char *__s = (S); \ size_t __slen = strlen(__s); \ size_t __max = (FXT_MAX_PARAMS - 31) * sizeof(unsigned long); \ size_t __len = __slen > __max ? __max : __slen; \ unsigned __nbargs_str = (__len + sizeof(unsigned long) - 1) / sizeof (unsigned long); \ unsigned __nbargs = 31 + __nbargs_str; \ unsigned long *__args = \ fut_getstampedbuffer(FUT_CODE(CODE, __nbargs), FUT_SIZE(__nbargs)); \ *(__args++)=(unsigned long)(P1);*(__args++)=(unsigned long)(P2);*(__args++)=(unsigned long)(P3);*(__args++)=(unsigned long)(P4);*(__args++)=(unsigned long)(P5);*(__args++)=(unsigned long)(P6);*(__args++)=(unsigned long)(P7);*(__args++)=(unsigned long)(P8);*(__args++)=(unsigned long)(P9);*(__args++)=(unsigned long)(P10);*(__args++)=(unsigned long)(P11);*(__args++)=(unsigned long)(P12);*(__args++)=(unsigned long)(P13);*(__args++)=(unsigned long)(P14);*(__args++)=(unsigned long)(P15);*(__args++)=(unsigned long)(P16);*(__args++)=(unsigned long)(P17);*(__args++)=(unsigned long)(P18);*(__args++)=(unsigned long)(P19);*(__args++)=(unsigned long)(P20);*(__args++)=(unsigned long)(P21);*(__args++)=(unsigned long)(P22);*(__args++)=(unsigned long)(P23);*(__args++)=(unsigned long)(P24);*(__args++)=(unsigned long)(P25);*(__args++)=(unsigned long)(P26);*(__args++)=(unsigned long)(P27);*(__args++)=(unsigned long)(P28);*(__args++)=(unsigned long)(P29);*(__args++)=(unsigned long)(P30);*(__args++)=(unsigned long)(P31); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __nbargs_str*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__nbargs)); \ } while (0) #define FUT_RAW_PROBE31STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBE31STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31,S); \ } \ } while (0) #define FUT_RAW_ALWAYS_PROBESTR(CODE,S) do { \ const char *__s = (S); \ size_t __len = strlen(__s); \ size_t __n = FUT_STRLEN(__s); \ unsigned long *__args __attribute__((unused)) = \ fut_getstampedbuffer(CODE, FUT_SIZE(__n)); \ memcpy(__args, __s, __len); \ memset((char*)__args+__len, 0, __n*sizeof(long)-__len); \ fut_commitstampedbuffer(FUT_SIZE(__n)); \ } while (0) #define FUT_RAW_PROBESTR(CODE,S) do { \ if(FUT_UNLIKELY(fut_active)) { \ FUT_RAW_ALWAYS_PROBESTR(CODE, S); \ } \ } while (0) #define FUT_DO_ALWAYS_PROBE0(CODE) do { \ FUT_RAW_ALWAYS_PROBE0(FUT_CODE(CODE, 0)); \ } while (0) #define FUT_DO_PROBE0(CODE) do { \ FUT_RAW_PROBE0(FUT_CODE(CODE, 0)); \ } while (0) #define FUT_DO_ALWAYS_PROBE0STR(CODE,S) do { \ FUT_RAW_ALWAYS_PROBE0STR(CODE,S); \ } while (0) #define FUT_DO_PROBE0STR(CODE,S) do { \ FUT_RAW_PROBE0STR(CODE,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE1(CODE,P1) do { \ FUT_RAW_ALWAYS_PROBE1(FUT_CODE(CODE, 1),P1); \ } while (0) #define FUT_DO_PROBE1(CODE,P1) do { \ FUT_RAW_PROBE1(FUT_CODE(CODE, 1),P1); \ } while (0) #define FUT_DO_ALWAYS_PROBE1STR(CODE,P1,S) do { \ FUT_RAW_ALWAYS_PROBE1STR(CODE,P1,S); \ } while (0) #define FUT_DO_PROBE1STR(CODE,P1,S) do { \ FUT_RAW_PROBE1STR(CODE,P1,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE2(CODE,P1,P2) do { \ FUT_RAW_ALWAYS_PROBE2(FUT_CODE(CODE, 2),P1,P2); \ } while (0) #define FUT_DO_PROBE2(CODE,P1,P2) do { \ FUT_RAW_PROBE2(FUT_CODE(CODE, 2),P1,P2); \ } while (0) #define FUT_DO_ALWAYS_PROBE2STR(CODE,P1,P2,S) do { \ FUT_RAW_ALWAYS_PROBE2STR(CODE,P1,P2,S); \ } while (0) #define FUT_DO_PROBE2STR(CODE,P1,P2,S) do { \ FUT_RAW_PROBE2STR(CODE,P1,P2,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE3(CODE,P1,P2,P3) do { \ FUT_RAW_ALWAYS_PROBE3(FUT_CODE(CODE, 3),P1,P2,P3); \ } while (0) #define FUT_DO_PROBE3(CODE,P1,P2,P3) do { \ FUT_RAW_PROBE3(FUT_CODE(CODE, 3),P1,P2,P3); \ } while (0) #define FUT_DO_ALWAYS_PROBE3STR(CODE,P1,P2,P3,S) do { \ FUT_RAW_ALWAYS_PROBE3STR(CODE,P1,P2,P3,S); \ } while (0) #define FUT_DO_PROBE3STR(CODE,P1,P2,P3,S) do { \ FUT_RAW_PROBE3STR(CODE,P1,P2,P3,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE4(CODE,P1,P2,P3,P4) do { \ FUT_RAW_ALWAYS_PROBE4(FUT_CODE(CODE, 4),P1,P2,P3,P4); \ } while (0) #define FUT_DO_PROBE4(CODE,P1,P2,P3,P4) do { \ FUT_RAW_PROBE4(FUT_CODE(CODE, 4),P1,P2,P3,P4); \ } while (0) #define FUT_DO_ALWAYS_PROBE4STR(CODE,P1,P2,P3,P4,S) do { \ FUT_RAW_ALWAYS_PROBE4STR(CODE,P1,P2,P3,P4,S); \ } while (0) #define FUT_DO_PROBE4STR(CODE,P1,P2,P3,P4,S) do { \ FUT_RAW_PROBE4STR(CODE,P1,P2,P3,P4,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE5(CODE,P1,P2,P3,P4,P5) do { \ FUT_RAW_ALWAYS_PROBE5(FUT_CODE(CODE, 5),P1,P2,P3,P4,P5); \ } while (0) #define FUT_DO_PROBE5(CODE,P1,P2,P3,P4,P5) do { \ FUT_RAW_PROBE5(FUT_CODE(CODE, 5),P1,P2,P3,P4,P5); \ } while (0) #define FUT_DO_ALWAYS_PROBE5STR(CODE,P1,P2,P3,P4,P5,S) do { \ FUT_RAW_ALWAYS_PROBE5STR(CODE,P1,P2,P3,P4,P5,S); \ } while (0) #define FUT_DO_PROBE5STR(CODE,P1,P2,P3,P4,P5,S) do { \ FUT_RAW_PROBE5STR(CODE,P1,P2,P3,P4,P5,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE6(CODE,P1,P2,P3,P4,P5,P6) do { \ FUT_RAW_ALWAYS_PROBE6(FUT_CODE(CODE, 6),P1,P2,P3,P4,P5,P6); \ } while (0) #define FUT_DO_PROBE6(CODE,P1,P2,P3,P4,P5,P6) do { \ FUT_RAW_PROBE6(FUT_CODE(CODE, 6),P1,P2,P3,P4,P5,P6); \ } while (0) #define FUT_DO_ALWAYS_PROBE6STR(CODE,P1,P2,P3,P4,P5,P6,S) do { \ FUT_RAW_ALWAYS_PROBE6STR(CODE,P1,P2,P3,P4,P5,P6,S); \ } while (0) #define FUT_DO_PROBE6STR(CODE,P1,P2,P3,P4,P5,P6,S) do { \ FUT_RAW_PROBE6STR(CODE,P1,P2,P3,P4,P5,P6,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE7(CODE,P1,P2,P3,P4,P5,P6,P7) do { \ FUT_RAW_ALWAYS_PROBE7(FUT_CODE(CODE, 7),P1,P2,P3,P4,P5,P6,P7); \ } while (0) #define FUT_DO_PROBE7(CODE,P1,P2,P3,P4,P5,P6,P7) do { \ FUT_RAW_PROBE7(FUT_CODE(CODE, 7),P1,P2,P3,P4,P5,P6,P7); \ } while (0) #define FUT_DO_ALWAYS_PROBE7STR(CODE,P1,P2,P3,P4,P5,P6,P7,S) do { \ FUT_RAW_ALWAYS_PROBE7STR(CODE,P1,P2,P3,P4,P5,P6,P7,S); \ } while (0) #define FUT_DO_PROBE7STR(CODE,P1,P2,P3,P4,P5,P6,P7,S) do { \ FUT_RAW_PROBE7STR(CODE,P1,P2,P3,P4,P5,P6,P7,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE8(CODE,P1,P2,P3,P4,P5,P6,P7,P8) do { \ FUT_RAW_ALWAYS_PROBE8(FUT_CODE(CODE, 8),P1,P2,P3,P4,P5,P6,P7,P8); \ } while (0) #define FUT_DO_PROBE8(CODE,P1,P2,P3,P4,P5,P6,P7,P8) do { \ FUT_RAW_PROBE8(FUT_CODE(CODE, 8),P1,P2,P3,P4,P5,P6,P7,P8); \ } while (0) #define FUT_DO_ALWAYS_PROBE8STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,S) do { \ FUT_RAW_ALWAYS_PROBE8STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,S); \ } while (0) #define FUT_DO_PROBE8STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,S) do { \ FUT_RAW_PROBE8STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE9(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9) do { \ FUT_RAW_ALWAYS_PROBE9(FUT_CODE(CODE, 9),P1,P2,P3,P4,P5,P6,P7,P8,P9); \ } while (0) #define FUT_DO_PROBE9(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9) do { \ FUT_RAW_PROBE9(FUT_CODE(CODE, 9),P1,P2,P3,P4,P5,P6,P7,P8,P9); \ } while (0) #define FUT_DO_ALWAYS_PROBE9STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,S) do { \ FUT_RAW_ALWAYS_PROBE9STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,S); \ } while (0) #define FUT_DO_PROBE9STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,S) do { \ FUT_RAW_PROBE9STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE10(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10) do { \ FUT_RAW_ALWAYS_PROBE10(FUT_CODE(CODE, 10),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10); \ } while (0) #define FUT_DO_PROBE10(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10) do { \ FUT_RAW_PROBE10(FUT_CODE(CODE, 10),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10); \ } while (0) #define FUT_DO_ALWAYS_PROBE10STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,S) do { \ FUT_RAW_ALWAYS_PROBE10STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,S); \ } while (0) #define FUT_DO_PROBE10STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,S) do { \ FUT_RAW_PROBE10STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE11(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11) do { \ FUT_RAW_ALWAYS_PROBE11(FUT_CODE(CODE, 11),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11); \ } while (0) #define FUT_DO_PROBE11(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11) do { \ FUT_RAW_PROBE11(FUT_CODE(CODE, 11),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11); \ } while (0) #define FUT_DO_ALWAYS_PROBE11STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,S) do { \ FUT_RAW_ALWAYS_PROBE11STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,S); \ } while (0) #define FUT_DO_PROBE11STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,S) do { \ FUT_RAW_PROBE11STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE12(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12) do { \ FUT_RAW_ALWAYS_PROBE12(FUT_CODE(CODE, 12),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12); \ } while (0) #define FUT_DO_PROBE12(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12) do { \ FUT_RAW_PROBE12(FUT_CODE(CODE, 12),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12); \ } while (0) #define FUT_DO_ALWAYS_PROBE12STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,S) do { \ FUT_RAW_ALWAYS_PROBE12STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,S); \ } while (0) #define FUT_DO_PROBE12STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,S) do { \ FUT_RAW_PROBE12STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE13(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13) do { \ FUT_RAW_ALWAYS_PROBE13(FUT_CODE(CODE, 13),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13); \ } while (0) #define FUT_DO_PROBE13(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13) do { \ FUT_RAW_PROBE13(FUT_CODE(CODE, 13),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13); \ } while (0) #define FUT_DO_ALWAYS_PROBE13STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,S) do { \ FUT_RAW_ALWAYS_PROBE13STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,S); \ } while (0) #define FUT_DO_PROBE13STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,S) do { \ FUT_RAW_PROBE13STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE14(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14) do { \ FUT_RAW_ALWAYS_PROBE14(FUT_CODE(CODE, 14),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14); \ } while (0) #define FUT_DO_PROBE14(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14) do { \ FUT_RAW_PROBE14(FUT_CODE(CODE, 14),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14); \ } while (0) #define FUT_DO_ALWAYS_PROBE14STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,S) do { \ FUT_RAW_ALWAYS_PROBE14STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,S); \ } while (0) #define FUT_DO_PROBE14STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,S) do { \ FUT_RAW_PROBE14STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE15(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15) do { \ FUT_RAW_ALWAYS_PROBE15(FUT_CODE(CODE, 15),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15); \ } while (0) #define FUT_DO_PROBE15(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15) do { \ FUT_RAW_PROBE15(FUT_CODE(CODE, 15),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15); \ } while (0) #define FUT_DO_ALWAYS_PROBE15STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,S) do { \ FUT_RAW_ALWAYS_PROBE15STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,S); \ } while (0) #define FUT_DO_PROBE15STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,S) do { \ FUT_RAW_PROBE15STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE16(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16) do { \ FUT_RAW_ALWAYS_PROBE16(FUT_CODE(CODE, 16),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16); \ } while (0) #define FUT_DO_PROBE16(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16) do { \ FUT_RAW_PROBE16(FUT_CODE(CODE, 16),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16); \ } while (0) #define FUT_DO_ALWAYS_PROBE16STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,S) do { \ FUT_RAW_ALWAYS_PROBE16STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,S); \ } while (0) #define FUT_DO_PROBE16STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,S) do { \ FUT_RAW_PROBE16STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE17(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17) do { \ FUT_RAW_ALWAYS_PROBE17(FUT_CODE(CODE, 17),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17); \ } while (0) #define FUT_DO_PROBE17(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17) do { \ FUT_RAW_PROBE17(FUT_CODE(CODE, 17),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17); \ } while (0) #define FUT_DO_ALWAYS_PROBE17STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,S) do { \ FUT_RAW_ALWAYS_PROBE17STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,S); \ } while (0) #define FUT_DO_PROBE17STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,S) do { \ FUT_RAW_PROBE17STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE18(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18) do { \ FUT_RAW_ALWAYS_PROBE18(FUT_CODE(CODE, 18),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18); \ } while (0) #define FUT_DO_PROBE18(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18) do { \ FUT_RAW_PROBE18(FUT_CODE(CODE, 18),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18); \ } while (0) #define FUT_DO_ALWAYS_PROBE18STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,S) do { \ FUT_RAW_ALWAYS_PROBE18STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,S); \ } while (0) #define FUT_DO_PROBE18STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,S) do { \ FUT_RAW_PROBE18STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE19(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19) do { \ FUT_RAW_ALWAYS_PROBE19(FUT_CODE(CODE, 19),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19); \ } while (0) #define FUT_DO_PROBE19(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19) do { \ FUT_RAW_PROBE19(FUT_CODE(CODE, 19),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19); \ } while (0) #define FUT_DO_ALWAYS_PROBE19STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,S) do { \ FUT_RAW_ALWAYS_PROBE19STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,S); \ } while (0) #define FUT_DO_PROBE19STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,S) do { \ FUT_RAW_PROBE19STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE20(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20) do { \ FUT_RAW_ALWAYS_PROBE20(FUT_CODE(CODE, 20),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20); \ } while (0) #define FUT_DO_PROBE20(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20) do { \ FUT_RAW_PROBE20(FUT_CODE(CODE, 20),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20); \ } while (0) #define FUT_DO_ALWAYS_PROBE20STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,S) do { \ FUT_RAW_ALWAYS_PROBE20STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,S); \ } while (0) #define FUT_DO_PROBE20STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,S) do { \ FUT_RAW_PROBE20STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE21(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21) do { \ FUT_RAW_ALWAYS_PROBE21(FUT_CODE(CODE, 21),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21); \ } while (0) #define FUT_DO_PROBE21(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21) do { \ FUT_RAW_PROBE21(FUT_CODE(CODE, 21),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21); \ } while (0) #define FUT_DO_ALWAYS_PROBE21STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,S) do { \ FUT_RAW_ALWAYS_PROBE21STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,S); \ } while (0) #define FUT_DO_PROBE21STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,S) do { \ FUT_RAW_PROBE21STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE22(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22) do { \ FUT_RAW_ALWAYS_PROBE22(FUT_CODE(CODE, 22),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22); \ } while (0) #define FUT_DO_PROBE22(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22) do { \ FUT_RAW_PROBE22(FUT_CODE(CODE, 22),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22); \ } while (0) #define FUT_DO_ALWAYS_PROBE22STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,S) do { \ FUT_RAW_ALWAYS_PROBE22STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,S); \ } while (0) #define FUT_DO_PROBE22STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,S) do { \ FUT_RAW_PROBE22STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE23(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23) do { \ FUT_RAW_ALWAYS_PROBE23(FUT_CODE(CODE, 23),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23); \ } while (0) #define FUT_DO_PROBE23(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23) do { \ FUT_RAW_PROBE23(FUT_CODE(CODE, 23),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23); \ } while (0) #define FUT_DO_ALWAYS_PROBE23STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,S) do { \ FUT_RAW_ALWAYS_PROBE23STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,S); \ } while (0) #define FUT_DO_PROBE23STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,S) do { \ FUT_RAW_PROBE23STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE24(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24) do { \ FUT_RAW_ALWAYS_PROBE24(FUT_CODE(CODE, 24),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24); \ } while (0) #define FUT_DO_PROBE24(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24) do { \ FUT_RAW_PROBE24(FUT_CODE(CODE, 24),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24); \ } while (0) #define FUT_DO_ALWAYS_PROBE24STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,S) do { \ FUT_RAW_ALWAYS_PROBE24STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,S); \ } while (0) #define FUT_DO_PROBE24STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,S) do { \ FUT_RAW_PROBE24STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE25(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25) do { \ FUT_RAW_ALWAYS_PROBE25(FUT_CODE(CODE, 25),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25); \ } while (0) #define FUT_DO_PROBE25(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25) do { \ FUT_RAW_PROBE25(FUT_CODE(CODE, 25),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25); \ } while (0) #define FUT_DO_ALWAYS_PROBE25STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,S) do { \ FUT_RAW_ALWAYS_PROBE25STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,S); \ } while (0) #define FUT_DO_PROBE25STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,S) do { \ FUT_RAW_PROBE25STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE26(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26) do { \ FUT_RAW_ALWAYS_PROBE26(FUT_CODE(CODE, 26),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26); \ } while (0) #define FUT_DO_PROBE26(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26) do { \ FUT_RAW_PROBE26(FUT_CODE(CODE, 26),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26); \ } while (0) #define FUT_DO_ALWAYS_PROBE26STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,S) do { \ FUT_RAW_ALWAYS_PROBE26STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,S); \ } while (0) #define FUT_DO_PROBE26STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,S) do { \ FUT_RAW_PROBE26STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE27(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27) do { \ FUT_RAW_ALWAYS_PROBE27(FUT_CODE(CODE, 27),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27); \ } while (0) #define FUT_DO_PROBE27(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27) do { \ FUT_RAW_PROBE27(FUT_CODE(CODE, 27),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27); \ } while (0) #define FUT_DO_ALWAYS_PROBE27STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,S) do { \ FUT_RAW_ALWAYS_PROBE27STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,S); \ } while (0) #define FUT_DO_PROBE27STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,S) do { \ FUT_RAW_PROBE27STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE28(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28) do { \ FUT_RAW_ALWAYS_PROBE28(FUT_CODE(CODE, 28),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28); \ } while (0) #define FUT_DO_PROBE28(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28) do { \ FUT_RAW_PROBE28(FUT_CODE(CODE, 28),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28); \ } while (0) #define FUT_DO_ALWAYS_PROBE28STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,S) do { \ FUT_RAW_ALWAYS_PROBE28STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,S); \ } while (0) #define FUT_DO_PROBE28STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,S) do { \ FUT_RAW_PROBE28STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE29(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29) do { \ FUT_RAW_ALWAYS_PROBE29(FUT_CODE(CODE, 29),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29); \ } while (0) #define FUT_DO_PROBE29(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29) do { \ FUT_RAW_PROBE29(FUT_CODE(CODE, 29),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29); \ } while (0) #define FUT_DO_ALWAYS_PROBE29STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,S) do { \ FUT_RAW_ALWAYS_PROBE29STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,S); \ } while (0) #define FUT_DO_PROBE29STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,S) do { \ FUT_RAW_PROBE29STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE30(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30) do { \ FUT_RAW_ALWAYS_PROBE30(FUT_CODE(CODE, 30),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30); \ } while (0) #define FUT_DO_PROBE30(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30) do { \ FUT_RAW_PROBE30(FUT_CODE(CODE, 30),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30); \ } while (0) #define FUT_DO_ALWAYS_PROBE30STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,S) do { \ FUT_RAW_ALWAYS_PROBE30STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,S); \ } while (0) #define FUT_DO_PROBE30STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,S) do { \ FUT_RAW_PROBE30STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,S); \ } while (0) #define FUT_DO_ALWAYS_PROBE31(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31) do { \ FUT_RAW_ALWAYS_PROBE31(FUT_CODE(CODE, 31),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31); \ } while (0) #define FUT_DO_PROBE31(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31) do { \ FUT_RAW_PROBE31(FUT_CODE(CODE, 31),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31); \ } while (0) #define FUT_DO_ALWAYS_PROBE31STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31,S) do { \ FUT_RAW_ALWAYS_PROBE31STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31,S); \ } while (0) #define FUT_DO_PROBE31STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31,S) do { \ FUT_RAW_PROBE31STR(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31,S); \ } while (0) #define FUT_DO_PROBESTR(CODE,S) do { \ FUT_RAW_PROBESTR(FUT_CODE(CODE, FUT_STRLEN(__s)), S); \ } while (0) #define FUT_DO_ALWAYS_PROBESTR(CODE,S) do { \ FUT_RAW_ALWAYS_PROBESTR(FUT_CODE(CODE, FUT_STRLEN(__s)), S); \ } while (0) /******************************************************/ /* NEVER call fut_getstampedbuffer or */ /* fut_commitstampedbuffer directly */ /* Interface can change without forewarning */ /******************************************************/ extern unsigned long* fut_getstampedbuffer(unsigned long code, int size); extern void fut_commitstampedbuffer(int size); /* This can be overriden by the user */ extern uint64_t fut_getstamp(void); inline static void #ifndef __cplusplus __attribute__((no_instrument_function)) #endif FUT_RAW_PROBE(unsigned long code, ...) { if(FUT_UNLIKELY(fut_active)) { int nb=(code&0xff)-1, orig_nb = nb; unsigned long *args=fut_getstampedbuffer(code, FUT_SIZE(nb)); va_list list; va_start(list, code); while (nb--) { *(args++)=va_arg(list, unsigned long); } va_end(list); fut_commitstampedbuffer(FUT_SIZE(orig_nb)); } } #define FUT_DO_PROBE(CODE, ...) do { \ FUT_RAW_PROBE(CODE , ##__VA_ARGS__); \ } while (0) #define FUT_FULL_PROBE0(KEYMASK,CODE) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE0(FUT_CODE(CODE, 0)); \ } \ } while(0) #define FUT_FULL_PROBE1(KEYMASK,CODE,P1) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE1(FUT_CODE(CODE, 1),P1); \ } \ } while(0) #define FUT_FULL_PROBE2(KEYMASK,CODE,P1,P2) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE2(FUT_CODE(CODE, 2),P1,P2); \ } \ } while(0) #define FUT_FULL_PROBE3(KEYMASK,CODE,P1,P2,P3) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE3(FUT_CODE(CODE, 3),P1,P2,P3); \ } \ } while(0) #define FUT_FULL_PROBE4(KEYMASK,CODE,P1,P2,P3,P4) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE4(FUT_CODE(CODE, 4),P1,P2,P3,P4); \ } \ } while(0) #define FUT_FULL_PROBE5(KEYMASK,CODE,P1,P2,P3,P4,P5) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE5(FUT_CODE(CODE, 5),P1,P2,P3,P4,P5); \ } \ } while(0) #define FUT_FULL_PROBE6(KEYMASK,CODE,P1,P2,P3,P4,P5,P6) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE6(FUT_CODE(CODE, 6),P1,P2,P3,P4,P5,P6); \ } \ } while(0) #define FUT_FULL_PROBE7(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE7(FUT_CODE(CODE, 7),P1,P2,P3,P4,P5,P6,P7); \ } \ } while(0) #define FUT_FULL_PROBE8(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE8(FUT_CODE(CODE, 8),P1,P2,P3,P4,P5,P6,P7,P8); \ } \ } while(0) #define FUT_FULL_PROBE9(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE9(FUT_CODE(CODE, 9),P1,P2,P3,P4,P5,P6,P7,P8,P9); \ } \ } while(0) #define FUT_FULL_PROBE10(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE10(FUT_CODE(CODE, 10),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10); \ } \ } while(0) #define FUT_FULL_PROBE11(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE11(FUT_CODE(CODE, 11),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11); \ } \ } while(0) #define FUT_FULL_PROBE12(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE12(FUT_CODE(CODE, 12),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12); \ } \ } while(0) #define FUT_FULL_PROBE13(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE13(FUT_CODE(CODE, 13),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13); \ } \ } while(0) #define FUT_FULL_PROBE14(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE14(FUT_CODE(CODE, 14),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14); \ } \ } while(0) #define FUT_FULL_PROBE15(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE15(FUT_CODE(CODE, 15),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15); \ } \ } while(0) #define FUT_FULL_PROBE16(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE16(FUT_CODE(CODE, 16),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16); \ } \ } while(0) #define FUT_FULL_PROBE17(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE17(FUT_CODE(CODE, 17),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17); \ } \ } while(0) #define FUT_FULL_PROBE18(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE18(FUT_CODE(CODE, 18),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18); \ } \ } while(0) #define FUT_FULL_PROBE19(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE19(FUT_CODE(CODE, 19),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19); \ } \ } while(0) #define FUT_FULL_PROBE20(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE20(FUT_CODE(CODE, 20),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20); \ } \ } while(0) #define FUT_FULL_PROBE21(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE21(FUT_CODE(CODE, 21),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21); \ } \ } while(0) #define FUT_FULL_PROBE22(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE22(FUT_CODE(CODE, 22),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22); \ } \ } while(0) #define FUT_FULL_PROBE23(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE23(FUT_CODE(CODE, 23),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23); \ } \ } while(0) #define FUT_FULL_PROBE24(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE24(FUT_CODE(CODE, 24),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24); \ } \ } while(0) #define FUT_FULL_PROBE25(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE25(FUT_CODE(CODE, 25),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25); \ } \ } while(0) #define FUT_FULL_PROBE26(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE26(FUT_CODE(CODE, 26),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26); \ } \ } while(0) #define FUT_FULL_PROBE27(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE27(FUT_CODE(CODE, 27),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27); \ } \ } while(0) #define FUT_FULL_PROBE28(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE28(FUT_CODE(CODE, 28),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28); \ } \ } while(0) #define FUT_FULL_PROBE29(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE29(FUT_CODE(CODE, 29),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29); \ } \ } while(0) #define FUT_FULL_PROBE30(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE30(FUT_CODE(CODE, 30),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30); \ } \ } while(0) #define FUT_FULL_PROBE31(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE31(FUT_CODE(CODE, 31),P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31); \ } \ } while(0) #define FUT_FULL_PROBE(KEYMASK,CODE,...) do { \ if (FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBE(FUT_CODE(CODE, ) , ##__VA_ARGS__); \ } \ } while(0) #define FUT_FULL_PROBESTR(KEYMASK,CODE,S) do { \ if ( FUT_UNLIKELY(KEYMASK & fut_active)) { \ FUT_RAW_ALWAYS_PROBESTR(FUT_CODE(CODE, FUT_STRLEN(__s)),S); \ } \ } while(0) #else /* CONFIG_FUT */ #define FUT_DO_PROBE0(CODE) do {} while (0) #define FUT_FULL_PROBE0(MASK,CODE) do {} while (0) #define FUT_DO_PROBE1(CODE,P1) do {} while (0) #define FUT_FULL_PROBE1(MASK,CODE,P1) do {} while (0) #define FUT_DO_PROBE2(CODE,P1,P2) do {} while (0) #define FUT_FULL_PROBE2(MASK,CODE,P1,P2) do {} while (0) #define FUT_DO_PROBE3(CODE,P1,P2,P3) do {} while (0) #define FUT_FULL_PROBE3(MASK,CODE,P1,P2,P3) do {} while (0) #define FUT_DO_PROBE4(CODE,P1,P2,P3,P4) do {} while (0) #define FUT_FULL_PROBE4(MASK,CODE,P1,P2,P3,P4) do {} while (0) #define FUT_DO_PROBE5(CODE,P1,P2,P3,P4,P5) do {} while (0) #define FUT_FULL_PROBE5(MASK,CODE,P1,P2,P3,P4,P5) do {} while (0) #define FUT_DO_PROBE6(CODE,P1,P2,P3,P4,P5,P6) do {} while (0) #define FUT_FULL_PROBE6(MASK,CODE,P1,P2,P3,P4,P5,P6) do {} while (0) #define FUT_DO_PROBE7(CODE,P1,P2,P3,P4,P5,P6,P7) do {} while (0) #define FUT_FULL_PROBE7(MASK,CODE,P1,P2,P3,P4,P5,P6,P7) do {} while (0) #define FUT_DO_PROBE8(CODE,P1,P2,P3,P4,P5,P6,P7,P8) do {} while (0) #define FUT_FULL_PROBE8(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8) do {} while (0) #define FUT_DO_PROBE9(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9) do {} while (0) #define FUT_FULL_PROBE9(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9) do {} while (0) #define FUT_DO_PROBE10(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10) do {} while (0) #define FUT_FULL_PROBE10(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10) do {} while (0) #define FUT_DO_PROBE11(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11) do {} while (0) #define FUT_FULL_PROBE11(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11) do {} while (0) #define FUT_DO_PROBE12(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12) do {} while (0) #define FUT_FULL_PROBE12(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12) do {} while (0) #define FUT_DO_PROBE13(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13) do {} while (0) #define FUT_FULL_PROBE13(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13) do {} while (0) #define FUT_DO_PROBE14(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14) do {} while (0) #define FUT_FULL_PROBE14(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14) do {} while (0) #define FUT_DO_PROBE15(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15) do {} while (0) #define FUT_FULL_PROBE15(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15) do {} while (0) #define FUT_DO_PROBE16(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16) do {} while (0) #define FUT_FULL_PROBE16(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16) do {} while (0) #define FUT_DO_PROBE17(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17) do {} while (0) #define FUT_FULL_PROBE17(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17) do {} while (0) #define FUT_DO_PROBE18(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18) do {} while (0) #define FUT_FULL_PROBE18(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18) do {} while (0) #define FUT_DO_PROBE19(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19) do {} while (0) #define FUT_FULL_PROBE19(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19) do {} while (0) #define FUT_DO_PROBE20(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20) do {} while (0) #define FUT_FULL_PROBE20(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20) do {} while (0) #define FUT_DO_PROBE21(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21) do {} while (0) #define FUT_FULL_PROBE21(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21) do {} while (0) #define FUT_DO_PROBE22(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22) do {} while (0) #define FUT_FULL_PROBE22(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22) do {} while (0) #define FUT_DO_PROBE23(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23) do {} while (0) #define FUT_FULL_PROBE23(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23) do {} while (0) #define FUT_DO_PROBE24(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24) do {} while (0) #define FUT_FULL_PROBE24(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24) do {} while (0) #define FUT_DO_PROBE25(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25) do {} while (0) #define FUT_FULL_PROBE25(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25) do {} while (0) #define FUT_DO_PROBE26(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26) do {} while (0) #define FUT_FULL_PROBE26(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26) do {} while (0) #define FUT_DO_PROBE27(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27) do {} while (0) #define FUT_FULL_PROBE27(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27) do {} while (0) #define FUT_DO_PROBE28(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28) do {} while (0) #define FUT_FULL_PROBE28(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28) do {} while (0) #define FUT_DO_PROBE29(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29) do {} while (0) #define FUT_FULL_PROBE29(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29) do {} while (0) #define FUT_DO_PROBE30(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30) do {} while (0) #define FUT_FULL_PROBE30(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30) do {} while (0) #define FUT_DO_PROBE31(CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31) do {} while (0) #define FUT_FULL_PROBE31(MASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31) do {} while (0) #define FUT_DO_PROBE(CODE,...) do {} while (0) #define FUT_FULL_PROBE(MASK,CODE,...) do {} while (0) #define FUT_DO_PROBESTR(CODE,S) do {} while (0) #define FUT_FULL_PROBESTR(MASK,CODE,S) do {} while (0) #endif #if defined(CONFIG_FUT_TIME_ONLY) #define FUT_PROBE0(KEYMASK,CODE) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE1(KEYMASK,CODE,P1) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE2(KEYMASK,CODE,P1,P2) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE3(KEYMASK,CODE,P1,P2,P3) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE4(KEYMASK,CODE,P1,P2,P3,P4) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE5(KEYMASK,CODE,P1,P2,P3,P4,P5) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE6(KEYMASK,CODE,P1,P2,P3,P4,P5,P6) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE7(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE8(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE9(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE10(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE11(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE12(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE13(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE14(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE15(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE16(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE17(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE18(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE19(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE20(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE21(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE22(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE23(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE24(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE25(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE26(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE27(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE28(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE29(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE30(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE31(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE(KEYMASK,CODE,...) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBESTR(KEYMASK,CODE,S) FUt_FULL_PROBESTR(KEYMASK,CODE) #else /* CONFIG_FUT_TIME_ONLY */ #define FUT_PROBE0(KEYMASK,CODE) FUT_FULL_PROBE0(KEYMASK,CODE) #define FUT_PROBE1(KEYMASK,CODE,P1) FUT_FULL_PROBE1(KEYMASK,CODE,P1) #define FUT_PROBE2(KEYMASK,CODE,P1,P2) FUT_FULL_PROBE2(KEYMASK,CODE,P1,P2) #define FUT_PROBE3(KEYMASK,CODE,P1,P2,P3) FUT_FULL_PROBE3(KEYMASK,CODE,P1,P2,P3) #define FUT_PROBE4(KEYMASK,CODE,P1,P2,P3,P4) FUT_FULL_PROBE4(KEYMASK,CODE,P1,P2,P3,P4) #define FUT_PROBE5(KEYMASK,CODE,P1,P2,P3,P4,P5) FUT_FULL_PROBE5(KEYMASK,CODE,P1,P2,P3,P4,P5) #define FUT_PROBE6(KEYMASK,CODE,P1,P2,P3,P4,P5,P6) FUT_FULL_PROBE6(KEYMASK,CODE,P1,P2,P3,P4,P5,P6) #define FUT_PROBE7(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7) FUT_FULL_PROBE7(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7) #define FUT_PROBE8(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8) FUT_FULL_PROBE8(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8) #define FUT_PROBE9(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9) FUT_FULL_PROBE9(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9) #define FUT_PROBE10(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10) FUT_FULL_PROBE10(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10) #define FUT_PROBE11(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11) FUT_FULL_PROBE11(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11) #define FUT_PROBE12(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12) FUT_FULL_PROBE12(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12) #define FUT_PROBE13(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13) FUT_FULL_PROBE13(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13) #define FUT_PROBE14(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14) FUT_FULL_PROBE14(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14) #define FUT_PROBE15(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15) FUT_FULL_PROBE15(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15) #define FUT_PROBE16(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16) FUT_FULL_PROBE16(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16) #define FUT_PROBE17(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17) FUT_FULL_PROBE17(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17) #define FUT_PROBE18(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18) FUT_FULL_PROBE18(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18) #define FUT_PROBE19(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19) FUT_FULL_PROBE19(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19) #define FUT_PROBE20(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20) FUT_FULL_PROBE20(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20) #define FUT_PROBE21(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21) FUT_FULL_PROBE21(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21) #define FUT_PROBE22(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22) FUT_FULL_PROBE22(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22) #define FUT_PROBE23(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23) FUT_FULL_PROBE23(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23) #define FUT_PROBE24(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24) FUT_FULL_PROBE24(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24) #define FUT_PROBE25(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25) FUT_FULL_PROBE25(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25) #define FUT_PROBE26(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26) FUT_FULL_PROBE26(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26) #define FUT_PROBE27(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27) FUT_FULL_PROBE27(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27) #define FUT_PROBE28(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28) FUT_FULL_PROBE28(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28) #define FUT_PROBE29(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29) FUT_FULL_PROBE29(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29) #define FUT_PROBE30(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30) FUT_FULL_PROBE30(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30) #define FUT_PROBE31(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31) FUT_FULL_PROBE31(KEYMASK,CODE,P1,P2,P3,P4,P5,P6,P7,P8,P9,P10,P11,P12,P13,P14,P15,P16,P17,P18,P19,P20,P21,P22,P23,P24,P25,P26,P27,P28,P29,P30,P31) #define FUT_PROBE(KEYMASK,CODE,...) FUT_FULL_PROBE(KEYMASK,CODE , ##__VA_ARGS__) #define FUT_PROBESTR(KEYMASK,CODE,S) FUT_FULL_PROBESTR(KEYMASK,CODE,S) #endif /* CONFIG_FUT_TIME_ONLY */ /* "how" parameter values, analagous to "how" parameters to FKT */ #define FUT_ENABLE 0xCE03 /* for enabling probes with 1's in keymask */ #define FUT_DISABLE 0xCE04 /* for disabling probes with 1's in keymask */ #define FUT_SETMASK 0xCE05 /* for enabling 1's, disabling 0's in keymask */ /* Simple keymasks */ #define FUT_KEYMASK0 0x00000001 #define FUT_KEYMASK1 0x00000002 #define FUT_KEYMASK2 0x00000004 #define FUT_KEYMASK3 0x00000008 #define FUT_KEYMASK4 0x00000010 #define FUT_KEYMASK5 0x00000020 #define FUT_KEYMASK6 0x00000040 #define FUT_KEYMASK7 0x00000080 #define FUT_KEYMASK8 0x00000100 #define FUT_KEYMASK9 0x00000200 #define FUT_KEYMASK10 0x00000400 #define FUT_KEYMASK11 0x00000800 #define FUT_KEYMASK12 0x00001000 #define FUT_KEYMASK13 0x00002000 #define FUT_KEYMASK14 0x00004000 #define FUT_KEYMASK15 0x00008000 #define FUT_KEYMASK16 0x00010000 #define FUT_KEYMASK17 0x00020000 #define FUT_KEYMASK18 0x00040000 #define FUT_KEYMASK19 0x00080000 #define FUT_KEYMASK20 0x00100000 #define FUT_KEYMASK21 0x00200000 #define FUT_KEYMASK22 0x00400000 #define FUT_KEYMASK23 0x00800000 #define FUT_KEYMASK24 0x01000000 #define FUT_KEYMASK25 0x02000000 #define FUT_KEYMASK26 0x04000000 #define FUT_KEYMASK27 0x08000000 #define FUT_KEYMASK28 0x10000000 #define FUT_KEYMASK29 0x20000000 #define FUT_KEYMASK30 0x40000000 #define FUT_KEYMASK31 0x80000000 #define FUT_KEYMASKALL 0xffffffff #define FUT_GCC_INSTRUMENT_KEYMASK FUT_KEYMASK29 /* Fixed parameters of the fut coding scheme */ #define FUT_GENERIC_EXIT_OFFSET 0x100 /* exit this much above entry */ #define FUT_UNPAIRED_LIMIT_CODE 0xf000 /* all unpaired codes above this limit */ /* Codes for fut use */ #define FUT_SETUP_CODE 0xffff #define FUT_KEYCHANGE_CODE 0xfffe #define FUT_RESET_CODE 0xfffd #define FUT_CALIBRATE0_CODE 0xfffc #define FUT_CALIBRATE1_CODE 0xfffb #define FUT_CALIBRATE2_CODE 0xfffa #define FUT_THREAD_BIRTH_CODE 0xfff9 #define FUT_THREAD_DEATH_CODE 0xfff8 #define FUT_SET_THREAD_NAME_CODE 0xfff7 #define FUT_NEW_LWP_CODE 0xfff6 #define FUT_START_FLUSH_CODE 0xfff5 #define FUT_STOP_FLUSH_CODE 0xfff4 #define FUT_RQS_NEWLEVEL 0xffef #define FUT_RQS_NEWLWPRQ 0xffee #define FUT_RQS_NEWRQ 0xffed #define FUT_SWITCH_TO_CODE 0x31a #define FUT_MAIN_ENTRY_CODE 0x301 #define FUT_MAIN_EXIT_CODE 0x401 /* -finstrument-functions code */ #define FUT_GCC_INSTRUMENT_ENTRY_CODE 0x320 #define FUT_GCC_INSTRUMENT_EXIT_CODE 0x420 #ifndef __ASSEMBLY__ extern unsigned long * volatile fut_next_slot; extern unsigned long * volatile fut_first_slot; extern unsigned long * volatile fut_last_slot; extern size_t volatile fut_filled_slot; extern int64_t fut_setup( uint64_t nints, unsigned int keymask, unsigned int threadid ); extern int64_t fut_setup_flush_callback( uint64_t nints, unsigned int keymask, unsigned int threadid, void (*flush_callback)(void) ); extern uint64_t fut_endup( const char *filename ); extern int fut_done(void ); extern int fut_keychange( int how, unsigned int keymask, unsigned int threadid ); extern int64_t fut_reset( unsigned int keymask, unsigned int threadid ); extern uint64_t fut_getbuffer( uint64_t *nints, unsigned long **buffer, unsigned long *first_slot, unsigned long *next_slot); extern int fut_header( unsigned long head, ... ); extern void enable_fut_flush( void ); extern void disable_fut_flush( void ); extern void fut_set_filename( const char *filename ); /* activate the recording of thread id */ extern void fut_enable_tid_logging( void ); /* disactivate the recording of thread id */ extern void fut_disable_tid_logging( void ); #endif #ifdef __cplusplus } #endif #endif fxt-0.3.15/tools/PaxHeaders/fxt_print.c0000644000000000000000000000013213636772401015011 xustar0030 mtime=1585181953.117148369 30 atime=1746715490.227509212 30 ctime=1746716504.752822006 fxt-0.3.15/tools/fxt_print.c0000644000175000017500000002760113636772401014505 0ustar00samysamy/* fkt_print.c fkt_print -- program to analyse and print trace files produced by fkt_record using fkt (fast kernel tracing) in the kernel. Copyright (C) 2000, 2001 Robert D. Russell -- rdr@unh.edu 2003, 2004, 2012 Samuel Thibault -- samuel.thibault@ens-lyon.org 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /* As of 30-Jul-03, * unshifted codes (for traps/syscalls/irqs) MUST be less than FKT_UNSHIFTED_LIMIT_CODE. singleton codes (i.e., those that are NOT paired in entry-exit pairs) MUST be greater than FKT_UNPAIRED_LIMIT_CODE and be less thant GCC_TRACED_FUNCTION_X86_MINI FKT_SETUP_CODE and less than FKT_LAST_FKT_CORE. function entry and exit codes MUST be greater than FKT_UNSHIFTED_LIMIT_CODE. function entry codes MUST have the FKT_GENERIC_EXIT_OFFSET bit set. gcc traced functions codes are greater than GCC_TRACED_FUNCTION_X86_MINI entry codes must have GCC_TRACED_FUNCTION_X86_EXIT bit set */ #include #include #include #include #include #include #include #ifndef __MINGW32__ #include #endif #include #ifdef HAVE_SYS_MOUNT_H #include #endif #include #include #include #include #include #include "fxt.h" #include "fxt_internal.h" #include "fxt-tools.h" #define CALLOC(t,size) \ do \ if( (t = calloc(size, sizeof(typeof(*t)))) == NULL ) \ { \ fprintf(stderr, "unable to calloc "#t"[%d]\n", size); \ exit(EXIT_FAILURE); \ } \ while (0); /* use 64-bit arithmetic for all times */ typedef unsigned long long u_64; /* * * Settings variables * */ /* * lib fxt structure */ static fxt_t fxt; static struct fxt_infos *info; /* * * Some limits and their actual use * */ static size_t page_size; int trace_space; static const char* trace_space_name[] = { [FXT_SPACE_KERNEL]="Kernel traces", [FXT_SPACE_USER]="User traces", }; //static struct pid_cycles_item *pid_cycles_list; static int pid; static int kidpid; /* basetime is first absolute time ever seen */ /* lasttime[thiscpu] is last absolute time ever seen for thiscpu */ /* lastreltime[thiscpu] is last relative time ever seen for thiscpu */ /* should have lastreltime = lasttime - basetime */ /* basehigh is the current 32bit hi part of the 64bit time */ //static u_64 basetime; static u_64 *lasttime; static u_64 *basehigh; static u_64 *lastreltime; /* start_time_cpu[thiscpu] is 1st relative time for thiscpu once taking stats*/ /* end_time_cpu[thiscpu] is 1st relative time for thiscpu after taking stats */ static u_64 *start_time_cpu, *end_time_cpu; /* already_saw[thiscpu] is 0 before any slot for thiscpu is seen, else 1 */ /* fun_time_cpu[thiscpu] is 1 after thiscpu has started taking stats, -1 after thiscpu has finished taking stats */ static int *already_saw, *fun_time_cpu; static int *lastpid; //static clock_t start_jiffies; static clock_t stop_jiffies; static int fd; /* this gets incremented each time we charge a a function with * cycles, to detect incoherencies as soon as possible */ //static u_64 accounted; /* bufptr[0] is the first item for each line ie cycles bufptr[1] is pid in low half, processor number in high half bufptr[2] is code bufptr[3] is P1 bufptr[4] is P2 ... bufptr[n] is P(n-2) */ /* * * dump one slot * */ int trace_format; #include "fut.h" struct fxt_code_name fut_code_table [] = { # if !defined(PREPROC) && !defined(DEPEND) # include "fut_print.h" # endif {0, NULL } }; # define find_name(code, keep, maxlen) ({ \ const char *_res; \ if (code >= FUT_I386_FUNCTION_MINI) \ _res=fxt_lookup_symbol(fxt,code&~FUT_I386_FUNCTION_EXIT); \ else \ _res=fxt_find_name(fxt, code, keep, maxlen, fut_code_table); \ _res; \ }) #if 0 unsigned long *dumpslot( unsigned long *bufptr ) { switch (fxt->events_block.ondisk.type) { case FXT_BLOCK_TRACES_USER_RAW_NATIVE: { int i; struct fxt_trace_user_raw32*ev = (typeof(ev)) bufptr; int nb_args=((ev->code&0xFF)-sizeof(*ev))/sizeof(long); long code=ev->code>>8; if (nb_args < 0) { printf("Argh: %i args\n", nb_args); nb_args=0; } if (nb_args > 4) { printf("Argh: %i args\n", nb_args); nb_args=4; } printf("%"PRIu64"u\t[0x%16lx]\t%16lx(%i)", ev->tick, ev->tid, ev->code, nb_args); # define GCC_INSTRUMENT_ENTRY_CODE FUT_GCC_INSTRUMENT_ENTRY_CODE # define GCC_INSTRUMENT_EXIT_CODE FUT_GCC_INSTRUMENT_EXIT_CODE # define GCC_TRACED_FUNCTION_X86_EXIT FUT_I386_FUNCTION_EXIT if (code == GCC_INSTRUMENT_ENTRY_CODE || code == GCC_INSTRUMENT_EXIT_CODE) { const char *s; printf(" %25s", code==GCC_INSTRUMENT_ENTRY_CODE? "gcc-traced function entry":"gcc-traced function exit"); code=ev->args[0]; s=fxt_lookup_symbol(fxt,code); printf(" %s",s); printf("\n"); } else { printf(" %25s", fxt_find_name(fxt, code, 1, 25, fut_code_table)); for (i=0; i< nb_args; i++) { printf("\t%"PRIu64"x", ev->args[i]); } printf("\n"); } return &ev->args[nb_args]; } default: error_format("thiscpu"); } return NULL; } #endif void get_the_time( time_t the_time, char *message ) { struct tm *breakout; char buffer[128]; if( (breakout = localtime(&the_time)) == NULL ) { fprintf(stderr, "Unable to break out %s\n", message); exit(EXIT_FAILURE); } if( strftime(buffer, 128, "%d-%b-%Y %H:%M:%S", breakout) == 0 ) { fprintf(stderr, "Unable to convert %s\n", message); exit(EXIT_FAILURE); } printf("%14s = %s\n", message, buffer); } void dump_native(fxt_blockev_t evs, int offset, int delta) { struct fxt_ev_native ev; int ret; static uint64_t time_offset=0; while (FXT_EV_OK == (ret=fxt_next_ev(evs, FXT_EV_TYPE_NATIVE, (struct fxt_ev *)&ev))) { int i; if (offset) { if (time_offset==0) { time_offset=ev.time; ev.time=0; } else { ev.time -= time_offset; } } else if (delta) { ev.time -= time_offset; time_offset += ev.time; } printf("%20"PRIu64"u\t[%16lx]\t%2u\t%16lx(%i)\t", ev.time, (long)ev.user.tid, ev.cpu, (long)ev.code, ev.nb_params); # define GCC_INSTRUMENT_ENTRY_CODE FUT_GCC_INSTRUMENT_ENTRY_CODE # define GCC_INSTRUMENT_EXIT_CODE FUT_GCC_INSTRUMENT_EXIT_CODE # define GCC_TRACED_FUNCTION_X86_EXIT FUT_I386_FUNCTION_EXIT if (ev.code == GCC_INSTRUMENT_ENTRY_CODE || ev.code == GCC_INSTRUMENT_EXIT_CODE) { const char *s; unsigned long func; printf("%25s", ev.code==GCC_INSTRUMENT_ENTRY_CODE? "gcc-traced function entry":"gcc-traced function exit"); func=ev.param[0]; s=fxt_lookup_symbol(fxt,func); printf("\t%s",s); printf("\n"); } else if (ev.code == FUT_SET_THREAD_NAME_CODE) { char *name=(char *)(ev.param+1); printf("%25s\t%s\n", fxt_find_name(fxt, ev.code, 1, 25,fut_code_table), name); } else { printf("%25s", fxt_find_name(fxt, ev.code, 1, 25, fut_code_table)); for (i=0; i< ev.nb_params && i < FXT_MAX_PARAMS; i++) { printf("\t%lx", ev.param[i]); } printf("\n"); } } if (ret != FXT_EV_EOT) { printf("Stopping on code %i\n", ret); } } void dump64(fxt_blockev_t evs, int offset, int delta) { struct fxt_ev_64 ev; int ret; while (FXT_EV_OK == (ret=fxt_next_ev(evs, FXT_EV_TYPE_64, (struct fxt_ev *)&ev))) { int i; printf("%"PRIu64"u\t[%16lx]\t%2u\t%16lx(%i)", ev.time, (long)ev.user.tid, ev.cpu, (long)ev.code, ev.nb_params); //printf(" %25s", fxt_find_name(fxt, code, 1, 25, fut_code_table)); for (i=0; i< ev.nb_params && i < FXT_MAX_PARAMS; i++) { printf("\t%"PRIu64"x", ev.param[i]); } printf("\n"); } if (ret != FXT_EV_EOT) { printf("Stopping on code %i\n", ret); } } #define OPTIONS ":f:dox" #ifndef WHITE_SPACE #define WHITE_SPACE " \t\n\f\v\r" #endif void usage(char *progname) { printf("Dump the content of an FxT trace file\n\ Usage: %s [-d] [-o] [-x] [-f record-file]\n\ \n\ if -f is not given, look for TRACE_FILE environment variable, and\n\ if that is not given, read from \"" DEFAULT_TRACE_FILE "\".\n\ \n\ -d : dump mode (no trace interpretation)\n\ -o : time offset (from begining)\n\ -x : time delta (between events)\n\ ", progname); } int main( int argc, char *argv[] ) { char *infile; int c; struct stat st; off_t off=0; size_t size; int dump=0; int time_offset=0, time_delta=0; kidpid = 0; infile = NULL; opterr = 0; while( (c = getopt(argc, argv, OPTIONS)) != EOF ) { switch( c ) { case 'f': infile = optarg; break; case 'd': dump=1; break; case 'o': time_offset=1; break; case 'x': time_delta=1; break; case ':': fprintf(stderr, "missing parameter to switch %c\n", optopt); usage(argv[0]); exit(EXIT_FAILURE); case '?': fprintf(stderr, "illegal switch %c\n", optopt); usage(argv[0]); exit(EXIT_FAILURE); } /* switch */ } if( optind < argc ) fprintf(stderr, "extra command line arguments ignored\n"); if( infile == NULL ) { if( (infile = getenv("TRACE_FILE")) == NULL ) infile = DEFAULT_TRACE_FILE; } while( (fd = open(infile, O_RDONLY)) < 0 ) {/* could not open the indicated file name for reading */ perror(infile); if( strcmp(infile, DEFAULT_TRACE_FILE) == 0 ) /* can't open the default file, have to give up */ exit(EXIT_FAILURE); infile = DEFAULT_TRACE_FILE; fprintf(stderr, "input defaulting to %s\n", infile); } if (!(fxt = fxt_fdopen(fd))) { perror("fxt_fdopen"); exit(EXIT_FAILURE); } info = fxt_infos(fxt); printf("%14s = %i\n", "ncpus", info->ncpus); if (info->space==FXT_SPACE_KERNEL) { CALLOC(basehigh,info->ncpus); } CALLOC(lasttime,info->ncpus); CALLOC(lastreltime,info->ncpus); CALLOC(start_time_cpu,info->ncpus); CALLOC(end_time_cpu,info->ncpus); CALLOC(lastpid,info->ncpus); CALLOC(already_saw,info->ncpus); CALLOC(fun_time_cpu,info->ncpus); pid = info->record_pid; kidpid = info->traced_pid; get_the_time(info->start_time, "start time"); get_the_time(info->stop_time, "stop time"); printf("%14s = %lu\n", "start jiffies", (unsigned long)info->start_jiffies); printf("%14s = %lu\n", "stop jiffies", (unsigned long)info->stop_jiffies); printf("%14s = %lu\n", "total jiffies", (unsigned long)info->stop_jiffies - (unsigned long)info->start_jiffies); page_size = info->page_size; printf("%14s = %zu\n", "page size", page_size); trace_space = info->space; printf("%14s = %u (%s)\n", "trace space", trace_space, trace_space_name[trace_space]); printf("%s\n", info->uname); if (fstat(fd, &st)) { perror("fstat"); exit(EXIT_FAILURE); } #ifdef BLKGETSIZE if( S_ISBLK(st.st_mode) ) { int sectors; if( ioctl(fd,BLKGETSIZE,§ors) ) { perror("getting device size\n"); exit(EXIT_FAILURE); } if( sectors >= 0xffffffffUL >> 9 ) size=0xffffffffUL; else size = sectors << 9; } else #endif size=st.st_size; printf("%14s = %llu\n", "bytes", (unsigned long long) (size-off)); if( size > off ) { fxt_blockev_t evs; evs=fxt_blockev_enter(fxt); if (dump) { dump64(evs, time_offset, time_delta); } else { dump_native(evs, time_offset, time_delta); } } if (stop_jiffies) {/* fkt_record could write the stop time, good */ printf("\n"); } return EXIT_SUCCESS; } fxt-0.3.15/tools/PaxHeaders/fkt_extract.c0000644000000000000000000000013213636772401015312 xustar0030 mtime=1585181953.117148369 30 atime=1746715490.227509212 30 ctime=1746716504.745148837 fxt-0.3.15/tools/fkt_extract.c0000644000175000017500000000775213636772401015013 0ustar00samysamy/* fkt_extract.c fkt_extract -- program to extract a portion of a trace, given by its page numbers. Copyright (C) 2003 Samuel Thibault 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ #include #include #include #include #include #include #include #include ssize_t slow_copyfile(int out_fd, int in_fd, off_t *offset, size_t count) { void *buffer; size_t done,donebuffer; ssize_t res; int page_size = getpagesize(); if( count%page_size ) { fprintf(stderr,"size is not page-aligned\n"); exit(EXIT_FAILURE); } if( (buffer = mmap(NULL, page_size, PROT_READ|PROT_WRITE, MAP_PRIVATE|MAP_ANONYMOUS,0,0)) == MAP_FAILED && !(buffer = malloc(page_size))) { perror("allocating page buffer\n"); exit(EXIT_FAILURE); } done=0; while( donex ColEvTimeSort # Classement par temps (avec buffer max) # x->x ColEvTimeWait # Attend qu'une date soit complète avant de l'émettre # Utile pour être sûr que les événements liés sont à jour # x->(x,x,x,...) ColEvSplit # Réplique le flot (mais pas les événements eux-même) # (x,x,x,...)->x ColEvMerge # Rassemble les flots # (x,x,x,...)->x ColEvMergeUniq # Rassemble les flots en supprimant les événements identiques # x->x ColEvInsertEnd(nb_end_to_skip) # Insert un marqueur de fin de trace à la fin ou bien après avoir # rencontré nb_end_to_skip dans la trace. # Les éventuels événements suivant sont tous filtrés. # x->x ColEvFilterEnd # Filtre tous les événements sauf le marqueur de fin de trace # État des événements # 0 : rien # 1 : Ev bruts non nécessairement ordonnés # 2 : switch_to remplacés par des GIVE/GET_HAND # 3 : creation/destruction des entités # 4 : Cohérence des GIVE/GET_HAND et CREATE/DESTROY # 5 : Fusion des entités (supertrace) # 0->1 ColEvInputTexteKernel # 0->1 ColEvInputTexteUser # Introduction des événements # 1->2 ColEvSwitchTo # Transforme les switch_to originaux en GET/GIVE_HAND # Retard éventuel des switch_to si nécessaire # Événements ordonnées nécessaires # + GIVE/GET_HAND # + NOP # - switch_to # 2->3 ColEvProc # 2->3 ColEvLwp # 2->3 ColEvUtid # Creation/Destruction des entités (nécessite une collection) # + CREATE_* # + DESTROY_* # 3->4 ColEvHandLwp # 3->4 ColEvHandUtid # Ajout des GIVE/GET_HAND pour les entitées en début/fin # Suppression des GIVE_HAND qui prennent la main # - GIVE_HAND # + GET_HAND # + GIVE_HAND # 4->5 ColEvFusionK # 4->5 ColEvFusionKU # Interprète les switch-to pour reconstruire les informations manquantes # Nécessite un ColEvTimeWait après le niveau 3 # 5->5 ColEvEntitySort # Antidate les CREATE_ si nécessaires (après apparition due à une fusion) # Vérifie que les DESTROY sont corrects ########################################################################## # Origine d'un événement # package Orig; use constant USER => 0; use constant KERNEL => 1; use constant ADMIN => 2; sub new { # [classe] TypeOrig my $class=shift; my $self={}; bless($self, $class); $self->_init(@_); return $self; } sub _init { my $self=shift; if (@_) { my %extra = @_; @$self{keys %extra} = values %extra; } } sub IsAdmin { my $self=shift; return 0; } sub IsUser { my $self=shift; return 0; } sub IsKernel { my $self=shift; return 0; } sub IsAppli { my $self=shift; return (!$self->IsAdmin()); } sub Dump { my $self=shift; print $self->Name(); } ########################################################################## # Et les sous-types... # package AdminOrig; use base 'Orig'; sub new { my($class)=shift; my $self=$class->SUPER::new(@_); return $self; } sub _init { my $self=shift; my($class)=shift; $self->SUPER::_init(@_, CLASS=>$class); } sub IsAdmin { my $self=shift; return 1; } sub Type { my $self=shift; return Orig::ADMIN; } sub Class { my $self=shift; return $self->{CLASS}; } sub Name { my $self=shift; return "A[".$self->Class()."]"; } ########################################################################## package KernOrig; use base 'Orig'; sub new { my($class)=shift; my $self=$class->SUPER::new(@_); return $self; } sub IsKernel { my $self=shift; return 1; } sub Type { my $self=shift; return Orig::KERNEL; } sub Name { my $self=shift; return "Kernel"; } ########################################################################## package UserOrig; use base 'Orig'; sub new { my($class)=shift; my $self=$class->SUPER::new(@_); return $self; } sub _init { my $self=shift; my($name)=shift; $self->SUPER::_init(@_, APPLI=>$name); } sub IsUser { my $self=shift; return 1; } sub Type { my $self=shift; return Orig::USER; } sub Appli { my $self=shift; return $self->{APPLI}; } sub Name { my $self=shift; return "U[".$self->Appli()."]"; } ########################################################################## # Événements # # Pas de bless pour ne pas alourdir : on reste une référence sur un tableau # package Event; use constant CREATE_PROC => 0; use constant DESTROY_PROC => 1; use constant CREATE_LWP => 2; use constant DESTROY_LWP => 3; use constant CREATE_UT => 4; use constant DESTROY_UT => 5; use constant UT_GIVE_HAND => 6; use constant UT_GET_HAND => 7; use constant LWP_GIVE_HAND => 8; use constant LWP_GET_HAND => 9; use constant FUT => 10; use constant FKT => 11; use constant NOP => 12; no strict; @Name = ("Create Proc", "Destroy Proc", "Create LWP", "Destroy LWP", "Create UT", "Destroy UT", "UT Give Hand", "UT Get Hand", "LWP Give Hand", "LWP Get Hand", "FUT", "FKT", "Nop"); use strict; sub CreateEvent { my $class=shift; my $orig=shift; my $date=shift; my $proc=shift; my $lwp=shift; my $utid=shift; my $type=shift; my $info=shift; my @ev=($orig, $date, $proc, $lwp, $utid, $type, $info); return \@ev; } sub show { my $elem=shift; if (defined($elem)) { if(UNIVERSAL::isa($elem, 'EntityId')) { return $elem->idName(); } return $elem; } return " - "; } sub Dump { my $ev=shift; my $prefix=shift; if (not defined($prefix)) { $prefix=""; } if (not defined($ev)) { die "Ev not defined"; } printf("%s[%+3s]",$prefix, "".Event::date($ev)); printf("% 20s\t%s\t%s\t%s\t%-12s", Event::orig($ev)->Name(), show(Event::proc($ev)), show(Event::lwp($ev)), show(Event::utid($ev)), $Event::Name[Event::type($ev)]); my $inf; $inf=Event::infos($ev); if (Event::IsMoveHand($ev)) { my $link=Event::infos($ev); if (defined($link)) { print "\t", show(Event::IdEmit($link)); } } elsif (ref($inf) eq "ARRAY") { foreach $inf (@{Event::infos($ev)}) { print "\t"; print show($inf); } } elsif (not defined($inf)) { print "\t ---"; } else { print "\t", $inf; } print "\n"; return; my $utid; if (defined($ev->[3])) { $utid=$ev->[3]->Name; } else { $utid="UNDEF "; } print $prefix, $ev->[0], " ",defined($ev->[1]) && $ev->[1]->Name, " ",defined($ev->[2]) && $ev->[2]->Name, "\t",defined($ev->[3]) && $ev->[3]->Name,, "\t{",($Event::Name[$ev->[4]]),"}"; if (ref($ev->[5]) eq "ARRAY") { my $i; for ($i=4; $i[5]}); $i++) { print "\t[", $ev->[5]->[$i], "]"; } } elsif (ref($ev->[5]) eq "LWP" or ref($ev->[5]) eq "Thread") { print "\t", $ev->[5]->Name; } print "\n"; } sub part { my $num=shift; my $ev=shift; #my $old=$ev->[$num]; if (scalar @_ == 1) { $ev->[$num]=$_[0]; } return $ev->[$num]; } sub orig { part 0, @_; } sub date { part 1, @_; } sub proc { part 2, @_; } sub lwp { part 3, @_; } sub utid { part 4, @_; } sub type { part 5, @_; } sub infos { part 6, @_; } sub idFromUserFork { my $ev=shift; if (Event::type($ev)==Event::FKT) { my $infos=Event::infos($ev); if ($infos->[0] eq "user_fork") { return $infos->[1]; } } return undef; } sub idFromNewLwp { my $ev=shift; if (Event::type($ev)==Event::FUT) { my $infos=Event::infos($ev); if ($infos->[0] eq "fut_new_lwp") { return ($infos->[1],$infos->[2]); } } return undef; } sub IsSwitchTo { my $ev=shift; my $infos=Event::infos($ev); my $res=0; if (defined($infos)) { $res= $infos->[0] =~ /^(fut_)?switch_to$/; } return $res; } sub IdEmit { my $ev=shift; if (Event::orig($ev)->IsKernel()) { return Event::lwp($ev, @_); } return Event::utid($ev, @_); } sub IdSwto { my $ev=shift; return Event::infos($ev)->[1] } sub SplitSwitchTo { my $ev=shift; # Création de GIVE/GET_HAND à la place des switch-to originaux my $ev1=Event::CreateEvent("Event", Event::orig($ev), Event::date($ev), Event::proc($ev), Event::lwp($ev), Event::utid($ev), undef, undef); my $ev2=Event::CreateEvent("Event", Event::orig($ev), Event::date($ev), Event::proc($ev), Event::lwp($ev), Event::utid($ev), undef, undef); if (Event::orig($ev)->IsKernel()) { Event::type($ev1, Event::LWP_GIVE_HAND); Event::type($ev2, Event::LWP_GET_HAND); } else { Event::type($ev1, Event::UT_GIVE_HAND); Event::type($ev2, Event::UT_GET_HAND); } Event::infos($ev1, $ev2); Event::infos($ev2, $ev1); Event::IdEmit($ev2, Event::IdSwto($ev)); return ($ev1, $ev2); } sub IsMoveHand { my $ev=shift; my $type=Event::type($ev); if ($type == Event::UT_GIVE_HAND || $type == Event::UT_GET_HAND || $type == Event::LWP_GIVE_HAND || $type == Event::LWP_GET_HAND ) { return 1; } return 0; } sub isDestroy { my $ev=shift; my $type=Event::type($ev); if ($type == Event::DESTROY_PROC || $type == Event::DESTROY_LWP || $type == Event::DESTROY_UT ) { return 1; } return 0; } sub isRealEv { my $ev=shift; if (Event::type($ev) <= Event::DESTROY_UT) { return 0; } return 1; } package ClassOrig; sub orig { my $self=shift; if (not defined($self->{__PACKAGE__ . ".orig"})) { $self->{__PACKAGE__ . ".orig"}=AdminOrig->new(ref($self)); } return $self->{__PACKAGE__ . ".orig"}; } ########################################################################## # Collections d'événements # package ColEv; use base 'ClassOrig'; # méthodes : # readEv() : [virtuelle] fournit un événement à traiter # needAccu() : [virtuelle] accumulation nécessaire # getNbEvsAccu() : Nombre d'événements actuellement accumulés # sendEv() : renvoie un événement (après accumulation et réordonnancement) # dateLastEmit() : dernière date d'émission d'événement # emitEv(ev) : [virtuelle] peut ajouter des événements administratifs # avant ou après et/ou supprimer l'événement # emitLastEv() : [virtuelle] Appelée à la fin du flot d'entrée # addPostEv() : ajout un événement après l'événement en cours d'émission # addPreEv() : ajout un événement avant l'événement en cours d'émission # nextEv() : renvoie un événement (après rajout/traitement) sans consommer # getEv() : renvoie un événement (après rajout/traitement) en consommant sub new { my $this = shift; my $class = ref($this) || $this; my $self = {}; bless $self, $class; $self->_init(@_); return $self; } sub _init { my $self=shift; my (@evs, @pre_evs, @post_evs); $self->{__PACKAGE__ . ".Evs"} = \@evs; $self->{__PACKAGE__ . ".PreEv"} = \@pre_evs; $self->{__PACKAGE__ . ".PostEv"} = \@post_evs; $self->{__PACKAGE__ . ".dateLastEmit"} = 0; $self->{__PACKAGE__ . ".maxaccu"}=0; if (scalar(@_) % 2) { die "Bad number of initial parameters"; } if (@_) { my %extra = @_; @$self{keys %extra} = values %extra; } } sub _readEv { my $self=shift; if (exists($self->{__PACKAGE__ . ".AllRead"})) { return undef; } my $ev=$self->readEv(); if (not defined($ev)) { $self->{__PACKAGE__ . ".AllRead"}=1; return undef; } $debug && Event::Dump($ev, $self->Name()." Reading: "); push @{$self->{__PACKAGE__ . ".Evs"}}, $ev; return $ev; } sub _getPool { my $self=shift; return $self->{__PACKAGE__ . ".Evs"}; } sub _setPool { my $self=shift; $self->{__PACKAGE__ . ".Evs"}=shift; } sub needAccu { my $self=shift; return 0; } sub getNbEvsAccu { my $self=shift; return scalar(@{$self->{__PACKAGE__ . ".Evs"}}); } sub dumpStats { my $self=shift; if ($self->{__PACKAGE__ . ".maxaccu"} > 1) { Event::Dump($self->{__PACKAGE__ . ".maxaccuEv"}, ref($self).": ".$self->{__PACKAGE__ . ".maxaccu"}." for "); } } sub sendEv { my $self=shift; while ($self->getNbEvsAccu() == 0 || $self->needAccu($self->{__PACKAGE__ . ".Evs"}->[0])) { if (not $self->_readEv()) { last; } } my $col=$self->{__PACKAGE__ . ".Evs"}; my $ev; my $nb_accu=scalar @{$col}; if ($nb_accu > $self->{__PACKAGE__ . ".maxaccu"}) { $self->{__PACKAGE__ . ".maxaccu"}=$nb_accu; $self->{__PACKAGE__ . ".maxaccuEv"}=$col->[$nb_accu - 1]; } $ev = shift @{$col}; $debug && defined($ev) && Event::Dump($ev, $self->Name()." SendEv: "); return $ev; } sub dateLastEmit { my $self=shift; return $self->{__PACKAGE__ . ".dateLastEmit"}; } sub addPreEv() { my $self=shift; my $ev=shift; unshift @{$self->{__PACKAGE__ . ".PreEv"}}, $ev; } sub addPostEv() { my $self=shift; my $ev=shift; push @{$self->{__PACKAGE__ . ".PostEv"}}, $ev; } sub emitEv() { my $self=shift; my $ev=shift; return $ev; } sub emitLastEvs() { my $self=shift; return; } sub nextEv() { my $self=shift; return $self->_getEv(0); } sub getEv() { my $self=shift; return $self->_getEv(1); } sub _getEv() { my $self=shift; my $deleteEv=shift; $debug && print $self->Name()." GetEv (delete=$deleteEv)\n"; while(1) { while (not exists($self->{__PACKAGE__ . ".curEv"})) { my $ev=$self->sendEv(); $debug && defined($ev) && Event::Dump($ev,$self->Name()." Reading: "); $self->{__PACKAGE__ . ".curEv"}=$ev; if (not defined($ev)) { if (exists($self->{__PACKAGE__ . ".lastEvs"})) { $debug && print $self->Name()." GetEv Ends\n"; return undef; } $self->{__PACKAGE__ . ".lastEvs"}=1; $self->{__PACKAGE__ . ".curEv"}=undef; $self->emitLastEvs(); #$self->dumpStats(); } else { my $date=Event::date($ev); $debug && Event::Dump($ev,$self->Name()." EmitEv: "); $self->{__PACKAGE__ . ".curEv"}=$self->emitEv($ev); $self->{__PACKAGE__ . ".dateLastEmit"} = $date; } } my $ev=$self->{__PACKAGE__ . ".curEv"}; $debug && defined($ev) && Event::Dump($ev,$self->Name()." GetEvSelected: "); if (@{$self->{__PACKAGE__ . ".PreEv"}}) { if ($deleteEv) { return shift @{$self->{__PACKAGE__ . ".PreEv"}}; } else { return $self->{__PACKAGE__ . ".PreEv"}->[0]; } } if (defined($ev)) { if ($deleteEv) { $self->{__PACKAGE__ . ".curEv"}=undef; } return $ev; } if (@{$self->{__PACKAGE__ . ".PostEv"}}) { if ($deleteEv) { return shift @{$self->{__PACKAGE__ . ".PostEv"}}; } else { return $self->{__PACKAGE__ . ".PostEv"}->[0]; } } delete $self->{__PACKAGE__ . ".curEv"}; my (@t1, @t2); $self->{__PACKAGE__ . ".PreEv"}=\@t1; $self->{__PACKAGE__ . ".PostEv"}=\@t2; $debug && print $self->Name()." GetEvRestart\n"; } } sub Name { my $self = shift; my $class = ref($self) || $self; return $class; } ########################################################################## # Collections d'événements avec gestion des switch_to (retard éventuel) # package ColEvSwitchTo; use base 'ColEv'; sub _init { my $self=shift; my $source = shift; my @srcs=($source); $self->SUPER::_init(@_, (__PACKAGE__ . ".source") => $source, (__PACKAGE__ . ".srcs") => \@srcs); } sub readEv { my $self=shift; if (!defined($self->{__PACKAGE__ . ".source"})) { return undef; } my ($source,$next); while(1) { $source=$self->{__PACKAGE__ . ".source"}; $next=$source->getEv(); while (not defined($next)) { $source=$self->nextSource($source); if (!defined($source)) { # Plus rien dans le flux... delete $self->{__PACKAGE__ . ".source"}; return undef; } $self->{__PACKAGE__ . ".source"}=$source; $next=$source->getEv(); } if (! Event::IsSwitchTo($next)) { return $next; } my $colevtracesw=ColEvSwitchToPool->new($self, $source, $next); $self->{__PACKAGE__ . ".source"}=$colevtracesw; push @{$self->{__PACKAGE__ . ".srcs"}}, $colevtracesw; } return $next; } sub nextSource { my $self=shift; my $empty_source=shift; my $next=undef; my $srcs=$self->{__PACKAGE__ . ".srcs"}; my $i; for($i=0; $i[$i] == $empty_source) { splice(@{$srcs}, $i, 1); return $next; } $next=$srcs->[$i]; } return $next; } package ColEvSwitchToPool; use base 'ColEv'; sub _init { my $self=shift; my $pere = shift; my $source = shift; my $sw = shift; $self->SUPER::_init(@_, (__PACKAGE__ . ".pere") => $pere, (__PACKAGE__ . ".source") => $source, (__PACKAGE__ . ".SwEv") => $sw, (__PACKAGE__ . ".SwDate") => Event::date($sw), (__PACKAGE__ . ".SwPrev") => Event::IdEmit($sw), (__PACKAGE__ . ".SwNext") => Event::IdSwto($sw), (__PACKAGE__ . ".Keep") => 1); } sub readEv { my $self=shift; my $sw=$self->{__PACKAGE__ . ".SwEv"}; if (not defined($self->{__PACKAGE__ . ".EvNop"})) { my @infos=@{Event::infos($sw)}; shift @infos; unshift @infos, "MOVED SwTo"; # Création d'un événement NOP qui marque l'emplacement # du switch-to original en cas de déplacement my $ev=Event::CreateEvent("Event", $self->orig(), Event::date($sw), Event::proc($sw), Event::lwp($sw), Event::utid($sw), Event::NOP, \@infos); $self->{__PACKAGE__ . ".EvNop"}=$ev; $self->{__PACKAGE__ . ".EvToBlock"}=$ev; return $ev; } if (not ($self->{__PACKAGE__ . ".Keep"})) { # Le switch-to a été/doit être émis... return undef; } my $source=$self->{__PACKAGE__ . ".source"}; my $next=$source->nextEv(); while (not defined($next)) { $source=$self->{__PACKAGE__ . ".pere"}->nextSource($source); if (!defined($source)) { # Plus rien dans le flux... $self->{__PACKAGE__ . ".Keep"}=0; return undef; #my $ev=$self->{__PACKAGE__ . ".SwEv"}; #delete $self->{__PACKAGE__ . ".SwEv"}; #return $ev; } $self->{__PACKAGE__ . ".source"}=$source; $next=$source->nextEv(); } my $srcId=Event::IdEmit($next); my $nextId=Event::IdSwto($next); my $SwIdPrev=$self->{__PACKAGE__ . ".SwPrev"}; my $SwIdNext=$self->{__PACKAGE__ . ".SwNext"}; if (not defined($srcId)) { # Événement autre, on passe return $self->{__PACKAGE__ . ".source"}->getEv(); Event::Dump($next, "no source"); die "toto"; } if ($srcId eq $SwIdNext || (defined($nextId) && ($SwIdPrev eq $nextId))) { $self->{__PACKAGE__ . ".Keep"}=0; return undef; #my $ev=$self->{__PACKAGE__ . ".SwEv"}; #delete $self->{__PACKAGE__ . ".SwEv"}; #return $ev; } if (defined($nextId) && ($SwIdNext eq $nextId)) { print STDERR "Argh!!! Two entities giving hand to $nextId\n"; Event::Dump($sw, " First: "); Event::Dump($next, " Second: "); } if ($SwIdPrev eq $srcId) { my $date=Event::date($next); $self->{__PACKAGE__ . ".EvNopEmit"}=1; #Event::Dump($sw, "Delaying sw to $date "); $self->{__PACKAGE__ . ".SwDate"}=$date; Event::date($sw, $date); if (defined($self->{__PACKAGE__ . ".EvToBlock"})) { delete($self->{__PACKAGE__ . ".EvToBlock"}); } } else { if (not defined($self->{__PACKAGE__ . ".EvToBlock"})) { $self->{__PACKAGE__ . ".EvToBlock"}=$next; } } return $self->{__PACKAGE__ . ".source"}->getEv(); } sub emitSw { my $self=shift; my $ev=$self->{__PACKAGE__ . ".SwEv"}; my ($ev1,$ev2)=Event::SplitSwitchTo($ev); # D'abord le second puis le premier (LIFO mode) $self->addPreEv($ev2); $self->addPreEv($ev1); delete $self->{__PACKAGE__ . ".SwEv"}; } sub emitEv { my $self=shift; my $ev=shift; if (!$self->{__PACKAGE__ . ".Keep"} && exists($self->{__PACKAGE__ . ".SwEv"})) { $self->emitSw(); } if ($ev == $self->{__PACKAGE__ . ".EvNop"}) { if (not defined($self->{__PACKAGE__ . ".EvNopEmit"})) { #Event::Dump($ev, "Skipping nop"); return undef; } } return $ev; } sub emitLastEvs { my $self=shift; if (exists($self->{__PACKAGE__ . ".SwEv"})) { $self->emitSw(); } } sub needAccu { my $self=shift; my $ev_ready=shift; #on accumule tant que le switch-to est encore là #et que le premier événement doit être bloqué return (exists $self->{__PACKAGE__ . ".SwEv"}) && defined($self->{__PACKAGE__ . ".EvToBlock"}) && $ev_ready == $self->{__PACKAGE__ . ".EvToBlock"}; } ########################################################################## # Collection d'événements au sein d'un flot simple # package ColEvFlow; use base 'ColEv'; sub _init { my $self=shift; my $source=shift; $self->SUPER::_init(@_, (__PACKAGE__ . ".source") => $source); } sub readEv { my $self=shift; return $self->{__PACKAGE__ . ".source"}->getEv(); } ########################################################################## # Collections d'événements avec accu de taille bornée # package ColEvTimeSort; use base 'ColEvFlow'; use sort 'stable'; # nbAccu() : nombre d'événements à accumuler sub _init { my $self=shift; my $source=shift; my $accu = shift; $self->SUPER::_init($source, @_, (__PACKAGE__ . ".accu") => $accu); } sub nbAccu { my $self=shift; return $self->{__PACKAGE__ . ".accu"}; } sub needAccu { my $self=shift; return $self->getNbEvsAccu() < $self->nbAccu(); } sub _readEv { my $self=shift; my $ev=$self->SUPER::_readEv(); if (defined($ev)) { my $date=Event::date($ev); if ($date < $self->dateLastEmit()) { print STDERR $self->Name().": Arghh !\n"; print STDERR "LastEmit : ", $self->dateLastEmit(), ", LastRead : $date\n"; } } my @evs=sort { Event::date($a) <=> Event::date($b) } @{$self->_getPool()}; $self->_setPool(\@evs); return $ev; } ########################################################################## # Collections d'événements avec accu sur le temps # package ColEvTimeWait; use base 'ColEvFlow'; use sort 'stable'; # nbAccu() : nombre d'événements à accumuler sub _init { my $self=shift; $self->SUPER::_init(@_, (__PACKAGE__ . ".lastReadDate") => 0); } sub readEv { my $self=shift; my $ev=$self->SUPER::readEv(); if (defined($ev)) { $self->{__PACKAGE__ . ".lastReadDate"}=Event::date($ev); } return $ev; } sub needAccu { my $self=shift; my $ev=shift; return Event::date($ev) == $self->{__PACKAGE__ . ".lastReadDate"}; } ########################################################################## # Collections d'événements insérés par texte # package ColEvInputTexte; use base 'ColEv'; # nbAccu() : nombre d'événements à accumuler sub _init { my $self=shift; my @ev=(); $self->SUPER::_init(@_, (__PACKAGE__ . ".evInput") => \@ev); } sub addEv { my $self=shift; my $ev=shift; push @{$self->{__PACKAGE__ . ".evInput"}}, $ev; } sub readEv { my $self=shift; return shift @{$self->{__PACKAGE__ . ".evInput"}}; } ########################################################################## # Collections d'événements insérés par texte Noyau et Utilisateur # package ColEvInputTexteKernel; use base 'ColEvInputTexte'; no strict; $orig=KernOrig->new(); use strict; sub addEvs { my $self=shift; for $_ (@_) { my @l=split; my $time=shift @l; my $proc=shift @l; my $lwp=shift @l; my $lwp_name= shift @l; push @l, $lwp_name; $self->addEv(Event::CreateEvent("Event", $ColEvInputTexteKernel::orig, $time, $proc, $lwp, undef, Event::FKT, \@l)); } } package ColEvInputTexteUser; use base 'ColEvInputTexte'; no strict; $orig=UserOrig->new("DemoApp"); use strict; sub addEvs { my $self=shift; for $_ (@_) { my @l=split; my $time=shift @l; shift @l; my $utid=shift @l; $self->addEv(Event::CreateEvent("Event", $ColEvInputTexteUser::orig, $time, undef, undef, $utid, Event::FUT, \@l)); } } package ColEvInputFxTprintUser; use base 'ColEv'; use Math::BigInt lib => 'GMP'; # nbAccu() : nombre d'événements à accumuler sub _init { my $self=shift; my $file=shift; my $basename=$file; $basename =~ s,.*/,,; my $fh; open($fh, "<", $file); while(<$fh>) { last if (/bytes/); } $self->SUPER::_init(@_, (__PACKAGE__ . ".filename") => $file, (__PACKAGE__ . ".orig") => UserOrig->new($basename), (__PACKAGE__ . ".fh") => $fh, (__PACKAGE__ . ".basetime") => Math::BigInt->new(0)); } sub readEv { my $self=shift; my $fh=$self->{__PACKAGE__ . ".fh"}; while(<$fh>) { chomp; if (/([0-9]+)\s+\[\s*([0-9a-f]+)\]\s+[0-9a-f]+\([0-9]+\)\s+(.*)$/) { my $time=$1; my $utid=$2; my @args=split(/\t/, $3); my $base=$self->{__PACKAGE__ . ".basetime"}; if ($base == 0) { $self->{__PACKAGE__ . ".basetime"}=Math::BigInt->new($time); $time=0; } else { $time -= $base; } my $ev=Event::CreateEvent("Event", $self->{__PACKAGE__ . ".orig"}, $time, undef, undef, $utid, Event::FUT, \@args); my ($lwp,$utid2)=Event::idFromNewLwp($ev); if (defined($lwp) && defined($utid)) { my @infos=("assert link"); my $ev2; $ev2=Event::CreateEvent("Event", $self->orig(), $time, $lwp, $lwp, $utid2, Event::NOP, \@infos); $self->addPreEv($ev2); } return $ev; } print "Strange Event $_\n"; } return undef; } ########################################################################## # Collection d'événements gérant des entités # package ColEvEntities; use base 'ColEvFlow'; sub _init { my $self=shift; my $source=shift; my $col=shift; $self->SUPER::_init($source, @_, (__PACKAGE__ . ".collection") => $col); } sub getCollection { my $self=shift; return $self->{__PACKAGE__ . ".collection"}; } sub getId { my $self=shift; my $id=shift; return $self->getCollection()->getFromId($id); } sub emitEv { my $self=shift; my $ev=shift; my @ret=($ev); my $id=$self->readId($ev); if (defined($id)) { my $entity=$self->getId($id); if (not defined($entity)) { @ret=$self->create($id, $ev); $entity=$self->getId($id); } $self->getCollection->setEventEntity($ev, $entity); } my $ret=shift @ret; for $ev (@ret) { $self->addPreEv($ev); } if (Event::type($ev)==Event::NOP && Event::infos($ev)->[0] eq "END_TRACE") { $self->destroyAll(Event::date($ev)); } return $ret; } sub destroyAll { my $self=shift; my $date=shift; my $id; if (not defined ($self->{__PACKAGE__.".ended"})) { $self->{__PACKAGE__.".ended"}=1; foreach $id ($self->getCollection()->getAllIds()) { $self->destroyId($id, $date); } } } sub emitLastEvs { my $self=shift; my $id; $self->destroyAll($self->dateLastEmit()); } sub destroyId { my $self=shift; my $id=shift; my $date=shift; my $ev; foreach $ev ($self->getCollection()->deleteId($id)) { Event::date($ev, $date); $self->addPostEv($ev); } } sub readId { my $self=shift; my $ev=shift; return $self->getCollection()->readIdFromScratchEv($ev); } sub create { my $self=shift; my $id=shift; my $event=shift; my $ev; foreach $ev ($self->getCollection()->createId($id)) { Event::date($ev, Event::date($event)); $self->addPreEv($ev); } return $event; } package ColEvProc; use base 'ColEvEntities'; package ColEvLwp; use base 'ColEvEntities'; package ColEvUtid; use base 'ColEvEntities'; sub emitEv { my $self=shift; my $ev=shift; if (0 && Event::type($ev) == Event::FUT && Event::infos($ev)->[0] eq "fut_thread_birth") { $self->SUPER::emitEv($ev); my $id=Event::infos($ev)->[1]; if (defined($self->getId($id))) { print STDERR "Entity already created..."; } else { my $event; foreach $event ($self->getCollection()->createId($id)) { Event::orig($event, Event::orig($ev)); Event::proc($event, Event::proc($ev)); Event::lwp($event, Event::lwp($ev)); Event::utid($event, Event::utid($ev)); Event::date($event, Event::date($ev)); $self->addPostEv($event); } } return $ev; #return undef; } return $self->SUPER::emitEv($ev); } ########################################################################## # Collection d'événements de collection d'événements # Merge and Split package ColEvMerge; use base 'ColEv'; # addSource($source) : source d'événements à ajouter sub _init { my $self=shift; my @sources=(); $self->SUPER::_init((__PACKAGE__ . ".sources") => \@sources); my $source; foreach $source (@_) { $self->addSource($source); } } sub addSource { my $self=shift; my $source=shift; my %source=("colEv" => $source); push @{$self->sources()}, \%source; } sub sources { my $self=shift; return $self->{__PACKAGE__ . ".sources"}; } sub readEv { my $self=shift; my ($date)=undef; my ($source)=undef; my $s; for $s (@{$self->sources()}) { my $ev=$s->{"colEv"}->nextEv(); if (defined($ev)) { my $d=Event::date($ev); if ((not defined($date)) or ($d < $date)) { $date=$d; $source=$s; } } } if (defined($source)) { return $source->{"colEv"}->getEv(); } return undef; } package ColEvMergeUniq; use base 'ColEvMerge'; # addSource($source) : source d'événements à ajouter sub _init { my $self=shift; $self->SUPER::_init(@_); my @evs=(); $self->{__PACKAGE__ .".evs"}=\@evs; } sub readEv { my $self=shift; my $ev=shift @{$self->{__PACKAGE__ .".evs"}}; if (defined($ev)) { return $ev; } my ($date)=undef; my $s; for $s (@{$self->sources()}) { my $ev=$s->{"colEv"}->nextEv(); if (defined($ev)) { my $d=Event::date($ev); if ((not defined($date)) or ($d < $date)) { $date=$d; } } } if (not defined($date)) { return undef; } my %evs=(); for $s (@{$self->sources()}) { my $ev=$s->{"colEv"}->nextEv(); while (defined($ev) && Event::date($ev)==$date) { $ev=$s->{"colEv"}->getEv(); if (not defined($evs{$ev})) { $evs{$ev}=1; push @{$self->{__PACKAGE__ .".evs"}}, $ev; } } } return undef; } package ColEvSplit; use base 'ColEvFlow'; sub _init { my $self=shift; my @accuMain=(); my @accus=(\@accuMain); $self->SUPER::_init(@_, (__PACKAGE__ . ".accus") => \@accus, (__PACKAGE__ . ".accuMain") => \@accuMain ); $self->{__PACKAGE__ . ".accu"}=0; } sub addAccu { my $self=shift; my @accu=(); push @{$self->{__PACKAGE__ . ".accus"}}, \@accu; return \@accu; } sub getSplited { my $self=shift; if (exists($self->{__PACKAGE__ . ".START"})) { # On veut dupliquer la source alors qu'on a déjà émis des Evs die "Program error"; } print "adding accu\n"; return ColEvSplitSub->new($self, $self->addAccu()); } sub _getEv { my $self=shift; my $deleteEv=shift; my $accuRead=shift; if (not defined($accuRead)) { $accuRead=$self->{__PACKAGE__ . ".accuMain"}; } if (0 == scalar(@{$accuRead})) { if (exists($self->{__PACKAGE__ . ".END"})) { return undef; } $self->{__PACKAGE__ . ".START"}=1; my $ev=$self->SUPER::_getEv(1); if (not defined($ev)) { $self->{__PACKAGE__ . ".END"}=1; print "***Max accu : ", $self->{__PACKAGE__ . ".accu"}, "\n"; return undef; } my $accu; my($max)=$self->{__PACKAGE__ . ".accu"}; foreach $accu (@{$self->{__PACKAGE__ . ".accus"}}) { push @{$accu}, $ev; if (scalar(@{$accu}) > $max) { $self->{__PACKAGE__ . ".accu"}=scalar(@{$accu}); } } } if ($deleteEv) { return shift @{$accuRead}; } else { return $accuRead->[0]; } } sub getEvSplit { my $self=shift; my $accu=shift; return $self->_getEv(1, $accu); } package ColEvSplitSub; use base 'ColEv'; sub _init { my $self=shift; my $source=shift; my $accu=shift; $self->SUPER::_init(@_, (__PACKAGE__ . ".source") => $source, (__PACKAGE__ . ".accu") => $accu); } sub readEv { my $self=shift; my $source=$self->{__PACKAGE__ . ".source"}; return $source->getEvSplit($self->{__PACKAGE__ . ".accu"}); } ########################################################################## # Filtrer des événements... package ColEvFilter; use base 'ColEvFlow'; sub emitEv { my $self=shift; my $ev=shift; if ($self->filter($ev)) { return $ev; } else { my @infos=("FILTER"); # On crée un événement fantome pour garder le timestamp my $event=Event::CreateEvent("Event", $self->orig(), Event::date($ev), undef, undef, undef, Event::NOP, \@infos); return $event; } } package ColEvInsertEnd; use base 'ColEvFilter'; sub _init { my $self=shift; my $source=shift; my $skip=shift; $self->SUPER::_init($source, @_, (__PACKAGE__ . ".skip") => $skip ); } sub emitEndTrace { my $self=shift; my $date=shift; my @infos=("END_TRACE"); my $ev=Event::CreateEvent("Event", $self->orig(), $date, undef, undef, undef, Event::NOP, \@infos); $self->addPostEv($ev); } sub emitLastEvs { my $self=shift; $self->emitEndTrace($self->dateLastEmit()); } sub filter { my $self=shift; my $ev=shift; return not defined($self->{__PACKAGE__ . ".end"}); } sub emitEv { my $self=shift; my $ev=shift; if (Event::type($ev) == Event::NOP && Event::infos($ev)->[0] eq "END_TRACE") { if ($self->{__PACKAGE__ . ".skip"} > 0) { $self->{__PACKAGE__ . ".skip"} --; return undef } elsif (defined($self->{__PACKAGE__ . ".end"})) { return undef; } else { $self->{__PACKAGE__ . ".end"}=1; $self->emitEndTrace(Event::date($ev)); return undef; } } return $self->SUPER::emitEv($ev); } package ColEvFilterEnd; use base 'ColEvFilter'; sub filter { my $self=shift; my $ev=shift; return (Event::type($ev)==Event::NOP && Event::infos($ev)->[1] eq "END_TRACE"); } ########################################################################## # Collection d'événements gérant des entités # package ColEvHand; use base 'ColEvFlow'; sub emitEv { my $self=shift; my $ev=shift; { #if (1 || !Event::orig($ev)->IsAdmin()) { my $entity=$self->getEntity($ev); if (defined($entity) && Event::isRealEv($ev)) { my $getHand=$self->isGetHand($ev); my $giveHand=$self->isGiveHand($ev); my $scheduled=$entity->scheduled($self); if ($getHand) { if ($scheduled) { Event::Dump($ev, "Arghh: on est déjà schedulé"); # die "bye"; } else { $entity->scheduled($self, 1); } } elsif ($giveHand) { if (not $scheduled) { # On n'est pas encore ordonnancé, # pas la peine de venir pour repartir return undef; } else { $entity->scheduled($self, undef); } } else { if (not defined($scheduled)) { # On n'est pas encore ordonnancé, # insertion d'un GET_HAND $entity->scheduled($self, 1); my $event=Event::CreateEvent("Event", $self->orig(), Event::date($ev), Event::proc($ev), Event::lwp($ev), $self->setUtid($ev), $self->createType(), undef); $self->addPreEv($event); } } } } if (Event::isDestroy($ev)) { my $entity=Event::infos($ev)->[0]; if (UNIVERSAL::isa($entity, 'Schedulable')) { my $scheduled=$entity->scheduled($self); if ($scheduled) { # On est encore ordonnancé, # insertion d'un GIVE_HAND $entity->scheduled($self, undef); my $newEv=Event::CreateEvent("Event", $self->orig(), Event::date($ev), Event::proc($ev), Event::lwp($ev), Event::utid($ev), $self->destroyType(), undef); $self->setEntity($newEv, $entity); $self->addPreEv($newEv); } } } return $ev; } package ColEvHandLwp; use base 'ColEvHand'; sub createType { my $self=shift; return Event::LWP_GET_HAND; } sub setUtid { my $self=shift; my $ev=shift; return undef; } sub destroyType { my $self=shift; return Event::LWP_GIVE_HAND; } sub getEntity { my $self=shift; my $ev=shift; return Event::lwp($ev); } sub setEntity { my $self=shift; my $ev=shift; my $entity=shift; return Event::lwp($ev, $entity); } sub isGetHand { my $self=shift; my $ev=shift; return Event::type($ev) == Event::LWP_GET_HAND; } sub isGiveHand { my $self=shift; my $ev=shift; return Event::type($ev) == Event::LWP_GIVE_HAND; } package ColEvHandUtid; use base 'ColEvHand'; sub createType { my $self=shift; return Event::UT_GET_HAND; } sub setUtid { my $self=shift; my $ev=shift; return Event::utid($ev); } sub destroyType { my $self=shift; return Event::UT_GIVE_HAND; } sub getEntity { my $self=shift; my $ev=shift; return Event::utid($ev); } sub setEntity { my $self=shift; my $ev=shift; my $entity=shift; return Event::utid($ev, $entity); } sub isGetHand { my $self=shift; my $ev=shift; return Event::type($ev) == Event::UT_GET_HAND; } sub isGiveHand { my $self=shift; my $ev=shift; return Event::type($ev) == Event::UT_GIVE_HAND; } ########################################################################## package ColEvFlowValidate; use base 'ColEvFlow'; sub _init { my $self=shift; my %valided=(); my %discarded=(); $self->SUPER::_init(@_, (__PACKAGE__ . ".discarded") => \%discarded, (__PACKAGE__ . ".valided") => \%valided); } sub validate { my $self=shift; my $ev=shift; my $clear=shift; if (not defined($ev)) { die "kjk";} $self->{__PACKAGE__ . ".valided"}->{$ev}=1; if (defined($clear) && ($clear==0)) { delete $self->{__PACKAGE__ . ".valided"}->{$ev}; } } sub isValide { my $self=shift; my $ev=shift; return defined($self->{__PACKAGE__ . ".valided"}->{$ev}); } sub discard { my $self=shift; my $ev=shift; my $clear=shift; $self->{__PACKAGE__ . ".discarded"}->{$ev}=1; if (defined($clear) && ($clear==0)) { delete $self->{__PACKAGE__ . ".discarded"}->{$ev}; } else { $self->validate($ev); } } sub isDiscarded { my $self=shift; my $ev=shift; return defined($self->{__PACKAGE__ . ".discarded"}->{$ev}); } sub needAccu { my $self=shift; my $ev=shift; if ($self->isValide($ev)) { #Event::Dump($ev, "Valid: "); } else { #Event::Dump($ev, "Not yet valid: "); } return not $self->isValide($ev); } sub emitEv { my $self=shift; my $ev=shift; my $ret=$ev; if ($self->isDiscarded($ev)) { $self->discard($ev, 0); $ret=undef; $debug && Event::Dump($ev, "Discarding "); } $self->validate($ev, 0); return $ret; } ########################################################################## package ColEvEntitySort; use base 'ColEvFlowValidate'; sub _init { my $self=shift; $self->SUPER::_init(@_); #(__PACKAGE__ . ".valided") => \%valided); } sub tblInit { my $self=shift; my $name=shift; if (!defined($self->{__PACKAGE__ . $name})) { my %hash=(); $self->{__PACKAGE__ . $name}=\%hash; } return $self->{__PACKAGE__ . $name}; } sub tblAdd { my $self=shift; my $name=shift; my $key=shift; my $value=shift; my $hash=$self->tblInit($name); if (defined($hash->{$key})) { push @{$hash->{$key}}, $value; } else { my @tbl=($value); $hash->{$key}=\@tbl; } } sub tblCheck { my $self=shift; my $name=shift; my $key=shift; my $hash=$self->tblInit($name); return defined($hash->{$key}); } sub tblGet { my $self=shift; my $name=shift; my $key=shift; my $hash=$self->tblInit($name); if (defined($hash->{$key})) { return $hash->{$key}; } return undef; } sub tblClean { my $self=shift; my $name=shift; my $key=shift; my $value=shift; my $hash=$self->tblInit($name); my $tbl=$self->tblGet($name, $key); if (not defined($tbl)) { return; } if (scalar(@{$tbl})==1 && $tbl->[0]==$value) { $self->tblPurge($name, $key); } else { @{$tbl}=map { if ($_ != $value) { $_; } else { } } @{$tbl}; } } sub tblPurge { my $self=shift; my $name=shift; my $key=shift; my $hash=$self->tblInit($name); if (defined($hash->{$key})) { delete($hash->{$key}); } } sub waitFor { my $self=shift; my $ev=shift; my $entity=shift; $self->tblAdd(".preEvs", $ev, $entity->startEv()); $entity->info($self, "created", 1); } sub check { my $self=shift; my $ev=shift; my $entity=shift; if (not defined($entity)) { return 1; } if (not defined($entity->info($self, "created"))) { $self->waitFor($ev, $entity); return 1; } if (defined($entity->info($self, "destroyed"))) { # Event::Dump($ev, "Using $entity destroyed\t"); # $self->discard($ev); return 0; } return 1; } sub checkEv { my $self=shift; my $ev=shift; if ($self->check($ev, Event::proc($ev)) +$self->check($ev, Event::lwp($ev)) +$self->check($ev, Event::utid($ev)) == 3) { $self->validate($ev); } } sub readEv { my $self=shift; my $ev=$self->SUPER::readEv(); if (not defined($ev)) { return undef; } if (Event::isRealEv($ev)) { $self->checkEv($ev); } else { my $entity=Event::infos($ev)->[0]; if (Event::isDestroy($ev)) { $entity->info($self, "destroyed", 1); $self->validate($ev); } else { if ($entity->info($self, "created")) { $self->discard($ev); } else { $entity->info($self, "created", 1); $self->validate($ev); } } } return $ev; } sub emitEv { my $self=shift; my $ev=shift; $ev=$self->SUPER::emitEv($ev); if (defined($ev) && ($self->tblCheck(".preEvs", $ev))) { my $event; foreach $event (@{$self->tblGet(".preEvs", $ev)}) { Event::date($event, Event::date($ev)); $self->addPreEv($event); } $self->tblPurge(".preEvs", $ev); } return $ev; } ########################################################################## # Fusion en supertrace !!! package ColEvFusion; use base 'ColEvFlowValidate'; # Corrélation de deux entités (utid/lwp ou lwp/proc) # grâce aux les SwitchTo correspondants sub _init { my $self=shift; my %chains=(); $self->SUPER::_init(@_, (__PACKAGE__ . ".chains") => \%chains); } # Est-ce que l'événement (généré par le contenu) a son contenant dans ses # arguments ? sub tryLinkDown { my $self=shift; my $ev=shift; return 0; } # Est-ce que l'événement (généré par le contenant) a son contenu dans ses # arguments ? sub tryLinkUp { my $self=shift; my $ev=shift; return 0; } # Tous les contenants doivent-ils avoir un contenu ? # Non pour lwp/utid, oui pour proc/lwp sub forceLinkDown { my $self=shift; my $ev=shift; return 0; } sub _chain { my $self=shift; my $id=shift; if (scalar @_ == 1) { my $chain=shift; if (not defined($chain)) { delete $self->{__PACKAGE__ . ".chains"}->{$id}; } else { $self->{__PACKAGE__ . ".chains"}->{$id}=$chain; } return $chain; } if (not defined($self->{__PACKAGE__ . ".chains"}->{$id})) { my @chain=(); $self->{__PACKAGE__ . ".chains"}->{$id}=\@chain; } return $self->{__PACKAGE__ . ".chains"}->{$id}; } sub chainUp { my $self=shift; # my $cle=shift; # my $list_to_set=shift; return $self->_chain(@_); } sub chainDown { my $self=shift; return $self->_chain(@_); } sub retain { my $self=shift; my $ev=shift; my $chain=shift; push @{$chain}, $ev; } sub retainUp { my $self=shift; my $ev=shift; my $chain=shift; $self->retain($ev, $chain); } sub retainDown { my $self=shift; my $ev=shift; my $chain=shift; $self->retain($ev, $chain); } # À la fin du flot, on valide les événements des chains sub endRead { my $self=shift; my $chain; foreach $chain (keys %{$self->{__PACKAGE__ . ".chains"}}) { my $event; foreach $event (@{$self->chainUp($chain)}) { $self->validate($event); } $self->chainUp($chain, undef); } } sub link { # On doit lier les entités up et down my $self=shift; my $down=shift; my $up=shift; # On récupère les entités actuelles sur up et down my $oldDown=$up->scheduled($self); my $oldUp=$down->scheduling($self); # On vérifie qu'elles étaient absentes ou qu'elles correspondent aux nouvelles if (defined($oldDown) && $oldDown != $down) { print "Arghhh down\n"; } if (defined($oldUp) && $oldUp != $up) { print "Arghhh up\n"; } # On enregistre les nouvelles $up->scheduled($self, $down); $down->scheduling($self, $up); if (not defined($oldUp)) { # Le contenant n'avait pas de contenu : c'est un vrai événement liant # On récupère la liste des événements survenus dans le contenant auparavant # et on les rattache au contenu actuel my $chain=$self->chainDown($down); my $event; foreach $event (@{$chain}) { $self->up($event, $up); $self->validate($event); } # On détruit la liste des événements du contenant $self->chainDown($down, undef); } if (not defined($oldDown)) { # Le contenu n'avait pas de contenant : c'est un vrai événement liant # On récupère la liste des événements survenus dans le contenu auparavant # et on les rattache au contenant actuel my $chain=$self->chainUp($up); my $event; foreach $event (@{$chain}) { $self->down($event, $down); $self->validate($event); } # On détruit la liste des événements du contenu $self->chainUp($up, undef); } } sub manageSwTo { my $self=shift; my $ev=shift; my $down=shift; my $up=shift; if ($self->isGiveHand($ev)) { # C'est un changement de context # on récupère la liste des événements dans ce contenu # qui sont encore sans contenant my $chain=$self->chainUp($up); # up n'a plus la main $up->scheduled($self, undef); # ni donc de liste d'événements associée $self->chainUp($up, undef); if (defined($down)) { # Si on connait le contenant, il n'ordonnance plus le contenu $down->scheduling($self, undef); } # On veut le prochain contenu # On récupère l'argument qui doit être le GET_HAND correspondant # (sauf si c'est la fin et que personne ne prend la main) my $next=Event::infos($ev); if (defined($next)) { # On récupère le contenu suivant my $newUp=Event::IdEmit($next); if (!UNIVERSAL::isa($newUp, 'Schedulable')) { # l'argument de GIVE_HAND doit être positionné correctement # Au début, c'est seulement l'ID (une chaine ou un nombre), # après c'est une référence sur la structure perl # Les GIVE/GET HAND étant au même tick, il suffit d'attendre la fin # des événements de ce tick die ("Link between GIVE/GET_HAND not up-to-date\n". "\t\t=> Try to add ColEvTimeWait before ".ref($self)."\n"); } # le nouveau contenu est ordonnancé dans le contenant # (éventuellement UNDEF si il n'est pas encore connu) $newUp->scheduled($self, $down); # et on réenregistre la chaine des événements sans contenant $self->chainUp($newUp, $chain); if (defined($down)) { # S'il y a un contenant, il possède maintenant un nouveau contenu $down->scheduling($self, $newUp); } } } } # Les événements à ignorer. Typiquement : # - les événements qui n'ont aucune des deux infos # - les événements factices (création/destruction) sub skipEv { my $self=shift; my $ev=shift; my $down=shift; my $up=shift; if (not (defined($up) or defined($down))) { return 1; } my $type=Event::type($ev); if (not Event::isRealEv($ev)) { return 1; } return 0; } sub readEv { my $self=shift; my $ev=$self->SUPER::readEv(); if (not defined($ev)) { # Plus d'événements ? On valide ce qui est en attente. $self->endRead(); return undef; } # On prend les deux entités à mettre en corrélation my $up=$self->up($ev); my $down=$self->down($ev); if ($self->skipEv($ev, $down, $up)) { # Aucune info, on passe $self->validate($ev); return $ev; } if (defined($up) && defined($down)) { # Les deux infos sont présentes. # On lie les deux entités (plutôt on vérifie que c'est cohérent) $self->link($down, $up); # On valide si nécessaire $self->validate($ev); # On traite le SwTo si besoin $self->manageSwTo($ev, $down, $up); return $ev; } if (defined($up)) { # $down est non défini. On essaye de récupérer la valeur ailleurs $down=$up->scheduled($self); if (defined($down)) { $self->link($down, $up); $self->down($ev, $down); $self->validate($ev); } elsif ($self->tryLinkUp($ev)) { $down=$self->down($ev); $self->link($down, $up); $self->validate($ev); } else { my $chain=$self->chainUp($up); $self->retainUp($ev, $chain); } $self->manageSwTo($ev, $up->scheduled($self), $up); } else { # $up est non défini. On essaye de récupérer la valeur ailleurs $up=$down->scheduling($self); if (defined($up)) { $self->link($down, $up); $self->up($ev, $up); $self->validate($ev); } elsif ($self->tryLinkDown($ev)) { $up=$self->up($ev); $self->link($down, $up); $self->validate($ev); } elsif ($self->forceLinkDown($ev)) { my $chain=$self->chainDown($down); $self->retainDown($ev, $chain); } else { $self->validate($ev); } } return $ev; } ########################################################################## package ColEvFusionKU; use base 'ColEvFusion'; sub _init { my $self=shift; my %utids=(); $self->SUPER::_init(@_, (__PACKAGE__ . ".utids") => \%utids); } sub up { my $self=shift; #my $ev=shift; #my $value=shift; return Event::utid(@_); } sub down { my $self=shift; return Event::lwp(@_); } sub chainUp { my $self=shift; my $id=shift; if (scalar @_ == 1) { my $chain=shift; if (not defined($chain)) { delete $self->{__PACKAGE__ . ".utids"}->{$id}; } else { $self->{__PACKAGE__ . ".utids"}->{$id}=$id; } return $self->SUPER::chainUp($id, $chain); } $self->{__PACKAGE__ . ".utids"}->{$id}=$id; return $self->SUPER::chainUp($id); } sub tryLinkDown { my $self=shift; my $ev=shift; my $id=Event::idFromUserFork($ev); if (defined($id)) { my $utid; foreach $utid (values %{$self->{__PACKAGE__ . ".utids"}}) { if ($utid->id() eq $id) { Event::utid($ev, $utid); return 1; } } print "Nothing for $id\n"; } return 0; } sub isGiveHand { my $self=shift; my $ev=shift; return Event::UT_GIVE_HAND == Event::type($ev); } ########################################################################## package ColEvFusionK; use base 'ColEvFusion'; sub up { my $self=shift; return Event::lwp(@_); } sub down { my $self=shift; return Event::proc(@_); } sub forceLinkDown { my $self=shift; my $ev=shift; return 1; } sub isGiveHand { my $self=shift; my $ev=shift; return Event::LWP_GIVE_HAND == Event::type($ev); } ########################################################################## ########################################################################## ########################################################################## ########################################################################## ########################################################################## ########################################################################## ########################################################################## # Entités # package Entity; sub new { my $this = shift; my $class = ref($this) || $this; my $self = {}; bless $self, $class; $self->_init(@_); return $self; } sub _init { my $self=shift; my %col=(); $self->{__PACKAGE__ . ".hash"} = \%col; if (scalar(@_) % 2) { die "Entity"; } if (@_) { my %extra = @_; @$self{keys %extra} = values %extra; } } sub name { my $self=shift; #my $old=$ev->{__PACKAGE__ . ".name"}; if (scalar @_ == 1) { $self->{__PACKAGE__ . ".name"}=$_[0]; } if (defined($self->{__PACKAGE__ . ".name"})) { return $self->{__PACKAGE__ . ".name"}; } return undef; } sub getName { my $self=shift; my $name=$self->name(@_); if (!defined($name)) { return "no name"; } return $name; } sub Name { my $self=shift; return $self->getName(); } sub info { my $self=shift; my $name=shift; my $key=shift; if (scalar @_ == 1) { my $value=shift; if (defined($value)) { $self->{__PACKAGE__ . ".info"}->{$name}->{$key}=$value; } else { if (defined($self->{__PACKAGE__ . ".info"}->{$name}) && defined($self->{__PACKAGE__ . ".info"}->{$name}->{$key})) { delete($self->{__PACKAGE__ . ".info"}->{$name}->{$key}); } } return $value; } if (defined($self->{__PACKAGE__ . ".info"}->{$name}) && defined($self->{__PACKAGE__ . ".info"}->{$name}->{$key})) { return $self->{__PACKAGE__ . ".info"}->{$name}->{$key}; } return undef; } ########################################################################## # Entités avec identificateur # package EntityId; use base 'Entity'; sub _init { my $self=shift; my $id=shift; $self->SUPER::_init(@_, (__PACKAGE__ . ".id") => $id); } sub id { my $self=shift; return $self->{__PACKAGE__ . ".id"}; } sub idName { my $self=shift; return $self->prefix().$self->id(); } sub prefix { my $self=shift; return ""; } sub getName { my $self=shift; my $name=$self->name(@_); if (!defined($name)) { return $self->idName(); } return $name; } package EntityTimed; use base 'EntityId'; sub _init { my $self=shift; $self->SUPER::_init(@_, (__PACKAGE__ . ".startEv") => undef, (__PACKAGE__ . ".endEv") => undef); } sub startEv { my $self=shift; if (scalar @_ == 1) { $self->{__PACKAGE__ . ".startEv"}=$_[0]; } return $self->{__PACKAGE__ . ".startEv"}; } sub endEv { my $self=shift; if (scalar @_ == 1) { $self->{__PACKAGE__ . ".endEv"}=$_[0]; } return $self->{__PACKAGE__ . ".endEv"}; } package Scheduler; sub scheduling { my $self=shift; my $obj=shift; if (scalar @_ == 1) { $self->{__PACKAGE__ . ".schedule"}->{$obj}=$_[0]; } if (defined($self->{__PACKAGE__ . ".schedule"})) { if (defined($self->{__PACKAGE__ . ".schedule"}->{$obj})) { return $self->{__PACKAGE__ . ".schedule"}->{$obj}; } } return undef; } sub scheduleClean { my $self=shift; my $obj=shift; if (defined($self->{__PACKAGE__ . ".schedule"})) { delete $self->{__PACKAGE__ . ".schedule"}->{$obj}; } } package Schedulable; sub scheduled { my $self=shift; my $obj=shift; if (scalar @_ == 1) { #print "Setting scheduled($obj) $_[0]\n"; $self->{__PACKAGE__ . ".scheduler"}->{$obj}=$_[0]; } if (defined($self->{__PACKAGE__ . ".scheduler"})) { if (defined($self->{__PACKAGE__ . ".scheduler"}->{$obj})) { #print "Retuning scheduled($obj) ".$self->{__PACKAGE__ . ".scheduler"}->{$obj}."\n"; return $self->{__PACKAGE__ . ".scheduler"}->{$obj}; } } return undef; } sub scheduler { my $self=shift; my $obj=shift; if (scalar @_ == 1) { $self->{__PACKAGE__ . ".scheduler"}->{$obj}=$_[0]; } if (defined($self->{__PACKAGE__ . ".scheduler"})) { if (defined($self->{__PACKAGE__ . ".scheduler"}->{$obj})) { return $self->{__PACKAGE__ . ".scheduler"}->{$obj}; } } return undef; } sub schedulerClean { my $self=shift; my $obj=shift; if (defined($self->{__PACKAGE__ . ".scheduler"})) { delete $self->{__PACKAGE__ . ".scheduler"}->{$obj}; } } ########################################################################## # Entités processeurs # package EntityProc; use base qw(EntityTimed Scheduler); sub prefix { my $self=shift; return "Proc"; } ########################################################################## # Entités LWP # package EntityLwp; use base qw(EntityTimed Schedulable Scheduler); sub prefix { my $self=shift; return "Lwp"; } ########################################################################## # Entités Thread Utilisateurs # package EntityUtid; use base qw(EntityTimed Schedulable); sub prefix { my $self=shift; return "Ut"; } ########################################################################## # Collections d'objects # package Collection; use base 'ClassOrig'; sub new { my $this = shift; my $class = ref($this) || $this; my $self = {}; bless $self, $class; $self->_init(@_); return $self; } sub _init { my $self=shift; my %col=(); $self->{__PACKAGE__ . ".hash"} = \%col; if (scalar(@_) % 2) { die "Collection"; } if (@_) { my %extra = @_; @$self{keys %extra} = values %extra; } } sub _getCol { my $self=shift; return $self->{__PACKAGE__ . ".hash"}; } sub getFromId { my $self=shift; my $id=shift; if (exists($self->_getCol()->{$id})) { return $self->_getCol()->{$id}; } return undef; } sub createId { my $self=shift; my $id=shift; my $entity=$self->createEntityFromId($id); my @info=($entity); # Création d'une entité my $ev=Event::CreateEvent("Event", $self->orig(), undef, undef, undef, undef, $self->createEvType(), \@info ); $entity->startEv($ev); $self->setEventEntity($ev, $entity); $self->_getCol()->{$id}=$entity; my @evs=($ev); return @evs; } sub deleteId { my $self=shift; my $id=shift; my $entity=$self->getFromId($id); my @evs=$self->deleteEntity($entity); my @info=($entity); # Destruction d'une entité my $ev=Event::CreateEvent("Event", $self->orig(), undef, undef, undef, undef, $self->deleteEvType(), \@info ); $entity->endEv($ev); $self->setEventEntity($ev, $entity); delete $self->_getCol()->{$id}; push @evs, $ev; return @evs; } sub getAllIds { my $self=shift; return keys (%{$self->_getCol()}); } sub deleteEntity { my $self=shift; my $entity=shift; return (); } ########################################################################## # Collections de processeurs # package ColProc; use base 'Collection'; sub readIdFromScratchEv { my $self=shift; my $ev=shift; return Event::proc($ev); } sub createEntityFromId { my $self=shift; my $id=shift; return EntityProc->new($id); } sub createEvType { my $self=shift; return Event::CREATE_PROC; } sub deleteEvType { my $self=shift; return Event::DESTROY_PROC; } sub setEventEntity { my $self=shift; my $ev=shift; my $entity=shift; return Event::proc($ev, $entity); } ########################################################################## # Collections de lwps # package ColLwp; use base 'Collection'; sub readIdFromScratchEv { my $self=shift; my $ev=shift; return Event::lwp($ev); } sub createEntityFromId { my $self=shift; my $id=shift; return EntityLwp->new($id); } sub createEvType { my $self=shift; return Event::CREATE_LWP; } sub deleteEvType { my $self=shift; return Event::DESTROY_LWP; } sub setEventEntity { my $self=shift; my $ev=shift; my $entity=shift; return Event::lwp($ev, $entity); } ########################################################################## # Collections de utid # package ColUtid; use base 'Collection'; sub readIdFromScratchEv { my $self=shift; my $ev=shift; return Event::utid($ev); } sub createEntityFromId { my $self=shift; my $id=shift; return EntityUtid->new($id); } sub createEvType { my $self=shift; return Event::CREATE_UT; } sub deleteEvType { my $self=shift; return Event::DESTROY_UT; } sub setEventEntity { my $self=shift; my $ev=shift; my $entity=shift; return Event::utid($ev, $entity); } ################################################################ ################################################################ ################################################################ package Paje; use constant SetLimits => 0; use constant DefineContainerType => 1; use constant DefineEventType => 2; use constant DefineStateType => 3; use constant DefineVariableType => 4; use constant DefineLinkType => 5; use constant DefineEntityValue => 6; use constant CreateContainer => 7; use constant DestroyContainer => 8; use constant NewEvent => 9; use constant SetState => 10; use constant PushState => 11; use constant PopState => 12; use constant SetVariable => 13; use constant AddVariable => 14; use constant SubVariable => 15; use constant StartLink => 16; use constant EndLink => 17; ################################################################ # Génération d'une trace paje sub Entete { # TODO: Paje # my($first_date)=SuperTrace::DateStart(); # my($end_date)=SuperTrace::DateEnd(); my($first_date)=0; print '%EventDef SetLimits '.SetLimits."\n". '% Time date'."\n". '% StartTime date'."\n". '% EndTime date'."\n". '%EndEventDef'."\n". '%EventDef PajeDefineContainerType '.DefineContainerType."\n". '% Time date'."\n". '% NewType string'."\n". '% ContainerType string'."\n". '% NewName string'."\n". '%EndEventDef'."\n". '%EventDef PajeDefineEventType '.DefineEventType."\n". '% Time date'."\n". '% NewType string'."\n". '% ContainerType string'."\n". '% NewName string'."\n". '%EndEventDef'."\n". '%EventDef PajeDefineStateType '.DefineStateType."\n". '% Time date'."\n". '% NewType string'."\n". '% ContainerType string'."\n". '% NewName string'."\n". '%EndEventDef'."\n". '%EventDef PajeDefineVariableType '.DefineVariableType."\n". '% Time date'."\n". '% NewType string'."\n". '% ContainerType string'."\n". '% NewName string'."\n". '%EndEventDef'."\n". '%EventDef PajeDefineLinkType '.DefineLinkType."\n". '% Time date'."\n". '% NewType string'."\n". '% ContainerType string'."\n". '% SourceContainerType string'."\n". '% DestContainerType string'."\n". '% NewName string'."\n". '%EndEventDef'."\n". '%EventDef PajeDefineEntityValue '.DefineEntityValue."\n". '% Time date'."\n". '% NewValue string'."\n". '% EntityType string'."\n". '% NewName string'."\n". '% Color color'."\n". '%EndEventDef'."\n". '%EventDef PajeCreateContainer '.CreateContainer."\n". '% Time date'."\n". '% NewContainer string'."\n". '% NewContainerType string'."\n". '% Container string'."\n". '% NewName string'."\n". '%EndEventDef'."\n". '%EventDef PajeDestroyContainer '.DestroyContainer."\n". '% Time date'."\n". '% Container string'."\n". '% Type string'."\n". '%EndEventDef'."\n". '%EventDef PajeNewEvent '.NewEvent."\n". '% Time date'."\n". '% EntityType string'."\n". '% Container string'."\n". '% Value string'."\n". '%EndEventDef'."\n". '%EventDef PajeSetState '.SetState."\n". '% Time date'."\n". '% EntityType string'."\n". '% Container string'."\n". '% Value string'."\n". '%EndEventDef'."\n". '%EventDef PajePushState '.PushState."\n". '% Time date'."\n". '% EntityType string'."\n". '% Container string'."\n". '% Value string'."\n". '%EndEventDef'."\n". '%EventDef PajePopState '.PopState."\n". '% Time date'."\n". '% EntityType string'."\n". '% Container string'."\n". '%EndEventDef'."\n". '%EventDef PajeSetVariable '.SetVariable."\n". '% Time date'."\n". '% EntityType string'."\n". '% Container string'."\n". '% Value double'."\n". '%EndEventDef'."\n". '%EventDef PajeAddVariable '.AddVariable."\n". '% Time date'."\n". '% EntityType string'."\n". '% Container string'."\n". '% Value double'."\n". '%EndEventDef'."\n". '%EventDef PajeSubVariable '.SubVariable."\n". '% Time date'."\n". '% EntityType string'."\n". '% Container string'."\n". '% Value double'."\n". '%EndEventDef'."\n". '%EventDef PajeStartLink '.StartLink."\n". '% Time date'."\n". '% EntityType string'."\n". '% Container string'."\n". '% Value string'."\n". '% SourceContainer string'."\n". '% Key string'."\n". '%EndEventDef'."\n". '%EventDef PajeEndLink '.EndLink."\n". '% Time date'."\n". '% EntityType string'."\n". '% Container string'."\n". '% Value string'."\n". '% DestContainer string'."\n". '% Key string'."\n". '%EndEventDef'."\n"; # TODO: Paje # Print(0,$first_date,$first_date." ".($end_date+1)); Print(1,$first_date,"PRG\t0\tProgramme"); Print(1,$first_date,"UV\tPRG\t\"User Thread View\""); Print(1,$first_date,"LV\tPRG\t\"LWP View\""); Print(1,$first_date,"PV\tPRG\t\"Processor View\""); #paje_print(1,$first_date," UTV_UT\t\tUTV\tUser_Thread"); GroupRegister("UT", EventDef("U", 1, "UV\t\"User Thread\"", \&paje_event_create_u, \&paje_event_destroy_u), EventDef("LU", 3, "L\t\"Threads per LWP\"", \&paje_event_create_lu, \&paje_event_destroy_lu, "L"), EventDef("PU", 3, "P\t\"Threads per Processor\"", \&paje_event_create_pu, \&paje_event_destroy_pu, "P") ); GroupRegister("LWP", EventDef("L", 1, "LV\t\"LWP\"", \&paje_event_create_l, \&paje_event_destroy_l), EventDef("UL", 3, "U\t\"LWPs running Thread\"", \&paje_event_create_ul, \&paje_event_destroy_ul, "U"), EventDef("PL", 3, "P\t\"LWPs per Processor\"", \&paje_event_create_pl, \&paje_event_destroy_pl, "P") ); GroupRegister("PROC", EventDef("P", 1, "PV\t\"Processor\"", \&paje_event_create_p, \&paje_event_destroy_p), EventDef("UP", 3, "U\t\"Processors running Thread \"", \&paje_event_create_up, \&paje_event_destroy_up, "U"), EventDef("LP", 3, "L\t\"Processors running LWP \"", \&paje_event_create_lp, \&paje_event_destroy_lp, "L") ); GroupRegister("UF", EventDef("UF", 3, "U\tFunctions", \&paje_event_create_uf, \&paje_event_destroy_uf)); GroupRegister("UE", EventDef("UE", 2, "U\t\"Misc Events\"", \&paje_event_create_ue, \&paje_event_destroy_ue)); GroupPrint($first_date); #paje_print(3,$first_date,' UTV_UT_LWP UTV_UT LWP'); Print(7,$first_date,"PRG1\tPRG\t0\tProgramme"); Print(7,$first_date,"UV1\tUV\tPRG1\t\"User Thread View\""); Print(7,$first_date,"LV1\tLV\tPRG1\t\"LWP View\""); Print(7,$first_date,"PV1\tPV\tPRG1\t\"Processor View\""); #paje_print(6,$first_date,"ULnone\tUL\t\"Lwp Dummy\""); # '6 0.00220 R S Running'."\n". # '6 0.00230 B S Blocked'."\n". # '6 0.00220 F1 FUNC "function A"'."\n". # '6 0.00230 F2 FUNC "Function B"'."\n". # '7 0.10100 T1 UT UTV1 Thread_1'."\n". # "7 0.10100 T2 UT UTV1 Thread_2\n"; } my(%paje_groups)=(); ################################################################ # Paje : gestion collections générique #group #- groups # [name]-> # - name->[name] # - cles # [cle]->elem # - events # [name]->event # - nb_events # - count #- events # [name]->event # #event #- name #- master_type #- master_enddef #- sub_enddef_func_create (date, group, event, elem) #- sub_enddef_func_destroy (date, group, event, elem) #- depends #- master_printed # #elem #- id -> [paje_id] #- cle -> [cle] #- infos -> [infos] sub EventDef { my($name)=shift; my($master_type)=shift; my($master_enddef)=shift; my($sub_enddef_func_create)=shift; my($sub_enddef_func_destroy)=shift; my(@depends)=@_; my(%hash)=("name" => $name, "master_type" => $master_type, "master_enddef" => $master_enddef, "sub_enddef_func_create" => $sub_enddef_func_create, "sub_enddef_func_destroy" => $sub_enddef_func_destroy, "depends" => \@depends); return \%hash; } sub GroupRegister { my($name)=shift; my($event); if (defined($paje_groups{$name})) { print STDERR "paje group $name already exists\n"; } my(%empty_hash,%eh2); $paje_groups{"groups"}{$name}{"cles"}=\%empty_hash; $paje_groups{"groups"}{$name}{"name"}=$name; for $event (@_) { my($evname)=$event->{"name"}; if (defined($paje_groups{"events"}{$evname})) { print STDERR "Event $evname already defined\n"; } $paje_groups{"events"}{$evname}=$event; $paje_groups{"groups"}{$name}{"events"}{$evname}=$event; $event->{"group"}=$paje_groups{"groups"}{$name}; } $paje_groups{"groups"}{$name}{"nb_events"}= scalar (keys %{$paje_groups{"groups"}{$name}{"events"}}); $paje_groups{"groups"}{$name}{"count"}=0; } sub GroupPrint { my($date)=shift; my($paje_event_print_master); $paje_event_print_master=sub { my($event)=shift; if (defined($event->{"master_printed"})) { return; } $event->{"master_printed"}=1; my($dep_event); for $dep_event (@{$event->{"depends"}}) { $paje_event_print_master->($paje_groups{"events"}{$dep_event}); } Print($event->{"master_type"}, $date, $event->{"name"}."\t".$event->{"master_enddef"}); }; my($event); for $event (values %{$paje_groups{"events"}}) { $paje_event_print_master->($event); } } sub paje_group_find { my($group)=shift; if (defined($paje_groups{"groups"}{$group})) { return $paje_groups{"groups"}{$group}; } print STDERR "No group for $group\n"; } sub paje_group_get_event { my($group)=shift; my($event_name)=shift; if (!defined($event_name)) { if ($group->{"nb_events"}==1) { print STDERR "Auto event in group ",$group->{"name"},"\n"; die "toto"; } $event_name=$group->{"name"}; } if (!defined($group->{"events"}{$event_name})) { print STDERR "No event $event_name in group ",$group->{"name"},"\n"; die; } return $group->{"events"}{$event_name}; } sub paje_group_get_elem { my($group)=shift; my($cle)=shift; if (!defined($group->{"cles"}{$cle})) { print STDERR "No cle $cle in group ",$group->{"name"},"\n"; } return $group->{"cles"}{$cle}; } sub paje_group_get_id { my($gr)=paje_group_find(shift); my($event)=paje_group_get_event($gr, shift); my($cle)=shift; my($date)=shift; my($infos)=shift; if (!defined($cle)) { die "toto"; } ; if (defined($gr->{"cles"}->{$cle})) { return $event->{"name"}.$gr->{"cles"}->{$cle}->{"id"}; } my($elem)=paje_group_create($gr->{"name"}, $cle, $date, $infos); return $event->{"name"}.$elem->{"id"}; } sub paje_group_get { my($group)=shift; my($info)=shift; my($gr)=paje_group_find($group); if (defined($gr->{$info})) { return $gr->{$info}; } print STDERR "No info $info for group $group\n"; return; } sub paje_group_create { my($gr)=paje_group_find(shift); my($cle)=shift; my($date)=shift; my($infos)=shift; # if ($cle == 3221158976) { # die; # } if (defined($gr->{"cles"}->{$cle})) { die ("Cle $cle already exist in group ".$gr->{"name"}); } my($id)=++($gr->{"count"}); my(%new_hash)=("id" => $id, "cle" => $cle, "infos" => $infos); $gr->{"cles"}->{$cle}=\%new_hash; my($sub_event); for $sub_event (values %{$gr->{"events"}}) { ($sub_event->{"sub_enddef_func_create"})-> ($date, $gr, $sub_event, \%new_hash); } return \%new_hash; } sub paje_group_destroy { my($gr)=paje_group_find(shift); my($cle)=shift; my($elem)=paje_group_get_elem($gr, $cle); my($date)=shift; my($infos)=shift; # if ($cle == 3221158976) { # die; # } my($sub_event); for $sub_event (reverse (values %{$gr->{"events"}})) { ($sub_event->{"sub_enddef_func_destroy"})-> ($date, $gr, $sub_event, $elem); } delete ($gr->{"cles"}->{$cle}); } my $color=' "1 1 0"'; ################################################################ # Paje : gestion événements utilisateurs sub paje_event_create_ue { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(DefineEntityValue, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}.' "'.$elem->{"infos"}.'"'.$color); } sub paje_event_destroy_ue { } sub paje_event_create_id { my($group)=shift; my($cle)=shift; my($date)=shift; my($id)=shift; my($gr)=paje_group_find($group); Print($gr->{"type"}, $date, $gr->{"prefix"}.$id. " ".$gr->{"type_name"}.' "'. $gr->{"cles"}->{$cle}->{"infos"}.'"'); } sub paje_event_destroy_id { } sub paje_event_gen { my($date)= shift; my($utid)= shift; my($event)= shift; if (defined($utid)) { my($id)=paje_group_get_id("UE", "UE", "none", $date, $event); my($tid)=paje_group_get_id("UT", "U", $utid->Name, $date); Print(10,$date,"UE $tid $id"); paje_group_destroy("UE", "none"); } } ################################################################ # Paje : gestion threads utilisateurs sub paje_event_create_u { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(CreateContainer, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}.' UV1 "'.$elem->{"cle"}.'"'); } sub paje_event_destroy_u { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(DestroyContainer, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}); } sub paje_event_create_lu { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(DefineEntityValue, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}.' "'.$elem->{"cle"}.'"'.$color); } sub paje_event_destroy_lu { } sub paje_event_create_pu { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(DefineEntityValue, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}.' "'.$elem->{"cle"}.'"'.$color); } sub paje_event_destroy_pu { } sub paje_event_create_l { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(CreateContainer, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}.' LV1 "'.$elem->{"cle"}.'"'); } sub paje_event_destroy_l { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(DestroyContainer, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}); } sub paje_event_create_ul { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(DefineEntityValue, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}.' "'.$elem->{"cle"}.'"'.$color); } sub paje_event_destroy_ul { } sub paje_event_create_pl { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(DefineEntityValue, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}.' "'.$elem->{"cle"}.'"'.$color); } sub paje_event_destroy_pl { } sub paje_event_create_p { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(CreateContainer, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}.' PV1 "'.$elem->{"cle"}.'"'); } sub paje_event_destroy_p { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(DestroyContainer, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}); } sub paje_event_create_up { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(DefineEntityValue, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}.' "'.$elem->{"cle"}.'"'.$color); } sub paje_event_destroy_up { } sub paje_event_create_lp { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; Print(DefineEntityValue, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}.' "'.$elem->{"cle"}.'"'.$color); } sub paje_event_destroy_lp { } sub paje_ut_register { my($date)=shift; my($utid)=shift; my($id)=paje_group_create("UT", $utid->Name, $date); } sub paje_ut_unregister { my($date)=shift; my($utid)=shift; my($id)=paje_group_destroy("UT", $utid->Name, $date); } sub paje_lwp_register { my($date)=shift; my($lwp)=shift; my($id)=paje_group_create("LWP", $lwp->Name, $date); } sub paje_lwp_unregister { my($date)=shift; my($lwp)=shift; my($id)=paje_group_destroy("LWP", $lwp->Name, $date); } sub paje_proc_register { my($date)=shift; my($proc)=shift; my($id)=paje_group_create("PROC", $proc->Name, $date); } sub paje_proc_unregister { my($date)=shift; my($proc)=shift; my($id)=paje_group_destroy("PROC", $proc->Name, $date); } my($actif)=-1; sub paje_ut_get_hand { my($date)=shift; my($proc)=shift; my($act)=shift; my($lwp)=shift; my($utid)=shift; my($cuid)=paje_group_get_id("UT", "U", $utid->Name, $date); my($clid)=paje_group_get_id("LWP", "L", $lwp->Name, $date); my($cpid)=paje_group_get_id("PROC", "P", $proc->Name, $date); my($luid)=paje_group_get_id("UT", "LU", $utid->Name, $date); my($ulid)=paje_group_get_id("LWP", "UL", $lwp->Name, $date); my($puid)=paje_group_get_id("UT", "PU", $utid->Name, $date); my($upid)=paje_group_get_id("PROC","UP", $proc->Name, $date); Print(11,$date,"UL $cuid $ulid"); Print(11,$date,"LU $clid $luid"); Print(11,$date,"PU $cpid $puid"); Print(11,$date,"UP $cuid $upid"); } sub paje_ut_give_hand { my($date)=shift; my($proc)=shift; my($act)=shift; my($lwp)=shift; my($utid)=shift; my($cuid)=paje_group_get_id("UT", "U", $utid->Name, $date); my($clid)=paje_group_get_id("LWP", "L", $lwp->Name, $date); my($cpid)=paje_group_get_id("PROC", "P", $proc->Name, $date); Print(12,$date,"UL $cuid"); Print(12,$date,"LU $clid"); Print(12,$date,"PU $cpid"); Print(12,$date,"UP $cuid"); } sub paje_kt_get_hand { my($date)=shift; my($proc)=shift; my($act)=shift; my($lwp)=shift; my($utid)=shift; my($cuid); if (defined($utid)) { $cuid=paje_group_get_id("UT", "U", $utid->Name, $date); } my($clid)=paje_group_get_id("LWP", "L", $lwp->Name, $date); my($cpid)=paje_group_get_id("PROC", "P", $proc->Name, $date); my($lpid)=paje_group_get_id("PROC", "LP", $proc->Name, $date); my($plid)=paje_group_get_id("LWP", "PL", $lwp->Name, $date); my($puid); if (defined($utid)) { $puid=paje_group_get_id("UT", "PU", $utid->Name, $date); } my($upid)=paje_group_get_id("PROC","UP", $proc->Name, $date); Print(11,$date,"LP $clid $lpid"); Print(11,$date,"PL $cpid $plid"); if (defined($utid)) { Print(11,$date,"PU $cpid $puid"); Print(11,$date,"UP $cuid $upid"); } } sub paje_kt_give_hand { my($date)=shift; my($proc)=shift; my($act)=shift; my($lwp)=shift; my($utid)=shift; my($cuid); if (defined($utid)) { $cuid=paje_group_get_id("UT", "U", $utid->Name, $date); } my($clid)=paje_group_get_id("LWP", "L", $lwp->Name, $date); my($cpid)=paje_group_get_id("PROC", "P", $proc->Name, $date); Print(12,$date,"LP $clid"); Print(12,$date,"PL $cpid"); if (defined($utid)) { Print(12,$date,"PU $cpid"); Print(12,$date,"UP $cuid"); } } ################################################################ # Paje : gestion fonctions utilisateurs sub paje_event_create_uf { my($date)=shift; my($gr)=shift; my($event)=shift; my($elem)=shift; my($mycolor)=$color; $_=$elem->{"infos"}->[1]; if (/all_reduce/) { $mycolor=' "0.5 0 0"'; } elsif (/want_spinlock/) { $mycolor=' "1 0 0"'; } elsif (/have_spinlock/) { $mycolor=' "1 0 0"'; } elsif (/EnvoyerRecouvrement/) { $mycolor=' "1 0 0"'; } elsif (/RecevoirFantome/) { $mycolor=' "1 0 0"'; } elsif (/WaitEndComm/) { $mycolor=' "1 0 0"'; } Print(DefineEntityValue, $date, $event->{"name"}.$elem->{"id"}." ". $event->{"name"}.' '.$elem->{"infos"}->[1].$mycolor); } sub paje_function_enter { my($date)= shift; my($function)= shift; my($utid)= shift; my($infos)= shift; my($tid)=paje_group_get_id("UT", "U", $utid->Name, $date); my($fid)=paje_group_get_id("UF", "UF", $function, $date, $infos); Print(11,$date,"UF $tid $fid"); } sub paje_function_exit { my($date)= shift; my($function)= shift; my($utid)= shift; my($infos)= shift; my($tid)=paje_group_get_id("UT", "U", $utid->Name, $date); my($fid)=paje_group_get_id("UF", "UF", $function, $date, $infos); Print(12,$date,"UF $tid"); } ################################################################ my($last_date)=0; my($rand_delay)=0; use Math::BigInt lib => 'GMP'; sub Print { my($type) = shift; my($date) = shift; my($infos) = shift; my($pdate) = Math::BigInt->new(0); # TODO: Paje # if ($date < SuperTrace::DateStart()) { # $pdate = SuperTrace::DateStart(); # } else { $pdate += $date*1; # } my($cycle)=$pdate % 2657798000; my($s)=$pdate/2657798000; my($ns)=($cycle*1000000000) / 2657798000; #printf("%i $s.%09s %s\n", $type, $ns, $infos); printf("%i $date.0 %s\n", $type, $infos); } #sub Events { # SuperTrace::PajeEvents; #} sub Event { my($ev)=shift; my($date, $proc, $act, $lwp, $utid, $ev_type, $event_infos); $date=Event::date($ev); $proc=Event::proc($ev); $lwp=Event::lwp($ev); $utid=Event::utid($ev); $ev_type=Event::type($ev); $event_infos=Event::infos($ev); if ($ev_type==Event::UT_GIVE_HAND) { Paje::paje_ut_give_hand($date, $proc, undef, $lwp, $utid); } elsif ($ev_type==Event::UT_GET_HAND) { Paje::paje_ut_get_hand($date, $proc, undef, $lwp, $utid); } elsif ($ev_type==Event::LWP_GIVE_HAND) { Paje::paje_kt_give_hand($date, $proc, undef, $lwp, $utid); } elsif ($ev_type==Event::LWP_GET_HAND) { Paje::paje_kt_get_hand($date, $proc, undef, $lwp, $utid); } elsif ($ev_type==Event::FUT || $ev_type==Event::FKT) { my @ev=@{$event_infos}; #splice(@ev,0,5); if ($ev[0] =~ /gcc-traced function/) { $ev[1] =~ s/No symbol at //; if ($ev[0] =~ /entry/) { Paje::paje_function_enter($date, $ev[1], $utid, \@ev); } else { Paje::paje_function_exit($date, $ev[1], $utid, \@ev); } } else { Paje::paje_event_gen($date, $utid, join(' ', @ev)); } } elsif ($ev_type==Event::CREATE_PROC) { Paje::paje_proc_register($date, $proc); } elsif ($ev_type==Event::DESTROY_PROC) { Paje::paje_proc_unregister($date, $proc); } elsif ($ev_type==Event::CREATE_LWP) { Paje::paje_lwp_register($date, $lwp); } elsif ($ev_type==Event::DESTROY_LWP) { Paje::paje_lwp_unregister($date, $lwp); } elsif ($ev_type==Event::CREATE_UT) { my @ev=(undef, "Existing"); Paje::paje_ut_register($date, $utid); Paje::paje_function_enter($date, "Existing", $utid, \@ev); } elsif ($ev_type==Event::DESTROY_UT) { my @ev=(undef, "Existing"); Paje::paje_function_exit($date, "Existing", $utid, \@ev); Paje::paje_ut_unregister($date, $utid); # } elsif (/UEV_FUNC_ENTER/) { # my($function)=$event_infos->{"function"}; # paje_function_enter($date, $function, $utid, $event_infos); # } elsif (/UEV_FUNC_EXIT/) { # my($function)=$event_infos->{"function"}; # paje_function_exit($date, $function, $utid, $event_infos); #my($fid)=paje_function_get_id($function, $date); #paje_print(6,$date,"$fid UE \"$event_infos\""); #paje_print(10,$date,"UE UTV_UT$utid $fid"); #paje_print(6,$date,"UE".++$nbev." UTV_UT_FUNC \"$event_infos\""); #paje_print(10,$date,"UTV_UT_FUNC UTV_UT$utid UTV_UT_E".$nbev); #__display_event($date, $proc, $act, $lwp, $utid, $event_infos); } elsif ($ev_type==Event::NOP) { } else { print STDERR "Unknown event type $ev_type\n"; #__display_event($date, $proc, $act, $lwp, $utid, # "Unknown event type $ev_type"); } } sub End { } package main; ################################################################ # FKT/FUT sub insert_fkt_event { my($date)=shift; my($proc)=shift; my($lwp)=shift; my($ev)=shift; # événement ensure_proc($date, $proc, $lwp) or print STDERR "Event on new proc $proc\n"; if ($lwp == 0) { $lwp = -$proc #IDLE processes } ensure_proc($date, $proc, $lwp) or print STDERR "Event on new proc $proc\n"; if ($ev->[5] eq "switch_to") { my($old_lwp)=proc_get_lwp($proc); insert_KSW($date, $old_lwp, $lwp, $proc); } elsif ($ev->[5] eq "user_fork") { my($utid)=$ev->[6]; $utid =~ s/,$//; ensure_lwp($date, $proc, $lwp, $utid, $utid); ensure_ut($date, $proc, get_lwp_by_num($lwp), $utid, $utid); } else { print STDERR "Ignoring ev $ev->[5]\n"; } } sub insert_fut_event { my($date)=shift; my($proc)=shift; my($utid)=shift; my($ev)=shift; # événement if ($ev->[5] eq "fut_switch_to") { insert_USW($date, $utid, $ev->[6], $proc); } elsif ($ev->[5] eq "user_fork") { my($utid)=$ev->[6]; $utid =~ s/,$//; my($lwp)=0; ensure_lwp($date, $proc, $lwp, $utid, $utid); ensure_ut($date, $proc, get_lwp_by_num($lwp), $utid, $utid); } elsif ($ev->[5] eq "gcc-traced") { } else { print STDERR "Ignoring ev $ev->[5]\n"; } } my($max_prefetch)=5; my($global_offset)=10; use Math::BigInt lib => 'GMP'; use sort 'stable'; my($fkt_print)="/home/vdanjean/travail/fkt/tools/fkt_print"; my($fut_print)="/home/vdanjean/travail/fkt/tools/fut_print"; sub input_from_fxt { my($user_traces)=shift; my($kernel_traces)=shift; my($user_basetime); my($kernel_basetime); my($basetime); my($user_offset); my($kernel_offset); open(FKT, "$fkt_print 2>/dev/null -f $kernel_traces |") or die "Unable to open $kernel_traces: $!\n"; open(FUT, "$fut_print 2>/dev/null -f $user_traces |") or die "Unable to open $user_traces: $!\n"; while() { chomp; if (/^initial: basetime ([0-9]+)$/) { $user_basetime = Math::BigInt->new($1); disp("User basetime : ", $user_basetime,"\n"); last; } } while() { chomp; if (/^initial: basetime ([0-9]+)$/) { $kernel_basetime = Math::BigInt->new($1); disp("Kernel basetime : ", $kernel_basetime, "\n"); last; } } while() { chomp; if (/^ *[0-9]+ +([0-9]+) +.* fkt_setup +[0-9a-fx]+,? +[0-9a-fx]+,? +[0-9a-fx]+,? +[0-9a-fx]+,? +([0-9a-fx]+)$/) { my($correction)=Math::BigInt->new($1); my($hi)=Math::BigInt->new(2**32 * $2); $kernel_basetime += $correction + $hi; # + $correction; disp("Kernel basetime corrected : ", $kernel_basetime, "\n"); last; } } if ($user_basetime < $kernel_basetime) { $basetime=$user_basetime; $user_offset=$global_offset; $kernel_offset=$kernel_basetime-$user_basetime+$global_offset; } else { $basetime=$kernel_basetime; $kernel_offset=$global_offset; $user_offset=$user_basetime-$kernel_basetime+$global_offset; } disp("Basetime: ", $basetime, " User offset: ", $user_offset, " Kernel offset: ", $kernel_offset, "\n"); my($read_user)=$max_prefetch; my($read_kernel)=$max_prefetch; my(@lines); my($last_time)=0; while(1) { while ($read_user>0 || $read_kernel>0) { my(@ligne); my($type); my($offset); if ($read_user>0) { $_=; if ((not $_) || ($_ eq "\n")) { $read_user=-($max_prefetch*2+10); next; } if (/^===/) { next; } $read_user--; $type="FUT_EV"; $offset=$user_offset; } elsif ($read_kernel>0) { $_=; if ((not $_) || ($_ eq "\n")) { $read_kernel=-($max_prefetch*2+10); next; } if (/^===/) { next; } $read_kernel--; $type="FKT_EV"; $offset=$kernel_offset; } else { last; } chomp; @ligne=split; $ligne[0]=$type; $ligne[1]+=$offset; @lines=sort { $a->[1] <=> $b->[1] } @lines, \@ligne; } my($ev); $ev=shift @lines; if (!defined($ev)) { last; } my $field; $debug && print "--------------------------------------------------\n"; $debug && print "Insert: "; for $field (@{$ev}) { $field =~ s/,$//; $debug && print $field, " "; } $debug && print "\n"; if ($ev->[0] eq "FUT_EV") { FxT::InsertFUT($ev->[1], $ev->[3], $ev); $read_user++; } elsif ($ev->[0] eq "FKT_EV") { FxT::InsertFKT($ev->[1], $ev->[2], $ev->[3], $ev); $read_kernel++; } else { print "Arghhh\n"; } } close(FUT); close(FKT); } ################################################################ # Programme principal use Getopt::Long qw(:config permute); use Pod::Usage; sub disp { print STDERR @_; return 0; my($info)=shift; while($info) { print STDERR $info; $info=shift; } } sub insert { $_=shift; chomp; $debug && print "--------------------------------------------------\n"; $debug && print "Insert: ",$_,"\n"; my @l=split; if ($l[0] eq "K") { FxT::InsertFKT($l[1], $l[2], $l[3], \@l); } else { FxT::InsertFUT($l[1], $l[3], \@l); } } sub input_test { insert("U 00 0 T01 fut_setup 0x7fffffff, 0, 2097152"); insert("K 10 2 1181 unknown switch_to _K1_"); insert("K 20 0 0 idle switch_to 457"); insert("K 30 1 460 klogd switch_to -1"); insert("K 40 2 _K1_ traces fkt_keychange 0x100000 0x24169980"); insert("U 50 0 T01 fut_new_lwp T01 0"); insert("K 60 0 457 syslogd switch_to 0"); insert("K 70 2 _K1_ traces user_fork T01 0"); insert("U 80 2 T01 fut_thread_birth T02"); insert("U 85 2 T01 fut_thread_birth T11"); insert("U 85 2 T01 fut_thread_birth T12"); insert("U 90 2 T01 fut_thread_birth T03"); insert("U 95 2 T01 fut_thread_birth T13"); insert("K 97 1 -1 traces switch_to _K2_"); insert("K 99 1 _K2_ traces user_fork T13"); insert("U 100 2 T01 fut_switch_to T02"); insert("U 110 2 T02 fut_switch_to T03"); insert("U 115 1 T13 fut_switch_to T12"); insert("U 120 2 T03 fut_switch_to T01"); insert("K 125 1 _K2_ traces switch_to TOTO"); insert("U 130 2 T01 fut_switch_to T02"); insert("U 140 2 T02 fut_switch_to T03"); insert("U 150 2 T03 fut_switch_to T01"); insert("K 155 0 0 traces switch_to _K2_"); insert("U 160 2 T01 fut_switch_to T02"); insert("U 170 2 T02 fut_switch_to T03"); insert("U 172 0 T13 event T13_a_encore_la_main"); insert("U 175 0 T12 fut_switch_to T11"); insert("U 180 2 T03 fut_switch_to T01"); insert("K 190 2 _K1_ traces switch_to 0"); } sub usage { print "Options\n", " --user trace_user\n", " --kernel trace_kernel\n", " --test : small predefined entries\n", " --dump : stop and show events before generating Paje traces\n", " --debug : full traces of execution\n", ""; } sub main { my($test, $dump)=(0,0); my($cache_size)=3; our($user_traces, $kernel_traces); GetOptions ("user=s" => \$user_traces, "kernel=s" => \$kernel_traces, "test" => \$test, "debug" => \$debug, "dump" => \$dump, "cache-size=i" => \$cache_size) || ( usage() , exit(1) ); my($colK)=ColEvInputTexteKernel->new(); $colK->addEvs ("10 2 1181 unknown switch_to _K1_", "20 0 0 idle switch_to 457", "40 2 _K1_ traces fkt_keychange 0x100000 0x24169980", "30 1 460 klogd switch_to -1", "60 0 457 syslogd switch_to 0", "70 2 _K1_ traces user_fork T01 0", "97 1 -1 traces switch_to _K2_", "99 1 _K2_ traces user_fork T13", "125 1 _K2_ traces switch_to TOTO", "155 0 0 traces switch_to _K2_", "210 2 _K1_ traces switch_to 0"); my($colU); if ($user_traces) { $colU=ColEvInputFxTprintUser->new($user_traces); } else { $colU=ColEvInputTexteUser->new(); $colU->addEvs ( "00 0 T01 fut_setup 0x7fffffff, 0, 2097152", "50 0 T01 fut_new_lwp T01 0", "68 x T01 fut_user_fork _K1_", "80 2 T01 fut_thread_birth T02", "85 2 T01 fut_thread_birth T11", "85 2 T01 fut_thread_birth T12", "90 2 T01 fut_thread_birth T03", "95 2 T01 fut_thread_birth T13", "98 X T13 fut_user_fork _K2_", "100 2 T01 fut_switch_to T02", "110 2 T02 fut_switch_to T03", "115 1 T13 fut_switch_to T12", "120 2 T03 fut_switch_to T01", "130 2 T01 fut_switch_to T02", "140 2 T02 fut_switch_to T03", "150 2 T03 fut_switch_to T01", "160 2 T01 fut_switch_to T02", "170 2 T02 fut_switch_to T03", "180 0 T13 event T13_a_encore_la_main", "185 0 T13 event T13_a_encore_la_main2", "190 0 T12 fut_switch_to T11", "200 2 T03 fut_switch_to T01", "220 2 T01 event Oh_encore_un_ev" ); } $colU=ColEvTimeSort->new($colU, $cache_size); $colK=ColEvTimeSort->new($colK, $cache_size); $colK=ColEvInsertEnd->new($colK, 0); $colU=ColEvInsertEnd->new($colU, 0); $colU=ColEvSwitchTo->new($colU); $colK=ColEvSwitchTo->new($colK); $colK=ColEvProc->new($colK, ColProc->new()); $colK=ColEvLwp->new($colK, ColLwp->new()); $colU=ColEvProc->new($colU, ColProc->new()); $colU=ColEvLwp->new($colU, ColLwp->new()); $colU=ColEvUtid->new($colU, ColUtid->new()); $colK=ColEvHandLwp->new($colK); #$colU=ColEvHandLwp->new($colU); $colU=ColEvHandUtid->new($colU); #$colK=ColEvSplit->new($colK); #$colU=ColEvFusion($colU, $colK->getSplited()); #$colU=ColEvFusion($colU, $colK); my($colEv); #$colEv=ColEvMerge->new($colU, $splitEv); $colEv=$colU; #$colEv=ColEvMerge->new($colU, $colK); $colEv=ColEvTimeWait->new($colEv); $colEv=ColEvFusionKU->new($colEv); #$colEv=$colK; #$colEv=ColEvTimeWait->new($colEv); $colEv=ColEvFusionK->new($colEv); $colEv=ColEvEntitySort->new($colEv); $colEv=ColEvHandLwp->new($colEv); $colEv=ColEvFusionK->new($colEv); if ($dump) { my($ev)=$colEv->getEv(); while (defined($ev)) { Event::Dump($ev); $ev=$colEv->getEv(); } } else { Paje::Entete(); my($ev)=$colEv->getEv(); while (defined($ev)) { #Event::Dump($ev); Paje::Event($ev); $ev=$colEv->getEv(); } Paje::End(); } } main(); fxt-0.3.15/tools/PaxHeaders/fut_setup.c0000644000000000000000000000013213636772401015012 xustar0030 mtime=1585181953.117148369 30 atime=1746715490.227509212 30 ctime=1746716504.735971219 fxt-0.3.15/tools/fut_setup.c0000644000175000017500000003352013636772401014503 0ustar00samysamy/* fut_setup.c */ /* * PM2: Parallel Multithreaded Machine * Copyright (C) 2001 "the PM2 team" (see AUTHORS file) * * 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. */ /* fut = Fast User Tracing */ #define CONFIG_FUT #include #include #include #include #include #include #include #include #ifndef __MINGW32__ #include #endif #include #include "fxt.h" #include "fut.h" #include "fxt-tools.h" #include "fxt_internal.h" //#include "pm2_fxt-tools.h" #ifdef MARCEL # include "sys/marcel_flags.h" #endif #define MAXCPUS 16 #define UNAMESTRLEN 256 /* active masks should never become negative numbers in order to prevent problems returning them as function results (they look like error codes!) */ #define FULL_ACTIVE_MASK 0x7fffffff /* 3 external ints */ /* set to non-zero when probing is active */ volatile unsigned int fut_active = 0; /* points to next unused byte in buffer (multiple of long) */ unsigned long * volatile fut_next_slot = NULL; /* points to byte at beginning of buffer */ unsigned long * volatile fut_first_slot = NULL; /* Gives the amount of data which has been filled */ size_t volatile fut_filled_slot = 0; #if FUT_USE_SPINLOCKS /* Protects the fut_*_slot pointers */ pthread_spinlock_t fut_slot_lock; #endif /* FUT_USE_SPINLOCKS */ fxt_t fut; static struct fxt_infos *fut_infos; /* points to a pair of regions of allocated buffer space, for double-buffering */ char *fut_bufptr[2]; int fut_curbuf; /* buffer currently in use */ /* number of contiguous allocated bytes pointed to by fut_bufptr */ uint64_t fut_nallocated = 0; /* filename of the output trace */ static char *fut_filename = NULL; /* file descriptor of the output trace */ static int fut_fd = -1; /* if !=0, activate the recording of thread id */ int record_tid_activated = 0; /* if !=0, activate automatic buffer dumping: when the buffer is full, it is dumped to disk. * This permits to record trace larger than the buffer, but this may kill the performance */ int allow_fut_flush = 0; pthread_mutex_t fut_flush_lock = PTHREAD_MUTEX_INITIALIZER; static int already_flushed = 0; void (*fut_flush_callback)(void) = NULL; void fut_set_filename(const char* filename) { pthread_mutex_lock(&fut_flush_lock); if(fut_filename) { if(already_flushed) /* Oops, we have already created the file, rename it */ if (rename(fut_filename, filename)) fprintf(stderr,"could not rename %s into %s: %s\nWas another FxT process perhaps also using %s, on this machine, or on another machine through a shared filesystem?\n", fut_filename, filename, strerror(errno), fut_filename); free(fut_filename); } fut_filename = strdup(filename); pthread_mutex_unlock(&fut_flush_lock); } void __fut_reset_pointers(void) { unsigned long *last0 = (unsigned long*) (fut_bufptr[0] + fut_nallocated + 1); unsigned long *last1 = (unsigned long*) (fut_bufptr[1] + fut_nallocated + 1); #if FUT_USE_SPINLOCKS pthread_spin_lock(&fut_slot_lock); #endif /* First, prevent writers from writing to either buffer */ if (last0 > last1) fut_next_slot = last0; else fut_next_slot = last1; wmb(); fut_curbuf = (fut_curbuf+1)%2; fut_first_slot = (unsigned long *)(fut_bufptr[fut_curbuf]); fut_filled_slot = 0; /* Now it's all set up, allow writers again */ wmb(); fut_next_slot = fut_first_slot; #if FUT_USE_SPINLOCKS pthread_spin_unlock(&fut_slot_lock); #endif } void dumptime( time_t *the_time, clock_t *the_jiffies) { #ifndef __MINGW32__ struct tms cur_time; #endif if( (*the_time = time(NULL)) == -1 ) perror("time"); #ifdef __MINGW32__ *the_jiffies = 0; #else if( (*the_jiffies = times(&cur_time)) == (clock_t) -1 ) perror("times"); #endif } /* activate the recording of thread id */ void fut_enable_tid_logging() { record_tid_activated = 1; } /* disactivate the recording of thread id */ void fut_disable_tid_logging() { record_tid_activated = 0; } /* activate automatic buffer dumping: when the buffer is full, it is dumped to disk. * This permits to record trace larger than the buffer, but this may kill the performance */ void enable_fut_flush() { allow_fut_flush = 1; } /* disactivate automatic buffer dumping */ void disable_fut_flush() { allow_fut_flush = 0; } /* called once to set up tracing. includes mallocing the buffer to hold the trace. returns number of bytes allocated if all ok, else a negative error code. */ int64_t fut_setup( uint64_t nlongs, unsigned int keymask, unsigned int threadid ) { uint64_t nbytes; unsigned long *iptr; /* paranoia, so nobody waits for us while we are in here */ fut_active = 0; fut = fxt_setinfos(FXT_SPACE_USER); fut_infos = fxt_infos(fut); /* remember pid of process that called setup */ fut_infos->record_pid = getpid(); if( fut_bufptr[0] != NULL ) {/* previous allocation region was not released, do it now */ free(fut_bufptr[0]); free(fut_bufptr[1]); /* nothing allocated now */ fut_bufptr[0] = NULL; fut_bufptr[1] = NULL; fut_nallocated = 0; } /* allocate buffer */ nbytes = nlongs * sizeof(long); /* force multiple of 4/8 bytes */ /* We make sure to have the buffers far apart, to avoid seeing pointer jump into the second buffer */ if( (fut_bufptr[0] = (char *)malloc(nbytes + FUT_SIZE(FXT_MAX_PARAMS) + 1)) == NULL ) return -ENOMEM; if( (fut_bufptr[1] = (char *)malloc(nbytes + FUT_SIZE(FXT_MAX_PARAMS) + 1)) == NULL ) { free(fut_bufptr[0]); return -ENOMEM; } fut_nallocated = nbytes; nlongs = nbytes / sizeof(long); /* We really touch memory to avoid valgrind's warning afterwards in * case the room actually used to store an event is not a multiple of * size(long), so that there could be some memory that is never * actually initialized. This also avoids page faults while tracing. */ memset(fut_bufptr[0], 0, nbytes); memset(fut_bufptr[1], 0, nbytes); __fut_reset_pointers(); dumptime(&fut_infos->start_time, &fut_infos->start_jiffies); #if FUT_USE_SPINLOCKS pthread_spin_init(&fut_slot_lock, 0); #endif fut_active = keymask & FULL_ACTIVE_MASK; FUT_PROBE1(FUT_GCC_INSTRUMENT_KEYMASK, FUT_GCC_INSTRUMENT_ENTRY_CODE, fut_setup); FUT_PROBE3(-1, FUT_SETUP_CODE, fut_active, threadid, nlongs); FUT_PROBE0(-1, FUT_CALIBRATE0_CODE); FUT_PROBE0(-1, FUT_CALIBRATE0_CODE); FUT_PROBE0(-1, FUT_CALIBRATE0_CODE); FUT_PROBE1(-1, FUT_CALIBRATE1_CODE, 1); FUT_PROBE1(-1, FUT_CALIBRATE1_CODE, 1); FUT_PROBE1(-1, FUT_CALIBRATE1_CODE, 1); FUT_PROBE2(-1, FUT_CALIBRATE2_CODE, 1, 2); FUT_PROBE2(-1, FUT_CALIBRATE2_CODE, 1, 2); FUT_PROBE2(-1, FUT_CALIBRATE2_CODE, 1, 2); if(allow_fut_flush) { pthread_mutex_init(&fut_flush_lock, NULL); } return nlongs; } int64_t fut_setup_flush_callback( uint64_t nlongs, unsigned int keymask, unsigned int threadid, void (*flush_callback)(void) ) { fut_flush_callback = flush_callback; return fut_setup(nlongs, keymask, threadid); } /* called repeatedly to restart tracing. returns previous value of fut_active if all ok, else a negative error code. */ int fut_keychange( int how, unsigned int keymask, unsigned int threadid ) { unsigned int old_active = fut_active; #if 0 FUT_PROBE1(FUT_GCC_INSTRUMENT_KEYMASK, FUT_GCC_INSTRUMENT_ENTRY_CODE, &fut_keychange); #endif if( fut_bufptr[0] == NULL ) return -EPERM; switch( how ) { case FUT_ENABLE: fut_active |= keymask & FULL_ACTIVE_MASK; break; case FUT_DISABLE: fut_active &= (~keymask) & FULL_ACTIVE_MASK; break; case FUT_SETMASK: fut_active = keymask & FULL_ACTIVE_MASK; break; default: return -EINVAL; } FUT_PROBE2(-1, FUT_KEYCHANGE_CODE, fut_active, threadid); #if 0 printf("Recording keychange %p\n", &fut_keychange); FUT_PROBE1(FUT_GCC_INSTRUMENT_KEYMASK, FUT_GCC_INSTRUMENT_EXIT_CODE, &fut_keychange); #endif return old_active; } /* called once when completely done with buffer. returns previous value of active if all ok, else a negative error code. */ int fut_done( void ) { unsigned int old_active = fut_active; fut_active = 0; if( fut_bufptr[0] != NULL ) {/* previous allocation region was not released, do it now */ free(fut_bufptr[0]); free(fut_bufptr[1]); fut_bufptr[0] = NULL; /* nothing allocated now */ fut_bufptr[1] = NULL; /* nothing allocated now */ fut_nallocated = 0; } return old_active; } /* called to reset tracing to refill the entire buffer again. returns number of bytes in buffer if all ok, else a negative error code. */ int64_t fut_reset( unsigned int keymask, unsigned int threadid ) { uint64_t nlongs; /* paranoia, so nobody waits for us while we are in here */ fut_active = 0; if( fut_bufptr[0] == NULL || fut_nallocated == 0 ) {/* buffer was never allocated, return error */ return -ENOMEM; } /* reset the buffer to completely empty */ __fut_reset_pointers(); fut_active = keymask & FULL_ACTIVE_MASK; nlongs = fut_nallocated / sizeof(long); FUT_PROBE3(-1, FUT_RESET_CODE, fut_active, threadid, nlongs); FUT_PROBE0(-1, FUT_CALIBRATE0_CODE); FUT_PROBE0(-1, FUT_CALIBRATE0_CODE); FUT_PROBE0(-1, FUT_CALIBRATE0_CODE); FUT_PROBE1(-1, FUT_CALIBRATE1_CODE, 1); FUT_PROBE1(-1, FUT_CALIBRATE1_CODE, 1); FUT_PROBE1(-1, FUT_CALIBRATE1_CODE, 1); FUT_PROBE2(-1, FUT_CALIBRATE2_CODE, 1, 2); FUT_PROBE2(-1, FUT_CALIBRATE2_CODE, 1, 2); FUT_PROBE2(-1, FUT_CALIBRATE2_CODE, 1, 2); return nlongs; } /* called repeatedly to copy current buffer into user space. returns nlongs >= 0 if all ok, else a negative error code. */ uint64_t fut_getbuffer( uint64_t *nlongs, unsigned long **buffer, unsigned long* first_slot, unsigned long *next_slot ) { uint64_t local_nlongs = 0; if( fut_bufptr[0] == NULL ) { local_nlongs = -EPERM; goto out; } /* get number of ints worth of trace data currently in the buffer */ local_nlongs = ((char *)next_slot - (char *) first_slot) / sizeof(long); if( nlongs != NULL ) *nlongs = local_nlongs; if( buffer != NULL ) *buffer = first_slot; out: return local_nlongs; } uint64_t fut_flush( const char* filename, void *first_slot, void* next_slot, int record_flush_events ) { uint64_t n=0; uint64_t nlongs = 0; size_t size; unsigned long *copy=NULL; static off_t begin = 0; dumptime(&fut_infos->stop_time,&fut_infos->stop_jiffies); if( (n = fut_getbuffer(&nlongs, ©, first_slot, next_slot)) < 0 ) return n; size = nlongs * sizeof(long); if(fut_fd == -1) { /* First time fut_flush is called. Open the output file and write headers */ if( fut_filename == NULL && filename ) fut_filename = strdup(filename); if( fut_filename == NULL ) fut_filename = strdup(DEFAULT_TRACE_FILE); /* we can't open the file using the O_NONBLOCK option since after a call to write * we are going to modify the buffer. If O_NONBLOCK is set, modifying the buffer while * the OS is writting it may corrupt the output trace. */ /* todo: implement a pipeline * see Alexandre DENIS. "A High Performance Superpipeline Protocol for InfiniBand" in * Proceedings of the 17th International Euro-Par Conference for instance */ if( (fut_fd = open(fut_filename, O_WRONLY|O_CREAT|O_TRUNC, 0666)) < 0 ) return fut_fd; already_flushed = 1; /* write header */ fxt_fdwrite(fut, fut_fd); /* begin a block of events */ fxt_fdevents_start(fut, fut_fd, FXT_TRACE_USER_RAW); if( (begin=lseek(fut_fd,0,SEEK_CUR)) < 0 ) { perror("getting block end seek"); exit(EXIT_FAILURE); } } fxt_trace_user_raw_t start_flush_event; if(record_flush_events) __fut_record_event(&start_flush_event, fut_getstamp(), FUT_CODE(FUT_START_FLUSH_CODE, 0)); /* dump the buffer to disk * since write syscall can write at most ~2GB of data (see NOTES of `man 2 write`), * we need to loop while whole buffer isn't flushed, if the buffer size if more than 2 GB. */ ssize_t written = 0; size_t total_written = 0; size_t to_write = size; do { written = write(fut_fd, (void *)copy + total_written, size - total_written); if( written < 0 ) { perror("write buffer"); } else { total_written += written; } } while(written >= 0 && total_written < size); fxt_trace_user_raw_t stop_flush_event; if(record_flush_events) { __fut_record_event(&stop_flush_event, fut_getstamp(), FUT_CODE(FUT_STOP_FLUSH_CODE, 0)); if( write(fut_fd, (void *)&start_flush_event, FUT_SIZE(0)) < 0 ) { perror("write buffer"); } if( write(fut_fd, (void *)&stop_flush_event, FUT_SIZE(0)) < 0 ) { perror("write buffer"); } } fut_infos->page_size = size; off_t end; if( (end=lseek(fut_fd,0,SEEK_CUR)) < 0 ) { perror("getting block end seek"); exit(EXIT_FAILURE); } /* Let's call fxt_fdevents_stop so that the data on disk is already correct. * if the program crashes and can't manage to call fut_endup, the trace * is still readable. */ fxt_fdevents_stop(fut, fut_fd); if( (lseek(fut_fd, end,SEEK_SET)) < 0 ) { perror("getting block end seek"); exit(EXIT_FAILURE); } return nlongs; } uint64_t fut_endup( const char *filename ) { /* stop all futher tracing */ fut_active = 0; allow_fut_flush = 0; /* dump the buffer to disk */ uint64_t nlongs = fut_flush(filename, fut_first_slot, fut_next_slot, 0); if(nlongs < 0) return nlongs; /* end a block of events */ fxt_fdevents_stop(fut, fut_fd); if( close(fut_fd) < 0 ) perror(fut_filename); fut_fd = -1; __fut_reset_pointers(); //fut_done(); // Removed by Raymond fut_active = 1; return nlongs; } fxt-0.3.15/tools/PaxHeaders/names.c0000644000000000000000000000013213636772401014077 xustar0030 mtime=1585181953.117148369 30 atime=1746715490.227509212 30 ctime=1746716504.729991317 fxt-0.3.15/tools/names.c0000644000175000017500000001730113636772401013567 0ustar00samysamy/* names.c names -- names of system calls, traps, irqs and functions Copyright (C) 2000, 2001 Robert D. Russell -- rdr@unh.edu 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ /***** 15-Oct-00 rdr modified for 2.4.0-test9 *****/ /* also commented out use of FKT_TCP_RECVMSG_SCHEDI_CODE */ #include #include #include #include #include #include #include "fxt.h" #include "fxt_internal.h" /* * IRQs */ #define LINE_SIZE 128 #ifndef WHITE_SPACE #define WHITE_SPACE " \t\n\f\v\r" #endif /* reads /proc/interrupts to find out the IRQ assignment on this machine */ /* also figures out number of CPUs */ int fkt_fill_irqs( fxt_t fxt ) { FILE *table; struct code_list_item *ptr; char *lptr, *xptr, line[LINE_SIZE], *name; unsigned int n, i, ncpus; fxt->nirqs = 0; ncpus = 0; if( (table = fopen("/proc/interrupts", "r")) == NULL ) { fprintf(stderr, "unable to open /proc/interrupts\n"); return -1; } /* first line of file is headers of form CPUn */ if( fgets(line, LINE_SIZE, table) == NULL ) { fprintf(stderr, "unable to read /proc/interrupts\n"); fclose(table); return -1; } for( lptr = line; strtok(lptr, WHITE_SPACE) != NULL; ncpus++ ) lptr = NULL; /* * not useful any more printf(" : ncpus %5u\n", ncpus); */ /* remaining lines of file are the IRQs */ while( fgets(line, LINE_SIZE, table) != NULL ) {/* build circular list with 1 item for each interrupt */ n = strtoul(line, &lptr, 10); /* scan off leading number */ if( *lptr != ':' ) /* which must end with : */ continue; /* or it is not an IRQ number */ ptr = (struct code_list_item *)malloc(sizeof(struct code_list_item)); ptr->code = n; /* scan over the interrupt counts, one per cpu, and controller type */ xptr = lptr; for( lptr++, i=0; i<=ncpus && (xptr = strtok(lptr, WHITE_SPACE))!=NULL; i++ ) lptr = NULL; /* get to the leading character of the interrupt name */ xptr += strlen(xptr) + 1; xptr += strspn(xptr, WHITE_SPACE); i = strlen(xptr); name = malloc(i); strncpy(name, xptr, i); name[i-1] = '\0'; ptr->name = name; if( fxt->irq_list == NULL ) ptr->link = ptr; else { ptr->link = fxt->irq_list->link; fxt->irq_list->link = ptr; } fxt->irq_list = ptr; /* printf(" irq %2u: %s\n", ptr->code, ptr->name); */ fxt->nirqs++; } /* printf(" : nirqs %4u\n", fxt->nirqs); printf(" : ncpus %4u\n", ncpus); */ fclose(table); if( (ptr = fxt->irq_list) != NULL ) {/* make circular list into singly-linked, NULL-terminated list */ fxt->irq_list = fxt->irq_list->link; ptr->link = NULL; } return 0; } int fkt_record_irqs(fxt_t fxt, int fd) { struct code_list_item *ptr; unsigned int i; write(fd, (void *)&fxt->nirqs, sizeof(fxt->nirqs)); write(fd, (void *)&fxt->infos.ncpus, sizeof(fxt->infos.ncpus)); for( ptr = fxt->irq_list; ptr != NULL; ptr = ptr->link ) { write(fd, (void *)&ptr->code, sizeof(ptr->code)); i = strlen(ptr->name)+1; write(fd, (void *)&i, sizeof(i)); i = (i + 3) & ~3; write(fd, ptr->name, i); } return 0; } int fkt_load_irqs( fxt_t fxt, FILE *fstream ) { struct code_list_item *ptr; unsigned int i, k, n; unsigned int ncpus; char *name; if( fread((void *)&fxt->nirqs, sizeof(fxt->nirqs), 1, fstream) <= 0 ) { perror("read nirqs"); return -1; } //printf("%14s = %u\n", "nirqs", fxt->nirqs); if( fread((void *)&ncpus, sizeof(ncpus), 1, fstream) <= 0 ) { perror("read ncpus"); return -1; } //printf("%14s = %u\n", "ncpus", ncpus); for( n = 0; n < fxt->nirqs; n++ ) {/* build circular list with 1 item for each interrupt */ ptr = (struct code_list_item *)malloc(sizeof(struct code_list_item)); fread((void *)&ptr->code, sizeof(ptr->code), 1, fstream); fread((void *)&i, sizeof(i), 1, fstream); k = (i + 3) & ~3; name = malloc(k); fread((void *)name, 1, k, fstream); name[i-1] = '\0'; ptr->name = name; if( fxt->irq_list == NULL ) ptr->link = ptr; else { ptr->link = fxt->irq_list->link; fxt->irq_list->link = ptr; } fxt->irq_list = ptr; //printf("irq %2llu: %s\n", ptr->code, ptr->name); } //printf("\n"); if( (ptr = fxt->irq_list) != NULL ) {/* make circular list into singly-linked, NULL-terminated list */ fxt->irq_list = fxt->irq_list->link; ptr->link = NULL; } return 0; } const char *fkt_find_irq( fxt_t fxt, unsigned long code ) { struct code_list_item *ptr; static char buf[32]; for( ptr = fxt->irq_list; ptr != NULL; ptr = ptr->link ) { if( ptr->code == code ) return ptr->name; } sprintf(buf,"unknown irq %lu",code); return buf; } /* * Traps, sysIRQs and syscalls */ const char *fkt_i386_traps[FKT_I386_NTRAPS] = { #include "fxt/trap_names.h" }; const char *fkt_i386_sysirqs[FKT_I386_NSYSIRQS] = { #include "fxt/sysirq_names.h" }; const char *fkt_i386_syscalls[FKT_I386_NSYSCALLS] = { #include "fxt/syscall_names.h" }; int fkt_find_syscall( fxt_t fxt, unsigned long code, char *category, const char **name, int *should_be_hex ) { int z; *should_be_hex = 0; if( code <= FKT_SYS_CALL_MASK ) if ( code == FKT_LCALL7 ) { z = 0x7; *should_be_hex = 1; *category = 'S'; *name = "lcall7"; } else if ( code == FKT_LCALL27 ) { z = 0x27; *should_be_hex = 1; *category = 'S'; *name = "lcall27"; } else {/* this is a true system call */ z = code; *should_be_hex = 1; *category = 'S'; *name = fkt_i386_syscalls[z]; } else if( code < FKT_TRAP_LIMIT_CODE ) {/* this is a trap */ z = code - FKT_TRAP_BASE; if( z > FKT_I386_NTRAPS-1 ) z = FKT_I386_NTRAPS-1; *category = 'T'; *name = fkt_i386_traps[z]; } else if ( code < FKT_IRQ_SYS ) {/* device IRQ */ z = code - FKT_IRQ_TIMER; *category = 'I'; *name = fkt_find_irq(fxt, z); } else {/* system IRQ */ z = code - FKT_IRQ_SYS; *should_be_hex = 1; *category = 'I'; *name = fkt_i386_sysirqs[z]; z += 0xef; } return z; } /* * kernel functions */ struct fxt_code_name fkt_code_table[] = { #include "fkt_code_name.h" {0, NULL} }; const char *fxt_find_name( fxt_t fxt, unsigned long code, int keep_entry, int maxlen, struct fxt_code_name *table) { struct fxt_code_name *ptr; static char local_buf[128]; const char *name=NULL; int len, elen; if (!table && fxt->infos.space == FXT_SPACE_KERNEL) table = fkt_code_table; if( code >= FKT_I386_FUNCTION_MINI ) name = fxt_lookup_symbol(fxt, code); else for( ptr = table; ptr->code != 0; ptr++ ) if( ptr->code == code ) { name = ptr->name; break; } if( !name ) { sprintf(local_buf,"unknown code %lx",code); name = local_buf; } if( !keep_entry ) {/* caller wants _entry stripped off end of name */ len = strlen(name); elen = strlen("_entry"); if( len > elen && strcmp(&name[len-elen], "_entry") == 0 ) { strcpy(local_buf, name); local_buf[len-elen] = '\0'; name = local_buf; } } if( maxlen > 0 && strlen(name) > maxlen ) { if( name != local_buf ) { strcpy(local_buf, name); name = local_buf; } local_buf[maxlen] = '\0'; } return name; } /* vi: ts=4 */ fxt-0.3.15/PaxHeaders/m40000644000000000000000000000013215007143530011720 xustar0030 mtime=1746716504.644666209 30 atime=1746716504.802098769 30 ctime=1746716504.644666209 fxt-0.3.15/m4/0002755000175000017500000000000015007143530011465 5ustar00samysamyfxt-0.3.15/m4/PaxHeaders/amx_silent_rules.m40000644000000000000000000000007413512050032015612 xustar0030 atime=1746715490.227509212 30 ctime=1746716504.640462775 fxt-0.3.15/m4/amx_silent_rules.m40000644000175000017500000000411313512050032015272 0ustar00samysamy# # SYNOPSIS # # AMX_SILENT_RULES([action-if-exists], [action-if-not-exists]) # # DESCRIPTION # # These macro calls AM_SILENT_RULES and set AM_DEFAULT_VERBOSITY # if the AM_SILENT_RULES exists (ie automake >= 1.11) # # LAST MODIFICATION # # 2010-01-13 # # COPYLEFT # # Copyright (c) 2010 Vincent Danjean # # 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., 59 Temple Place - Suite 330, Boston, MA # 02111-1307, USA. # # As a special exception, the respective Autoconf Macro's copyright # owner gives unlimited permission to copy, distribute and modify the # configure scripts that are the output of Autoconf when processing # the Macro. You need not follow the terms of the GNU General Public # License when using or distributing such scripts, even though # portions of the text of the Macro appear in them. The GNU General # Public License (GPL) does govern all other use of the material that # constitutes the Autoconf Macro. # # This special exception to the GPL applies to versions of the # Autoconf Macro released by the Autoconf Macro Archive. When you # make and distribute a modified version of the Autoconf Macro, you # may extend this special exception to the GPL to apply to your # modified version as well. AC_DEFUN([AMX_SILENT_RULES], [ m4_ifdef([AM_SILENT_RULES], [ AM_SILENT_RULES $1 ], [ AC_MSG_NOTICE([Not using silent Makefile rules as automake 1.11 is required for this]) $2 ]) ])dnl AMX_SILENT_RULES fxt-0.3.15/m4/PaxHeaders/ltoptions.m40000644000000000000000000000013115007143516014275 xustar0030 mtime=1746716494.258824584 30 atime=1746716494.262051068 29 ctime=1746716504.64257661 fxt-0.3.15/m4/ltoptions.m40000644000175000017500000003612115007143516013767 0ustar00samysamy# Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004-2005, 2007-2009, 2011-2019, 2021-2024 Free # Software Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # 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 10 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option '$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl 'shared' nor 'disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) _LT_UNLESS_OPTIONS([LT_INIT], [aix-soname=aix aix-soname=both aix-soname=svr4], [_LT_WITH_AIX_SONAME([aix])]) ]) ])# _LT_SET_OPTIONS ## --------------------------------- ## ## Macros to handle LT_INIT options. ## ## --------------------------------- ## # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-windows* | *-*-pw32* | *-*-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [1], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the 'shared' and # 'disable-shared' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_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=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the 'static' and # 'disable-static' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_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=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the 'fast-install' # and 'disable-fast-install' LT_INIT options. # DEFAULT is either 'yes' or 'no'. If omitted, it defaults to 'yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_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=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_AIX_SONAME([DEFAULT]) # ---------------------------------- # implement the --enable-aix-soname configure option, and support the # `aix-soname=aix' and `aix-soname=both' and `aix-soname=svr4' LT_INIT options. # DEFAULT is either `aix', `both', or `svr4'. If omitted, it defaults to `aix'. m4_define([_LT_WITH_AIX_SONAME], [m4_define([_LT_WITH_AIX_SONAME_DEFAULT], [m4_if($1, svr4, svr4, m4_if($1, both, both, aix))])dnl shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[[5-9]]*,yes) AC_MSG_CHECKING([which variant of shared library versioning to provide]) AC_ARG_ENABLE([aix-soname], [AS_HELP_STRING([--enable-aix-soname=aix|svr4|both], [shared library versioning (aka "SONAME") variant to provide on AIX, @<:@default=]_LT_WITH_AIX_SONAME_DEFAULT[@:>@.])], [case $enableval in aix|svr4|both) ;; *) AC_MSG_ERROR([Unknown argument to --enable-aix-soname]) ;; esac lt_cv_with_aix_soname=$enable_aix_soname], [_AC_ENABLE_IF([with], [aix-soname], [case $withval in aix|svr4|both) ;; *) AC_MSG_ERROR([Unknown argument to --with-aix-soname]) ;; esac lt_cv_with_aix_soname=$with_aix_soname], [AC_CACHE_VAL([lt_cv_with_aix_soname], [lt_cv_with_aix_soname=]_LT_WITH_AIX_SONAME_DEFAULT)]) enable_aix_soname=$lt_cv_with_aix_soname]) with_aix_soname=$enable_aix_soname AC_MSG_RESULT([$with_aix_soname]) if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac _LT_DECL([], [shared_archive_member_spec], [0], [Shared archive member basename, for filename based shared library versioning on AIX])dnl ])# _LT_WITH_AIX_SONAME LT_OPTION_DEFINE([LT_INIT], [aix-soname=aix], [_LT_WITH_AIX_SONAME([aix])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=both], [_LT_WITH_AIX_SONAME([both])]) LT_OPTION_DEFINE([LT_INIT], [aix-soname=svr4], [_LT_WITH_AIX_SONAME([svr4])]) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --enable-pic flag, and support the 'pic-only' and 'no-pic' # LT_INIT options. # MODE is either 'yes' or 'no'. If omitted, it defaults to 'both'. m4_define([_LT_WITH_PIC], [AC_ARG_ENABLE([pic], [AS_HELP_STRING([--enable-pic@<:@=PKGS@:>@], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [lt_p=${PACKAGE-default} case $enableval in yes|no) pic_mode=$enableval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $enableval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac], [dnl Continue to support --with-pic and --without-pic, for backward dnl compatibility. _AC_ENABLE_IF([with], [pic], [lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac], [pic_mode=m4_default([$1], [default])])] ) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the 'pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) ## ----------------- ## ## LTDL_INIT Options ## ## ----------------- ## m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) fxt-0.3.15/m4/PaxHeaders/ltsugar.m40000644000000000000000000000013115007143516013723 xustar0029 mtime=1746716494.26980314 30 atime=1746716494.272051113 30 ctime=1746716504.643676203 fxt-0.3.15/m4/ltsugar.m40000644000175000017500000001045315007143516013415 0ustar00samysamy# ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007-2008, 2011-2019, 2021-2024 Free Software # Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # 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 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59, which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus 'SEPARATOR''STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) fxt-0.3.15/m4/PaxHeaders/libtool.m40000644000000000000000000000013215007143516013707 xustar0030 mtime=1746716494.248818392 30 atime=1746716494.252398995 30 ctime=1746716504.641418372 fxt-0.3.15/m4/libtool.m40000644000175000017500000114100515007143516013377 0ustar00samysamy# libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996-2001, 2003-2019, 2021-2024 Free Software # Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # 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. m4_define([_LT_COPYING], [dnl # Copyright (C) 2024 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. # GNU Libtool 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. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . ]) # serial 63 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.64])dnl We use AC_PATH_PROGS_FEATURE_CHECK AC_REQUIRE([AC_CONFIG_AUX_DIR_DEFAULT])dnl AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl _LT_SHELL_INIT([SHELL=${CONFIG_SHELL-/bin/sh}]) dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_PREPARE_CC_BASENAME # ----------------------- m4_defun([_LT_PREPARE_CC_BASENAME], [ # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in @S|@*""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } ])# _LT_PREPARE_CC_BASENAME # _LT_CC_BASENAME(CC) # ------------------- # It would be clearer to call AC_REQUIREs from _LT_PREPARE_CC_BASENAME, # but that macro is also expanded into generated libtool script, which # arranges for $SED and $ECHO to be set by different means. m4_defun([_LT_CC_BASENAME], [m4_require([_LT_PREPARE_CC_BASENAME])dnl AC_REQUIRE([_LT_DECL_SED])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl func_cc_basename $1 cc_basename=$func_cc_basename_result ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after 'm4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_REQUIRE([_LT_PREPARE_SED_QUOTE_VARS])dnl AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH])dnl _LT_DECL([], [PATH_SEPARATOR], [1], [The PATH separator for the build system])dnl dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PATH_CONVERSION_FUNCTIONS])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_DECL_FILECMD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CHECK_SHAREDLIB_FROM_LINKLIB])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_WITH_SYSROOT])dnl m4_require([_LT_CMD_TRUNCATE])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl 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 set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC and # ICC, which need '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PREPARE_SED_QUOTE_VARS # -------------------------- # Define a few sed substitution that help us do robust quoting. m4_defun([_LT_PREPARE_SED_QUOTE_VARS], [# Backslashify metacharacters that are still active within # double-quoted strings. 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 delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ]) # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from 'configure', and 'config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # 'config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain=$ac_aux_dir/ltmain.sh ])# _LT_PROG_LTMAIN ## ------------------------------------- ## ## Accumulate code for creating libtool. ## ## ------------------------------------- ## # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the 'libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) ## ------------------------ ## ## FIXME: Eliminate VARNAME ## ## ------------------------ ## # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to 'config.status' so that its # declaration there will have the same value as in 'configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "$][$1" | $SED "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "$" | $SED "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags='_LT_TAGS'dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the 'libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into 'config.status', and then the shell code to quote escape them in # for loops in 'config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # 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 sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$[]1 _LTECHO_EOF' } # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done _LT_OUTPUT_LIBTOOL_INIT ]) # _LT_GENERATED_FILE_INIT(FILE, [COMMENT]) # ------------------------------------ # Generate a child script FILE with all initialization necessary to # reuse the environment learned by the parent script, and make the # file executable. If COMMENT is supplied, it is inserted after the # '#!' sequence but before initialization text begins. After this # macro, additional text can be appended to FILE to form the body of # the child script. The macro ends with non-zero status if the # file could not be fully written (such as if the disk is full). m4_ifdef([AS_INIT_GENERATED], [m4_defun([_LT_GENERATED_FILE_INIT],[AS_INIT_GENERATED($@)])], [m4_defun([_LT_GENERATED_FILE_INIT], [m4_require([AS_PREPARE])]dnl [m4_pushdef([AS_MESSAGE_LOG_FD])]dnl [lt_write_fail=0 cat >$1 <<_ASEOF || lt_write_fail=1 #! $SHELL # Generated by $as_me. $2 SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$1 <<\_ASEOF || lt_write_fail=1 AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 _ASEOF test 0 = "$lt_write_fail" && chmod +x $1[]dnl m4_popdef([AS_MESSAGE_LOG_FD])])])# _LT_GENERATED_FILE_INIT # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), in case it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) _LT_GENERATED_FILE_INIT(["$CONFIG_LT"], [# Run this file to recreate a libtool stub with the current configuration.]) cat >>"$CONFIG_LT" <<\_LTEOF lt_cl_silent=false exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ '$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -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 Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2024 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." while test 0 != $[#] do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try '$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try '$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. lt_cl_success=: test yes = "$silent" && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 _LT_COPYING _LT_LIBTOOL_TAGS # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE _LT_PREPARE_MUNGE_PATH_LIST _LT_PREPARE_CC_BASENAME # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_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 set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # 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" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Go], [_LT_LANG(GO)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG m4_ifndef([AC_PROG_GO], [ ############################################################ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_GO. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # ############################################################ m4_defun([AC_PROG_GO], [AC_LANG_PUSH(Go)dnl AC_ARG_VAR([GOC], [Go compiler command])dnl AC_ARG_VAR([GOFLAGS], [Go compiler flags])dnl _AC_ARG_VAR_LDFLAGS()dnl AC_CHECK_TOOL(GOC, gccgo) if test -z "$GOC"; then if test -n "$ac_tool_prefix"; then AC_CHECK_PROG(GOC, [${ac_tool_prefix}gccgo], [${ac_tool_prefix}gccgo]) fi fi if test -z "$GOC"; then AC_CHECK_PROG(GOC, gccgo, gccgo, false) fi ])#m4_defun ])#m4_ifndef # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([AC_PROG_GO], [LT_LANG(GO)], [m4_define([AC_PROG_GO], defn([AC_PROG_GO])[LT_LANG(GO)])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) AU_DEFUN([AC_LIBTOOL_RC], [LT_LANG(Windows Resource)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) dnl AC_DEFUN([AC_LIBTOOL_RC], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])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_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$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. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$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 -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) # Feature test to disable chained fixups since it is not # compatible with '-undefined dynamic_lookup' AC_CACHE_CHECK([for -no_fixup_chains linker flag], [lt_cv_support_no_fixup_chains], [ save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -Wl,-no_fixup_chains" AC_LINK_IFELSE( [AC_LANG_PROGRAM([],[])], lt_cv_support_no_fixup_chains=yes, lt_cv_support_no_fixup_chains=no ) LDFLAGS=$save_LDFLAGS ] ) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS=$save_LDFLAGS ]) AC_CACHE_CHECK([for -force_load linker flag],[lt_cv_ld_force_load], [lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&AS_MESSAGE_LOG_FD echo "$AR $AR_FLAGS libconftest.a conftest.o" >&AS_MESSAGE_LOG_FD $AR $AR_FLAGS libconftest.a conftest.o 2>&AS_MESSAGE_LOG_FD echo "$RANLIB libconftest.a" >&AS_MESSAGE_LOG_FD $RANLIB libconftest.a 2>&AS_MESSAGE_LOG_FD cat > conftest.c << _LT_EOF int main(void) { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&AS_MESSAGE_LOG_FD elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) case $MACOSX_DEPLOYMENT_TARGET,$host in 10.[[012]],*|,*powerpc*-darwin[[5-8]]*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; *) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' if test yes = "$lt_cv_support_no_fixup_chains"; then AS_VAR_APPEND([_lt_dar_allow_undefined], [' $wl-no_fixup_chains']) fi ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi _lt_dar_needs_single_mod=no case $host_os in rhapsody* | darwin1.*) _lt_dar_needs_single_mod=yes ;; darwin*) # When targeting Mac OS X 10.4 (darwin 8) or later, # -single_module is the default and -multi_module is unsupported. # The toolchain on macOS 10.14 (darwin 18) and later cannot # target any OS version that needs -single_module. case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*-darwin[[567]].*|10.[[0-3]],*-darwin[[5-9]].*|10.[[0-3]],*-darwin1[[0-7]].*) _lt_dar_needs_single_mod=yes ;; esac ;; esac if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES([TAG]) # --------------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported if test yes = "$lt_cv_ld_force_load"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' m4_case([$1], [F77], [_LT_TAGVAR(compiler_needs_object, $1)=yes], [FC], [_LT_TAGVAR(compiler_needs_object, $1)=yes]) else _LT_TAGVAR(whole_archive_flag_spec, $1)='' fi _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="$SED 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" _LT_TAGVAR(module_expsym_cmds, $1)="$SED -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" m4_if([$1], [CXX], [ if test yes = "$_lt_dar_needs_single_mod" -a yes != "$lt_cv_apple_cc_single_mod"; then _LT_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$_lt_dsymutil" _LT_TAGVAR(archive_expsym_cmds, $1)="$SED '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$_lt_dar_export_syms$_lt_dsymutil" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX([TAGNAME]) # ---------------------------------- # 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. # Store the results from the different compilers for each TAGNAME. # Allow to override them for all tags through lt_cv_aix_libpath. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else AC_CACHE_VAL([_LT_TAGVAR([lt_cv_aix_libpath_], [$1])], [AC_LINK_IFELSE([AC_LANG_PROGRAM],[ lt_aix_libpath_sed='[ /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }]' _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$_LT_TAGVAR([lt_cv_aix_libpath_], [$1])"; then _LT_TAGVAR([lt_cv_aix_libpath_], [$1])=/usr/lib:/lib fi ]) aix_libpath=$_LT_TAGVAR([lt_cv_aix_libpath_], [$1]) fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [m4_divert_text([M4SH-INIT], [$1 ])])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Find how we can fake an echo command that does not interpret backslash. # In particular, with Autoconf 2.60 or later we add some code to the start # of the generated configure script that will find a shell with a builtin # printf (that we can use as an echo command). m4_defun([_LT_PROG_ECHO_BACKSLASH], [ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO AC_MSG_CHECKING([how to print strings]) # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $[]1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } case $ECHO in printf*) AC_MSG_RESULT([printf]) ;; print*) AC_MSG_RESULT([print -r]) ;; *) AC_MSG_RESULT([cat]) ;; esac m4_ifdef([_AS_DETECT_SUGGESTED], [_AS_DETECT_SUGGESTED([ test -n "${ZSH_VERSION+set}${BASH_VERSION+set}" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test "X`printf %s $ECHO`" = "X$ECHO" \ || test "X`print -r -- $ECHO`" = "X$ECHO" )])]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that protects backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_WITH_SYSROOT # ---------------- AC_DEFUN([_LT_WITH_SYSROOT], [m4_require([_LT_DECL_SED])dnl AC_MSG_CHECKING([for sysroot]) AC_ARG_WITH([sysroot], [AS_HELP_STRING([--with-sysroot@<:@=DIR@:>@], [Search for dependent libraries within DIR (or the compiler's sysroot if not specified).])], [], [with_sysroot=no]) dnl lt_sysroot will always be passed unquoted. We quote it here dnl in case the user passed a directory name. lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then # Trim trailing / since we'll always append absolute paths and we want # to avoid //, if only for less confusing output for the user. lt_sysroot=`$CC --print-sysroot 2>/dev/null | $SED 's:/\+$::'` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | $SED -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) AC_MSG_RESULT([$with_sysroot]) AC_MSG_ERROR([The sysroot must be an absolute path.]) ;; esac AC_MSG_RESULT([${lt_sysroot:-no}]) _LT_DECL([], [lt_sysroot], [0], [The root where to search for ]dnl [dependent libraries, and where our libraries should be installed.])]) # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test no = "$enable_libtool_lock" || 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 what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `$FILECMD conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test yes = "$lt_cv_prog_gnu_ld"; then case `$FILECMD conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `$FILECMD 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* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '[#]line '$LINENO' "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then emul=elf case `$FILECMD conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `$FILECMD conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `$FILECMD conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*|x86_64-gnu*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `$FILECMD conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*|x86_64-gnu*) case `$FILECMD conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; 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-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*|x86_64-gnu*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) 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_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `$FILECMD conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock ])# _LT_ENABLE_LOCK # _LT_PROG_AR # ----------- m4_defun([_LT_PROG_AR], [AC_CHECK_TOOLS(AR, [ar], false) : ${AR=ar} _LT_DECL([], [AR], [1], [The archiver]) # Use ARFLAGS variable as AR's operation code to sync the variable naming with # Automake. If both AR_FLAGS and ARFLAGS are specified, AR_FLAGS should have # higher priority because that's what people were doing historically (setting # ARFLAGS for automake and AR_FLAGS for libtool). FIXME: Make the AR_FLAGS # variable obsoleted/removed. test ${AR_FLAGS+y} || AR_FLAGS=${ARFLAGS-cr} lt_ar_flags=$AR_FLAGS _LT_DECL([], [lt_ar_flags], [0], [Flags to create an archive (by configure)]) # Make AR_FLAGS overridable by 'make ARFLAGS='. Don't try to run-time override # by AR_FLAGS because that was never working and AR_FLAGS is about to die. _LT_DECL([], [AR_FLAGS], [\@S|@{ARFLAGS-"\@S|@lt_ar_flags"}], [Flags to create an archive]) AC_CACHE_CHECK([for archiver @FILE support], [lt_cv_ar_at_file], [lt_cv_ar_at_file=no AC_COMPILE_IFELSE([AC_LANG_PROGRAM], [echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&AS_MESSAGE_LOG_FD' AC_TRY_EVAL([lt_ar_try]) if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a AC_TRY_EVAL([lt_ar_try]) if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a ]) ]) if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file fi _LT_DECL([], [archiver_list_spec], [1], [How to feed a file listing to the archiver]) ])# _LT_PROG_AR # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [_LT_PROG_AR AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_REQUIRE([AC_PROG_RANLIB]) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) _LT_DECL([], [lock_old_archive_extraction], [0], [Whether to use a lock for old archive extraction]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" ## exclude from sc_useless_quotes_in_assignment # 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:$LINENO: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:$LINENO: \$? = $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 "$_lt_compiler_boilerplate" | $SED '/^$/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 yes = "[$]$2"; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $3" echo "$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 "$_lt_linker_boilerplate" | $SED '/^$/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 -r conftest* LDFLAGS=$save_LDFLAGS ]) if test yes = "[$]$2"; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # 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* | ironclad*) # Under GNU Hurd and Ironclad, 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* | windows* | cegcc*) # 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; ;; mint*) # On MiNT this can take a long time and run out of memory. 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; ;; darwin* | dragonfly* | freebsd* | midnightbsd* | netbsd* | openbsd*) # 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 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; 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 ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then 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` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # 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. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` 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` fi ;; 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 max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes = "$cross_compiling"; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #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 /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord (void) __attribute__((visibility("default"))); #endif int fnord (void) { return 42; } int main (void) { 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; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_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_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test yes != "$enable_dlopen"; 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* | windows* | pw32* | cegcc*) 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 ]) ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) 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=-ldld], [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=-ldld]) ]) ]) ]) ]) ]) ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && 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_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 yes = "$lt_cv_dlopen_self"; 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_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 _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$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:$LINENO: $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:$LINENO: \$? = $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 "$_lt_compiler_boilerplate" | $SED '/^$/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_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 .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links=nottested if test no = "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" && test no != "$need_locks"; 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 no = "$hard_links"; 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 _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_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 _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED([LT_OBJDIR], "$lt_cv_objdir/", [Define to the sub-directory where libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test yes = "$_LT_TAGVAR(hardcode_automatic, $1)"; then # We can hardcode non-existent directories. if test no != "$_LT_TAGVAR(hardcode_direct, $1)" && # 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 no != "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" && test no != "$_LT_TAGVAR(hardcode_minus_L, $1)"; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test relink = "$_LT_TAGVAR(hardcode_action, $1)" || test yes = "$_LT_TAGVAR(inherit_rpath, $1)"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -z "$STRIP"; then AC_MSG_RESULT([no]) else if $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then old_striplib="$STRIP --strip-debug" striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else case $host_os in darwin*) # FIXME - insert some real tests, host_os isn't really good enough striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) ;; freebsd*) if $STRIP -V 2>&1 | $GREP "elftoolchain" >/dev/null; then old_striplib="$STRIP --strip-debug" striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_PREPARE_MUNGE_PATH_LIST # --------------------------- # Make sure func_munge_path_list() is defined correctly. m4_defun([_LT_PREPARE_MUNGE_PATH_LIST], [[# func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x@S|@2 in x) ;; *:) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'` \@S|@@S|@1\" ;; x:*) eval @S|@1=\"\@S|@@S|@1 `$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; *::*) eval @S|@1=\"\@S|@@S|@1\ `$ECHO @S|@2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval @S|@1=\"`$ECHO @S|@2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \@S|@@S|@1\" ;; *) eval @S|@1=\"`$ECHO @S|@2 | $SED 's/:/ /g'`\" ;; esac } ]])# _LT_PREPARE_PATH_LIST # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_PREPARE_MUNGE_PATH_LIST])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | windows* | cegcc*) lt_sed_strip_eq='s|=\([[A-Za-z]]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # 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. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | windows* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([[A-Za-z]]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) 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" 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 AC_ARG_VAR([LT_SYS_LIBRARY_PATH], [User-defined run-time library search path.]) case $host_os in aix3*) version_type=linux # correct to gnu/linux during the next big refactor 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' ;; aix[[4-9]]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; 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 # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --enable-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # 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' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a[(]lib.so.V[)]' # 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' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V[(]$shared_archive_member_spec.o[)], lib.a[(]lib.so.V[)]" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a[(]lib.so.V[)], lib.so.V[(]$shared_archive_member_spec.o[)]" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) 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=`func_echo_all "$lib" | $SED '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; $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' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux # correct to gnu/linux during the next big refactor 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* | windows* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds # If user builds GCC with multilib enabled, # it should just install on $(libdir) # not on $(libdir)/../bin or 32 bits dlls would override 64 bit ones. if test xyes = x"$multilib"; then postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ $install_prog $dir/$dlname $destdir/$dlname~ chmod a+x $destdir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib $destdir/$dlname'\'' || exit \$?; fi' else 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~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' fi 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' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/lib/w32api"]) ;; mingw* | windows* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' ;; 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 dynamic_linker='Win32 ld.exe' ;; *,cl* | *,icl*) # Native MSVC or ICC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw* | windows*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's|\\\\|/|g' -e 's| \\([[a-zA-Z]]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH. 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 # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # 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' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC and ICC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[[.]]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # 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$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`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor 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 ;; freebsd* | dragonfly* | midnightbsd*) # 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[[23]].*) 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$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac case $host_cpu in powerpc64) # On FreeBSD bi-arch platforms, a different variable is used for 32-bit # binaries. See . AC_COMPILE_IFELSE( [AC_LANG_SOURCE( [[int test_pointer_size[sizeof (void *) - 5]; ]])], [shlibpath_var=LD_LIBRARY_PATH], [shlibpath_var=LD_32_LIBRARY_PATH]) ;; *) shlibpath_var=LD_LIBRARY_PATH ;; esac 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 ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" 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=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec='/boot/system/non-packaged/develop/lib /boot/system/develop/lib' sys_lib_dlsearch_path_spec='/boot/home/config/non-packaged/lib /boot/home/config/lib /boot/system/non-packaged/lib /boot/system/lib' hardcode_into_libs=no ;; 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 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; 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' # or fails outright, so override atomically: install_override_mode=555 ;; interix[[3-9]]*) version_type=linux # correct to gnu/linux during the next big refactor 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 yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor 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 ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # 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 dynamic_linker='Android linker' # -rpath works at least for libraries that are not overridden by # libraries installed in system locations. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor 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 # Some binutils ld are patched to set DT_RUNPATH AC_CACHE_VAL([lt_cv_shlibpath_overrides_runpath], [lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [lt_cv_shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir ]) shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # 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 # Ideally, we could use ldconfig to report *all* directories which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;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' ;; netbsdelf*-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='NetBSD ld.elf_so' ;; netbsdelf*-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='NetBSD ld.elf_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 ;; *-mlibc) version_type=linux # correct to gnu/linux during the next big refactor 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='mlibc ld.so' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor 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=qnx 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='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi 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 shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec 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~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; 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 ;; rdos*) dynamic_linker=no ;; serenity*) version_type=linux # correct to gnu/linux during the next big refactor 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 dynamic_linker='SerenityOS LibELF' ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor 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 yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor 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 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 # correct to gnu/linux during the next big refactor 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=sco 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 shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' 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' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor 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 ;; emscripten*) version_type=none need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= dynamic_linker="Emscripten linker" _LT_COMPILER_PIC($1)='-fPIC' _LT_TAGVAR(archive_cmds, $1)='$CC -sSIDE_MODULE=2 -shared $libobjs $deplibs $compiler_flags -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$SED "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -sSIDE_MODULE=2 -shared $libobjs $deplibs $compiler_flags -o $lib -s EXPORTED_FUNCTIONS=@$output_objdir/$soname.expsym' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(no_undefined_flag, $1)= ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[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]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [install_override_mode], [1], [Permission mode override for installation of shared libraries]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([sys_lib_dlsearch_path_spec], [configure_time_dlsearch_path], [2], [Detected run-time system search path for libraries]) _LT_DECL([], [configure_time_lt_sys_library_path], [2], [Explicit LT_SYS_LIBRARY_PATH set during ./configure time]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program that can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_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="m4_if([$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 <<_LT_EOF 1>&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 _LT_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 _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program that can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_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 _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PROG_ECHO_BACKSLASH])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test no = "$withval" || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw* | *-*-windows*) # 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 yes = "$with_gnu_ld"; 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 conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} AC_PATH_PROGS_FEATURE_CHECK([lt_DD], [dd], [if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi]) rm -f conftest.i conftest2.i conftest.out]) ])# _LT_PATH_DD # _LT_CMD_TRUNCATE # ---------------- # find command to truncate a binary pipe m4_defun([_LT_CMD_TRUNCATE], [m4_require([_LT_PATH_DD]) AC_CACHE_CHECK([how to truncate binary pipes], [lt_cv_truncate_bin], [printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q"]) _LT_DECL([lt_truncate_bin], [lt_cv_truncate_bin], [1], [Command to truncate a binary pipe]) ])# _LT_CMD_TRUNCATE # _LT_CHECK_MAGIC_METHOD # ---------------------- # how to check for library dependencies # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_MAGIC_METHOD], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) AC_CACHE_CHECK([how to recognize dependent libraries], lt_cv_deplibs_check_method, [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. # 'file_magic [[regex]]' -- check by looking for files in library path # that 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 aix[[4-9]]*) 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='$FILECMD -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* | windows* | 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', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64|pe-aarch64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly* | midnightbsd*) 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=$FILECMD lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=$FILECMD 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])(-bit)?( [LM]SB)? 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 ;; interix[[3-9]]*) # 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 glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; *-mlibc) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) 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=$FILECMD lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; 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 ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; serenity*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) 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 ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | windows* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[[\1]]\/[[\1]]\/g;/g"` fi ;; esac fi 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 _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method = "file_magic"]) _LT_DECL([], [file_magic_glob], [1], [How to find potential files when deplibs_check_method = "file_magic"]) _LT_DECL([], [want_nocaseglob], [1], [Find potential files using nocaseglob when deplibs_check_method = "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (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 # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw* | windows*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | $SED '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | $SED '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) 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 : ${lt_cv_path_NM=no} fi]) if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else AC_CHECK_TOOLS(DUMPBIN, [dumpbin "link -dump"], :) case `$DUMPBIN -symbols -headers /dev/null 2>&1 | $SED '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi AC_SUBST([DUMPBIN]) if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:$LINENO: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # _LT_CHECK_SHAREDLIB_FROM_LINKLIB # -------------------------------- # how to determine the name of the shared library # associated with a specific link library. # -- PORTME fill in with the dynamic library characteristics m4_defun([_LT_CHECK_SHAREDLIB_FROM_LINKLIB], [m4_require([_LT_DECL_EGREP]) m4_require([_LT_DECL_OBJDUMP]) m4_require([_LT_DECL_DLLTOOL]) AC_CACHE_CHECK([how to associate runtime and link libraries], lt_cv_sharedlib_from_linklib_cmd, [lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | windows* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ]) sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO _LT_DECL([], [sharedlib_from_linklib_cmd], [1], [Command to associate shared and link libraries]) ])# _LT_CHECK_SHAREDLIB_FROM_LINKLIB # _LT_PATH_MANIFEST_TOOL # ---------------------- # locate the manifest tool m4_defun([_LT_PATH_MANIFEST_TOOL], [AC_CHECK_TOOL(MANIFEST_TOOL, mt, :) test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt AC_CACHE_CHECK([if $MANIFEST_TOOL is a manifest tool], [lt_cv_path_manifest_tool], [lt_cv_path_manifest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&AS_MESSAGE_LOG_FD $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&AS_MESSAGE_LOG_FD if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_manifest_tool=yes fi rm -f conftest*]) if test yes != "$lt_cv_path_manifest_tool"; then MANIFEST_TOOL=: fi _LT_DECL([], [MANIFEST_TOOL], [1], [Manifest tool])dnl ])# _LT_PATH_MANIFEST_TOOL # _LT_DLL_DEF_P([FILE]) # --------------------- # True iff FILE is a Windows DLL '.def' file. # Keep in sync with func_dll_def_p in the libtool script AC_DEFUN([_LT_DLL_DEF_P], [dnl test DEF = "`$SED -n dnl -e '\''s/^[[ ]]*//'\'' dnl Strip leading whitespace -e '\''/^\(;.*\)*$/d'\'' dnl Delete empty lines and comments -e '\''s/^\(EXPORTS\|LIBRARY\)\([[ ]].*\)*$/DEF/p'\'' dnl -e q dnl Only consider the first "real" line $1`" dnl ])# _LT_DLL_DEF_P # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cegcc* | *-*-cygwin* | *-*-haiku* | *-*-mingw* | *-*-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_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test yes = "$GCC"; then case $cc_basename in nvcc*) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -Xcompiler -fno-builtin' ;; *) _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' ;; esac _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # 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]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | windows* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BCDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; 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 if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="$SED -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="$SED -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="$SED -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="$SED -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw* | windows*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, 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. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++ or ICC, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="$SED -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | $SED '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(void){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&AS_MESSAGE_LOG_FD if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&AS_MESSAGE_LOG_FD && 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 <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT@&t@_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT@&t@_DLSYM_CONST #else # define LT@&t@_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT@&t@_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$_LT_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_globsym_save_LIBS CFLAGS=$lt_globsym_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 -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; 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 # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[[@]]FILE' >/dev/null; then nm_file_list_spec='@' fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_import], [lt_cv_sys_global_symbol_to_import], [1], [Transform the output of nm into a list of symbols to manually relocate]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) _LT_DECL([nm_interface], [lt_cv_nm_interface], [1], [The name lister interface]) _LT_DECL([], [nm_file_list_spec], [1], [Specify filename containing input files for $NM]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # 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_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | windows* | cygwin* | os2* | pw32* | cegcc*) # 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). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; interix[[3-9]]*) # 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_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_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 ;; mingw* | windows* | cygwin* | os2* | pw32* | cegcc*) # 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). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly* | midnightbsd*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' if test ia64 != "$host_cpu"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_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_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64, which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_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_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL 8.0, 9.0 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | $SED 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; *-mlibc) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_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_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; serenity*) ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test yes = "$GCC"; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # 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_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | windows* | cygwin* | pw32* | os2* | cegcc*) # 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). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. _LT_TAGVAR(lt_prog_compiler_static, $1)= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # 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_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Xlinker ' if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_TAGVAR(lt_prog_compiler_pic, $1)="-Xcompiler $_LT_TAGVAR(lt_prog_compiler_pic, $1)" fi ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; mingw* | windows* | cygwin* | pw32* | os2* | cegcc*) # 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). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) case $host_os in os2*) _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-static' ;; esac ;; hpux9* | hpux10* | hpux11*) _LT_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_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='$wl-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *flang* | ftn | f18* | f95*) # Flang compiler. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # flang / f18. f95 an alias for gfortran or flang on Debian flang* | f18* | f95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; nagfor*) # NAG Fortran compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,-Wl,,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | $SED 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [[1-7]].* | *Sun*Fortran*\ 8.[[0-3]]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; *Sun\ F* | *Sun*Fortran*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Intel*\ [[CF]]*Compiler*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *Portland\ Group*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *-mlibc) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; serenity*) ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_CACHE_CHECK([for $compiler option to produce PIC], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGVAR(lt_prog_compiler_pic, $1)=$_LT_TAGVAR(lt_cv_prog_compiler_pic, $1) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)=$ltdll_cmds ;; cygwin* | mingw* | windows* | cegcc*) case $cc_basename in cl* | icl*) _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] ;; esac ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_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_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # 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. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | windows* | pw32* | cegcc*) # FIXME: the MSVC++ and ICC port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++ or Intel C++ Compiler. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++ or ICC) with_gnu_ld=yes ;; linux* | k*bsd*-gnu | gnu*) _LT_TAGVAR(link_all_deplibs, $1)=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[[2-9]]*) ;; *\ \(GNU\ Binutils\)\ [[3-9]]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; 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_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_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_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v | $SED -e 's/([[^)]]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[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 aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, 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 install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_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_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | windows* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(exclude_expsyms, $1)=['[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname'] _LT_TAGVAR(file_list_spec, $1)='@' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_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, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); 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_TAGVAR(ld_shlibs, $1)=no fi ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=no ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_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_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_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' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$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' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[[cC]]* | bgxl[[cC]]* | mpixl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes ;; esac case `$CC -V 2>&1 | $SED 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_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 '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_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~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; *-mlibc) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $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_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&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. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_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_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 cannot *** 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 ;; *) # 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. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_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_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test no = "$_LT_TAGVAR(ld_shlibs, $1)"; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_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_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_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_TAGVAR(hardcode_minus_L, $1)=yes if test yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; 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 GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX nm. if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "W")) && ([substr](\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='`func_echo_all $NM | $SED -e '\''s/B\([[^B]]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && ([substr](\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | 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 # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; 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_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GCC"; 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 : else # We have old collect2 _LT_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_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; 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 yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_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_SYS_MODULE_PATH_AIX([$1]) _LT_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_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_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_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | windows* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++ or Intel C++ Compiler. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl* | icl*) # Native MSVC or ICC _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # 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_TAGVAR(archive_cmds, $1)='$CC -Fe$output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -Fe$tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(exclude_expsyms, $1)='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' _LT_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' # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC and ICC wrapper _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_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_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `func_echo_all "$deplibs" | $SED '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $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_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2.*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly* | midnightbsd*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; hpux10*) if test yes,no = "$GCC,$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_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_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test yes,no = "$GCC,$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) m4_if($1, [], [ # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) _LT_LINKER_OPTION([if $CC understands -b], _LT_TAGVAR(lt_cv_prog_compiler__b, $1), [-b], [_LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+b $wl$install_libdir -o $lib $libobjs $deplibs $compiler_flags'], [_LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags'])], [_LT_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 no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_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_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. AC_CACHE_CHECK([whether the $host_os linker accepts -exported_symbol], [lt_cv_irix_exported_symbol], [save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" AC_LINK_IFELSE( [AC_LANG_SOURCE( [AC_LANG_CASE([C], [[int foo (void) { return 0; }]], [C++], [[int foo (void) { return 0; }]], [Fortran 77], [[ subroutine foo end]], [Fortran], [[ subroutine foo end]])])], [lt_cv_irix_exported_symbol=yes], [lt_cv_irix_exported_symbol=no]) LDFLAGS=$save_LDFLAGS]) if test yes = "$lt_cv_irix_exported_symbol"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi _LT_TAGVAR(link_all_deplibs, $1)=no else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler _LT_TAGVAR(ld_shlibs, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; esac ;; *-mlibc) ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags $wl-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' ;; osf3*) if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_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_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; serenity*) ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test yes = "$GCC"; then wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $wl-z ${wl}text $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_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' ;; *) wlarc='$wl' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_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 -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test sequent = "$host_vendor"; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_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 CANNOT 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_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test yes,yes = "$GCC,$enable_shared"; then case $_LT_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_CACHE_CHECK([whether -lc should be explicitly linked in], [lt_cv_]_LT_TAGVAR(archive_cmds_need_lc, $1), [$RM conftest* echo "$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_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=no else lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ]) _LT_TAGVAR(archive_cmds_need_lc, $1)=$lt_cv_[]_LT_TAGVAR(archive_cmds_need_lc, $1) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME$shared_ext during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e. impossible to change by setting $shlibpath_var if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [postlink_cmds], [2], [Commands necessary for finishing linking programs]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl 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_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(void){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report what 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 no = "$can_build_shared" && 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 yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac 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 yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC=$lt_save_CC ])# _LT_LANG_C_CONFIG # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to 'libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_PATH_MANIFEST_TOOL])dnl if test -n "$CXX" && ( test no != "$CXX" && ( (test g++ = "$CXX" && `g++ -v >/dev/null 2>&1` ) || (test g++ != "$CXX"))); then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_caught_CXX_error"; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_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_CFLAGS=$CFLAGS 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++"} CFLAGS=$CXXFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test yes = "$GXX"; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test yes = "$GXX"; then # Set up default GNU C++ configuration LT_PATH_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 yes = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC $pic_flag -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_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 $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' else _LT_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_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 -v "^Configured with:" | $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_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test ia64 = "$host_cpu"; 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 # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; 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_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no ;; esac if test yes = "$GXX"; 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 : else # We have old collect2 _LT_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_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test yes = "$aix_use_runtimelinking"; then shared_flag=$shared_flag' $wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; 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 yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test aix,yes = "$with_aix_soname,$aix_use_runtimelinking"; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. # The "-G" linker flag allows undefined symbols. _LT_TAGVAR(no_undefined_flag, $1)='-bernotok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX([$1]) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs $wl'$no_entry_flag' $compiler_flags `if test -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_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_SYS_MODULE_PATH_AIX([$1]) _LT_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_TAGVAR(no_undefined_flag, $1)=' $wl-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-berok' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' fi _LT_TAGVAR(archive_cmds_need_lc, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([[, ]]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared # libraries. Need -bnortl late, we may have -brtl in LDFLAGS. _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi _LT_TAGVAR(archive_expsym_cmds, $1)="$_LT_TAGVAR(archive_expsym_cmds, $1)"'~$RM -r $output_objdir/$realname.d' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | windows* | pw32* | cegcc*) case $GXX,$cc_basename in ,cl* | no,cl* | ,icl* | no,icl*) # Native MSVC or ICC # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' # 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_TAGVAR(archive_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -o $tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes # Don't use ranlib _LT_TAGVAR(old_postinstall_cmds, $1)='chmod 644 $oldlib' _LT_TAGVAR(postlink_cmds, $1)='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ func_to_tool_file "$lt_outputfile"~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # g++ # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-all-symbols' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_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, use it as # is; otherwise, prepend EXPORTS... _LT_TAGVAR(archive_expsym_cmds, $1)='if _LT_DLL_DEF_P([$export_symbols]); 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_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported shrext_cmds=.dll _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(archive_expsym_cmds, $1)='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(file_list_spec, $1)='@' ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd2.*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly* | midnightbsd*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; haiku*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(link_all_deplibs, $1)=no ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_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_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_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 "x$output_objdir/$soname" = "x$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) | $EGREP "[[-]]L"`; list= ; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test "x$output_objdir/$soname" = "x$lib" || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test no = "$with_gnu_ld"; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl+b $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_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_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_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; func_echo_all "$list"' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC $wl+h $wl$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $pic_flag $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_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_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_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_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_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-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_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test yes = "$GXX"; then if test no = "$with_gnu_ld"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) 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_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_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; func_echo_all "$list"' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_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_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # 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_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_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_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' _LT_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_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive$convenience $wl--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]].* | *pgcpp\ [[1-5]].*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | sort | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | sort | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | sort | $NL2SP` $postdep_objects $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 6 and above use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_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' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl--rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $wl$soname -o $lib' _LT_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_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_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=`func_echo_all "$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; func_echo_all "X$list" | $Xsed' ;; xl* | mpixl* | bgxl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; then _LT_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 -qmkshrobj $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | $SED 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-retain-symbols-file $wl$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='func_echo_all' # 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_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; *-mlibc) _LT_TAGVAR(ld_shlibs, $1)=yes ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_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::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`"; then _LT_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_TAGVAR(export_dynamic_flag_spec, $1)='$wl-E' _LT_TAGVAR(whole_archive_flag_spec, $1)=$wlarc'--whole-archive$convenience '$wlarc'--no-whole-archive' fi output_verbose_link_cmd=func_echo_all else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | 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_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_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-soname $soname `test -n "$verstring" && func_echo_all "$wl-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' _LT_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_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_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=`func_echo_all "$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; func_echo_all "$list"' ;; *) if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(allow_undefined_flag, $1)=' $wl-expect_unresolved $wl\*' case $host in osf3*) _LT_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" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-rpath $wl$libdir' _LT_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 -v "^Configured with:" | $GREP " [[-]]L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; serenity*) ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC* | sunCC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G$allow_undefined_flag -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_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_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands '-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='func_echo_all' # 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_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_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_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test yes,no = "$GXX,$with_gnu_ld"; then _LT_TAGVAR(no_undefined_flag, $1)=' $wl-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared $pic_flag -nostdlib $wl-M $wl$lib.exp $wl-h $wl$soname -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 -v "^Configured with:" | $GREP " [[-]]L"' else # g++ 2.7 appears to require '-G' NOT '-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags $wl-h $wl$soname -o $lib' _LT_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 $wl-h $wl$soname -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 -v "^Configured with:" | $GREP " [[-]]L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_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 CANNOT 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_TAGVAR(no_undefined_flag, $1)='$wl-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='$wl-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='$wl-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='$wl-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G $wl-Bexport:$export_symbols $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(old_archive_cmds, $1)='$CC -Tprelink_objects $oldobjs~ '"$_LT_TAGVAR(old_archive_cmds, $1)" _LT_TAGVAR(reload_cmds, $1)='$CC -Tprelink_objects $reload_objs~ '"$_LT_TAGVAR(reload_cmds, $1)" ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $wl-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $wl-Bexport:$export_symbols $wl-h,$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_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test no = "$_LT_TAGVAR(ld_shlibs, $1)" && can_build_shared=no _LT_TAGVAR(GCC, $1)=$GXX _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC 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 fi # test yes != "$_lt_caught_CXX_error" AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_FUNC_STRIPNAME_CNF # ---------------------- # func_stripname_cnf prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # # This function is identical to the (non-XSI) version of func_stripname, # except this one can be used by m4 code that may be executed by configure, # rather than the libtool script. m4_defun([_LT_FUNC_STRIPNAME_CNF],[dnl AC_REQUIRE([_LT_DECL_SED]) AC_REQUIRE([_LT_PROG_ECHO_BACKSLASH]) func_stripname_cnf () { case @S|@2 in .*) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%\\\\@S|@2\$%%"`;; *) func_stripname_result=`$ECHO "@S|@3" | $SED "s%^@S|@1%%; s%@S|@2\$%%"`;; esac } # func_stripname_cnf ])# _LT_FUNC_STRIPNAME_CNF # _LT_SYS_HIDDEN_LIBDEPS([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. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl AC_REQUIRE([_LT_FUNC_STRIPNAME_CNF])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= 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... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ], [$1], [GO], [cat > conftest.$ac_ext <<_LT_EOF package foo func foo() { } _LT_EOF ]) _lt_libdeps_save_CFLAGS=$CFLAGS case "$CC $CFLAGS " in #( *\ -flto*\ *) CFLAGS="$CFLAGS -fno-lto" ;; *\ -fwhopr*\ *) CFLAGS="$CFLAGS -fno-whopr" ;; *\ -fuse-linker-plugin*\ *) CFLAGS="$CFLAGS -fno-use-linker-plugin" ;; esac dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); 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 for p in `eval "$output_verbose_link_cmd"`; do case $prev$p in -L* | -R* | -l*) # Some compilers place space between "-{L,R,l}" and the path. # Remove the space. if test x-L = x"$p" || test x-R = x"$p" || test x-l = x"$p"; then prev=$p continue fi # Expand the sysroot to ease extracting the directories later. if test -z "$prev"; then case $p in -L*) func_stripname_cnf '-L' '' "$p"; prev=-L; p=$func_stripname_result ;; -R*) func_stripname_cnf '-R' '' "$p"; prev=-R; p=$func_stripname_result ;; -l*) func_stripname_cnf '-l' '' "$p"; prev=-l; p=$func_stripname_result ;; esac fi case $p in =*) func_stripname_cnf '=' '' "$p"; p=$lt_sysroot$func_stripname_result ;; esac if test no = "$pre_test_object_deps_done"; then case $prev 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 "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)=$prev$p else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} $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 "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)=$prev$p else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} $prev$p" fi fi prev= ;; *.lto.$objext) ;; # Ignore GCC LTO objects *.$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 no = "$pre_test_object_deps_done"; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)=$p else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)=$p else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext CFLAGS=$_lt_libdeps_save_CFLAGS # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | $SED -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_LANG_PUSH(Fortran 77) if test -z "$F77" || test no = "$F77"; then _lt_disable_F77=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_F77"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_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_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${F77-"f77"} CFLAGS=$FFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && 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 yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac 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 yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$G77 _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_F77" AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_LANG_PUSH(Fortran) if test -z "$FC" || test no = "$FC"; then _lt_disable_FC=yes fi _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test yes != "$_lt_disable_FC"; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_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_GCC=$GCC lt_save_CFLAGS=$CFLAGS CC=${FC-"f95"} CFLAGS=$FCFLAGS compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test no = "$can_build_shared" && 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 yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac 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 yes = "$enable_shared" || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)=$ac_cv_fc_compiler_gnu _LT_TAGVAR(LD, $1)=$LD ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS fi # test yes != "$_lt_disable_FC" AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_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_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} CFLAGS=$GCJFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_GO_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Go compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_GO_CONFIG], [AC_REQUIRE([LT_PROG_GO])dnl AC_LANG_SAVE # Source file extension for Go test sources. ac_ext=go # Object file extension for compiled Go test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="package main; func main() { }" # Code to be used in simple link tests lt_simple_link_test_code='package main; func main() { }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_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_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC=yes CC=${GOC-"gccgo"} CFLAGS=$GOFLAGS compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)=$LD _LT_CC_BASENAME([$compiler]) # Go did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(reload_flag, $1)=$reload_flag _LT_TAGVAR(reload_cmds, $1)=$reload_cmds ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_GO_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to 'libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # 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. _LT_TAG_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_CFLAGS=$CFLAGS lt_save_GCC=$GCC GCC= CC=${RC-"windres"} CFLAGS= compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC=$lt_save_CC CFLAGS=$lt_save_CFLAGS ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test set = "${GCJFLAGS+set}" || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_GO # ---------- AC_DEFUN([LT_PROG_GO], [AC_CHECK_TOOL(GOC, gccgo,) ]) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_DLLTOOL # ---------------- # Ensure DLLTOOL variable is set. m4_defun([_LT_DECL_DLLTOOL], [AC_CHECK_TOOL(DLLTOOL, dlltool, false) test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [1], [DLL creation program]) AC_SUBST([DLLTOOL]) ]) # _LT_DECL_FILECMD # ---------------- # Check for a file(cmd) program that can be used to detect file type and magic m4_defun([_LT_DECL_FILECMD], [AC_CHECK_PROG([FILECMD], [file], [file], [:]) _LT_DECL([], [FILECMD], [1], [A file(cmd) program that detects file types]) ])# _LD_DECL_FILECMD # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PATH_CONVERSION_FUNCTIONS # ----------------------------- # Determine what file name conversion functions should be used by # func_to_host_file (and, implicitly, by func_to_host_path). These are needed # for certain cross-compile configurations and native mingw. m4_defun([_LT_PATH_CONVERSION_FUNCTIONS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl AC_MSG_CHECKING([how to convert $build file names to $host format]) AC_CACHE_VAL(lt_cv_to_host_file_cmd, [case $host in *-*-mingw* ) case $build in *-*-mingw* | *-*-windows* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* | *-*-windows* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ]) to_host_file_cmd=$lt_cv_to_host_file_cmd AC_MSG_RESULT([$lt_cv_to_host_file_cmd]) _LT_DECL([to_host_file_cmd], [lt_cv_to_host_file_cmd], [0], [convert $build file names to $host format])dnl AC_MSG_CHECKING([how to convert $build file names to toolchain format]) AC_CACHE_VAL(lt_cv_to_tool_file_cmd, [#assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* | *-*-windows* ) case $build in *-*-mingw* | *-*-windows* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ]) to_tool_file_cmd=$lt_cv_to_tool_file_cmd AC_MSG_RESULT([$lt_cv_to_tool_file_cmd]) _LT_DECL([to_tool_file_cmd], [lt_cv_to_tool_file_cmd], [0], [convert $build files to toolchain format])dnl ])# _LT_PATH_CONVERSION_FUNCTIONS fxt-0.3.15/m4/PaxHeaders/ltversion.m40000644000000000000000000000013215007143516014270 xustar0030 mtime=1746716494.281678029 30 atime=1746716494.282051159 30 ctime=1746716504.644666209 fxt-0.3.15/m4/ltversion.m40000644000175000017500000000131215007143516013753 0ustar00samysamy# ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004, 2011-2019, 2021-2024 Free Software Foundation, # Inc. # Written by Scott James Remnant, 2004 # # 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. # @configure_input@ # serial 4441 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.5.4]) m4_define([LT_PACKAGE_REVISION], [2.5.4]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.5.4' macro_revision='2.5.4' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) fxt-0.3.15/m4/PaxHeaders/lt~obsolete.m40000644000000000000000000000013215007143516014615 xustar0030 mtime=1746716494.294009805 30 atime=1746716494.301602217 30 ctime=1746716504.645793539 fxt-0.3.15/m4/lt~obsolete.m40000644000175000017500000001400715007143516014305 0ustar00samysamy# lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004-2005, 2007, 2009, 2011-2019, 2021-2024 Free # Software Foundation, Inc. # Written by Scott James Remnant, 2004. # # 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 5 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN), # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) m4_ifndef([_LT_REQUIRED_DARWIN_CHECKS], [AC_DEFUN([_LT_REQUIRED_DARWIN_CHECKS])]) m4_ifndef([_LT_AC_PROG_CXXCPP], [AC_DEFUN([_LT_AC_PROG_CXXCPP])]) m4_ifndef([_LT_PREPARE_SED_QUOTE_VARS], [AC_DEFUN([_LT_PREPARE_SED_QUOTE_VARS])]) m4_ifndef([_LT_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_PROG_F77], [AC_DEFUN([_LT_PROG_F77])]) m4_ifndef([_LT_PROG_FC], [AC_DEFUN([_LT_PROG_FC])]) m4_ifndef([_LT_PROG_CXX], [AC_DEFUN([_LT_PROG_CXX])]) fxt-0.3.15/PaxHeaders/configure0000644000000000000000000000013215007143522013362 xustar0030 mtime=1746716498.682071072 30 atime=1746716498.691623359 30 ctime=1746716504.639235271 fxt-0.3.15/configure0000755000175000017500000224355715007143522013075 0ustar00samysamy#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.72 for Fast Traces Toolkit 0.3.15. # # Report bugs to . # # # Copyright (C) 1992-1996, 1998-2017, 2020-2023 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 more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case e in #( e) case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac ;; esac fi # Reset variables that may have inherited troublesome values from # the environment. # IFS needs to be set, to space, tab, and newline, in precisely that order. # (If _AS_PATH_WALK were called with IFS unset, it would have the # side effect of setting IFS to empty, thus disabling word splitting.) # Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl IFS=" "" $as_nl" PS1='$ ' PS2='> ' PS4='+ ' # Ensure predictable behavior from utilities with locale-dependent output. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # We cannot yet rely on "unset" to work, but we need these variables # to be unset--not just set to an empty or harmless value--now, to # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct # also avoids known problems related to "unset" and subshell syntax # in other old shells (e.g. bash 2.01 and pdksh 5.2.14). for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH do eval test \${$as_var+y} \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done # Ensure that fds 0, 1, and 2 are open. if (exec 3>&0) 2>/dev/null; then :; else exec 0&1) 2>/dev/null; then :; else exec 1>/dev/null; fi if (exec 3>&2) ; then :; else exec 2>/dev/null; fi # The user is always right. if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac test -r "$as_dir$0" && as_myself=$as_dir$0 && break done IFS=$as_save_IFS ;; 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 printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Use a proper internal environment variable to ensure we don't fall # into an infinite loop, continuously re-executing ourselves. if test x"${_as_can_reexec}" != xno && test "x$CONFIG_SHELL" != x; then _as_can_reexec=no; export _as_can_reexec; # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed 'exec'. printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi # We don't want this to propagate to other subprocesses. { _as_can_reexec=; unset _as_can_reexec;} if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test \${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case e in #( e) case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ) then : else case e in #( e) exitcode=1; echo positional parameters were not saved. ;; esac fi test x\$exitcode = x0 || exit 1 blah=\$(echo \$(echo blah)) test x\"\$blah\" = xblah || exit 1 test -x / || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test -n \"\${ZSH_VERSION+set}\${BASH_VERSION+set}\" || ( ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO ECHO=\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO\$ECHO PATH=/empty FPATH=/empty; export PATH FPATH test \"X\`printf %s \$ECHO\`\" = \"X\$ECHO\" \\ || test \"X\`print -r -- \$ECHO\`\" = \"X\$ECHO\" ) || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null then : as_have_required=yes else case e in #( e) as_have_required=no ;; esac fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null then : else case e in #( e) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && as_run=a "$as_shell" -c "$as_bourne_compatible""$as_required" 2>/dev/null then : CONFIG_SHELL=$as_shell as_have_required=yes if as_run=a "$as_shell" -c "$as_bourne_compatible""$as_suggested" 2>/dev/null then : break 2 fi fi done;; esac as_found=false done IFS=$as_save_IFS if $as_found then : else case e in #( e) if { test -f "$SHELL" || test -f "$SHELL.exe"; } && as_run=a "$SHELL" -c "$as_bourne_compatible""$as_required" 2>/dev/null then : CONFIG_SHELL=$SHELL as_have_required=yes fi ;; esac fi if test "x$CONFIG_SHELL" != x then : export CONFIG_SHELL # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. # Preserve -v and -x to the replacement shell. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV case $- in # (((( *v*x* | *x*v* ) as_opts=-vx ;; *v* ) as_opts=-v ;; *x* ) as_opts=-x ;; * ) as_opts= ;; esac exec $CONFIG_SHELL $as_opts "$as_myself" ${1+"$@"} # Admittedly, this is quite paranoid, since all the known shells bail # out after a failed 'exec'. printf "%s\n" "$0: could not re-execute with $CONFIG_SHELL" >&2 exit 255 fi if test x$as_have_required = xno then : printf "%s\n" "$0: This script requires a shell more modern than all" printf "%s\n" "$0: the shells that I found on your system." if test ${ZSH_VERSION+y} ; then printf "%s\n" "$0: In particular, zsh $ZSH_VERSION has bugs and should" printf "%s\n" "$0: be upgraded to zsh 4.3.4 or later." else printf "%s\n" "$0: Please tell bug-autoconf@gnu.org and $0: samuel.thibault@labri.fr about your system, including $0: any error possibly output before this message. Then $0: install a modern shell, or manually run the script $0: under such a shell if you do have one." fi exit 1 fi ;; esac fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null then : eval 'as_fn_append () { eval $1+=\$2 }' else case e in #( e) as_fn_append () { eval $1=\$$1\$2 } ;; esac fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null then : eval 'as_fn_arith () { as_val=$(( $* )) }' else case e in #( e) as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } ;; esac fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; 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 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # 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 as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' t clear :clear s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { printf "%s\n" "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # If we had to re-execute with $CONFIG_SHELL, we're ensured to have # already done that, so ensure we don't try to do so again and fall # in an infinite loop. This has already happened in practice. _as_can_reexec=no; export _as_can_reexec # 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 sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } # Determine whether it's possible to make 'echo' print without a newline. # These variables are no longer used directly by Autoconf, but are AC_SUBSTed # for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac # For backward compatibility with old third-party macros, we provide # the shell variables $as_echo and $as_echo_n. New code should use # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. as_echo='printf %s\n' as_echo_n='printf %s' rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both 'ln -s file dir' and 'ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; 'ln -s' creates a wrapper executable. # In both cases, we have to default to 'cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_sed_cpp="y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g" as_tr_cpp="eval sed '$as_sed_cpp'" # deprecated # Sed expression to map a string onto a valid variable name. as_sed_sh="y%*+%pp%;s%[^_$as_cr_alnum]%_%g" as_tr_sh="eval sed '$as_sed_sh'" # deprecated SHELL=${CONFIG_SHELL-/bin/sh} test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='Fast Traces Toolkit' PACKAGE_TARNAME='fxt' PACKAGE_VERSION='0.3.15' PACKAGE_STRING='Fast Traces Toolkit 0.3.15' PACKAGE_BUGREPORT='samuel.thibault@labri.fr' PACKAGE_URL='' ac_unique_file="tools/fxt.c" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_STDIO_H # include #endif #ifdef HAVE_STDLIB_H # include #endif #ifdef HAVE_STRING_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_header_c_list= ac_func_c_list= ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS AM_LFS_LDFLAGS AM_LFS_CFLAGS EPSTOPDF_FALSE EPSTOPDF_TRUE LATEX_FALSE LATEX_TRUE X11_FALSE X11_TRUE FKT_FALSE FKT_TRUE FXT_HAVE_WINDOWS_FALSE FXT_HAVE_WINDOWS_TRUE LIBOBJS FXT_LIBS X_EXTRA_LIBS X_LIBS X_PRE_LIBS X_CFLAGS CPP XMKMF FXT_MS_LIB_ARCH FXT_HAVE_MS_LIB_FALSE FXT_HAVE_MS_LIB_TRUE FXT_MS_LIB PERL HAVE_HELP2MAN_FALSE HAVE_HELP2MAN_TRUE HELP2MAN EPSTOPDF LATEX LT_SYS_LIBRARY_PATH OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL MANIFEST_TOOL RANLIB DLLTOOL OBJDUMP FILECMD LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP EGREP GREP SED host_os host_vendor host_cpu host build_os build_vendor build_cpu build LIBTOOL ac_ct_AR AR am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE am__nodep AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC am__xargs_n am__rm_f_notfound AM_BACKSLASH AM_DEFAULT_VERBOSITY AM_DEFAULT_V AM_V CSCOPE ETAGS CTAGS am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir runstatedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL am__quote' ac_subst_files='' ac_user_opts=' enable_option_checking enable_silent_rules enable_dependency_tracking enable_static enable_shared enable_pic with_pic enable_fast_install enable_aix_soname with_aix_soname with_gnu_ld with_sysroot enable_libtool_lock with_x enable_gettid ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS LT_SYS_LIBRARY_PATH FXT_MS_LIB XMKMF CPP' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # 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. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' runstatedir='${localstatedir}/run' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= 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 case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -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) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: '$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: '$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$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 ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$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 ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) 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 ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -runstatedir | --runstatedir | --runstatedi | --runstated \ | --runstate | --runstat | --runsta | --runst | --runs \ | --run | --ru | --r) ac_prev=runstatedir ;; -runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \ | --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \ | --run=* | --ru=* | --r=*) runstatedir=$ac_optarg ;; -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_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: '$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: '$ac_useropt'" ac_useropt_orig=$ac_useropt ac_useropt=`printf "%s\n" "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=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 ;; -*) as_fn_error $? "unrecognized option: '$ac_option' Try '$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: '$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. printf "%s\n" "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && printf "%s\n" "$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'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir runstatedir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" 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 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 ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # 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 the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_myself" | 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 test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but 'cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # 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 Fast Traces Toolkit 0.3.15 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 '..'] 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] --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] --runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/fxt] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _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 Fast Traces Toolkit 0.3.15:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --enable-silent-rules less verbose build output (undo: "make V=1") --disable-silent-rules verbose build output (undo: "make V=0") --enable-dependency-tracking do not reject slow dependency extractors --disable-dependency-tracking speeds up one-time build --enable-static[=PKGS] build static libraries [default=no] --enable-shared[=PKGS] build shared libraries [default=yes] --enable-pic[=PKGS] try to use only PIC/non-PIC objects [default=use both] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --enable-aix-soname=aix|svr4|both shared library versioning (aka "SONAME") variant to provide on AIX, [default=aix]. --disable-libtool-lock avoid locking (might break parallel builds) --enable-gettid Use syscall(SYS_gettid) to get the thread ID instead of pthread_self(). This however costs a system call for each trace entry 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-sysroot[=DIR] Search for dependent libraries within DIR (or the compiler's sysroot if not specified). --with-x use the X Window System 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 LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory LT_SYS_LIBRARY_PATH User-defined run-time library search path. FXT_MS_LIB Path to Microsoft's Visual Studio `lib' tool XMKMF Path to xmkmf, Makefile generator for X Window System CPP C preprocessor Use these variables to override the choices made by 'configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to . _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for configure.gnu first; this name is used for a wrapper for # Metaconfig's "Configure" on case-insensitive file systems. 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 else printf "%s\n" "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF Fast Traces Toolkit configure 0.3.15 generated by GNU Autoconf 2.72 Copyright (C) 2023 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 fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest.beam if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext then : ac_retval=0 else case e in #( e) printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 ;; esac fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 printf %s "checking for $2... " >&6; } if eval test \${$3+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO" then : eval "$3=yes" else case e in #( e) eval "$3=no" ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi eval ac_res=\$$3 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_header_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest.beam conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || test -x conftest$ac_exeext } then : ac_retval=0 else case e in #( e) printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 ;; esac fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 printf %s "checking for $2... " >&6; } if eval test \${$3+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (void); below. */ #include #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (void); /* 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_$2 || defined __stub___$2 choke me #endif int main (void) { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : eval "$3=yes" else case e in #( e) eval "$3=no" ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext ;; esac fi eval ac_res=\$$3 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_func # ac_fn_c_try_run LINENO # ---------------------- # Try to run conftest.$ac_ext, and return whether this succeeded. Assumes that # executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; } then : ac_retval=0 else case e in #( e) printf "%s\n" "$as_me: program exited with status $ac_status" >&5 printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status ;; esac fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_compute_int LINENO EXPR VAR INCLUDES # -------------------------------------------- # Tries to find the compile-time value of EXPR in a program that includes # INCLUDES, setting VAR accordingly. Returns whether the value could be # computed ac_fn_c_compute_int () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main (void) { static int test_array [1 - 2 * !(($2) >= 0)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_lo=0 ac_mid=0 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main (void) { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_hi=$ac_mid; break else case e in #( e) as_fn_arith $ac_mid + 1 && ac_lo=$as_val if test $ac_lo -le $ac_mid; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid + 1 && ac_mid=$as_val ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext done else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main (void) { static int test_array [1 - 2 * !(($2) < 0)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_hi=-1 ac_mid=-1 while :; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main (void) { static int test_array [1 - 2 * !(($2) >= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_lo=$ac_mid; break else case e in #( e) as_fn_arith '(' $ac_mid ')' - 1 && ac_hi=$as_val if test $ac_mid -le $ac_hi; then ac_lo= ac_hi= break fi as_fn_arith 2 '*' $ac_mid && ac_mid=$as_val ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext done else case e in #( e) ac_lo= ac_hi= ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext # Binary search between lo and hi bounds. while test "x$ac_lo" != "x$ac_hi"; do as_fn_arith '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo && ac_mid=$as_val cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main (void) { static int test_array [1 - 2 * !(($2) <= $ac_mid)]; test_array [0] = 0; return test_array [0]; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_hi=$ac_mid else case e in #( e) as_fn_arith '(' $ac_mid ')' + 1 && ac_lo=$as_val ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext done case $ac_lo in #(( ?*) eval "$3=\$ac_lo"; ac_retval=0 ;; '') ac_retval=1 ;; esac else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 static long int longval (void) { return $2; } static unsigned long int ulongval (void) { return $2; } #include #include int main (void) { FILE *f = fopen ("conftest.val", "w"); if (! f) return 1; if (($2) < 0) { long int i = longval (); if (i != ($2)) return 1; fprintf (f, "%ld", i); } else { unsigned long int i = ulongval (); if (i != ($2)) return 1; fprintf (f, "%lu", i); } /* Do not output a trailing newline, as this causes \r\n confusion on some platforms. */ return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO" then : echo >>conftest.val; read $3 &5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err } then : ac_retval=0 else case e in #( e) printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 ;; esac fi eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_check_type LINENO TYPE VAR INCLUDES # ------------------------------------------- # Tests whether TYPE exists after having included INCLUDES, setting cache # variable VAR accordingly. ac_fn_c_check_type () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 printf %s "checking for $2... " >&6; } if eval test \${$3+y} then : printf %s "(cached) " >&6 else case e in #( e) eval "$3=no" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main (void) { if (sizeof ($2)) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 int main (void) { if (sizeof (($2))) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : else case e in #( e) eval "$3=yes" ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi eval ac_res=\$$3 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } eval $as_lineno_stack; ${as_lineno_stack:+:} unset as_lineno } # ac_fn_c_check_type ac_configure_args_raw= for ac_arg do case $ac_arg in *\'*) ac_arg=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append ac_configure_args_raw " '$ac_arg'" done case $ac_configure_args_raw in *$as_nl*) ac_safe_unquote= ;; *) ac_unsafe_z='|&;<>()$`\\"*?[ '' ' # This string ends in space, tab. ac_unsafe_a="$ac_unsafe_z#~" ac_safe_unquote="s/ '\\([^$ac_unsafe_a][^$ac_unsafe_z]*\\)'/ \\1/g" ac_configure_args_raw=` printf "%s\n" "$ac_configure_args_raw" | sed "$ac_safe_unquote"`;; esac cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by Fast Traces Toolkit $as_me 0.3.15, which was generated by GNU Autoconf 2.72. Invocation command line was $ $0$ac_configure_args_raw _ACEOF exec 5>>config.log { 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` /usr/bin/hostinfo = `(/usr/bin/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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac printf "%s\n" "PATH: $as_dir" done IFS=$as_save_IFS } >&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_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=`printf "%s\n" "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append 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 as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset 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: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Sanitize IFS. IFS=" "" $as_nl" # Save into config.log some information that might help in debugging. { echo printf "%s\n" "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo printf "%s\n" "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac printf "%s\n" "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then printf "%s\n" "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`printf "%s\n" "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac printf "%s\n" "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then printf "%s\n" "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && printf "%s\n" "$as_me: caught signal $ac_signal" printf "%s\n" "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h printf "%s\n" "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. printf "%s\n" "#define PACKAGE_NAME \"$PACKAGE_NAME\"" >>confdefs.h printf "%s\n" "#define PACKAGE_TARNAME \"$PACKAGE_TARNAME\"" >>confdefs.h printf "%s\n" "#define PACKAGE_VERSION \"$PACKAGE_VERSION\"" >>confdefs.h printf "%s\n" "#define PACKAGE_STRING \"$PACKAGE_STRING\"" >>confdefs.h printf "%s\n" "#define PACKAGE_BUGREPORT \"$PACKAGE_BUGREPORT\"" >>confdefs.h printf "%s\n" "#define PACKAGE_URL \"$PACKAGE_URL\"" >>confdefs.h # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. if test -n "$CONFIG_SITE"; then ac_site_files="$CONFIG_SITE" elif test "x$prefix" != xNONE; then ac_site_files="$prefix/share/config.site $prefix/etc/config.site" else ac_site_files="$ac_default_prefix/share/config.site $ac_default_prefix/etc/config.site" fi for ac_site_file in $ac_site_files do case $ac_site_file in #( */*) : ;; #( *) : ac_site_file=./$ac_site_file ;; esac if test -f "$ac_site_file" && test -r "$ac_site_file"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 printf "%s\n" "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See 'config.log' for more details" "$LINENO" 5; } 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. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 printf "%s\n" "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 printf "%s\n" "$as_me: creating cache $cache_file" >&6;} >$cache_file fi as_fn_append ac_header_c_list " stdio.h stdio_h HAVE_STDIO_H" # Test code for whether the C compiler supports C89 (global declarations) ac_c_conftest_c89_globals=' /* Does the compiler advertise C89 conformance? Do not test the value of __STDC__, because some compilers set it to 0 while being otherwise adequately conformant. */ #if !defined __STDC__ # error "Compiler does not advertise C89 conformance" #endif #include #include struct stat; /* Most of the following tests are stolen from RCS 5.7 src/conf.sh. */ struct buf { int x; }; struct buf * (*rcsopen) (struct buf *, struct stat *, int); static char *e (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; } /* C89 style stringification. */ #define noexpand_stringify(a) #a const char *stringified = noexpand_stringify(arbitrary+token=sequence); /* C89 style token pasting. Exercises some of the corner cases that e.g. old MSVC gets wrong, but not very hard. */ #define noexpand_concat(a,b) a##b #define expand_concat(a,b) noexpand_concat(a,b) extern int vA; extern int vbee; #define aye A #define bee B int *pvA = &expand_concat(v,aye); int *pvbee = &noexpand_concat(v,bee); /* 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 do not provoke an error unfortunately, instead are silently treated as an "x". The following induces an error, until -std is added to get proper ANSI mode. Curiously \x00 != x always comes out true, for an array size at least. It is necessary to write \x00 == 0 to get something that is true only with -std. */ int osf4_cc_array ['\''\x00'\'' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) '\''x'\'' int xlc6_cc_array[FOO(a) == '\''x'\'' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, int *(*)(struct buf *, struct stat *, int), int, int);' # Test code for whether the C compiler supports C89 (body of main). ac_c_conftest_c89_main=' ok |= (argc == 0 || f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]); ' # Test code for whether the C compiler supports C99 (global declarations) ac_c_conftest_c99_globals=' /* Does the compiler advertise C99 conformance? */ #if !defined __STDC_VERSION__ || __STDC_VERSION__ < 199901L # error "Compiler does not advertise C99 conformance" #endif // See if C++-style comments work. #include extern int puts (const char *); extern int printf (const char *, ...); extern int dprintf (int, const char *, ...); extern void *malloc (size_t); extern void free (void *); // Check varargs macros. These examples are taken from C99 6.10.3.5. // dprintf is used instead of fprintf to avoid needing to declare // FILE and stderr. #define debug(...) dprintf (2, __VA_ARGS__) #define showlist(...) puts (#__VA_ARGS__) #define report(test,...) ((test) ? puts (#test) : printf (__VA_ARGS__)) static void test_varargs_macros (void) { int x = 1234; int y = 5678; debug ("Flag"); debug ("X = %d\n", x); showlist (The first, second, and third items.); report (x>y, "x is %d but y is %d", x, y); } // Check long long types. #define BIG64 18446744073709551615ull #define BIG32 4294967295ul #define BIG_OK (BIG64 / BIG32 == 4294967297ull && BIG64 % BIG32 == 0) #if !BIG_OK #error "your preprocessor is broken" #endif #if BIG_OK #else #error "your preprocessor is broken" #endif static long long int bignum = -9223372036854775807LL; static unsigned long long int ubignum = BIG64; struct incomplete_array { int datasize; double data[]; }; struct named_init { int number; const wchar_t *name; double average; }; typedef const char *ccp; static inline int test_restrict (ccp restrict text) { // Iterate through items via the restricted pointer. // Also check for declarations in for loops. for (unsigned int i = 0; *(text+i) != '\''\0'\''; ++i) continue; return 0; } // Check varargs and va_copy. static bool test_varargs (const char *format, ...) { va_list args; va_start (args, format); va_list args_copy; va_copy (args_copy, args); const char *str = ""; int number = 0; float fnumber = 0; while (*format) { switch (*format++) { case '\''s'\'': // string str = va_arg (args_copy, const char *); break; case '\''d'\'': // int number = va_arg (args_copy, int); break; case '\''f'\'': // float fnumber = va_arg (args_copy, double); break; default: break; } } va_end (args_copy); va_end (args); return *str && number && fnumber; } ' # Test code for whether the C compiler supports C99 (body of main). ac_c_conftest_c99_main=' // Check bool. _Bool success = false; success |= (argc != 0); // Check restrict. if (test_restrict ("String literal") == 0) success = true; char *restrict newvar = "Another string"; // Check varargs. success &= test_varargs ("s, d'\'' f .", "string", 65, 34.234); test_varargs_macros (); // Check flexible array members. struct incomplete_array *ia = malloc (sizeof (struct incomplete_array) + (sizeof (double) * 10)); ia->datasize = 10; for (int i = 0; i < ia->datasize; ++i) ia->data[i] = i * 1.234; // Work around memory leak warnings. free (ia); // Check named initializers. struct named_init ni = { .number = 34, .name = L"Test wide string", .average = 543.34343, }; ni.number = 58; int dynamic_array[ni.number]; dynamic_array[0] = argv[0][0]; dynamic_array[ni.number - 1] = 543; // work around unused variable warnings ok |= (!success || bignum == 0LL || ubignum == 0uLL || newvar[0] == '\''x'\'' || dynamic_array[ni.number - 1] != 543); ' # Test code for whether the C compiler supports C11 (global declarations) ac_c_conftest_c11_globals=' /* Does the compiler advertise C11 conformance? */ #if !defined __STDC_VERSION__ || __STDC_VERSION__ < 201112L # error "Compiler does not advertise C11 conformance" #endif // Check _Alignas. char _Alignas (double) aligned_as_double; char _Alignas (0) no_special_alignment; extern char aligned_as_int; char _Alignas (0) _Alignas (int) aligned_as_int; // Check _Alignof. enum { int_alignment = _Alignof (int), int_array_alignment = _Alignof (int[100]), char_alignment = _Alignof (char) }; _Static_assert (0 < -_Alignof (int), "_Alignof is signed"); // Check _Noreturn. int _Noreturn does_not_return (void) { for (;;) continue; } // Check _Static_assert. struct test_static_assert { int x; _Static_assert (sizeof (int) <= sizeof (long int), "_Static_assert does not work in struct"); long int y; }; // Check UTF-8 literals. #define u8 syntax error! char const utf8_literal[] = u8"happens to be ASCII" "another string"; // Check duplicate typedefs. typedef long *long_ptr; typedef long int *long_ptr; typedef long_ptr long_ptr; // Anonymous structures and unions -- taken from C11 6.7.2.1 Example 1. struct anonymous { union { struct { int i; int j; }; struct { int k; long int l; } w; }; int m; } v1; ' # Test code for whether the C compiler supports C11 (body of main). ac_c_conftest_c11_main=' _Static_assert ((offsetof (struct anonymous, i) == offsetof (struct anonymous, w.k)), "Anonymous union alignment botch"); v1.i = 2; v1.w.k = 5; ok |= v1.i != 5; ' # Test code for whether the C compiler supports C11 (complete). ac_c_conftest_c11_program="${ac_c_conftest_c89_globals} ${ac_c_conftest_c99_globals} ${ac_c_conftest_c11_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} ${ac_c_conftest_c99_main} ${ac_c_conftest_c11_main} return ok; } " # Test code for whether the C compiler supports C99 (complete). ac_c_conftest_c99_program="${ac_c_conftest_c89_globals} ${ac_c_conftest_c99_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} ${ac_c_conftest_c99_main} return ok; } " # Test code for whether the C compiler supports C89 (complete). ac_c_conftest_c89_program="${ac_c_conftest_c89_globals} int main (int argc, char **argv) { int ok = 0; ${ac_c_conftest_c89_main} return ok; } " as_fn_append ac_header_c_list " stdlib.h stdlib_h HAVE_STDLIB_H" as_fn_append ac_header_c_list " string.h string_h HAVE_STRING_H" as_fn_append ac_header_c_list " inttypes.h inttypes_h HAVE_INTTYPES_H" as_fn_append ac_header_c_list " stdint.h stdint_h HAVE_STDINT_H" as_fn_append ac_header_c_list " strings.h strings_h HAVE_STRINGS_H" as_fn_append ac_header_c_list " sys/stat.h sys_stat_h HAVE_SYS_STAT_H" as_fn_append ac_header_c_list " sys/types.h sys_types_h HAVE_SYS_TYPES_H" as_fn_append ac_header_c_list " unistd.h unistd_h HAVE_UNISTD_H" as_fn_append ac_header_c_list " wchar.h wchar_h HAVE_WCHAR_H" as_fn_append ac_header_c_list " minix/config.h minix_config_h HAVE_MINIX_CONFIG_H" as_fn_append ac_header_c_list " vfork.h vfork_h HAVE_VFORK_H" as_fn_append ac_func_c_list " fork HAVE_FORK" as_fn_append ac_func_c_list " vfork HAVE_VFORK" as_fn_append ac_header_c_list " sys/param.h sys_param_h HAVE_SYS_PARAM_H" as_fn_append ac_func_c_list " getpagesize HAVE_GETPAGESIZE" # Auxiliary files required by this configure script. ac_aux_files="config.guess config.sub ltmain.sh ar-lib compile missing install-sh" # Locations in which to look for auxiliary files. ac_aux_dir_candidates="${srcdir}/build-aux" # Search for a directory containing all of the required auxiliary files, # $ac_aux_files, from the $PATH-style list $ac_aux_dir_candidates. # If we don't find one directory that contains all the files we need, # we report the set of missing files from the *first* directory in # $ac_aux_dir_candidates and give up. ac_missing_aux_files="" ac_first_candidate=: printf "%s\n" "$as_me:${as_lineno-$LINENO}: looking for aux files: $ac_aux_files" >&5 as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in $ac_aux_dir_candidates do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac as_found=: printf "%s\n" "$as_me:${as_lineno-$LINENO}: trying $as_dir" >&5 ac_aux_dir_found=yes ac_install_sh= for ac_aux in $ac_aux_files do # As a special case, if "install-sh" is required, that requirement # can be satisfied by any of "install-sh", "install.sh", or "shtool", # and $ac_install_sh is set appropriately for whichever one is found. if test x"$ac_aux" = x"install-sh" then if test -f "${as_dir}install-sh"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install-sh found" >&5 ac_install_sh="${as_dir}install-sh -c" elif test -f "${as_dir}install.sh"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}install.sh found" >&5 ac_install_sh="${as_dir}install.sh -c" elif test -f "${as_dir}shtool"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}shtool found" >&5 ac_install_sh="${as_dir}shtool install -c" else ac_aux_dir_found=no if $ac_first_candidate; then ac_missing_aux_files="${ac_missing_aux_files} install-sh" else break fi fi else if test -f "${as_dir}${ac_aux}"; then printf "%s\n" "$as_me:${as_lineno-$LINENO}: ${as_dir}${ac_aux} found" >&5 else ac_aux_dir_found=no if $ac_first_candidate; then ac_missing_aux_files="${ac_missing_aux_files} ${ac_aux}" else break fi fi fi done if test "$ac_aux_dir_found" = yes; then ac_aux_dir="$as_dir" break fi ac_first_candidate=false as_found=false done IFS=$as_save_IFS if $as_found then : else case e in #( e) as_fn_error $? "cannot find required auxiliary files:$ac_missing_aux_files" "$LINENO" 5 ;; esac fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. if test -f "${ac_aux_dir}config.guess"; then ac_config_guess="$SHELL ${ac_aux_dir}config.guess" fi if test -f "${ac_aux_dir}config.sub"; then ac_config_sub="$SHELL ${ac_aux_dir}config.sub" fi if test -f "$ac_aux_dir/configure"; then ac_configure="$SHELL ${ac_aux_dir}configure" fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; 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,) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: '$ac_var' was set to '$ac_old_val' in the previous run" >&5 printf "%s\n" "$as_me: error: '$ac_var' was set to '$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: '$ac_var' was not set in the previous run" >&5 printf "%s\n" "$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 # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: '$ac_var' has changed since the previous run:" >&5 printf "%s\n" "$as_me: error: '$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in '$ac_var' since the previous run:" >&5 printf "%s\n" "$as_me: warning: ignoring whitespace changes in '$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: former value: '$ac_old_val'" >&5 printf "%s\n" "$as_me: former value: '$ac_old_val'" >&2;} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: current value: '$ac_new_val'" >&5 printf "%s\n" "$as_me: current value: '$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`printf "%s\n" "$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. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 printf "%s\n" "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run '${MAKE-make} distclean' and/or 'rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## 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 config.h" am__api_version='1.17' # 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. # Reject install programs that cannot install multiple files. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 printf %s "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if test ${ac_cv_path_install+y} then : printf %s "(cached) " >&6 else case e in #( e) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac # Account for fact that we put trailing slashes in our PATH walk. 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_fn_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 rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir/" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir ;; esac fi if test ${ac_cv_path_install+y}; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 printf "%s\n" "$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' { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether sleep supports fractional seconds" >&5 printf %s "checking whether sleep supports fractional seconds... " >&6; } if test ${am_cv_sleep_fractional_seconds+y} then : printf %s "(cached) " >&6 else case e in #( e) if sleep 0.001 2>/dev/null then : am_cv_sleep_fractional_seconds=yes else case e in #( e) am_cv_sleep_fractional_seconds=no ;; esac fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_sleep_fractional_seconds" >&5 printf "%s\n" "$am_cv_sleep_fractional_seconds" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking filesystem timestamp resolution" >&5 printf %s "checking filesystem timestamp resolution... " >&6; } if test ${am_cv_filesystem_timestamp_resolution+y} then : printf %s "(cached) " >&6 else case e in #( e) # Default to the worst case. am_cv_filesystem_timestamp_resolution=2 # Only try to go finer than 1 sec if sleep can do it. # Don't try 1 sec, because if 0.01 sec and 0.1 sec don't work, # - 1 sec is not much of a win compared to 2 sec, and # - it takes 2 seconds to perform the test whether 1 sec works. # # Instead, just use the default 2s on platforms that have 1s resolution, # accept the extra 1s delay when using $sleep in the Automake tests, in # exchange for not incurring the 2s delay for running the test for all # packages. # am_try_resolutions= if test "$am_cv_sleep_fractional_seconds" = yes; then # Even a millisecond often causes a bunch of false positives, # so just try a hundredth of a second. The time saved between .001 and # .01 is not terribly consequential. am_try_resolutions="0.01 0.1 $am_try_resolutions" fi # In order to catch current-generation FAT out, we must *modify* files # that already exist; the *creation* timestamp is finer. Use names # that make ls -t sort them differently when they have equal # timestamps than when they have distinct timestamps, keeping # in mind that ls -t prints the *newest* file first. rm -f conftest.ts? : > conftest.ts1 : > conftest.ts2 : > conftest.ts3 # Make sure ls -t actually works. Do 'set' in a subshell so we don't # clobber the current shell's arguments. (Outer-level square brackets # are removed by m4; they're present so that m4 does not expand # ; be careful, easy to get confused.) if ( set X `ls -t conftest.ts[12]` && { test "$*" != "X conftest.ts1 conftest.ts2" || test "$*" != "X conftest.ts2 conftest.ts1"; } ); then :; else # 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". printf "%s\n" ""Bad output from ls -t: \"`ls -t conftest.ts[12]`\""" >&5 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "ls -t produces unexpected output. Make sure there is not a broken ls alias in your environment. See 'config.log' for more details" "$LINENO" 5; } fi for am_try_res in $am_try_resolutions; do # Any one fine-grained sleep might happen to cross the boundary # between two values of a coarser actual resolution, but if we do # two fine-grained sleeps in a row, at least one of them will fall # entirely within a coarse interval. echo alpha > conftest.ts1 sleep $am_try_res echo beta > conftest.ts2 sleep $am_try_res echo gamma > conftest.ts3 # We assume that 'ls -t' will make use of high-resolution # timestamps if the operating system supports them at all. if (set X `ls -t conftest.ts?` && test "$2" = conftest.ts3 && test "$3" = conftest.ts2 && test "$4" = conftest.ts1); then # # Ok, ls -t worked. If we're at a resolution of 1 second, we're done, # because we don't need to test make. make_ok=true if test $am_try_res != 1; then # But if we've succeeded so far with a subsecond resolution, we # have one more thing to check: make. It can happen that # everything else supports the subsecond mtimes, but make doesn't; # notably on macOS, which ships make 3.81 from 2006 (the last one # released under GPLv2). https://bugs.gnu.org/68808 # # We test $MAKE if it is defined in the environment, else "make". # It might get overridden later, but our hope is that in practice # it does not matter: it is the system "make" which is (by far) # the most likely to be broken, whereas if the user overrides it, # probably they did so with a better, or at least not worse, make. # https://lists.gnu.org/archive/html/automake/2024-06/msg00051.html # # Create a Makefile (real tab character here): rm -f conftest.mk echo 'conftest.ts1: conftest.ts2' >conftest.mk echo ' touch conftest.ts2' >>conftest.mk # # Now, running # touch conftest.ts1; touch conftest.ts2; make # should touch ts1 because ts2 is newer. This could happen by luck, # but most often, it will fail if make's support is insufficient. So # test for several consecutive successes. # # (We reuse conftest.ts[12] because we still want to modify existing # files, not create new ones, per above.) n=0 make=${MAKE-make} until test $n -eq 3; do echo one > conftest.ts1 sleep $am_try_res echo two > conftest.ts2 # ts2 should now be newer than ts1 if $make -f conftest.mk | grep 'up to date' >/dev/null; then make_ok=false break # out of $n loop fi n=`expr $n + 1` done fi # if $make_ok; then # Everything we know to check worked out, so call this resolution good. am_cv_filesystem_timestamp_resolution=$am_try_res break # out of $am_try_res loop fi # Otherwise, we'll go on to check the next resolution. fi done rm -f conftest.ts? # (end _am_filesystem_timestamp_resolution) ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_filesystem_timestamp_resolution" >&5 printf "%s\n" "$am_cv_filesystem_timestamp_resolution" >&6; } # This check should not be cached, as it may vary across builds of # different projects. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 printf %s "checking whether build environment is sane... " >&6; } # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: '$srcdir'" "$LINENO" 5;; esac # 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). am_build_env_is_sane=no am_has_slept=no rm -f conftest.file for am_try in 1 2; do echo "timestamp, slept: $am_has_slept" > conftest.file 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 test "$2" = conftest.file ); then am_build_env_is_sane=yes break fi # Just in case. sleep "$am_cv_filesystem_timestamp_resolution" am_has_slept=yes done { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_build_env_is_sane" >&5 printf "%s\n" "$am_build_env_is_sane" >&6; } if test "$am_build_env_is_sane" = no; then as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi # If we didn't sleep, we still need to ensure time stamps of config.status and # generated files are strictly newer. am_sleep_pid= if test -e conftest.file || grep 'slept: no' conftest.file >/dev/null 2>&1 then : else case e in #( e) ( sleep "$am_cv_filesystem_timestamp_resolution" ) & am_sleep_pid=$! ;; esac fi rm -f conftest.file 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 $. # By default was 's,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`printf "%s\n" "$program_transform_name" | sed "$ac_script"` # Expand $ac_aux_dir to an absolute path. am_aux_dir=`cd "$ac_aux_dir" && pwd` if test x"${MISSING+set}" != xset; then MISSING="\${SHELL} '$am_aux_dir/missing'" fi # Use eval to expand $SHELL if eval "$MISSING --is-lightweight"; then am_missing_run="$MISSING " else am_missing_run= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: 'missing' script is too old or missing" >&5 printf "%s\n" "$as_me: WARNING: 'missing' script is too old or missing" >&2;} fi if test x"${install_sh+set}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_STRIP+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 printf "%s\n" "$STRIP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_STRIP+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 printf "%s\n" "$ac_ct_STRIP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a race-free mkdir -p" >&5 printf %s "checking for a race-free mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if test ${ac_cv_path_mkdir+y} then : printf %s "(cached) " >&6 else case e in #( e) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do as_fn_executable_p "$as_dir$ac_prog$ac_exec_ext" || continue case `"$as_dir$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir ('*'coreutils) '* | \ *'BusyBox '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS ;; esac fi test -d ./--version && rmdir ./--version if test ${ac_cv_path_mkdir+y}; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use plain mkdir -p, # in the hope it doesn't have the bugs of ancient mkdir. MKDIR_P='mkdir -p' fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 printf "%s\n" "$MKDIR_P" >&6; } 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_AWK+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 printf "%s\n" "$AWK" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$AWK" && break done { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 printf %s "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`printf "%s\n" "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval test \${ac_cv_prog_make_${ac_make}_set+y} then : printf %s "(cached) " >&6 else case e in #( e) cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make ;; esac fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } SET_MAKE= else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "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 AM_DEFAULT_VERBOSITY=1 # Check whether --enable-silent-rules was given. if test ${enable_silent_rules+y} then : enableval=$enable_silent_rules; fi am_make=${MAKE-make} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $am_make supports nested variables" >&5 printf %s "checking whether $am_make supports nested variables... " >&6; } if test ${am_cv_make_support_nested_variables+y} then : printf %s "(cached) " >&6 else case e in #( e) if printf "%s\n" 'TRUE=$(BAR$(V)) BAR0=false BAR1=true V=1 am__doit: @$(TRUE) .PHONY: am__doit' | $am_make -f - >/dev/null 2>&1; then am_cv_make_support_nested_variables=yes else am_cv_make_support_nested_variables=no fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_make_support_nested_variables" >&5 printf "%s\n" "$am_cv_make_support_nested_variables" >&6; } AM_BACKSLASH='\' am__rm_f_notfound= if (rm -f && rm -fr && rm -rf) 2>/dev/null then : else case e in #( e) am__rm_f_notfound='""' ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking xargs -n works" >&5 printf %s "checking xargs -n works... " >&6; } if test ${am_cv_xargs_n_works+y} then : printf %s "(cached) " >&6 else case e in #( e) if test "`echo 1 2 3 | xargs -n2 echo`" = "1 2 3" then : am_cv_xargs_n_works=yes else case e in #( e) am_cv_xargs_n_works=no ;; esac fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_xargs_n_works" >&5 printf "%s\n" "$am_cv_xargs_n_works" >&6; } if test "$am_cv_xargs_n_works" = yes then : am__xargs_n='xargs -n' else case e in #( e) am__xargs_n='am__xargs_n () { shift; sed "s/ /\\n/g" | while read am__xargs_n_arg; do "" "$am__xargs_n_arg"; done; }' ;; esac fi if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi 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='fxt' VERSION='0.3.15' printf "%s\n" "#define PACKAGE \"$PACKAGE\"" >>confdefs.h printf "%s\n" "#define VERSION \"$VERSION\"" >>confdefs.h # 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"} # For better backward compatibility. To be removed once Automake 1.9.x # dies out for good. For more background, see: # # mkdir_p='$(MKDIR_P)' # We need awk for the "check" target (and possibly the TAP driver). The # system "awk" is bad on some platforms. # Always define AMTAR for backward compatibility. Yes, it's still used # in the wild :-( We should find a proper way to deprecate it ... AMTAR='$${TAR-tar}' # We'll loop over all known methods to create a tar archive until one works. _am_tools='gnutar pax cpio none' { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to create a pax tar archive" >&5 printf %s "checking how to create a pax tar archive... " >&6; } # Go ahead even if we have the value already cached. We do so because we # need to set the values for the 'am__tar' and 'am__untar' variables. _am_tools=${am_cv_prog_tar_pax-$_am_tools} for _am_tool in $_am_tools; do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do { echo "$as_me:$LINENO: $_am_tar --version" >&5 ($_am_tar --version) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } && break done am__tar="$_am_tar --format=posix -chf - "'"$$tardir"' am__tar_="$_am_tar --format=posix -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 pax -w "$$tardir"' am__tar_='pax -L -x pax -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H pax -L' am__tar_='find "$tardir" -print | cpio -o -H pax -L' am__untar='cpio -i -H pax -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_pax}" && break # tar/untar a dummy directory, and stop if the command works. rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file { echo "$as_me:$LINENO: tardir=conftest.dir && eval $am__tar_ >conftest.tar" >&5 (tardir=conftest.dir && eval $am__tar_ >conftest.tar) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } rm -rf conftest.dir if test -s conftest.tar; then { echo "$as_me:$LINENO: $am__untar &5 ($am__untar &5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } { echo "$as_me:$LINENO: cat conftest.dir/file" >&5 (cat conftest.dir/file) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } grep GrepMe conftest.dir/file >/dev/null 2>&1 && break fi done rm -rf conftest.dir if test ${am_cv_prog_tar_pax+y} then : printf %s "(cached) " >&6 else case e in #( e) am_cv_prog_tar_pax=$_am_tool ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_tar_pax" >&5 printf "%s\n" "$am_cv_prog_tar_pax" >&6; } # Variables for tags utilities; see am/tags.am if test -z "$CTAGS"; then CTAGS=ctags fi if test -z "$ETAGS"; then ETAGS=etags fi if test -z "$CSCOPE"; then CSCOPE=cscope fi AM_DEFAULT_VERBOSITY=1 AM_DEFAULT_VERBOSITY=1 DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} supports the include directive" >&5 printf %s "checking whether ${MAKE-make} supports the include directive... " >&6; } cat > confinc.mk << 'END' am__doit: @echo this is the am__doit target >confinc.out .PHONY: am__doit END am__include="#" am__quote= # BSD make does it like this. echo '.include "confinc.mk" # ignored' > confmf.BSD # Other make implementations (GNU, Solaris 10, AIX) do it like this. echo 'include confinc.mk # ignored' > confmf.GNU _am_result=no for s in GNU BSD; do { echo "$as_me:$LINENO: ${MAKE-make} -f confmf.$s && cat confinc.out" >&5 (${MAKE-make} -f confmf.$s && cat confinc.out) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } case $?:`cat confinc.out 2>/dev/null` in #( '0:this is the am__doit target') : case $s in #( BSD) : am__include='.include' am__quote='"' ;; #( *) : am__include='include' am__quote='' ;; esac ;; #( *) : ;; esac if test "$am__include" != "#"; then _am_result="yes ($s style)" break fi done rm -f confinc.* confmf.* { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ${_am_result}" >&5 printf "%s\n" "${_am_result}" >&6; } # Check whether --enable-dependency-tracking was given. if test ${enable_dependency_tracking+y} then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' am__nodep='_no' 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_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" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # 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 ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args. set dummy ${ac_tool_prefix}clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "clang", so it can be a program name with args. set dummy clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi fi test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See 'config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion -version; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM 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. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 printf %s "checking whether the C compiler works... " >&6; } ac_link_default=`printf "%s\n" "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : # Autoconf-2.13 could set the ac_cv_exeext variable to 'no'. # So ignore a value of 'no', otherwise this would lead to 'EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test ${ac_cv_exeext+y} && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an '-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else case e in #( e) ac_file='' ;; esac fi if test -z "$ac_file" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See 'config.log' for more details" "$LINENO" 5; } else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 printf %s "checking for C compiler default output file name... " >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 printf "%s\n" "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 printf %s "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 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 | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else case e in #( e) { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See 'config.log' for more details" "$LINENO" 5; } ;; esac fi rm -f conftest conftest$ac_cv_exeext { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 printf "%s\n" "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { FILE *f = fopen ("conftest.out", "w"); if (!f) return 1; return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 printf %s "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error 77 "cannot run C compiled programs. If you meant to cross compile, use '--host'. See 'config.log' for more details" "$LINENO" 5; } fi fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 printf "%s\n" "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext \ conftest.o conftest.obj conftest.out ac_clean_files=$ac_clean_files_save { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 printf %s "checking for suffix of object files... " >&6; } if test ${ac_cv_objext+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else case e in #( e) printf "%s\n" "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See 'config.log' for more details" "$LINENO" 5; } ;; esac fi rm -f conftest.$ac_cv_objext conftest.$ac_ext ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 printf "%s\n" "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5 printf %s "checking whether the compiler supports GNU C... " >&6; } if test ${ac_cv_c_compiler_gnu+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_compiler_gnu=yes else case e in #( e) ac_compiler_gnu=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; } ac_compiler_gnu=$ac_cv_c_compiler_gnu if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+y} ac_save_CFLAGS=$CFLAGS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 printf %s "checking whether $CC accepts -g... " >&6; } if test ${ac_cv_prog_cc_g+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes else case e in #( e) CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : else case e in #( e) ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 printf "%s\n" "$ac_cv_prog_cc_g" >&6; } if test $ac_test_CFLAGS; 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 ac_prog_cc_stdc=no if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5 printf %s "checking for $CC option to enable C11 features... " >&6; } if test ${ac_cv_prog_cc_c11+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_cv_prog_cc_c11=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c11_program _ACEOF for ac_arg in '' -std=gnu11 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c11=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c11" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC ;; esac fi if test "x$ac_cv_prog_cc_c11" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else case e in #( e) if test "x$ac_cv_prog_cc_c11" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5 printf "%s\n" "$ac_cv_prog_cc_c11" >&6; } CC="$CC $ac_cv_prog_cc_c11" ;; esac fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c11 ac_prog_cc_stdc=c11 ;; esac fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5 printf %s "checking for $CC option to enable C99 features... " >&6; } if test ${ac_cv_prog_cc_c99+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c99_program _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -qlanglvl=extc1x -qlanglvl=extc99 -AC99 -D_STDC_C99= do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC ;; esac fi if test "x$ac_cv_prog_cc_c99" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else case e in #( e) if test "x$ac_cv_prog_cc_c99" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 printf "%s\n" "$ac_cv_prog_cc_c99" >&6; } CC="$CC $ac_cv_prog_cc_c99" ;; esac fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99 ac_prog_cc_stdc=c99 ;; esac fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5 printf %s "checking for $CC option to enable C89 features... " >&6; } if test ${ac_cv_prog_cc_c89+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c89_program _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC ;; esac fi if test "x$ac_cv_prog_cc_c89" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else case e in #( e) if test "x$ac_cv_prog_cc_c89" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 printf "%s\n" "$ac_cv_prog_cc_c89" >&6; } CC="$CC $ac_cv_prog_cc_c89" ;; esac fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89 ac_prog_cc_stdc=c89 ;; esac 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=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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 printf %s "checking whether $CC understands -c and -o together... " >&6; } if test ${am_cv_prog_cc_c_o+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 printf "%s\n" "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" 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="$CC" am_compiler_list= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 printf %s "checking dependency style of $depcc... " >&6; } if test ${am_cv_CC_dependencies_compiler_type+y} then : printf %s "(cached) " >&6 else case e in #( e) 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". rm -rf conftest.dir 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 am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac 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 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # 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. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; 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 ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj 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 thus: # 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 ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 printf "%s\n" "$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_header= ac_cache= for ac_item in $ac_header_c_list do if test $ac_cache; then ac_fn_c_check_header_compile "$LINENO" $ac_header ac_cv_header_$ac_cache "$ac_includes_default" if eval test \"x\$ac_cv_header_$ac_cache\" = xyes; then printf "%s\n" "#define $ac_item 1" >> confdefs.h fi ac_header= ac_cache= elif test $ac_header; then ac_cache=$ac_item else ac_header=$ac_item fi done if test $ac_cv_header_stdlib_h = yes && test $ac_cv_header_string_h = yes then : printf "%s\n" "#define STDC_HEADERS 1" >>confdefs.h fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether it is safe to define __EXTENSIONS__" >&5 printf %s "checking whether it is safe to define __EXTENSIONS__... " >&6; } if test ${ac_cv_safe_to_define___extensions__+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # define __EXTENSIONS__ 1 $ac_includes_default int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_safe_to_define___extensions__=yes else case e in #( e) ac_cv_safe_to_define___extensions__=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_safe_to_define___extensions__" >&5 printf "%s\n" "$ac_cv_safe_to_define___extensions__" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether _XOPEN_SOURCE should be defined" >&5 printf %s "checking whether _XOPEN_SOURCE should be defined... " >&6; } if test ${ac_cv_should_define__xopen_source+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_cv_should_define__xopen_source=no if test $ac_cv_header_wchar_h = yes then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include mbstate_t x; int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #define _XOPEN_SOURCE 500 #include mbstate_t x; int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_should_define__xopen_source=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_should_define__xopen_source" >&5 printf "%s\n" "$ac_cv_should_define__xopen_source" >&6; } printf "%s\n" "#define _ALL_SOURCE 1" >>confdefs.h printf "%s\n" "#define _DARWIN_C_SOURCE 1" >>confdefs.h printf "%s\n" "#define _GNU_SOURCE 1" >>confdefs.h printf "%s\n" "#define _HPUX_ALT_XOPEN_SOCKET_API 1" >>confdefs.h printf "%s\n" "#define _NETBSD_SOURCE 1" >>confdefs.h printf "%s\n" "#define _OPENBSD_SOURCE 1" >>confdefs.h printf "%s\n" "#define _POSIX_PTHREAD_SEMANTICS 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_ATTRIBS_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_BFP_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_DFP_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_FUNCS_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_IEC_60559_TYPES_EXT__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_LIB_EXT2__ 1" >>confdefs.h printf "%s\n" "#define __STDC_WANT_MATH_SPEC_FUNCS__ 1" >>confdefs.h printf "%s\n" "#define _TANDEM_SOURCE 1" >>confdefs.h if test $ac_cv_header_minix_config_h = yes then : MINIX=yes printf "%s\n" "#define _MINIX 1" >>confdefs.h printf "%s\n" "#define _POSIX_SOURCE 1" >>confdefs.h printf "%s\n" "#define _POSIX_1_SOURCE 2" >>confdefs.h else case e in #( e) MINIX= ;; esac fi if test $ac_cv_safe_to_define___extensions__ = yes then : printf "%s\n" "#define __EXTENSIONS__ 1" >>confdefs.h fi if test $ac_cv_should_define__xopen_source = yes then : printf "%s\n" "#define _XOPEN_SOURCE 500" >>confdefs.h fi if test -n "$ac_tool_prefix"; then for ac_prog in ar lib "link -lib" 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_AR+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi AR=$ac_cv_prog_AR if test -n "$AR"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 printf "%s\n" "$AR" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar lib "link -lib" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_AR+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 printf "%s\n" "$ac_ct_AR" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} : ${ARFLAGS=cr} { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking the archiver ($AR) interface" >&5 printf %s "checking the archiver ($AR) interface... " >&6; } if test ${am_cv_ar_interface+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 am_cv_ar_interface=ar cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int some_variable = 0; _ACEOF if ac_fn_c_try_compile "$LINENO" then : am_ar_try='$AR $ARFLAGS libconftest.a conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=ar else am_ar_try='$AR -NOLOGO -OUT:conftest.lib conftest.$ac_objext >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$am_ar_try\""; } >&5 (eval $am_ar_try) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test "$ac_status" -eq 0; then am_cv_ar_interface=lib else am_cv_ar_interface=unknown fi fi rm -f conftest.lib libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.beam 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 ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_ar_interface" >&5 printf "%s\n" "$am_cv_ar_interface" >&6; } case $am_cv_ar_interface in ar) ;; lib) # Microsoft lib, so override with the ar-lib wrapper script. # FIXME: It is wrong to rewrite AR. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__AR in this case, # and then we could set am__AR="$am_aux_dir/ar-lib \$(AR)" or something # similar. AR="$am_aux_dir/ar-lib $AR" ;; unknown) as_fn_error $? "could not determine $AR interface" "$LINENO" 5 ;; esac case `pwd` in *\ * | *\ *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 printf "%s\n" "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.5.4' macro_revision='2.5.4' ltmain=$ac_aux_dir/ltmain.sh # Make sure we can run config.sub. $SHELL "${ac_aux_dir}config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL ${ac_aux_dir}config.sub" "$LINENO" 5 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 printf %s "checking build system type... " >&6; } if test ${ac_cv_build+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "${ac_aux_dir}config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "${ac_aux_dir}config.sub" $ac_build_alias` || as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $ac_build_alias failed" "$LINENO" 5 ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 printf "%s\n" "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 printf %s "checking host system type... " >&6; } if test ${ac_cv_host+y} then : printf %s "(cached) " >&6 else case e in #( e) if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "${ac_aux_dir}config.sub" $host_alias` || as_fn_error $? "$SHELL ${ac_aux_dir}config.sub $host_alias failed" "$LINENO" 5 fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 printf "%s\n" "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac # Backslashify metacharacters that are still active within # double-quoted strings. 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 delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' ECHO='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO ECHO=$ECHO$ECHO$ECHO$ECHO$ECHO$ECHO { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to print strings" >&5 printf %s "checking how to print strings... " >&6; } # Test print first, because it will be a builtin if present. if test "X`( print -r -- -n ) 2>/dev/null`" = X-n && \ test "X`print -r -- $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='print -r --' elif test "X`printf %s $ECHO 2>/dev/null`" = "X$ECHO"; then ECHO='printf %s\n' else # Use this function as a fallback that always works. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } ECHO='func_fallback_echo' fi # func_echo_all arg... # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "" } case $ECHO in printf*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: printf" >&5 printf "%s\n" "printf" >&6; } ;; print*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: print -r" >&5 printf "%s\n" "print -r" >&6; } ;; *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: cat" >&5 printf "%s\n" "cat" >&6; } ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 printf %s "checking for a sed that does not truncate output... " >&6; } if test ${ac_cv_path_SED+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in sed gsed do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_SED" || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in #( *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; #( *) ac_count=0 printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" printf "%s\n" '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 printf "%s\n" "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 printf %s "checking for grep that handles long lines and -e... " >&6; } if test ${ac_cv_path_GREP+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in grep ggrep do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_GREP" || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in #( *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; #( *) ac_count=0 printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" printf "%s\n" 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 printf "%s\n" "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 printf %s "checking for egrep... " >&6; } if test ${ac_cv_path_EGREP+y} then : printf %s "(cached) " >&6 else case e in #( e) if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in egrep do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in #( *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; #( *) ac_count=0 printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" printf "%s\n" 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 printf "%s\n" "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" EGREP_TRADITIONAL=$EGREP ac_cv_path_EGREP_TRADITIONAL=$EGREP { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 printf %s "checking for fgrep... " >&6; } if test ${ac_cv_path_FGREP+y} then : printf %s "(cached) " >&6 else case e in #( e) if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in fgrep do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_FGREP" || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in #( *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; #( *) ac_count=0 printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" printf "%s\n" 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 printf "%s\n" "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test ${with_gnu_ld+y} then : withval=$with_gnu_ld; test no = "$withval" || with_gnu_ld=yes else case e in #( e) with_gnu_ld=no ;; esac fi ac_prog=ld if test yes = "$GCC"; then # Check if gcc -print-prog-name=ld gives a path. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 printf %s "checking for ld used by $CC... " >&6; } case $host in *-*-mingw* | *-*-windows*) # 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 yes = "$with_gnu_ld"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 printf %s "checking for GNU ld... " >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 printf %s "checking for non-GNU ld... " >&6; } fi if test ${lt_cv_path_LD+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 printf "%s\n" "$LD" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 printf %s "checking if the linker ($LD) is GNU ld... " >&6; } if test ${lt_cv_prog_gnu_ld+y} then : printf %s "(cached) " >&6 else case e in #( e) # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 printf "%s\n" "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 printf %s "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if test ${lt_cv_path_NM+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 # MSYS converts /dev/null to NUL, MinGW nm treats NUL as empty case $build_os in mingw* | windows*) lt_bad_file=conftest.nm/nofile ;; *) lt_bad_file=/dev/null ;; esac case `"$tmp_nm" -B $lt_bad_file 2>&1 | $SED '1q'` in *$lt_bad_file* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break 2 ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | $SED '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break 2 ;; *) 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 : ${lt_cv_path_NM=no} fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 printf "%s\n" "$lt_cv_path_NM" >&6; } if test no != "$lt_cv_path_NM"; then NM=$lt_cv_path_NM else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$DUMPBIN"; then : # Let the user override the test. else if test -n "$ac_tool_prefix"; then for ac_prog in dumpbin "link -dump" 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_DUMPBIN+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 printf "%s\n" "$DUMPBIN" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in dumpbin "link -dump" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_DUMPBIN+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 printf "%s\n" "$ac_ct_DUMPBIN" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DUMPBIN=$ac_ct_DUMPBIN fi fi case `$DUMPBIN -symbols -headers /dev/null 2>&1 | $SED '1q'` in *COFF*) DUMPBIN="$DUMPBIN -symbols -headers" ;; *) DUMPBIN=: ;; esac fi if test : != "$DUMPBIN"; then NM=$DUMPBIN fi fi test -z "$NM" && NM=nm { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 printf %s "checking the name lister ($NM) interface... " >&6; } if test ${lt_cv_nm_interface+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:$LINENO: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:$LINENO: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 printf "%s\n" "$lt_cv_nm_interface" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 printf %s "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 printf "%s\n" "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 printf %s "checking the maximum length of command line arguments... " >&6; } if test ${lt_cv_sys_max_cmd_len+y} then : printf %s "(cached) " >&6 else case e in #( e) 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* | ironclad*) # Under GNU Hurd and Ironclad, 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* | windows* | cegcc*) # 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; ;; mint*) # On MiNT this can take a long time and run out of memory. 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; ;; darwin* | dragonfly* | freebsd* | midnightbsd* | netbsd* | openbsd*) # 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 ;; os2*) # The test takes a long time on OS/2. lt_cv_sys_max_cmd_len=8192 ;; 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 ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len" && \ test undefined != "$lt_cv_sys_max_cmd_len"; then 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` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # 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. while { test X`env echo "$teststring$teststring" 2>/dev/null` \ = "X$teststring$teststring"; } >/dev/null 2>&1 && test 17 != "$i" # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` 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` fi ;; esac ;; esac fi if test -n "$lt_cv_sys_max_cmd_len"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 printf "%s\n" "$lt_cv_sys_max_cmd_len" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none" >&5 printf "%s\n" "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to $host format" >&5 printf %s "checking how to convert $build file names to $host format... " >&6; } if test ${lt_cv_to_host_file_cmd+y} then : printf %s "(cached) " >&6 else case e in #( e) case $host in *-*-mingw* ) case $build in *-*-mingw* | *-*-windows* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_w32 ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_cygwin_to_w32 ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_w32 ;; esac ;; *-*-cygwin* ) case $build in *-*-mingw* | *-*-windows* ) # actually msys lt_cv_to_host_file_cmd=func_convert_file_msys_to_cygwin ;; *-*-cygwin* ) lt_cv_to_host_file_cmd=func_convert_file_noop ;; * ) # otherwise, assume *nix lt_cv_to_host_file_cmd=func_convert_file_nix_to_cygwin ;; esac ;; * ) # unhandled hosts (and "normal" native builds) lt_cv_to_host_file_cmd=func_convert_file_noop ;; esac ;; esac fi to_host_file_cmd=$lt_cv_to_host_file_cmd { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_host_file_cmd" >&5 printf "%s\n" "$lt_cv_to_host_file_cmd" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to convert $build file names to toolchain format" >&5 printf %s "checking how to convert $build file names to toolchain format... " >&6; } if test ${lt_cv_to_tool_file_cmd+y} then : printf %s "(cached) " >&6 else case e in #( e) #assume ordinary cross tools, or native build. lt_cv_to_tool_file_cmd=func_convert_file_noop case $host in *-*-mingw* | *-*-windows* ) case $build in *-*-mingw* | *-*-windows* ) # actually msys lt_cv_to_tool_file_cmd=func_convert_file_msys_to_w32 ;; esac ;; esac ;; esac fi to_tool_file_cmd=$lt_cv_to_tool_file_cmd { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_to_tool_file_cmd" >&5 printf "%s\n" "$lt_cv_to_tool_file_cmd" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 printf %s "checking for $LD option to reload object files... " >&6; } if test ${lt_cv_ld_reload_flag+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_ld_reload_flag='-r' ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 printf "%s\n" "$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 cygwin* | mingw* | windows* | pw32* | cegcc*) if test yes != "$GCC"; then reload_cmds=false fi ;; darwin*) if test yes = "$GCC"; then reload_cmds='$LTCC $LTCFLAGS -nostdlib $wl-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac # Extract the first word of "file", so it can be a program name with args. set dummy file; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_FILECMD+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$FILECMD"; then ac_cv_prog_FILECMD="$FILECMD" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_FILECMD="file" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_prog_FILECMD" && ac_cv_prog_FILECMD=":" fi ;; esac fi FILECMD=$ac_cv_prog_FILECMD if test -n "$FILECMD"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $FILECMD" >&5 printf "%s\n" "$FILECMD" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_OBJDUMP+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 printf "%s\n" "$OBJDUMP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_OBJDUMP+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OBJDUMP="objdump" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 printf "%s\n" "$ac_ct_OBJDUMP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 printf %s "checking how to recognize dependent libraries... " >&6; } if test ${lt_cv_deplibs_check_method+y} then : printf %s "(cached) " >&6 else case e in #( e) 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. # 'file_magic [[regex]]' -- check by looking for files in library path # that 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 aix[4-9]*) 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='$FILECMD -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* | windows* | 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', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else # Keep this pattern in sync with the one in func_win32_libid. lt_cv_deplibs_check_method='file_magic file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64|pe-aarch64)' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc*) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly* | midnightbsd*) 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=$FILECMD lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; haiku*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=$FILECMD 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])(-bit)?( [LM]SB)? 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 ;; interix[3-9]*) # 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 glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) lt_cv_deplibs_check_method=pass_all ;; *-mlibc) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) 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=$FILECMD lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; 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 ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; serenity*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) 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 ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; os2*) lt_cv_deplibs_check_method=pass_all ;; esac ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 printf "%s\n" "$lt_cv_deplibs_check_method" >&6; } file_magic_glob= want_nocaseglob=no if test "$build" = "$host"; then case $host_os in mingw* | windows* | pw32*) if ( shopt | grep nocaseglob ) >/dev/null 2>&1; then want_nocaseglob=yes else file_magic_glob=`echo aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ | $SED -e "s/\(..\)/s\/[\1]\/[\1]\/g;/g"` fi ;; esac fi 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 test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dlltool", so it can be a program name with args. set dummy ${ac_tool_prefix}dlltool; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_DLLTOOL+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$DLLTOOL"; then ac_cv_prog_DLLTOOL="$DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_DLLTOOL="${ac_tool_prefix}dlltool" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi DLLTOOL=$ac_cv_prog_DLLTOOL if test -n "$DLLTOOL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $DLLTOOL" >&5 printf "%s\n" "$DLLTOOL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_DLLTOOL"; then ac_ct_DLLTOOL=$DLLTOOL # Extract the first word of "dlltool", so it can be a program name with args. set dummy dlltool; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_DLLTOOL+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$ac_ct_DLLTOOL"; then ac_cv_prog_ac_ct_DLLTOOL="$ac_ct_DLLTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DLLTOOL="dlltool" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_DLLTOOL=$ac_cv_prog_ac_ct_DLLTOOL if test -n "$ac_ct_DLLTOOL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DLLTOOL" >&5 printf "%s\n" "$ac_ct_DLLTOOL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_DLLTOOL" = x; then DLLTOOL="false" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DLLTOOL=$ac_ct_DLLTOOL fi else DLLTOOL="$ac_cv_prog_DLLTOOL" fi test -z "$DLLTOOL" && DLLTOOL=dlltool { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to associate runtime and link libraries" >&5 printf %s "checking how to associate runtime and link libraries... " >&6; } if test ${lt_cv_sharedlib_from_linklib_cmd+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_sharedlib_from_linklib_cmd='unknown' case $host_os in cygwin* | mingw* | windows* | pw32* | cegcc*) # two different shell functions defined in ltmain.sh; # decide which one to use based on capabilities of $DLLTOOL case `$DLLTOOL --help 2>&1` in *--identify-strict*) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib ;; *) lt_cv_sharedlib_from_linklib_cmd=func_cygming_dll_for_implib_fallback ;; esac ;; *) # fallback: assume linklib IS sharedlib lt_cv_sharedlib_from_linklib_cmd=$ECHO ;; esac ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sharedlib_from_linklib_cmd" >&5 printf "%s\n" "$lt_cv_sharedlib_from_linklib_cmd" >&6; } sharedlib_from_linklib_cmd=$lt_cv_sharedlib_from_linklib_cmd test -z "$sharedlib_from_linklib_cmd" && sharedlib_from_linklib_cmd=$ECHO 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_RANLIB+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 printf "%s\n" "$RANLIB" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_RANLIB+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_RANLIB="ranlib" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 printf "%s\n" "$ac_ct_RANLIB" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi if test -n "$ac_tool_prefix"; then for ac_prog in ar 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_AR+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_AR="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi AR=$ac_cv_prog_AR if test -n "$AR"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 printf "%s\n" "$AR" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$AR" && break done fi if test -z "$AR"; then ac_ct_AR=$AR for ac_prog in ar do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_AR+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_AR="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 printf "%s\n" "$ac_ct_AR" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_AR" && break done if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi fi : ${AR=ar} # Use ARFLAGS variable as AR's operation code to sync the variable naming with # Automake. If both AR_FLAGS and ARFLAGS are specified, AR_FLAGS should have # higher priority because that's what people were doing historically (setting # ARFLAGS for automake and AR_FLAGS for libtool). FIXME: Make the AR_FLAGS # variable obsoleted/removed. test ${AR_FLAGS+y} || AR_FLAGS=${ARFLAGS-cr} lt_ar_flags=$AR_FLAGS # Make AR_FLAGS overridable by 'make ARFLAGS='. Don't try to run-time override # by AR_FLAGS because that was never working and AR_FLAGS is about to die. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for archiver @FILE support" >&5 printf %s "checking for archiver @FILE support... " >&6; } if test ${lt_cv_ar_at_file+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_ar_at_file=no cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : echo conftest.$ac_objext > conftest.lst lt_ar_try='$AR $AR_FLAGS libconftest.a @conftest.lst >&5' { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -eq "$ac_status"; then # Ensure the archiver fails upon bogus file names. rm -f conftest.$ac_objext libconftest.a { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$lt_ar_try\""; } >&5 (eval $lt_ar_try) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if test 0 -ne "$ac_status"; then lt_cv_ar_at_file=@ fi fi rm -f conftest.* libconftest.a fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ar_at_file" >&5 printf "%s\n" "$lt_cv_ar_at_file" >&6; } if test no = "$lt_cv_ar_at_file"; then archiver_list_spec= else archiver_list_spec=$lt_cv_ar_at_file 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_STRIP+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 printf "%s\n" "$STRIP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_STRIP+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_STRIP="strip" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 printf "%s\n" "$ac_ct_STRIP" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi test -z "$STRIP" && STRIP=: test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then old_archive_cmds="$old_archive_cmds~\$RANLIB \$tool_oldlib" old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$tool_oldlib" fi case $host_os in darwin*) lock_old_archive_extraction=yes ;; *) lock_old_archive_extraction=no ;; esac # 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 for command to grab the raw symbol name followed by C symbol from nm. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 printf %s "checking command to parse $NM output from $compiler object... " >&6; } if test ${lt_cv_sys_global_symbol_pipe+y} then : printf %s "(cached) " >&6 else case e in #( e) # 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]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | windows* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test ia64 = "$host_cpu"; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BCDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; 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 if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Gets list of data symbols to import. lt_cv_sys_global_symbol_to_import="$SED -n -e 's/^I .* \(.*\)$/\1/p'" # Adjust the below global symbol transforms to fixup imported variables. lt_cdecl_hook=" -e 's/^I .* \(.*\)$/extern __declspec(dllimport) char \1;/p'" lt_c_name_hook=" -e 's/^I .* \(.*\)$/ {\"\1\", (void *) 0},/p'" lt_c_name_lib_hook="\ -e 's/^I .* \(lib.*\)$/ {\"\1\", (void *) 0},/p'\ -e 's/^I .* \(.*\)$/ {\"lib\1\", (void *) 0},/p'" else # Disable hooks by default. lt_cv_sys_global_symbol_to_import= lt_cdecl_hook= lt_c_name_hook= lt_c_name_lib_hook= fi # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="$SED -n"\ $lt_cdecl_hook\ " -e 's/^T .* \(.*\)$/extern int \1();/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="$SED -n"\ $lt_c_name_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/p'" # Transform an extracted symbol line into symbol name with lib prefix and # symbol address. lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="$SED -n"\ $lt_c_name_lib_hook\ " -e 's/^: \(.*\) .*$/ {\"\1\", (void *) 0},/p'"\ " -e 's/^$symcode$symcode* .* \(lib.*\)$/ {\"\1\", (void *) \&\1},/p'"\ " -e 's/^$symcode$symcode* .* \(.*\)$/ {\"lib\1\", (void *) \&\1},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw* | windows*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, 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. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function, # D for any global variable and I for any imported variable. # Also find C++ and __fastcall symbols from MSVC++ or ICC, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /^COFF SYMBOL TABLE/{for(i in hide) delete hide[i]};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " /^ *Symbol name *: /{split(\$ 0,sn,\":\"); si=substr(sn[2],2)};"\ " /^ *Type *: code/{print \"T\",si,substr(si,length(prfx))};"\ " /^ *Type *: data/{print \"I\",si,substr(si,length(prfx))};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=\"D\"}; \$ 0~/\(\).*\|/{f=\"T\"};"\ " {split(\$ 0,a,/\||\r/); split(a[2],s)};"\ " s[1]~/^[@?]/{print f,s[1],s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print f,t[1],substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="$SED -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi lt_cv_sys_global_symbol_pipe="$lt_cv_sys_global_symbol_pipe | $SED '/ __gnu_lto/d'" # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(void){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm $ECHO "$as_me:$LINENO: $NM conftest.$ac_objext | $lt_cv_sys_global_symbol_pipe > $nlist" >&5 if eval "$NM" conftest.$ac_objext \| "$lt_cv_sys_global_symbol_pipe" \> $nlist 2>&5 && 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 <<_LT_EOF > conftest.$ac_ext /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ LT_DLSYM_CONST struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* .* \(.*\)$/ {\"\1\", (void *) \&\1},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_globsym_save_LIBS=$LIBS lt_globsym_save_CFLAGS=$CFLAGS LIBS=conftstm.$ac_objext CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest$ac_exeext; then pipe_works=yes fi LIBS=$lt_globsym_save_LIBS CFLAGS=$lt_globsym_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 -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test yes = "$pipe_works"; then break else lt_cv_sys_global_symbol_pipe= fi done ;; esac 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: failed" >&5 printf "%s\n" "failed" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ok" >&5 printf "%s\n" "ok" >&6; } fi # Response file support. if test "$lt_cv_nm_interface" = "MS dumpbin"; then nm_file_list_spec='@' elif $NM --help 2>/dev/null | grep '[@]FILE' >/dev/null; then nm_file_list_spec='@' fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sysroot" >&5 printf %s "checking for sysroot... " >&6; } # Check whether --with-sysroot was given. if test ${with_sysroot+y} then : withval=$with_sysroot; else case e in #( e) with_sysroot=no ;; esac fi lt_sysroot= case $with_sysroot in #( yes) if test yes = "$GCC"; then # Trim trailing / since we'll always append absolute paths and we want # to avoid //, if only for less confusing output for the user. lt_sysroot=`$CC --print-sysroot 2>/dev/null | $SED 's:/\+$::'` fi ;; #( /*) lt_sysroot=`echo "$with_sysroot" | $SED -e "$sed_quote_subst"` ;; #( no|'') ;; #( *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_sysroot" >&5 printf "%s\n" "$with_sysroot" >&6; } as_fn_error $? "The sysroot must be an absolute path." "$LINENO" 5 ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: ${lt_sysroot:-no}" >&5 printf "%s\n" "${lt_sysroot:-no}" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for a working dd" >&5 printf %s "checking for a working dd... " >&6; } if test ${ac_cv_path_lt_DD+y} then : printf %s "(cached) " >&6 else case e in #( e) printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i : ${lt_DD:=$DD} if test -z "$lt_DD"; then ac_path_lt_DD_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in dd do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_lt_DD="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_lt_DD" || continue if "$ac_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && ac_cv_path_lt_DD="$ac_path_lt_DD" ac_path_lt_DD_found=: fi $ac_path_lt_DD_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_lt_DD"; then : fi else ac_cv_path_lt_DD=$lt_DD fi rm -f conftest.i conftest2.i conftest.out ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_lt_DD" >&5 printf "%s\n" "$ac_cv_path_lt_DD" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to truncate binary pipes" >&5 printf %s "checking how to truncate binary pipes... " >&6; } if test ${lt_cv_truncate_bin+y} then : printf %s "(cached) " >&6 else case e in #( e) printf 0123456789abcdef0123456789abcdef >conftest.i cat conftest.i conftest.i >conftest2.i lt_cv_truncate_bin= if "$ac_cv_path_lt_DD" bs=32 count=1 conftest.out 2>/dev/null; then cmp -s conftest.i conftest.out \ && lt_cv_truncate_bin="$ac_cv_path_lt_DD bs=4096 count=1" fi rm -f conftest.i conftest2.i conftest.out test -z "$lt_cv_truncate_bin" && lt_cv_truncate_bin="$SED -e 4q" ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_truncate_bin" >&5 printf "%s\n" "$lt_cv_truncate_bin" >&6; } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # Check whether --enable-libtool-lock was given. if test ${enable_libtool_lock+y} then : enableval=$enable_libtool_lock; fi test no = "$enable_libtool_lock" || 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 what ABI is being produced by ac_compile, and set mode # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `$FILECMD conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE=32 ;; *ELF-64*) HPUX_IA64_MODE=64 ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test yes = "$lt_cv_prog_gnu_ld"; then case `$FILECMD conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `$FILECMD 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* ;; mips64*-*linux*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo '#line '$LINENO' "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then emul=elf case `$FILECMD conftest.$ac_objext` in *32-bit*) emul="${emul}32" ;; *64-bit*) emul="${emul}64" ;; esac case `$FILECMD conftest.$ac_objext` in *MSB*) emul="${emul}btsmip" ;; *LSB*) emul="${emul}ltsmip" ;; esac case `$FILECMD conftest.$ac_objext` in *N32*) emul="${emul}n32" ;; esac LD="${LD-ld} -m $emul" fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*|x86_64-gnu*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. Note that the listed cases only cover the # situations where additional linker options are needed (such as when # doing 32-bit compilation for a host where ld defaults to 64-bit, or # vice versa); the common cases where no linker options are needed do # not appear in the list. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `$FILECMD conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*|x86_64-gnu*) case `$FILECMD conftest.o` in *x86-64*) LD="${LD-ld} -m elf32_x86_64" ;; *) LD="${LD-ld} -m elf_i386" ;; esac ;; powerpc64le-*linux*) LD="${LD-ld} -m elf32lppclinux" ;; 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-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*|x86_64-gnu*) LD="${LD-ld} -m elf_x86_64" ;; powerpcle-*linux*) LD="${LD-ld} -m elf64lppc" ;; powerpc-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) 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" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 printf %s "checking whether the C compiler needs -belf... " >&6; } if test ${lt_cv_cc_needs_belf+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : lt_cv_cc_needs_belf=yes else case e in #( e) lt_cv_cc_needs_belf=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ 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 ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 printf "%s\n" "$lt_cv_cc_needs_belf" >&6; } if test yes != "$lt_cv_cc_needs_belf"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS=$SAVE_CFLAGS fi ;; *-*solaris*) # Find out what ABI is being produced by ac_compile, and set linker # options accordingly. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `$FILECMD conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) case $host in i?86-*-solaris*|x86_64-*-solaris*) LD="${LD-ld} -m elf_x86_64" ;; sparc*-*-solaris*) LD="${LD-ld} -m elf64_sparc" ;; esac # GNU ld 2.21 introduced _sol2 emulations. Use them if available. if ${LD-ld} -V | grep _sol2 >/dev/null 2>&1; then LD=${LD-ld}_sol2 fi ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks=$enable_libtool_lock if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}mt", so it can be a program name with args. set dummy ${ac_tool_prefix}mt; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_MANIFEST_TOOL+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$MANIFEST_TOOL"; then ac_cv_prog_MANIFEST_TOOL="$MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_MANIFEST_TOOL="${ac_tool_prefix}mt" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi MANIFEST_TOOL=$ac_cv_prog_MANIFEST_TOOL if test -n "$MANIFEST_TOOL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MANIFEST_TOOL" >&5 printf "%s\n" "$MANIFEST_TOOL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_MANIFEST_TOOL"; then ac_ct_MANIFEST_TOOL=$MANIFEST_TOOL # Extract the first word of "mt", so it can be a program name with args. set dummy mt; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_MANIFEST_TOOL+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$ac_ct_MANIFEST_TOOL"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="$ac_ct_MANIFEST_TOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_MANIFEST_TOOL="mt" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_MANIFEST_TOOL=$ac_cv_prog_ac_ct_MANIFEST_TOOL if test -n "$ac_ct_MANIFEST_TOOL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_MANIFEST_TOOL" >&5 printf "%s\n" "$ac_ct_MANIFEST_TOOL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_MANIFEST_TOOL" = x; then MANIFEST_TOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac MANIFEST_TOOL=$ac_ct_MANIFEST_TOOL fi else MANIFEST_TOOL="$ac_cv_prog_MANIFEST_TOOL" fi test -z "$MANIFEST_TOOL" && MANIFEST_TOOL=mt { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $MANIFEST_TOOL is a manifest tool" >&5 printf %s "checking if $MANIFEST_TOOL is a manifest tool... " >&6; } if test ${lt_cv_path_manifest_tool+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_path_manifest_tool=no echo "$as_me:$LINENO: $MANIFEST_TOOL '-?'" >&5 $MANIFEST_TOOL '-?' 2>conftest.err > conftest.out cat conftest.err >&5 if $GREP 'Manifest Tool' conftest.out > /dev/null; then lt_cv_path_manifest_tool=yes fi rm -f conftest* ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_manifest_tool" >&5 printf "%s\n" "$lt_cv_path_manifest_tool" >&6; } if test yes != "$lt_cv_path_manifest_tool"; then MANIFEST_TOOL=: fi case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_DSYMUTIL+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 printf "%s\n" "$DSYMUTIL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_DSYMUTIL+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 printf "%s\n" "$ac_ct_DSYMUTIL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_NMEDIT+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 printf "%s\n" "$NMEDIT" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_NMEDIT+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_NMEDIT="nmedit" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 printf "%s\n" "$ac_ct_NMEDIT" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_LIPO+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 printf "%s\n" "$LIPO" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_LIPO+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_LIPO="lipo" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 printf "%s\n" "$ac_ct_LIPO" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_OTOOL+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 printf "%s\n" "$OTOOL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_OTOOL+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL="otool" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 printf "%s\n" "$ac_ct_OTOOL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_OTOOL64+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 printf "%s\n" "$OTOOL64" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_OTOOL64+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_OTOOL64="otool64" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 printf "%s\n" "$ac_ct_OTOOL64" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 printf %s "checking for -single_module linker flag... " >&6; } if test ${lt_cv_apple_cc_single_mod+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_apple_cc_single_mod=no if test -z "$LT_MULTI_MODULE"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? # If there is a non-empty error log, and "single_module" # appears in it, assume the flag caused a linker warning if test -s conftest.err && $GREP single_module conftest.err; then cat conftest.err >&5 # Otherwise, if the output was created with a 0 exit code from # the compiler, it worked. elif test -f libconftest.dylib && test 0 = "$_lt_result"; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 printf "%s\n" "$lt_cv_apple_cc_single_mod" >&6; } # Feature test to disable chained fixups since it is not # compatible with '-undefined dynamic_lookup' { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -no_fixup_chains linker flag" >&5 printf %s "checking for -no_fixup_chains linker flag... " >&6; } if test ${lt_cv_support_no_fixup_chains+y} then : printf %s "(cached) " >&6 else case e in #( e) save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -Wl,-no_fixup_chains" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : lt_cv_support_no_fixup_chains=yes else case e in #( e) lt_cv_support_no_fixup_chains=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_support_no_fixup_chains" >&5 printf "%s\n" "$lt_cv_support_no_fixup_chains" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 printf %s "checking for -exported_symbols_list linker flag... " >&6; } if test ${lt_cv_ld_exported_symbols_list+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : lt_cv_ld_exported_symbols_list=yes else case e in #( e) lt_cv_ld_exported_symbols_list=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 printf "%s\n" "$lt_cv_ld_exported_symbols_list" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for -force_load linker flag" >&5 printf %s "checking for -force_load linker flag... " >&6; } if test ${lt_cv_ld_force_load+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_ld_force_load=no cat > conftest.c << _LT_EOF int forced_loaded() { return 2;} _LT_EOF echo "$LTCC $LTCFLAGS -c -o conftest.o conftest.c" >&5 $LTCC $LTCFLAGS -c -o conftest.o conftest.c 2>&5 echo "$AR $AR_FLAGS libconftest.a conftest.o" >&5 $AR $AR_FLAGS libconftest.a conftest.o 2>&5 echo "$RANLIB libconftest.a" >&5 $RANLIB libconftest.a 2>&5 cat > conftest.c << _LT_EOF int main(void) { return 0;} _LT_EOF echo "$LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a" >&5 $LTCC $LTCFLAGS $LDFLAGS -o conftest conftest.c -Wl,-force_load,./libconftest.a 2>conftest.err _lt_result=$? if test -s conftest.err && $GREP force_load conftest.err; then cat conftest.err >&5 elif test -f conftest && test 0 = "$_lt_result" && $GREP forced_load conftest >/dev/null 2>&1; then lt_cv_ld_force_load=yes else cat conftest.err >&5 fi rm -f conftest.err libconftest.a conftest conftest.c rm -rf conftest.dSYM ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_force_load" >&5 printf "%s\n" "$lt_cv_ld_force_load" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='$wl-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; darwin*) case $MACOSX_DEPLOYMENT_TARGET,$host in 10.[012],*|,*powerpc*-darwin[5-8]*) _lt_dar_allow_undefined='$wl-flat_namespace $wl-undefined ${wl}suppress' ;; *) _lt_dar_allow_undefined='$wl-undefined ${wl}dynamic_lookup' if test yes = "$lt_cv_support_no_fixup_chains"; then as_fn_append _lt_dar_allow_undefined ' $wl-no_fixup_chains' fi ;; esac ;; esac if test yes = "$lt_cv_apple_cc_single_mod"; then _lt_dar_single_mod='$single_module' fi _lt_dar_needs_single_mod=no case $host_os in rhapsody* | darwin1.*) _lt_dar_needs_single_mod=yes ;; darwin*) # When targeting Mac OS X 10.4 (darwin 8) or later, # -single_module is the default and -multi_module is unsupported. # The toolchain on macOS 10.14 (darwin 18) and later cannot # target any OS version that needs -single_module. case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*-darwin[567].*|10.[0-3],*-darwin[5-9].*|10.[0-3],*-darwin1[0-7].*) _lt_dar_needs_single_mod=yes ;; esac ;; esac if test yes = "$lt_cv_ld_exported_symbols_list"; then _lt_dar_export_syms=' $wl-exported_symbols_list,$output_objdir/$libname-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/$libname-symbols.expsym $lib' fi if test : != "$DSYMUTIL" && test no = "$lt_cv_ld_force_load"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = xyes then : printf "%s\n" "#define HAVE_DLFCN_H 1" >>confdefs.h fi # Set options # Check whether --enable-static was given. if test ${enable_static+y} 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 case e in #( e) enable_static=no ;; esac fi enable_dlopen=no enable_win32_dll=no # Check whether --enable-shared was given. if test ${enable_shared+y} 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 case e in #( e) enable_shared=yes ;; esac fi # Check whether --enable-pic was given. if test ${enable_pic+y} then : enableval=$enable_pic; lt_p=${PACKAGE-default} case $enableval in yes|no) pic_mode=$enableval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $enableval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac else case e in #( e) # Check whether --with-pic was given. if test ${with_pic+y} then : withval=$with_pic; lt_p=${PACKAGE-default} case $withval in yes|no) pic_mode=$withval ;; *) pic_mode=default # Look at the argument we got. We use all the common list separators. lt_save_ifs=$IFS; IFS=$IFS$PATH_SEPARATOR, for lt_pkg in $withval; do IFS=$lt_save_ifs if test "X$lt_pkg" = "X$lt_p"; then pic_mode=yes fi done IFS=$lt_save_ifs ;; esac else case e in #( e) pic_mode=default ;; esac fi ;; esac fi # Check whether --enable-fast-install was given. if test ${enable_fast_install+y} 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 case e in #( e) enable_fast_install=yes ;; esac fi shared_archive_member_spec= case $host,$enable_shared in power*-*-aix[5-9]*,yes) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking which variant of shared library versioning to provide" >&5 printf %s "checking which variant of shared library versioning to provide... " >&6; } # Check whether --enable-aix-soname was given. if test ${enable_aix_soname+y} then : enableval=$enable_aix_soname; case $enableval in aix|svr4|both) ;; *) as_fn_error $? "Unknown argument to --enable-aix-soname" "$LINENO" 5 ;; esac lt_cv_with_aix_soname=$enable_aix_soname else case e in #( e) # Check whether --with-aix-soname was given. if test ${with_aix_soname+y} then : withval=$with_aix_soname; case $withval in aix|svr4|both) ;; *) as_fn_error $? "Unknown argument to --with-aix-soname" "$LINENO" 5 ;; esac lt_cv_with_aix_soname=$with_aix_soname else case e in #( e) if test ${lt_cv_with_aix_soname+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_with_aix_soname=aix ;; esac fi ;; esac fi enable_aix_soname=$lt_cv_with_aix_soname ;; esac fi with_aix_soname=$enable_aix_soname { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $with_aix_soname" >&5 printf "%s\n" "$with_aix_soname" >&6; } if test aix != "$with_aix_soname"; then # For the AIX way of multilib, we name the shared archive member # based on the bitwidth used, traditionally 'shr.o' or 'shr_64.o', # and 'shr.imp' or 'shr_64.imp', respectively, for the Import File. # Even when GNU compilers ignore OBJECT_MODE but need '-maix64' flag, # the AIX toolchain works better with OBJECT_MODE set (default 32). if test 64 = "${OBJECT_MODE-32}"; then shared_archive_member_spec=shr_64 else shared_archive_member_spec=shr fi fi ;; *) with_aix_soname=aix ;; esac # This can be used to rebuild libtool when needed LIBTOOL_DEPS=$ltmain # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 printf %s "checking for objdir... " >&6; } if test ${lt_cv_objdir+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 printf "%s\n" "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir printf "%s\n" "#define LT_OBJDIR \"$lt_cv_objdir/\"" >>confdefs.h 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 set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a '.a' archive for static linking (except MSVC and # ICC, which need '.lib'). libext=a with_gnu_ld=$lt_cv_prog_gnu_ld old_CC=$CC old_CFLAGS=$CFLAGS # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o func_cc_basename $compiler cc_basename=$func_cc_basename_result # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 printf %s "checking for ${ac_tool_prefix}file... " >&6; } if test ${lt_cv_path_MAGIC_CMD+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 <<_LT_EOF 1>&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 _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac ;; esac fi MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 printf "%s\n" "$MAGIC_CMD" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for file" >&5 printf %s "checking for file... " >&6; } if test ${lt_cv_path_MAGIC_CMD+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 <<_LT_EOF 1>&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 _LT_EOF fi ;; esac fi break fi done IFS=$lt_save_ifs MAGIC_CMD=$lt_save_MAGIC_CMD ;; esac ;; esac fi MAGIC_CMD=$lt_cv_path_MAGIC_CMD if test -n "$MAGIC_CMD"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 printf "%s\n" "$MAGIC_CMD" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script 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;" # Code to be used in simple link tests lt_simple_link_test_code='int main(void){return(0);}' # 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 the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$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 echo "$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 -r conftest* ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test yes = "$GCC"; then case $cc_basename in nvcc*) lt_prog_compiler_no_builtin_flag=' -Xcompiler -fno-builtin' ;; *) lt_prog_compiler_no_builtin_flag=' -fno-builtin' ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 printf %s "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if test ${lt_cv_prog_compiler_rtti_exceptions+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" ## exclude from sc_useless_quotes_in_assignment # 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:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $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 "$_lt_compiler_boilerplate" | $SED '/^$/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* ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 printf "%s\n" "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test yes = "$lt_cv_prog_compiler_rtti_exceptions"; 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= if test yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi lt_prog_compiler_pic='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # 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' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | windows* | cygwin* | pw32* | os2* | cegcc*) # 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). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # 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 ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; 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 ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; esac ;; mingw* | windows* | cygwin* | pw32* | os2* | cegcc*) # 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' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; 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' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; *flang* | ftn | f18* | f95*) # Flang compiler. lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # flang / f18. f95 an alias for gfortran or flang on Debian flang* | f18* | f95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # 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' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | $SED 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *-mlibc) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; serenity*) ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) 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 case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 printf %s "checking for $compiler option to produce PIC... " >&6; } if test ${lt_cv_prog_compiler_pic+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_prog_compiler_pic=$lt_prog_compiler_pic ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 printf "%s\n" "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 printf %s "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if test ${lt_cv_prog_compiler_pic_works+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment # 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:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $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 "$_lt_compiler_boilerplate" | $SED '/^$/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_pic_works=yes fi fi $RM conftest* ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 printf "%s\n" "$lt_cv_prog_compiler_pic_works" >&6; } if test yes = "$lt_cv_prog_compiler_pic_works"; 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 # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 printf %s "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if test ${lt_cv_prog_compiler_static_works+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_prog_compiler_static_works=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$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 "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 printf "%s\n" "$lt_cv_prog_compiler_static_works" >&6; } if test yes = "$lt_cv_prog_compiler_static_works"; then : else lt_prog_compiler_static= fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 printf %s "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if test ${lt_cv_prog_compiler_c_o+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$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:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $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 "$_lt_compiler_boilerplate" | $SED '/^$/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 .. $RM -r conftest $RM conftest* ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 printf "%s\n" "$lt_cv_prog_compiler_c_o" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 printf %s "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if test ${lt_cv_prog_compiler_c_o+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$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:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:$LINENO: \$? = $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 "$_lt_compiler_boilerplate" | $SED '/^$/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 .. $RM -r conftest $RM conftest* ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 printf "%s\n" "$lt_cv_prog_compiler_c_o" >&6; } hard_links=nottested if test no = "$lt_cv_prog_compiler_c_o" && test no != "$need_locks"; then # do not overwrite the value of need_locks provided by the user { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 printf %s "checking if we can lock with hard links... " >&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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 printf "%s\n" "$hard_links" >&6; } if test no = "$hard_links"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: '$CC' does not support '-c -o', so 'make -j' may be unsafe" >&5 printf "%s\n" "$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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 printf %s "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # 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_|_GLOBAL__F[ID]_.*' # 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. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | windows* | pw32* | cegcc*) # FIXME: the MSVC++ and ICC port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++ or Intel C++ Compiler. if test yes != "$GCC"; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++ or ICC) with_gnu_ld=yes ;; linux* | k*bsd*-gnu | gnu*) link_all_deplibs=no ;; esac ld_shlibs=yes # On some targets, GNU ld is compatible enough with the native linker # that we're better off using the native interface for both. lt_use_gnu_ld_interface=no if test yes = "$with_gnu_ld"; then case $host_os in aix*) # The AIX port of GNU ld has always aspired to compatibility # with the native linker. However, as the warning in the GNU ld # block says, versions before 2.19.5* couldn't really create working # shared libraries, regardless of the interface used. case `$LD -v 2>&1` in *\ \(GNU\ Binutils\)\ 2.19.5*) ;; *\ \(GNU\ Binutils\)\ 2.[2-9]*) ;; *\ \(GNU\ Binutils\)\ [3-9]*) ;; *) lt_use_gnu_ld_interface=yes ;; esac ;; *) lt_use_gnu_ld_interface=yes ;; esac fi if test yes = "$lt_use_gnu_ld_interface"; 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 | $SED -e 's/([^)]\+)\s\+//' 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [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 aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test ia64 != "$host_cpu"; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.19, 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 install binutils *** 2.20 or above, or modify your PATH so that a non-GNU linker is found. *** You will then need to restart the configuration process. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) 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 ;; esac ;; 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* | windows* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' export_dynamic_flag_spec='$wl--export-all-symbols' 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/;s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' exclude_expsyms='[_]+GLOBAL_OFFSET_TABLE_|[_]+GLOBAL__[FID]_.*|[_]+head_[A-Za-z0-9_]+_dll|[A-Za-z0-9_]+_dll_iname' file_list_spec='@' 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, use it as # is; otherwise, prepend EXPORTS... archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; 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 ;; haiku*) archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' link_all_deplibs=no ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_from_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes file_list_spec='@' ;; interix[3-9]*) 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' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test linux-dietlibc = "$host_os"; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test no = "$tmp_diet" then tmp_addflag=' $pic_flag' tmp_sharedflag='-shared' 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; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95* | pgfortran*) # 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; func_echo_all \"$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' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; nagfor*) # NAGFOR 5.3 tmp_sharedflag='-Wl,-shared' ;; xl[cC]* | bgxl[cC]* | mpixl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; nvcc*) # Cuda Compiler Driver 2.2 whole_archive_flag_spec='$wl--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes ;; esac case `$CC -V 2>&1 | $SED 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='$wl--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; func_echo_all \"$new_convenience\"` $wl--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' if test yes = "$supports_anon_versioning"; 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 '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-version-script $wl$output_objdir/$libname.ver -o $lib' fi case $cc_basename in tcc*) hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' export_dynamic_flag_spec='-rdynamic' ;; xlf* | bgf* | bgxlf* | mpixlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' archive_cmds='$LD -shared $libobjs $deplibs $linker_flags -soname $soname -o $lib' if test yes = "$supports_anon_versioning"; 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~ $LD -shared $libobjs $deplibs $linker_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; *-mlibc) archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname $wl-retain-symbols-file $wl$export_symbols -o $lib' ;; netbsd* | netbsdelf*-gnu) 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 $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $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 <<_LT_EOF 1>&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. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $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 cannot *** 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 ;; *) # 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. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' 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 ;; 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 $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $pic_flag $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 no = "$ld_shlibs"; 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 yes = "$GCC" && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test ia64 = "$host_cpu"; 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 GNU nm, but means don't demangle to AIX nm. # Without the "-l" option, or with the "-B" option, AIX nm treats # weak defined symbols like other global defined symbols, whereas # GNU nm marks them as "W". # While the 'weak' keyword is ignored in the Export File, we need # it in the Import File for the 'aix-soname' feature, so we have # to replace the "-B" option with "-P" for AIX 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") || (\$ 2 == "W")) && (substr(\$ 3,1,1) != ".")) { if (\$ 2 == "W") { print \$ 3 " weak" } else { print \$ 3 } } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='`func_echo_all $NM | $SED -e '\''s/B\([^B]*\)$/P\1/'\''` -PCpgl $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B") || (\$ 2 == "L") || (\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) && (substr(\$ 1,1,1) != ".")) { if ((\$ 2 == "W") || (\$ 2 == "V") || (\$ 2 == "Z")) { print \$ 1 " weak" } else { print \$ 1 } } }'\'' | 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 # have runtime linking enabled, and use it for executables. # For shared libraries, we enable/disable runtime linking # depending on the kind of the shared library created - # when "with_aix_soname,aix_use_runtimelinking" is: # "aix,no" lib.a(lib.so.V) shared, rtl:no, for executables # "aix,yes" lib.so shared, rtl:yes, for executables # lib.a static archive # "both,no" lib.so.V(shr.o) shared, rtl:yes # lib.a(lib.so.V) shared, rtl:no, for executables # "both,yes" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a(lib.so.V) shared, rtl:no # "svr4,*" lib.so.V(shr.o) shared, rtl:yes, for executables # lib.a static archive case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test x-brtl = "x$ld_flag" || test x-Wl,-brtl = "x$ld_flag"); then aix_use_runtimelinking=yes break fi done if test svr4,no = "$with_aix_soname,$aix_use_runtimelinking"; then # With aix-soname=svr4, we create the lib.so.V shared archives only, # so we don't have lib.a shared libs to link our executables. # We have to force runtime linking in this case. aix_use_runtimelinking=yes LDFLAGS="$LDFLAGS -Wl,-brtl" fi ;; 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_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='$wl-f,' case $with_aix_soname,$aix_use_runtimelinking in aix,*) ;; # traditional, no import file svr4,* | *,yes) # use import file # The Import File defines what to hardcode. hardcode_direct=no hardcode_direct_absolute=no ;; esac if test yes = "$GCC"; 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 : 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 yes = "$aix_use_runtimelinking"; then shared_flag="$shared_flag "'$wl-G' fi # Need to ensure runtime linking is disabled for the traditional # shared library, or the linker may eventually find shared libraries # /with/ Import File - we do not want to mix them. shared_flag_aix='-shared' shared_flag_svr4='-shared $wl-G' else # not using gcc if test ia64 = "$host_cpu"; 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 yes = "$aix_use_runtimelinking"; then shared_flag='$wl-G' else shared_flag='$wl-bM:SRE' fi shared_flag_aix='$wl-bM:SRE' shared_flag_svr4='$wl-G' fi fi export_dynamic_flag_spec='$wl-bexpall' # 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,yes = "$with_aix_soname,$aix_use_runtimelinking"; 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. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if test ${lt_cv_aix_libpath_+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=/usr/lib:/lib fi ;; esac fi aix_libpath=$lt_cv_aix_libpath_ 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 -n "$allow_undefined_flag"; then func_echo_all "$wl$allow_undefined_flag"; else :; fi` $wl'$exp_sym_flag:\$export_symbols' '$shared_flag else if test ia64 = "$host_cpu"; 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. if test set = "${lt_cv_aix_libpath+set}"; then aix_libpath=$lt_cv_aix_libpath else if test ${lt_cv_aix_libpath_+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\([^ ]*\) *$/\1/ p } }' lt_cv_aix_libpath_=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext if test -z "$lt_cv_aix_libpath_"; then lt_cv_aix_libpath_=/usr/lib:/lib fi ;; esac fi aix_libpath=$lt_cv_aix_libpath_ 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' if test yes = "$with_gnu_ld"; then # We only use this code for GNU lds that support --whole-archive. whole_archive_flag_spec='$wl--whole-archive$convenience $wl--no-whole-archive' else # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' fi archive_cmds_need_lc=yes archive_expsym_cmds='$RM -r $output_objdir/$realname.d~$MKDIR $output_objdir/$realname.d' # -brtl affects multiple linker settings, -berok does not and is overridden later compiler_flags_filtered='`func_echo_all "$compiler_flags " | $SED -e "s%-brtl\\([, ]\\)%-berok\\1%g"`' if test svr4 != "$with_aix_soname"; then # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_aix' -o $output_objdir/$realname.d/$soname $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$realname.d/$soname' fi if test aix != "$with_aix_soname"; then archive_expsym_cmds="$archive_expsym_cmds"'~$CC '$shared_flag_svr4' -o $output_objdir/$realname.d/$shared_archive_member_spec.o $libobjs $deplibs $wl-bnoentry '$compiler_flags_filtered'$wl-bE:$export_symbols$allow_undefined_flag~$STRIP -e $output_objdir/$realname.d/$shared_archive_member_spec.o~( func_echo_all "#! $soname($shared_archive_member_spec.o)"; if test shr_64 = "$shared_archive_member_spec"; then func_echo_all "# 64"; else func_echo_all "# 32"; fi; cat $export_symbols ) > $output_objdir/$realname.d/$shared_archive_member_spec.imp~$AR $AR_FLAGS $output_objdir/$soname $output_objdir/$realname.d/$shared_archive_member_spec.o $output_objdir/$realname.d/$shared_archive_member_spec.imp' else # used by -dlpreopen to get the symbols archive_expsym_cmds="$archive_expsym_cmds"'~$MV $output_objdir/$realname.d/$soname $output_objdir' fi archive_expsym_cmds="$archive_expsym_cmds"'~$RM -r $output_objdir/$realname.d' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags $wl-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) 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 ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | windows* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++ or Intel C++ Compiler. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. case $cc_basename in cl* | icl*) # Native MSVC or ICC hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported always_export_symbols=yes file_list_spec='@' # 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 -Fe$output_objdir/$soname $libobjs $compiler_flags $deplibs -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~linknames=' archive_expsym_cmds='if test DEF = "`$SED -n -e '\''s/^[ ]*//'\'' -e '\''/^\(;.*\)*$/d'\'' -e '\''s/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p'\'' -e q $export_symbols`" ; then cp "$export_symbols" "$output_objdir/$soname.def"; echo "$tool_output_objdir$soname.def" > "$output_objdir/$soname.exp"; else $SED -e '\''s/^/-link -EXPORT:/'\'' < $export_symbols > $output_objdir/$soname.exp; fi~ $CC -Fe$tool_output_objdir$soname $libobjs $compiler_flags $deplibs "@$tool_output_objdir$soname.exp" -Wl,-DLL,-IMPLIB:"$tool_output_objdir$libname.dll.lib"~ linknames=' # The linker will not automatically build a static lib if we build a DLL. # _LT_TAGVAR(old_archive_from_new_cmds, )='true' enable_shared_with_static_runtimes=yes exclude_expsyms='_NULL_IMPORT_DESCRIPTOR|_IMPORT_DESCRIPTOR_.*' export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1,DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' # Don't use ranlib old_postinstall_cmds='chmod 644 $oldlib' postlink_cmds='lt_outputfile="@OUTPUT@"~ lt_tool_outputfile="@TOOL_OUTPUT@"~ case $lt_outputfile in *.exe|*.EXE) ;; *) lt_outputfile=$lt_outputfile.exe lt_tool_outputfile=$lt_tool_outputfile.exe ;; esac~ if test : != "$MANIFEST_TOOL" && test -f "$lt_outputfile.manifest"; then $MANIFEST_TOOL -manifest "$lt_tool_outputfile.manifest" -outputresource:"$lt_tool_outputfile" || exit 1; $RM "$lt_outputfile.manifest"; fi' ;; *) # Assume MSVC and ICC wrapper 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 `func_echo_all "$deplibs" | $SED '\''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' enable_shared_with_static_runtimes=yes ;; esac ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported if test yes = "$lt_cv_ld_force_load"; then whole_archive_flag_spec='`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience $wl-force_load,$conv\"; done; func_echo_all \"$new_convenience\"`' else whole_archive_flag_spec='' fi link_all_deplibs=yes allow_undefined_flag=$_lt_dar_allow_undefined case $cc_basename in ifort*|nagfor*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test yes = "$_lt_dar_can_shared"; then output_verbose_link_cmd=func_echo_all archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dsymutil" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dsymutil" archive_expsym_cmds="$SED 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod$_lt_dar_export_syms$_lt_dsymutil" module_expsym_cmds="$SED -e 's|^|_|' < \$export_symbols > \$output_objdir/\$libname-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags$_lt_dar_export_syms$_lt_dsymutil" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=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* | dragonfly* | midnightbsd*) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test yes = "$GCC"; then archive_cmds='$RM $output_objdir/$soname~$CC -shared $pic_flag $wl+b $wl$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test "x$output_objdir/$soname" = "x$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 "x$output_objdir/$soname" = "x$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 yes,no = "$GCC,$with_gnu_ld"; then archive_cmds='$CC -shared $pic_flag $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 no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=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 yes,no = "$GCC,$with_gnu_ld"; 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 $pic_flag $wl+h $wl$soname $wl+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared $pic_flag $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' ;; *) # Older versions of the 11.00 compiler do not understand -b yet # (HP92453-01 A.11.01.20 doesn't, HP92453-01 B.11.X.35175-35176.GP does) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $CC understands -b" >&5 printf %s "checking if $CC understands -b... " >&6; } if test ${lt_cv_prog_compiler__b+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_prog_compiler__b=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -b" echo "$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 "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler__b=yes fi else lt_cv_prog_compiler__b=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler__b" >&5 printf "%s\n" "$lt_cv_prog_compiler__b" >&6; } if test yes = "$lt_cv_prog_compiler__b"; then archive_cmds='$CC -b $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 ;; esac fi if test no = "$with_gnu_ld"; then hardcode_libdir_flag_spec='$wl+b $wl$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=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 yes = "$GCC"; then archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. # This should be the same for all languages, so no per-tag cache variable. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the $host_os linker accepts -exported_symbol" >&5 printf %s "checking whether the $host_os linker accepts -exported_symbol... " >&6; } if test ${lt_cv_irix_exported_symbol+y} then : printf %s "(cached) " >&6 else case e in #( e) save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS -shared $wl-exported_symbol ${wl}foo $wl-update_registry $wl/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo (void) { return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : lt_cv_irix_exported_symbol=yes else case e in #( e) lt_cv_irix_exported_symbol=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_irix_exported_symbol" >&5 printf "%s\n" "$lt_cv_irix_exported_symbol" >&6; } if test yes = "$lt_cv_irix_exported_symbol"; then archive_expsym_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations $wl-exports_file $wl$export_symbols -o $lib' fi link_all_deplibs=no else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; linux*) case $cc_basename in tcc*) # Fabrice Bellard et al's Tiny C Compiler ld_shlibs=yes archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' ;; esac ;; *-mlibc) ;; netbsd* | netbsdelf*-gnu) 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 ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; 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 archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='$wl-rpath,$libdir' fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported shrext_cmds=.dll archive_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ emxexp $libobjs | $SED /"_DLL_InitTerm"/d >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' archive_expsym_cmds='$ECHO "LIBRARY ${soname%$shared_ext} INITINSTANCE TERMINSTANCE" > $output_objdir/$libname.def~ $ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~ $ECHO "DATA MULTIPLE NONSHARED" >> $output_objdir/$libname.def~ $ECHO EXPORTS >> $output_objdir/$libname.def~ prefix_cmds="$SED"~ if test EXPORTS = "`$SED 1q $export_symbols`"; then prefix_cmds="$prefix_cmds -e 1d"; fi~ prefix_cmds="$prefix_cmds -e \"s/^\(.*\)$/_\1/g\""~ cat $export_symbols | $prefix_cmds >> $output_objdir/$libname.def~ $CC -Zdll -Zcrtdll -o $output_objdir/$soname $libobjs $deplibs $compiler_flags $output_objdir/$libname.def~ emximp -o $lib $output_objdir/$libname.def' old_archive_from_new_cmds='emximp -o $output_objdir/${libname}_dll.a $output_objdir/$libname.def' enable_shared_with_static_runtimes=yes file_list_spec='@' ;; osf3*) if test yes = "$GCC"; 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" && func_echo_all "$wl-set_version $wl$verstring"` $wl-update_registry $wl$output_objdir/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && func_echo_all "-set_version $verstring"` -update_registry $output_objdir/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test yes = "$GCC"; then allow_undefined_flag=' $wl-expect_unresolved $wl\*' archive_cmds='$CC -shared$allow_undefined_flag $pic_flag $libobjs $deplibs $compiler_flags $wl-msym $wl-soname $wl$soname `test -n "$verstring" && func_echo_all "$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='$CC -shared$allow_undefined_flag $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && func_echo_all "-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; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $wl-input $wl$lib.exp $compiler_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 archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; serenity*) ;; solaris*) no_undefined_flag=' -z defs' if test yes = "$GCC"; then wlarc='$wl' archive_cmds='$CC -shared $pic_flag $wl-z ${wl}text $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 $pic_flag $wl-z ${wl}text $wl-M $wl$lib.exp $wl-h $wl$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) 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' ;; *) wlarc='$wl' archive_cmds='$CC -G$allow_undefined_flag -h $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 -G$allow_undefined_flag -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac 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 and reorder linker options, # but understands '-z linker_flag'. GCC discards it without '$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test yes = "$GCC"; then whole_archive_flag_spec='$wl-z ${wl}allextract$convenience $wl-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test sequent = "$host_vendor"; 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* | sco3.2v5.0.[024]*) no_undefined_flag='$wl-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test yes = "$GCC"; 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 CANNOT 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='$wl-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='$wl-Bexport' runpath_var='LD_RUN_PATH' if test yes = "$GCC"; 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 ;; 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 if test sni = "$host_vendor"; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='$wl-Blargedynsym' ;; esac fi fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 printf "%s\n" "$ld_shlibs" >&6; } test no = "$ld_shlibs" && can_build_shared=no with_gnu_ld=$with_gnu_ld # # 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 yes,yes = "$GCC,$enable_shared"; 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. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 printf %s "checking whether -lc should be explicitly linked in... " >&6; } if test ${lt_cv_archive_cmds_need_lc+y} then : printf %s "(cached) " >&6 else case e in #( e) $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 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\":${as_lineno-$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=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then lt_cv_archive_cmds_need_lc=no else lt_cv_archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_archive_cmds_need_lc" >&5 printf "%s\n" "$lt_cv_archive_cmds_need_lc" >&6; } archive_cmds_need_lc=$lt_cv_archive_cmds_need_lc ;; esac fi ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 printf %s "checking dynamic linker characteristics... " >&6; } if test yes = "$GCC"; then case $host_os in darwin*) lt_awk_arg='/^libraries:/,/LR/' ;; *) lt_awk_arg='/^libraries:/' ;; esac case $host_os in mingw* | windows* | cegcc*) lt_sed_strip_eq='s|=\([A-Za-z]:\)|\1|g' ;; *) lt_sed_strip_eq='s|=/|/|g' ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e $lt_sed_strip_eq` case $lt_search_path_spec in *\;*) # 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. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED 's/;/ /g'` ;; *) lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED "s/$PATH_SEPARATOR/ /g"` ;; esac # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary... lt_tmp_lt_search_path_spec= lt_multi_os_dir=/`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` # ...but if some path component already ends with the multilib dir we assume # that all is fine and trust -print-search-dirs as is (GCC 4.2? or newer). case "$lt_multi_os_dir; $lt_search_path_spec " in "/; "* | "/.; "* | "/./; "* | *"$lt_multi_os_dir "* | *"$lt_multi_os_dir/ "*) lt_multi_os_dir= ;; esac for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path$lt_multi_os_dir" elif test -n "$lt_multi_os_dir"; then test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO "$lt_tmp_lt_search_path_spec" | awk ' BEGIN {RS = " "; FS = "/|\n";} { lt_foo = ""; lt_count = 0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo = "/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` # AWK program above erroneously prepends '/' to C:/dos/paths # for these hosts. case $host_os in mingw* | windows* | cegcc*) lt_search_path_spec=`$ECHO "$lt_search_path_spec" |\ $SED 's|/\([A-Za-z]:\)|\1|g'` ;; esac sys_lib_search_path_spec=`$ECHO "$lt_search_path_spec" | $lt_NL2SP` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi 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" 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 # correct to gnu/linux during the next big refactor 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' ;; aix[4-9]*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no hardcode_into_libs=yes if test ia64 = "$host_cpu"; 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 # Using Import Files as archive members, it is possible to support # filename-based versioning of shared library archives on AIX. While # this would work for both with and without runtime linking, it will # prevent static linking of such archives. So we do filename-based # shared library versioning with .so extension only, which is used # when both runtime linking and shared linking is enabled. # Unfortunately, runtime linking may impact performance, so we do # not want this to be the default eventually. Also, we use the # versioned .so libs for executables only if there is the -brtl # linker flag in LDFLAGS as well, or --enable-aix-soname=svr4 only. # To allow for filename-based versioning support, we need to create # libNAME.so.V as an archive file, containing: # *) an Import File, referring to the versioned filename of the # archive as well as the shared archive member, telling the # bitwidth (32 or 64) of that shared object, and providing the # list of exported symbols of that shared object, eventually # decorated with the 'weak' keyword # *) the shared object with the F_LOADONLY flag set, to really avoid # it being seen by the linker. # At run time we better use the real file rather than another symlink, # but for link time we create the symlink libNAME.so -> libNAME.so.V case $with_aix_soname,$aix_use_runtimelinking in # AIX (on Power*) has no versioning support, so currently we cannot hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. aix,yes) # traditional libtool dynamic_linker='AIX unversionable lib.so' # 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' ;; aix,no) # traditional AIX only dynamic_linker='AIX lib.a(lib.so.V)' # 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' ;; svr4,*) # full svr4 only dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,yes) # both, prefer svr4 dynamic_linker="AIX lib.so.V($shared_archive_member_spec.o), lib.a(lib.so.V)" library_names_spec='$libname$release$shared_ext$major $libname$shared_ext' # unpreferred sharedlib libNAME.a needs extra handling postinstall_cmds='test -n "$linkname" || linkname="$realname"~func_stripname "" ".so" "$linkname"~$install_shared_prog "$dir/$func_stripname_result.$libext" "$destdir/$func_stripname_result.$libext"~test -z "$tstripme" || test -z "$striplib" || $striplib "$destdir/$func_stripname_result.$libext"' postuninstall_cmds='for n in $library_names $old_library; do :; done~func_stripname "" ".so" "$n"~test "$func_stripname_result" = "$n" || func_append rmfiles " $odir/$func_stripname_result.$libext"' # We do not specify a path in Import Files, so LIBPATH fires. shlibpath_overrides_runpath=yes ;; *,no) # both, prefer aix dynamic_linker="AIX lib.a(lib.so.V), lib.so.V($shared_archive_member_spec.o)" library_names_spec='$libname$release.a $libname.a' soname_spec='$libname$release$shared_ext$major' # unpreferred sharedlib libNAME.so.V and symlink libNAME.so need extra handling postinstall_cmds='test -z "$dlname" || $install_shared_prog $dir/$dlname $destdir/$dlname~test -z "$tstripme" || test -z "$striplib" || $striplib $destdir/$dlname~test -n "$linkname" || linkname=$realname~func_stripname "" ".a" "$linkname"~(cd "$destdir" && $LN_S -f $dlname $func_stripname_result.so)' postuninstall_cmds='test -z "$dlname" || func_append rmfiles " $odir/$dlname"~for n in $old_library $library_names; do :; done~func_stripname "" ".a" "$n"~func_append rmfiles " $odir/$func_stripname_result.so"' ;; esac shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' ;; m68k) 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=`func_echo_all "$lib" | $SED '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; $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' ;; esac ;; beos*) library_names_spec='$libname$shared_ext' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux # correct to gnu/linux during the next big refactor 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* | windows* | pw32* | cegcc*) version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no case $GCC,$cc_basename in yes,*) # gcc library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds # If user builds GCC with multilib enabled, # it should just install on $(libdir) # not on $(libdir)/../bin or 32 bits dlls would override 64 bit ones. if test xyes = x"$multilib"; then postinstall_cmds='base_file=`basename \$file`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\$base_file'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ $install_prog $dir/$dlname $destdir/$dlname~ chmod a+x $destdir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib $destdir/$dlname'\'' || exit \$?; fi' else 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~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' fi 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="$sys_lib_search_path_spec /usr/lib/w32api" ;; mingw* | windows* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' ;; 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 dynamic_linker='Win32 ld.exe' ;; *,cl* | *,icl*) # Native MSVC or ICC libname_spec='$name' soname_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext' library_names_spec='$libname.dll.lib' case $build_os in mingw* | windows*) sys_lib_search_path_spec= lt_save_ifs=$IFS IFS=';' for lt_path in $LIB do IFS=$lt_save_ifs # Let DOS variable expansion print the short 8.3 style file name. lt_path=`cd "$lt_path" 2>/dev/null && cmd //C "for %i in (".") do @echo %~si"` sys_lib_search_path_spec="$sys_lib_search_path_spec $lt_path" done IFS=$lt_save_ifs # Convert to MSYS style. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's|\\\\|/|g' -e 's| \\([a-zA-Z]\\):| /\\1|g' -e 's|^ ||'` ;; cygwin*) # Convert to unix form, then to dos form, then back to unix form # but this time dos style (no spaces!) so that the unix form looks # like /cygdrive/c/PROGRA~1:/cygdr... sys_lib_search_path_spec=`cygpath --path --unix "$LIB"` sys_lib_search_path_spec=`cygpath --path --dos "$sys_lib_search_path_spec" 2>/dev/null` sys_lib_search_path_spec=`cygpath --path --unix "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` ;; *) sys_lib_search_path_spec=$LIB if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH. 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 # FIXME: find the short name or the path components, as spaces are # common. (e.g. "Program Files" -> "PROGRA~1") ;; esac # 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' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes dynamic_linker='Win32 link.exe' ;; *) # Assume MSVC and ICC wrapper library_names_spec='$libname`echo $release | $SED -e 's/[.]/-/g'`$versuffix$shared_ext $libname.lib' dynamic_linker='Win32 ld.exe' ;; esac # 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$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`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux # correct to gnu/linux during the next big refactor 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 ;; freebsd* | dragonfly* | midnightbsd*) # 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[23].*) 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$major $libname$shared_ext' soname_spec='$libname$release$shared_ext$major' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='$libname$release$shared_ext$versuffix $libname$shared_ext$versuffix' need_version=yes ;; esac case $host_cpu in powerpc64) # On FreeBSD bi-arch platforms, a different variable is used for 32-bit # binaries. See . cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int test_pointer_size[sizeof (void *) - 5]; _ACEOF if ac_fn_c_try_compile "$LINENO" then : shlibpath_var=LD_LIBRARY_PATH else case e in #( e) shlibpath_var=LD_32_LIBRARY_PATH ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; *) shlibpath_var=LD_LIBRARY_PATH ;; esac 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 ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; haiku*) version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no dynamic_linker="$host_os runtime_loader" 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=LIBRARY_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec='/boot/system/non-packaged/develop/lib /boot/system/develop/lib' sys_lib_dlsearch_path_spec='/boot/home/config/non-packaged/lib /boot/home/config/lib /boot/system/non-packaged/lib /boot/system/lib' hardcode_into_libs=no ;; 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 32 = "$HPUX_IA64_MODE"; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" sys_lib_dlsearch_path_spec=/usr/lib/hpux32 else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" sys_lib_dlsearch_path_spec=/usr/lib/hpux64 fi ;; 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' # or fails outright, so override atomically: install_override_mode=555 ;; interix[3-9]*) version_type=linux # correct to gnu/linux during the next big refactor 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 yes = "$lt_cv_prog_gnu_ld"; then version_type=linux # correct to gnu/linux during the next big refactor 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 ;; linux*android*) version_type=none # Android doesn't support versioned libraries. need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext $libname$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # 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 dynamic_linker='Android linker' # -rpath works at least for libraries that are not overridden by # libraries installed in system locations. hardcode_libdir_flag_spec='$wl-rpath $wl$libdir' ;; # This must be glibc/ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) version_type=linux # correct to gnu/linux during the next big refactor 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 # Some binutils ld are patched to set DT_RUNPATH if test ${lt_cv_shlibpath_overrides_runpath+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_shlibpath_overrides_runpath=no save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null then : lt_cv_shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir ;; esac fi shlibpath_overrides_runpath=$lt_cv_shlibpath_overrides_runpath # 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 # Ideally, we could use ldconfig to report *all* directories which are # searched for libraries, however this is still not possible. Aside from not # being certain /sbin/ldconfig is available, command # 'ldconfig -N -X -v | grep ^/' on 64bit Fedora does not report /usr/lib64, # even though it is searched at run-time. Try to do the best guess by # appending ld.so.conf contents (and includes) to the search path. if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;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' ;; netbsdelf*-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='NetBSD ld.elf_so' ;; netbsdelf*-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='NetBSD ld.elf_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 ;; *-mlibc) version_type=linux # correct to gnu/linux during the next big refactor 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='mlibc ld.so' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; newsos6) version_type=linux # correct to gnu/linux during the next big refactor 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=qnx 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='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec=/usr/lib need_lib_prefix=no if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`"; then need_version=no else need_version=yes fi 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 shlibpath_overrides_runpath=yes ;; os2*) libname_spec='$name' version_type=windows shrext_cmds=.dll need_version=no need_lib_prefix=no # OS/2 can only load a DLL with a base name of 8 characters or less. soname_spec='`test -n "$os2dllname" && libname="$os2dllname"; v=$($ECHO $release$versuffix | tr -d .-); n=$($ECHO $libname | cut -b -$((8 - ${#v})) | tr . _); $ECHO $n$v`$shared_ext' library_names_spec='${libname}_dll.$libext' dynamic_linker='OS/2 ld.exe' shlibpath_var=BEGINLIBPATH sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec 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~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; $ECHO \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' ;; 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 ;; rdos*) dynamic_linker=no ;; serenity*) version_type=linux # correct to gnu/linux during the next big refactor 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 dynamic_linker='SerenityOS LibELF' ;; solaris*) version_type=linux # correct to gnu/linux during the next big refactor 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 yes = "$with_gnu_ld"; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux # correct to gnu/linux during the next big refactor 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 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 # correct to gnu/linux during the next big refactor 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=sco 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 shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test yes = "$with_gnu_ld"; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' 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' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux # correct to gnu/linux during the next big refactor need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext$versuffix $libname$release$shared_ext$major $libname$shared_ext' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux # correct to gnu/linux during the next big refactor 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 ;; emscripten*) version_type=none need_lib_prefix=no need_version=no library_names_spec='$libname$release$shared_ext' soname_spec='$libname$release$shared_ext' finish_cmds= dynamic_linker="Emscripten linker" lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= if test yes = "$GCC"; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi lt_prog_compiler_pic='-fPIC' ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # 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' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | windows* | cygwin* | pw32* | os2* | cegcc*) # 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). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; haiku*) # PIC is the default for Haiku. # The "-static" flag exists, but is broken. lt_prog_compiler_static= ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # 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 ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac case $cc_basename in nvcc*) # Cuda Compiler Driver 2.2 lt_prog_compiler_wl='-Xlinker ' if test -n "$lt_prog_compiler_pic"; then lt_prog_compiler_pic="-Xcompiler $lt_prog_compiler_pic" fi ;; 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 ia64 = "$host_cpu"; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' case $cc_basename in nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; esac ;; mingw* | windows* | cygwin* | pw32* | os2* | cegcc*) # 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' case $host_os in os2*) lt_prog_compiler_static='$wl-static' ;; esac ;; 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' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu | gnu*) case $cc_basename in # old Intel for x86_64, which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; *flang* | ftn | f18* | f95*) # Flang compiler. lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # flang / f18. f95 an alias for gfortran or flang on Debian flang* | f18* | f95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; nagfor*) # NAG Fortran compiler lt_prog_compiler_wl='-Wl,-Wl,,' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; tcc*) # Fabrice Bellard et al's Tiny C Compiler lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; pgcc* | pgf77* | pgf90* | pgf95* | pgfortran*) # 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' ;; xl* | bgxl* | bgf* | mpixl*) # IBM XL C 8.0/Fortran 10.1, 11.1 on PPC and BlueGene lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | $SED 5q` in *Sun\ Ceres\ Fortran* | *Sun*Fortran*\ [1-7].* | *Sun*Fortran*\ 8.[0-3]*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; *Sun\ F* | *Sun*Fortran*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Qoption ld ' ;; *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Intel*\ [CF]*Compiler*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *Portland\ Group*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *-mlibc) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; serenity*) ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95* | sunf77* | sunf90* | sunf95*) 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 case $host_os in # For platforms that do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 printf %s "checking for $compiler option to produce PIC... " >&6; } if test ${lt_cv_prog_compiler_pic+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_prog_compiler_pic=$lt_prog_compiler_pic ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic" >&5 printf "%s\n" "$lt_cv_prog_compiler_pic" >&6; } lt_prog_compiler_pic=$lt_cv_prog_compiler_pic # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 printf %s "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if test ${lt_cv_prog_compiler_pic_works+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" ## exclude from sc_useless_quotes_in_assignment # 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:$LINENO: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:$LINENO: \$? = $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 "$_lt_compiler_boilerplate" | $SED '/^$/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_pic_works=yes fi fi $RM conftest* ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 printf "%s\n" "$lt_cv_prog_compiler_pic_works" >&6; } if test yes = "$lt_cv_prog_compiler_pic_works"; 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 # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 printf %s "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if test ${lt_cv_prog_compiler_static_works+y} then : printf %s "(cached) " >&6 else case e in #( e) lt_cv_prog_compiler_static_works=no save_LDFLAGS=$LDFLAGS LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$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 "$_lt_linker_boilerplate" | $SED '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS=$save_LDFLAGS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 printf "%s\n" "$lt_cv_prog_compiler_static_works" >&6; } if test yes = "$lt_cv_prog_compiler_static_works"; then : else lt_prog_compiler_static= fi ='-fPIC' archive_cmds='$CC -sSIDE_MODULE=2 -shared $libobjs $deplibs $compiler_flags -o $lib' archive_expsym_cmds='$SED "s|^|_|" $export_symbols >$output_objdir/$soname.expsym~$CC -sSIDE_MODULE=2 -shared $libobjs $deplibs $compiler_flags -o $lib -s EXPORTED_FUNCTIONS=@$output_objdir/$soname.expsym' archive_cmds_need_lc=no no_undefined_flag= ;; *) dynamic_linker=no ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 printf "%s\n" "$dynamic_linker" >&6; } test no = "$dynamic_linker" && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test yes = "$GCC"; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test set = "${lt_cv_sys_lib_search_path_spec+set}"; then sys_lib_search_path_spec=$lt_cv_sys_lib_search_path_spec fi if test set = "${lt_cv_sys_lib_dlsearch_path_spec+set}"; then sys_lib_dlsearch_path_spec=$lt_cv_sys_lib_dlsearch_path_spec fi # remember unaugmented sys_lib_dlsearch_path content for libtool script decls... configure_time_dlsearch_path=$sys_lib_dlsearch_path_spec # ... but it needs LT_SYS_LIBRARY_PATH munging for other configure-time code func_munge_path_list sys_lib_dlsearch_path_spec "$LT_SYS_LIBRARY_PATH" # to be used as default LT_SYS_LIBRARY_PATH value in generated libtool configure_time_lt_sys_library_path=$LT_SYS_LIBRARY_PATH { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 printf %s "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test yes = "$hardcode_automatic"; then # We can hardcode non-existent directories. if test no != "$hardcode_direct" && # 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 no != "$_LT_TAGVAR(hardcode_shlibpath_var, )" && test no != "$hardcode_minus_L"; 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 printf "%s\n" "$hardcode_action" >&6; } if test relink = "$hardcode_action" || test yes = "$inherit_rpath"; then # Fast installation is not supported enable_fast_install=no elif test yes = "$shlibpath_overrides_runpath" || test no = "$enable_shared"; then # Fast installation is not necessary enable_fast_install=needless fi if test yes != "$enable_dlopen"; 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* | windows* | pw32* | cegcc*) 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 printf %s "checking for dlopen in -ldl... " >&6; } if test ${ac_cv_lib_dl_dlopen+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char dlopen (void); int main (void) { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_dl_dlopen=yes else case e in #( e) ac_cv_lib_dl_dlopen=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 printf "%s\n" "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else case e in #( e) lt_cv_dlopen=dyld lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; esac fi ;; tpf*) # Don't try to run any link tests for TPF. We know it's impossible # because TPF is a cross-compiler, and we know how we open DSOs. lt_cv_dlopen=dlopen lt_cv_dlopen_libs= lt_cv_dlopen_self=no ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = xyes then : lt_cv_dlopen=shl_load else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 printf %s "checking for shl_load in -ldld... " >&6; } if test ${ac_cv_lib_dld_shl_load+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char shl_load (void); int main (void) { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_dld_shl_load=yes else case e in #( e) ac_cv_lib_dld_shl_load=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 printf "%s\n" "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = xyes then : lt_cv_dlopen=shl_load lt_cv_dlopen_libs=-ldld else case e in #( e) ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = xyes then : lt_cv_dlopen=dlopen else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 printf %s "checking for dlopen in -ldl... " >&6; } if test ${ac_cv_lib_dl_dlopen+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char dlopen (void); int main (void) { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_dl_dlopen=yes else case e in #( e) ac_cv_lib_dl_dlopen=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 printf "%s\n" "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = xyes then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-ldl else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 printf %s "checking for dlopen in -lsvld... " >&6; } if test ${ac_cv_lib_svld_dlopen+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char dlopen (void); int main (void) { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_svld_dlopen=yes else case e in #( e) ac_cv_lib_svld_dlopen=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 printf "%s\n" "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = xyes then : lt_cv_dlopen=dlopen lt_cv_dlopen_libs=-lsvld else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 printf %s "checking for dld_link in -ldld... " >&6; } if test ${ac_cv_lib_dld_dld_link+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char dld_link (void); int main (void) { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_dld_dld_link=yes else case e in #( e) ac_cv_lib_dld_dld_link=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 printf "%s\n" "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = xyes then : lt_cv_dlopen=dld_link lt_cv_dlopen_libs=-ldld fi ;; esac fi ;; esac fi ;; esac fi ;; esac fi ;; esac fi ;; esac if test no = "$lt_cv_dlopen"; then enable_dlopen=no else enable_dlopen=yes fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS=$CPPFLAGS test yes = "$ac_cv_header_dlfcn_h" && 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" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 printf %s "checking whether a program can dlopen itself... " >&6; } if test ${lt_cv_dlopen_self+y} then : printf %s "(cached) " >&6 else case e in #( e) if test yes = "$cross_compiling"; 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 <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #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 /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord (void) __attribute__((visibility("default"))); #endif int fnord (void) { return 42; } int main (void) { 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; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && 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* ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 printf "%s\n" "$lt_cv_dlopen_self" >&6; } if test yes = "$lt_cv_dlopen_self"; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 printf %s "checking whether a statically linked program can dlopen itself... " >&6; } if test ${lt_cv_dlopen_self_static+y} then : printf %s "(cached) " >&6 else case e in #( e) if test yes = "$cross_compiling"; 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 <<_LT_EOF #line $LINENO "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #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 /* When -fvisibility=hidden is used, assume the code has been annotated correspondingly for the symbols needed. */ #if defined __GNUC__ && (((__GNUC__ == 3) && (__GNUC_MINOR__ >= 3)) || (__GNUC__ > 3)) int fnord (void) __attribute__((visibility("default"))); #endif int fnord (void) { return 42; } int main (void) { 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; else puts (dlerror ()); } /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && 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* ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 printf "%s\n" "$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 striplib= old_striplib= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 printf %s "checking whether stripping libraries is possible... " >&6; } if test -z "$STRIP"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } else if $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then old_striplib="$STRIP --strip-debug" striplib="$STRIP --strip-unneeded" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else case $host_os in darwin*) # FIXME - insert some real tests, host_os isn't really good enough striplib="$STRIP -x" old_striplib="$STRIP -S" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } ;; freebsd*) if $STRIP -V 2>&1 | $GREP "elftoolchain" >/dev/null; then old_striplib="$STRIP --strip-debug" striplib="$STRIP --strip-unneeded" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi ;; *) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi fi # Report what library types will actually be built { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 printf %s "checking if libtool supports shared libraries... " >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 printf "%s\n" "$can_build_shared" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 printf %s "checking whether to build shared libraries... " >&6; } test no = "$can_build_shared" && 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 yes = "$enable_shared" && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test ia64 != "$host_cpu"; then case $enable_shared,$with_aix_soname,$aix_use_runtimelinking in yes,aix,yes) ;; # shared object as lib.so file only yes,svr4,*) ;; # shared object as lib.so archive member only yes,*) enable_static=no ;; # shared object in lib.a archive as well esac fi ;; esac { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 printf "%s\n" "$enable_shared" >&6; } { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 printf %s "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test yes = "$enable_shared" || enable_static=yes { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 printf "%s\n" "$enable_static" >&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 CC=$lt_save_CC ac_config_commands="$ac_config_commands libtool" # Only expand once: # Checks for programs. 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="gcc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}cc" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_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" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # 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 ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}clang", so it can be a program name with args. set dummy ${ac_tool_prefix}clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_CC="${ac_tool_prefix}clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi CC=$ac_cv_prog_CC if test -n "$CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 printf "%s\n" "$CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "clang", so it can be a program name with args. set dummy clang; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_ac_ct_CC+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_ac_ct_CC="clang" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 printf "%s\n" "$ac_ct_CC" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 printf "%s\n" "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi fi test -z "$CC" && { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See 'config.log' for more details" "$LINENO" 5; } # Provide some information about the compiler. printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion -version; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" printf "%s\n" "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err printf "%s\n" "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether the compiler supports GNU C" >&5 printf %s "checking whether the compiler supports GNU C... " >&6; } if test ${ac_cv_c_compiler_gnu+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_compiler_gnu=yes else case e in #( e) ac_compiler_gnu=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 printf "%s\n" "$ac_cv_c_compiler_gnu" >&6; } ac_compiler_gnu=$ac_cv_c_compiler_gnu if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+y} ac_save_CFLAGS=$CFLAGS { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 printf %s "checking whether $CC accepts -g... " >&6; } if test ${ac_cv_prog_cc_g+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes else case e in #( e) CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : else case e in #( e) ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 printf "%s\n" "$ac_cv_prog_cc_g" >&6; } if test $ac_test_CFLAGS; 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 ac_prog_cc_stdc=no if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C11 features" >&5 printf %s "checking for $CC option to enable C11 features... " >&6; } if test ${ac_cv_prog_cc_c11+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_cv_prog_cc_c11=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c11_program _ACEOF for ac_arg in '' -std=gnu11 do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c11=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c11" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC ;; esac fi if test "x$ac_cv_prog_cc_c11" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else case e in #( e) if test "x$ac_cv_prog_cc_c11" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c11" >&5 printf "%s\n" "$ac_cv_prog_cc_c11" >&6; } CC="$CC $ac_cv_prog_cc_c11" ;; esac fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c11 ac_prog_cc_stdc=c11 ;; esac fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C99 features" >&5 printf %s "checking for $CC option to enable C99 features... " >&6; } if test ${ac_cv_prog_cc_c99+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_cv_prog_cc_c99=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c99_program _ACEOF for ac_arg in '' -std=gnu99 -std=c99 -c99 -qlanglvl=extc1x -qlanglvl=extc99 -AC99 -D_STDC_C99= do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c99=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c99" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC ;; esac fi if test "x$ac_cv_prog_cc_c99" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else case e in #( e) if test "x$ac_cv_prog_cc_c99" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c99" >&5 printf "%s\n" "$ac_cv_prog_cc_c99" >&6; } CC="$CC $ac_cv_prog_cc_c99" ;; esac fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c99 ac_prog_cc_stdc=c99 ;; esac fi fi if test x$ac_prog_cc_stdc = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $CC option to enable C89 features" >&5 printf %s "checking for $CC option to enable C89 features... " >&6; } if test ${ac_cv_prog_cc_c89+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_c_conftest_c89_program _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO" then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext conftest.beam test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC ;; esac fi if test "x$ac_cv_prog_cc_c89" = xno then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 printf "%s\n" "unsupported" >&6; } else case e in #( e) if test "x$ac_cv_prog_cc_c89" = x then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 printf "%s\n" "none needed" >&6; } else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 printf "%s\n" "$ac_cv_prog_cc_c89" >&6; } CC="$CC $ac_cv_prog_cc_c89" ;; esac fi ac_cv_prog_cc_stdc=$ac_cv_prog_cc_c89 ac_prog_cc_stdc=c89 ;; esac 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=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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether $CC understands -c and -o together" >&5 printf %s "checking whether $CC understands -c and -o together... " >&6; } if test ${am_cv_prog_cc_c_o+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF # Make sure it works both with $CC and with simple cc. # Following AC_PROG_CC_C_O, we do the test twice because some # compilers refuse to overwrite an existing .o file with -o, # though they will create one. am_cv_prog_cc_c_o=yes for am_i in 1 2; do if { echo "$as_me:$LINENO: $CC -c conftest.$ac_ext -o conftest2.$ac_objext" >&5 ($CC -c conftest.$ac_ext -o conftest2.$ac_objext) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } \ && test -f conftest2.$ac_objext; then : OK else am_cv_prog_cc_c_o=no break fi done rm -f core conftest* unset am_i ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_prog_cc_c_o" >&5 printf "%s\n" "$am_cv_prog_cc_c_o" >&6; } if test "$am_cv_prog_cc_c_o" != yes; then # Losing compiler, so override with the script. # FIXME: It is wrong to rewrite CC. # But if we don't then we get into trouble of one sort or another. # A longer-term fix would be to have automake use am__CC in this case, # and then we could set am__CC="\$(top_srcdir)/compile \$(CC)" CC="$am_aux_dir/compile $CC" 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="$CC" am_compiler_list= { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 printf %s "checking dependency style of $depcc... " >&6; } if test ${am_cv_CC_dependencies_compiler_type+y} then : printf %s "(cached) " >&6 else case e in #( e) 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". rm -rf conftest.dir 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 am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac 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 10 /bin/sh. echo '/* dummy */' > sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # 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. Also, some Intel # versions had trouble with output in subdirs. am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; 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 ;; msvc7 | msvc7msys | msvisualcpp | msvcmsys) # This compiler won't grok '-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj 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 thus: # 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 ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 printf "%s\n" "$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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 printf %s "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 printf "%s\n" "no, using $LN_S" >&6; } fi for ac_prog in 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_AWK+y} then : printf %s "(cached) " >&6 else case e in #( e) 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_AWK="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 printf "%s\n" "$AWK" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$AWK" && break done for ac_prog in latex do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_LATEX+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$LATEX"; then ac_cv_prog_LATEX="$LATEX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_LATEX="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi LATEX=$ac_cv_prog_LATEX if test -n "$LATEX"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $LATEX" >&5 printf "%s\n" "$LATEX" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$LATEX" && break done test -n "$LATEX" || LATEX="latex" for ac_prog in epstopdf do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_EPSTOPDF+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$EPSTOPDF"; then ac_cv_prog_EPSTOPDF="$EPSTOPDF" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_EPSTOPDF="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi EPSTOPDF=$ac_cv_prog_EPSTOPDF if test -n "$EPSTOPDF"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $EPSTOPDF" >&5 printf "%s\n" "$EPSTOPDF" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$EPSTOPDF" && break done test -n "$EPSTOPDF" || EPSTOPDF="epstopdf" for ac_prog in help2man do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_prog_HELP2MAN+y} then : printf %s "(cached) " >&6 else case e in #( e) if test -n "$HELP2MAN"; then ac_cv_prog_HELP2MAN="$HELP2MAN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_prog_HELP2MAN="$ac_prog" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi ;; esac fi HELP2MAN=$ac_cv_prog_HELP2MAN if test -n "$HELP2MAN"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $HELP2MAN" >&5 printf "%s\n" "$HELP2MAN" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$HELP2MAN" && break done test -n "$HELP2MAN" || HELP2MAN="no" if test "x$HELP2MAN" != "xno"; then HAVE_HELP2MAN_TRUE= HAVE_HELP2MAN_FALSE='#' else HAVE_HELP2MAN_TRUE='#' HAVE_HELP2MAN_FALSE= fi # Extract the first word of "perl", so it can be a program name with args. set dummy perl; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_PERL+y} then : printf %s "(cached) " >&6 else case e in #( e) case $PERL in [\\/]* | ?:[\\/]*) ac_cv_path_PERL="$PERL" # 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_PERL="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS test -z "$ac_cv_path_PERL" && ac_cv_path_PERL="no" ;; esac ;; esac fi PERL=$ac_cv_path_PERL if test -n "$PERL"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $PERL" >&5 printf "%s\n" "$PERL" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi for ac_prog in lib do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 printf %s "checking for $ac_word... " >&6; } if test ${ac_cv_path_FXT_MS_LIB+y} then : printf %s "(cached) " >&6 else case e in #( e) case $FXT_MS_LIB in [\\/]* | ?:[\\/]*) ac_cv_path_FXT_MS_LIB="$FXT_MS_LIB" # 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 case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_exec_ext in '' $ac_executable_extensions; do if as_fn_executable_p "$as_dir$ac_word$ac_exec_ext"; then ac_cv_path_FXT_MS_LIB="$as_dir$ac_word$ac_exec_ext" printf "%s\n" "$as_me:${as_lineno-$LINENO}: found $as_dir$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac ;; esac fi FXT_MS_LIB=$ac_cv_path_FXT_MS_LIB if test -n "$FXT_MS_LIB"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $FXT_MS_LIB" >&5 printf "%s\n" "$FXT_MS_LIB" >&6; } else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } fi test -n "$FXT_MS_LIB" && break done if test "x$FXT_MS_LIB" != "x"; then FXT_HAVE_MS_LIB_TRUE= FXT_HAVE_MS_LIB_FALSE='#' else FXT_HAVE_MS_LIB_TRUE='#' FXT_HAVE_MS_LIB_FALSE= fi # The cast to long int works around a bug in the HP C Compiler # version HP92453-01 B.11.11.23709.GP, which incorrectly rejects # declarations like 'int a3[[(sizeof (unsigned char)) >= 0]];'. # This bug is HP SR number 8606223364. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking size of void *" >&5 printf %s "checking size of void *... " >&6; } if test ${ac_cv_sizeof_void_p+y} then : printf %s "(cached) " >&6 else case e in #( e) if ac_fn_c_compute_int "$LINENO" "(long int) (sizeof (void *))" "ac_cv_sizeof_void_p" "$ac_includes_default" then : else case e in #( e) if test "$ac_cv_type_void_p" = yes; then { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error 77 "cannot compute sizeof (void *) See 'config.log' for more details" "$LINENO" 5; } else ac_cv_sizeof_void_p=0 fi ;; esac fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_sizeof_void_p" >&5 printf "%s\n" "$ac_cv_sizeof_void_p" >&6; } printf "%s\n" "#define SIZEOF_VOID_P $ac_cv_sizeof_void_p" >>confdefs.h SIZEOF_VOID_P=$ac_cv_sizeof_void_p case $SIZEOF_VOID_P in 4) FXT_MS_LIB_ARCH=X86 ;; 8) FXT_MS_LIB_ARCH=X64 ;; esac echo a | $AWK '{ print gensub(/a/, "AA", "g"); }' 2>/dev/null if test x$? != x0 ; then as_fn_error $? "Your awk program does not define gensub. Use gawk or another awk with gensub" "$LINENO" 5 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 printf %s "checking how to run the C preprocessor... " >&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+y} then : printf %s "(cached) " >&6 else case e in #( e) # Double quotes because $CC needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" 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. # 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 confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO" then : else case e in #( e) # Broken: fails on valid input. continue ;; esac fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO" then : # Broken: success on invalid input. continue else case e in #( e) # Passes both tests. ac_preproc_ok=: break ;; esac fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of 'break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok then : break fi done ac_cv_prog_CPP=$CPP ;; esac fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 printf "%s\n" "$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. # 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 confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO" then : else case e in #( e) # Broken: fails on valid input. continue ;; esac fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO" then : # Broken: success on invalid input. continue else case e in #( e) # Passes both tests. ac_preproc_ok=: break ;; esac fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of 'break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok then : else case e in #( e) { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See 'config.log' for more details" "$LINENO" 5; } ;; esac 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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for X" >&5 printf %s "checking for X... " >&6; } # Check whether --with-x was given. if test ${with_x+y} 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 case $x_includes,$x_libraries in #( *\'*) as_fn_error $? "cannot use X directory names containing '" "$LINENO" 5;; #( *,NONE | NONE,*) if test ${ac_cv_have_x+y} then : printf %s "(cached) " >&6 else case e in #( e) # One or both of the vars are not set, and there is no cached value. ac_x_includes=no ac_x_libraries=no # Do we need to do anything special at all? ac_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { XrmInitialize () ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : # We can compile and link X programs with no special options. ac_x_includes= ac_x_libraries= fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_save_LIBS" # If that didn't work, only try xmkmf and file system searches # for native compilation. if test x"$ac_x_includes" = xno && test "$cross_compiling" = no then : rm -f -r conftest.dir if mkdir conftest.dir; then cd conftest.dir cat >Imakefile <<'_ACEOF' incroot: @echo incroot='${INCROOT}' usrlibdir: @echo usrlibdir='${USRLIBDIR}' libdir: @echo libdir='${LIBDIR}' _ACEOF if (export CC; ${XMKMF-xmkmf}) >/dev/null 2>/dev/null && test -f Makefile; then # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. for ac_var in incroot usrlibdir libdir; do eval "ac_im_$ac_var=\`\${MAKE-make} $ac_var 2>/dev/null | sed -n 's/^$ac_var=//p'\`" done # Open Windows xmkmf reportedly sets LIBDIR instead of USRLIBDIR. for ac_extension in a so sl dylib la dll; 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) ac_x_includes= ;; *) test -f "$ac_im_incroot/X11/Xos.h" && ac_x_includes=$ac_im_incroot;; esac case $ac_im_usrlibdir in /usr/lib | /usr/lib64 | /lib | /lib64) ;; *) test -d "$ac_im_usrlibdir" && ac_x_libraries=$ac_im_usrlibdir ;; esac fi cd .. rm -f -r 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/X11R7/include /usr/X11R6/include /usr/X11R5/include /usr/X11R4/include /usr/include/X11 /usr/include/X11R7 /usr/include/X11R6 /usr/include/X11R5 /usr/include/X11R4 /usr/local/X11/include /usr/local/X11R7/include /usr/local/X11R6/include /usr/local/X11R5/include /usr/local/X11R4/include /usr/local/include/X11 /usr/local/include/X11R7 /usr/local/include/X11R6 /usr/local/include/X11R5 /usr/local/include/X11R4 /opt/X11/include /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 Xlib.h. # First, try using that file with no special directory specified. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO" then : # We can compile using X headers with no special include directory. ac_x_includes= else case e in #( e) for ac_dir in $ac_x_header_dirs; do if test -r "$ac_dir/X11/Xlib.h"; then ac_x_includes=$ac_dir break fi done ;; esac fi rm -f conftest.err conftest.i 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="-lX11 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { XrmInitialize () ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : LIBS=$ac_save_LIBS # We can link X programs with no special library path. ac_x_libraries= else case e in #( e) LIBS=$ac_save_LIBS for ac_dir in `printf "%s\n" "$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 dylib la dll; do if test -r "$ac_dir/libX11.$ac_extension"; then ac_x_libraries=$ac_dir break 2 fi done done ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext fi # $ac_x_libraries = no fi # Record the results. case $ac_x_includes,$ac_x_libraries in #( no,* | *,no | *\'*) : # Didn't find X, or a directory has "'" in its name. ac_cv_have_x="have_x=no" ;; #( *) : # 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'" ;; esac ;; esac fi ;; #( *) have_x=yes;; esac eval "$ac_cv_have_x" fi # $with_x != no if test "$have_x" != yes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5 printf "%s\n" "$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'" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5 printf "%s\n" "libraries $x_libraries, headers $x_includes" >&6; } fi if test "$no_x" = yes; then # Not all programs may use this symbol, but it does not hurt to define it. printf "%s\n" "#define X_DISPLAY_MISSING 1" >>confdefs.h X_CFLAGS= X_PRE_LIBS= X_LIBS= X_EXTRA_LIBS= else if test -n "$x_includes"; then X_CFLAGS="$X_CFLAGS -I$x_includes" fi # It would also be nice to do this for all -L options, not just this one. if test -n "$x_libraries"; then X_LIBS="$X_LIBS -L$x_libraries" # For Solaris; some versions of Sun CC require a space after -R and # others require no space. Words are not sufficient . . . . { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether -R must be followed by a space" >&5 printf %s "checking whether -R must be followed by a space... " >&6; } ac_xsave_LIBS=$LIBS; LIBS="$LIBS -R$x_libraries" ac_xsave_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } X_LIBS="$X_LIBS -R$x_libraries" else case e in #( e) LIBS="$ac_xsave_LIBS -R $x_libraries" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } X_LIBS="$X_LIBS -R $x_libraries" else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: neither works" >&5 printf "%s\n" "neither works" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext ac_c_werror_flag=$ac_xsave_c_werror_flag LIBS=$ac_xsave_LIBS fi # Check for system-dependent libraries X programs must link with. # Do this before checking for the system-independent R6 libraries # (-lICE), since we may need -lsocket or whatever for X linking. if test "$ISC" = yes; then X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl_s -linet" else # Martyn Johnson says this is needed for Ultrix, if the X # libraries were built with DECnet support. And Karl Berry says # the Alpha needs dnet_stub (dnet does not exist). ac_xsave_LIBS="$LIBS"; LIBS="$LIBS $X_LIBS -lX11" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char XOpenDisplay (void); int main (void) { return XOpenDisplay (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet" >&5 printf %s "checking for dnet_ntoa in -ldnet... " >&6; } if test ${ac_cv_lib_dnet_dnet_ntoa+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char dnet_ntoa (void); int main (void) { return dnet_ntoa (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_dnet_dnet_ntoa=yes else case e in #( e) ac_cv_lib_dnet_dnet_ntoa=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_dnet_ntoa" >&5 printf "%s\n" "$ac_cv_lib_dnet_dnet_ntoa" >&6; } if test "x$ac_cv_lib_dnet_dnet_ntoa" = xyes then : X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet" fi if test $ac_cv_lib_dnet_dnet_ntoa = no; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for dnet_ntoa in -ldnet_stub" >&5 printf %s "checking for dnet_ntoa in -ldnet_stub... " >&6; } if test ${ac_cv_lib_dnet_stub_dnet_ntoa+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-ldnet_stub $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char dnet_ntoa (void); int main (void) { return dnet_ntoa (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_dnet_stub_dnet_ntoa=yes else case e in #( e) ac_cv_lib_dnet_stub_dnet_ntoa=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dnet_stub_dnet_ntoa" >&5 printf "%s\n" "$ac_cv_lib_dnet_stub_dnet_ntoa" >&6; } if test "x$ac_cv_lib_dnet_stub_dnet_ntoa" = xyes then : X_EXTRA_LIBS="$X_EXTRA_LIBS -ldnet_stub" fi fi ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS="$ac_xsave_LIBS" # msh@cis.ufl.edu says -lnsl (and -lsocket) are needed for his 386/AT, # to get the SysV transport functions. # Chad R. Larson says the Pyramis MIS-ES running DC/OSx (SVR4) # needs -lnsl. # The nsl library prevents programs from opening the X display # on Irix 5.2, according to T.E. Dickey. # The functions gethostbyname, getservbyname, and inet_addr are # in -lbsd on LynxOS 3.0.1/i386, according to Lars Hecking. ac_fn_c_check_func "$LINENO" "gethostbyname" "ac_cv_func_gethostbyname" if test "x$ac_cv_func_gethostbyname" = xyes then : fi if test $ac_cv_func_gethostbyname = no; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lnsl" >&5 printf %s "checking for gethostbyname in -lnsl... " >&6; } if test ${ac_cv_lib_nsl_gethostbyname+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lnsl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char gethostbyname (void); int main (void) { return gethostbyname (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_nsl_gethostbyname=yes else case e in #( e) ac_cv_lib_nsl_gethostbyname=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_nsl_gethostbyname" >&5 printf "%s\n" "$ac_cv_lib_nsl_gethostbyname" >&6; } if test "x$ac_cv_lib_nsl_gethostbyname" = xyes then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lnsl" fi if test $ac_cv_lib_nsl_gethostbyname = no; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for gethostbyname in -lbsd" >&5 printf %s "checking for gethostbyname in -lbsd... " >&6; } if test ${ac_cv_lib_bsd_gethostbyname+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lbsd $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char gethostbyname (void); int main (void) { return gethostbyname (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_bsd_gethostbyname=yes else case e in #( e) ac_cv_lib_bsd_gethostbyname=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bsd_gethostbyname" >&5 printf "%s\n" "$ac_cv_lib_bsd_gethostbyname" >&6; } if test "x$ac_cv_lib_bsd_gethostbyname" = xyes then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lbsd" fi fi fi # lieder@skyler.mavd.honeywell.com says without -lsocket, # socket/setsockopt and other routines are undefined under SCO ODT # 2.0. But -lsocket is broken on IRIX 5.2 (and is not necessary # on later versions), says Simon Leinen: it contains gethostby* # variants that don't use the name server (or something). -lsocket # must be given before -lnsl if both are needed. We assume that # if connect needs -lnsl, so does gethostbyname. ac_fn_c_check_func "$LINENO" "connect" "ac_cv_func_connect" if test "x$ac_cv_func_connect" = xyes then : fi if test $ac_cv_func_connect = no; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for connect in -lsocket" >&5 printf %s "checking for connect in -lsocket... " >&6; } if test ${ac_cv_lib_socket_connect+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lsocket $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char connect (void); int main (void) { return connect (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_socket_connect=yes else case e in #( e) ac_cv_lib_socket_connect=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_socket_connect" >&5 printf "%s\n" "$ac_cv_lib_socket_connect" >&6; } if test "x$ac_cv_lib_socket_connect" = xyes then : X_EXTRA_LIBS="-lsocket $X_EXTRA_LIBS" fi fi # Guillermo Gomez says -lposix is necessary on A/UX. ac_fn_c_check_func "$LINENO" "remove" "ac_cv_func_remove" if test "x$ac_cv_func_remove" = xyes then : fi if test $ac_cv_func_remove = no; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for remove in -lposix" >&5 printf %s "checking for remove in -lposix... " >&6; } if test ${ac_cv_lib_posix_remove+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lposix $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char remove (void); int main (void) { return remove (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_posix_remove=yes else case e in #( e) ac_cv_lib_posix_remove=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_posix_remove" >&5 printf "%s\n" "$ac_cv_lib_posix_remove" >&6; } if test "x$ac_cv_lib_posix_remove" = xyes then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lposix" fi fi # BSDI BSD/OS 2.1 needs -lipc for XOpenDisplay. ac_fn_c_check_func "$LINENO" "shmat" "ac_cv_func_shmat" if test "x$ac_cv_func_shmat" = xyes then : fi if test $ac_cv_func_shmat = no; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for shmat in -lipc" >&5 printf %s "checking for shmat in -lipc... " >&6; } if test ${ac_cv_lib_ipc_shmat+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lipc $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char shmat (void); int main (void) { return shmat (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_ipc_shmat=yes else case e in #( e) ac_cv_lib_ipc_shmat=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ipc_shmat" >&5 printf "%s\n" "$ac_cv_lib_ipc_shmat" >&6; } if test "x$ac_cv_lib_ipc_shmat" = xyes then : X_EXTRA_LIBS="$X_EXTRA_LIBS -lipc" fi fi fi # Check for libraries that X11R6 Xt/Xaw programs need. ac_save_LDFLAGS=$LDFLAGS test -n "$x_libraries" && LDFLAGS="$LDFLAGS -L$x_libraries" # SM needs ICE to (dynamically) link under SunOS 4.x (so we have to # check for ICE first), but we must link in the order -lSM -lICE or # we get undefined symbols. So assume we have SM if we have ICE. # These have to be linked with before -lX11, unlike the other # libraries we check for below, so use a different variable. # John Interrante, Karl Berry { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for IceConnectionNumber in -lICE" >&5 printf %s "checking for IceConnectionNumber in -lICE... " >&6; } if test ${ac_cv_lib_ICE_IceConnectionNumber+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lICE $X_EXTRA_LIBS $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char IceConnectionNumber (void); int main (void) { return IceConnectionNumber (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_ICE_IceConnectionNumber=yes else case e in #( e) ac_cv_lib_ICE_IceConnectionNumber=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_ICE_IceConnectionNumber" >&5 printf "%s\n" "$ac_cv_lib_ICE_IceConnectionNumber" >&6; } if test "x$ac_cv_lib_ICE_IceConnectionNumber" = xyes then : X_PRE_LIBS="$X_PRE_LIBS -lSM -lICE" fi LDFLAGS=$ac_save_LDFLAGS fi # Checks for libraries. libs_save="${LIBS}" LIBS= ac_fn_c_check_header_compile "$LINENO" "bfd.h" "ac_cv_header_bfd_h" "$ac_includes_default" if test "x$ac_cv_header_bfd_h" = xyes then : { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for bfd_release in -lbfd" >&5 printf %s "checking for bfd_release in -lbfd... " >&6; } if test ${ac_cv_lib_bfd_bfd_release+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lbfd $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char bfd_release (void); int main (void) { return bfd_release (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_bfd_bfd_release=yes else case e in #( e) ac_cv_lib_bfd_bfd_release=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bfd_bfd_release" >&5 printf "%s\n" "$ac_cv_lib_bfd_bfd_release" >&6; } if test "x$ac_cv_lib_bfd_bfd_release" = xyes then : printf "%s\n" "#define HAVE_LIBBFD 1" >>confdefs.h LIBS="-lbfd $LIBS" else case e in #( e) # add some libs that bfd is "known" to depend on when statically linking { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for main in -liberty" >&5 printf %s "checking for main in -liberty... " >&6; } if test ${ac_cv_lib_iberty_main+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-liberty $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { return main (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_iberty_main=yes else case e in #( e) ac_cv_lib_iberty_main=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_iberty_main" >&5 printf "%s\n" "$ac_cv_lib_iberty_main" >&6; } if test "x$ac_cv_lib_iberty_main" = xyes then : printf "%s\n" "#define HAVE_LIBIBERTY 1" >>confdefs.h LIBS="-liberty $LIBS" fi ac_cv_lib_iberty=ac_cv_lib_iberty_main { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for main in -lz" >&5 printf %s "checking for main in -lz... " >&6; } if test ${ac_cv_lib_z_main+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lz $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { return main (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_z_main=yes else case e in #( e) ac_cv_lib_z_main=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_z_main" >&5 printf "%s\n" "$ac_cv_lib_z_main" >&6; } if test "x$ac_cv_lib_z_main" = xyes then : printf "%s\n" "#define HAVE_LIBZ 1" >>confdefs.h LIBS="-lz $LIBS" fi ac_cv_lib_z=ac_cv_lib_z_main { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for bfd_release in -lbfd" >&5 printf %s "checking for bfd_release in -lbfd... " >&6; } if test ${ac_cv_lib_bfd_bfd_release+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lbfd $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char bfd_release (void); int main (void) { return bfd_release (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_bfd_bfd_release=yes else case e in #( e) ac_cv_lib_bfd_bfd_release=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_bfd_bfd_release" >&5 printf "%s\n" "$ac_cv_lib_bfd_bfd_release" >&6; } if test "x$ac_cv_lib_bfd_bfd_release" = xyes then : printf "%s\n" "#define HAVE_LIBBFD 1" >>confdefs.h LIBS="-lbfd $LIBS" else case e in #( e) echo "FxT needs the binutils-dev package for function names" ;; esac fi ;; esac fi fi FXT_LIBS="${LIBS}" LIBS="${libs_save}" ldflags_save="${LDFLAGS}" LDFLAGS="${LDFLAGS} ${X_LIBS}" for ac_header in X11/Xlib.h X11/Xutil.h do : as_ac_Header=`printf "%s\n" "ac_cv_header_$ac_header" | sed "$as_sed_sh"` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes" then : cat >>confdefs.h <<_ACEOF #define `printf "%s\n" "HAVE_$ac_header" | sed "$as_sed_cpp"` 1 _ACEOF { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for XDrawLine in -lX11" >&5 printf %s "checking for XDrawLine in -lX11... " >&6; } if test ${ac_cv_lib_X11_XDrawLine+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lX11 $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char XDrawLine (void); int main (void) { return XDrawLine (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_X11_XDrawLine=yes else case e in #( e) ac_cv_lib_X11_XDrawLine=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_X11_XDrawLine" >&5 printf "%s\n" "$ac_cv_lib_X11_XDrawLine" >&6; } if test "x$ac_cv_lib_X11_XDrawLine" = xyes then : X11=yes else case e in #( e) echo "fxt_select needs the xlibs-dev package" ; X11=no ;; esac fi fi done LDFLAGS="${ldflags_save}" # Checks for header files. ac_header_dirent=no for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h; do as_ac_Header=`printf "%s\n" "ac_cv_header_dirent_$ac_hdr" | sed "$as_sed_sh"` { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for $ac_hdr that defines DIR" >&5 printf %s "checking for $ac_hdr that defines DIR... " >&6; } if eval test \${$as_ac_Header+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include <$ac_hdr> int main (void) { if ((DIR *) 0) return 0; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : eval "$as_ac_Header=yes" else case e in #( e) eval "$as_ac_Header=no" ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi eval ac_res=\$$as_ac_Header { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 printf "%s\n" "$ac_res" >&6; } if eval test \"x\$"$as_ac_Header"\" = x"yes" then : cat >>confdefs.h <<_ACEOF #define `printf "%s\n" "HAVE_$ac_hdr" | sed "$as_sed_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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5 printf %s "checking for library containing opendir... " >&6; } if test ${ac_cv_search_opendir+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char opendir (void); int main (void) { return opendir (); ; return 0; } _ACEOF for ac_lib in '' dir do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO" then : ac_cv_search_opendir=$ac_res fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext if test ${ac_cv_search_opendir+y} then : break fi done if test ${ac_cv_search_opendir+y} then : else case e in #( e) ac_cv_search_opendir=no ;; esac fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_opendir" >&5 printf "%s\n" "$ac_cv_search_opendir" >&6; } ac_res=$ac_cv_search_opendir if test "$ac_res" != no then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for library containing opendir" >&5 printf %s "checking for library containing opendir... " >&6; } if test ${ac_cv_search_opendir+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char opendir (void); int main (void) { return opendir (); ; return 0; } _ACEOF for ac_lib in '' x do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO" then : ac_cv_search_opendir=$ac_res fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext if test ${ac_cv_search_opendir+y} then : break fi done if test ${ac_cv_search_opendir+y} then : else case e in #( e) ac_cv_search_opendir=no ;; esac fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_opendir" >&5 printf "%s\n" "$ac_cv_search_opendir" >&6; } ac_res=$ac_cv_search_opendir if test "$ac_res" != no then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi fi # Autoupdate added the next two lines to ensure that your configure # script's behavior did not change. They are probably safe to remove. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 printf %s "checking for egrep... " >&6; } if test ${ac_cv_path_EGREP+y} then : printf %s "(cached) " >&6 else case e in #( e) if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac for ac_prog in egrep do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir$ac_prog$ac_exec_ext" as_fn_executable_p "$ac_path_EGREP" || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in #( *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; #( *) ac_count=0 printf %s 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" printf "%s\n" 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 printf "%s\n" "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" EGREP_TRADITIONAL=$EGREP ac_cv_path_EGREP_TRADITIONAL=$EGREP { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for sys/wait.h that is POSIX.1 compatible" >&5 printf %s "checking for sys/wait.h that is POSIX.1 compatible... " >&6; } if test ${ac_cv_header_sys_wait_h+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #ifndef WEXITSTATUS # define WEXITSTATUS(stat_val) ((unsigned int) (stat_val) >> 8) #endif #ifndef WIFEXITED # define WIFEXITED(stat_val) (((stat_val) & 255) == 0) #endif int main (void) { int s; wait (&s); s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_header_sys_wait_h=yes else case e in #( e) ac_cv_header_sys_wait_h=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_sys_wait_h" >&5 printf "%s\n" "$ac_cv_header_sys_wait_h" >&6; } if test $ac_cv_header_sys_wait_h = yes; then printf "%s\n" "#define HAVE_SYS_WAIT_H 1" >>confdefs.h fi ac_fn_c_check_header_compile "$LINENO" "fcntl.h" "ac_cv_header_fcntl_h" "$ac_includes_default" if test "x$ac_cv_header_fcntl_h" = xyes then : printf "%s\n" "#define HAVE_FCNTL_H 1" >>confdefs.h fi ac_fn_c_check_header_compile "$LINENO" "limits.h" "ac_cv_header_limits_h" "$ac_includes_default" if test "x$ac_cv_header_limits_h" = xyes then : printf "%s\n" "#define HAVE_LIMITS_H 1" >>confdefs.h fi ac_fn_c_check_header_compile "$LINENO" "stdint.h" "ac_cv_header_stdint_h" "$ac_includes_default" if test "x$ac_cv_header_stdint_h" = xyes then : printf "%s\n" "#define HAVE_STDINT_H 1" >>confdefs.h fi ac_fn_c_check_header_compile "$LINENO" "stdlib.h" "ac_cv_header_stdlib_h" "$ac_includes_default" if test "x$ac_cv_header_stdlib_h" = xyes then : printf "%s\n" "#define HAVE_STDLIB_H 1" >>confdefs.h fi ac_fn_c_check_header_compile "$LINENO" "string.h" "ac_cv_header_string_h" "$ac_includes_default" if test "x$ac_cv_header_string_h" = xyes then : printf "%s\n" "#define HAVE_STRING_H 1" >>confdefs.h fi ac_fn_c_check_header_compile "$LINENO" "sys/ioctl.h" "ac_cv_header_sys_ioctl_h" "$ac_includes_default" if test "x$ac_cv_header_sys_ioctl_h" = xyes then : printf "%s\n" "#define HAVE_SYS_IOCTL_H 1" >>confdefs.h fi ac_fn_c_check_header_compile "$LINENO" "sys/mount.h" "ac_cv_header_sys_mount_h" "$ac_includes_default" if test "x$ac_cv_header_sys_mount_h" = xyes then : printf "%s\n" "#define HAVE_SYS_MOUNT_H 1" >>confdefs.h fi ac_fn_c_check_header_compile "$LINENO" "sys/vfs.h" "ac_cv_header_sys_vfs_h" "$ac_includes_default" if test "x$ac_cv_header_sys_vfs_h" = xyes then : printf "%s\n" "#define HAVE_SYS_VFS_H 1" >>confdefs.h fi ac_fn_c_check_header_compile "$LINENO" "unistd.h" "ac_cv_header_unistd_h" "$ac_includes_default" if test "x$ac_cv_header_unistd_h" = xyes then : printf "%s\n" "#define HAVE_UNISTD_H 1" >>confdefs.h fi # Checks for typedefs, structures, and compiler characteristics. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for an ANSI C-conforming const" >&5 printf %s "checking for an ANSI C-conforming const... " >&6; } if test ${ac_cv_c_const+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { #ifndef __cplusplus /* Ultrix mips cc rejects this sort of thing. */ typedef int charset[2]; const charset cs = { 0, 0 }; /* SunOS 4.1.1 cc rejects this. */ char const *const *pcpcc; char **ppc; /* NEC SVR4.0.2 mips cc rejects this. */ struct point {int x, y;}; static struct point const zero = {0,0}; /* IBM XL C 1.02.0.0 rejects this. It does not let you subtract one const X* pointer from another in an arm of an if-expression whose if-part is not a constant expression */ const char *g = "string"; pcpcc = &g + (g ? g-g : 0); /* HPUX 7.0 cc rejects these. */ ++pcpcc; ppc = (char**) pcpcc; pcpcc = (char const *const *) ppc; { /* SCO 3.2v4 cc rejects this sort of thing. */ char tx; char *t = &tx; char const *s = 0 ? (char *) 0 : (char const *) 0; *t++ = 0; if (s) return 0; } { /* Someone thinks the Sun supposedly-ANSI compiler will reject this. */ int x[] = {25, 17}; const int *foo = &x[0]; ++foo; } { /* Sun SC1.0 ANSI compiler rejects this -- but not the above. */ typedef const int *iptr; iptr p = 0; ++p; } { /* IBM XL C 1.02.0.0 rejects this sort of thing, saying "k.c", line 2.27: 1506-025 (S) Operand must be a modifiable lvalue. */ struct s { int j; const int *ap[3]; } bx; struct s *b = &bx; b->j = 5; } { /* ULTRIX-32 V3.1 (Rev 9) vcc rejects this */ const int foo = 10; if (!foo) return 0; } return !cs[0] && !zero.x; #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_c_const=yes else case e in #( e) ac_cv_c_const=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_const" >&5 printf "%s\n" "$ac_cv_c_const" >&6; } if test $ac_cv_c_const = no; then printf "%s\n" "#define const /**/" >>confdefs.h fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for inline" >&5 printf %s "checking for inline... " >&6; } if test ${ac_cv_c_inline+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __cplusplus typedef int foo_t; static $ac_kw foo_t static_foo (void) {return 0; } $ac_kw foo_t foo (void) {return 0; } #endif _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_c_inline=$ac_kw fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext test "$ac_cv_c_inline" != no && break done ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_inline" >&5 printf "%s\n" "$ac_cv_c_inline" >&6; } case $ac_cv_c_inline in inline | yes) ;; *) case $ac_cv_c_inline in no) ac_val=;; *) ac_val=$ac_cv_c_inline;; esac cat >>confdefs.h <<_ACEOF #ifndef __cplusplus #define inline $ac_val #endif _ACEOF ;; esac ac_fn_c_check_type "$LINENO" "off_t" "ac_cv_type_off_t" "$ac_includes_default" if test "x$ac_cv_type_off_t" = xyes then : else case e in #( e) printf "%s\n" "#define off_t long int" >>confdefs.h ;; esac fi ac_fn_c_check_type "$LINENO" "pid_t" "ac_cv_type_pid_t" "$ac_includes_default " if test "x$ac_cv_type_pid_t" = xyes then : else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #if defined _WIN64 && !defined __CYGWIN__ LLP64 #endif int main (void) { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_pid_type='int' else case e in #( e) ac_pid_type='__int64' ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext printf "%s\n" "#define pid_t $ac_pid_type" >>confdefs.h ;; esac fi ac_fn_c_check_type "$LINENO" "size_t" "ac_cv_type_size_t" "$ac_includes_default" if test "x$ac_cv_type_size_t" = xyes then : else case e in #( e) printf "%s\n" "#define size_t unsigned int" >>confdefs.h ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether struct tm is in sys/time.h or time.h" >&5 printf %s "checking whether struct tm is in sys/time.h or time.h... " >&6; } if test ${ac_cv_struct_tm+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main (void) { struct tm tm; int *p = &tm.tm_sec; return !p; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_struct_tm=time.h else case e in #( e) ac_cv_struct_tm=sys/time.h ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_struct_tm" >&5 printf "%s\n" "$ac_cv_struct_tm" >&6; } if test $ac_cv_struct_tm = sys/time.h; then printf "%s\n" "#define TM_IN_SYS_TIME 1" >>confdefs.h fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for working volatile" >&5 printf %s "checking for working volatile... " >&6; } if test ${ac_cv_c_volatile+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { volatile int x; int * volatile y = (int *) 0; return !x && !y; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_c_volatile=yes else case e in #( e) ac_cv_c_volatile=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_volatile" >&5 printf "%s\n" "$ac_cv_c_volatile" >&6; } if test $ac_cv_c_volatile = no; then printf "%s\n" "#define volatile /**/" >>confdefs.h fi # Checks for library functions. ac_func= for ac_item in $ac_func_c_list do if test $ac_func; then ac_fn_c_check_func "$LINENO" $ac_func ac_cv_func_$ac_func if eval test \"x\$ac_cv_func_$ac_func\" = xyes; then echo "#define $ac_item 1" >> confdefs.h fi ac_func= else ac_func=$ac_item fi done if test "x$ac_cv_func_fork" = xyes; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for working fork" >&5 printf %s "checking for working fork... " >&6; } if test ${ac_cv_func_fork_works+y} then : printf %s "(cached) " >&6 else case e in #( e) if test "$cross_compiling" = yes then : ac_cv_func_fork_works=cross else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main (void) { /* By R. Kuhlmann. */ return fork () < 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO" then : ac_cv_func_fork_works=yes else case e in #( e) ac_cv_func_fork_works=no ;; esac fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_fork_works" >&5 printf "%s\n" "$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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: result $ac_cv_func_fork_works guessed because of cross compilation" >&5 printf "%s\n" "$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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for working vfork" >&5 printf %s "checking for working vfork... " >&6; } if test ${ac_cv_func_vfork_works+y} then : printf %s "(cached) " >&6 else case e in #( e) if test "$cross_compiling" = yes then : ac_cv_func_vfork_works=cross else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Thanks to Paul Eggert for this test. */ $ac_includes_default #include #include #ifdef HAVE_VFORK_H # include #endif static void do_nothing (int sig) { (void) sig; } /* 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 sparc_address_test (int arg) { 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 (void) { pid_t parent = getpid (); pid_t child; sparc_address_test (0); /* On Solaris 2.4, changes by the child to the signal handler also munge signal handlers in the parent. To detect this, start by putting the parent's handler in a known state. */ signal (SIGTERM, SIG_DFL); 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); /* Alter the child's signal handler. */ if (signal (SIGTERM, do_nothing) != SIG_DFL) _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) ; return ( /* Was there some problem with vforking? */ child < 0 /* Did the child munge the parent's signal handler? */ || signal (SIGTERM, SIG_DFL) != SIG_DFL /* 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 if ac_fn_c_try_run "$LINENO" then : ac_cv_func_vfork_works=yes else case e in #( e) ac_cv_func_vfork_works=no ;; esac fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_vfork_works" >&5 printf "%s\n" "$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 { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: result $ac_cv_func_vfork_works guessed because of cross compilation" >&5 printf "%s\n" "$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 printf "%s\n" "#define HAVE_WORKING_VFORK 1" >>confdefs.h else printf "%s\n" "#define vfork fork" >>confdefs.h fi if test "x$ac_cv_func_fork_works" = xyes; then printf "%s\n" "#define HAVE_WORKING_FORK 1" >>confdefs.h fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for working mmap" >&5 printf %s "checking for working mmap... " >&6; } if test ${ac_cv_func_mmap_fixed_mapped+y} then : printf %s "(cached) " >&6 else case e in #( e) if test "$cross_compiling" = yes then : case "$host_os" in # (( # Guess yes on platforms where we know the result. linux*) ac_cv_func_mmap_fixed_mapped=yes ;; # If we don't know, assume the worst. *) ac_cv_func_mmap_fixed_mapped=no ;; esac else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default /* malloc might have been renamed as rpl_malloc. */ #undef malloc /* Thanks to Mike Haertel and Jim Avera for this test. Here is a matrix of mmap possibilities: mmap private not fixed mmap private fixed at somewhere currently unmapped mmap private fixed at somewhere already mapped mmap shared not fixed mmap shared fixed at somewhere currently unmapped mmap shared fixed at somewhere already mapped For private mappings, we should verify that changes cannot be read() back from the file, nor mmap's back from the file at a different address. (There have been systems where private was not correctly implemented like the infamous i386 svr4.0, and systems where the VM page cache was not coherent with the file system buffer cache like early versions of FreeBSD and possibly contemporary NetBSD.) For shared mappings, we should conversely verify that changes get propagated back to all the places they're supposed to be. */ #include #include #ifndef getpagesize /* Prefer sysconf to the legacy getpagesize function, as getpagesize has been removed from POSIX and is limited to page sizes that fit in 'int'. */ # ifdef _SC_PAGESIZE # define getpagesize() sysconf (_SC_PAGESIZE) # elif defined _SC_PAGE_SIZE # define getpagesize() sysconf (_SC_PAGE_SIZE) # elif HAVE_GETPAGESIZE int getpagesize (); # else # ifdef HAVE_SYS_PARAM_H # include # ifdef EXEC_PAGESIZE # define getpagesize() EXEC_PAGESIZE # else /* no EXEC_PAGESIZE */ # ifdef NBPG # define getpagesize() NBPG * CLSIZE # ifndef CLSIZE # define CLSIZE 1 # endif /* no CLSIZE */ # else /* no NBPG */ # ifdef NBPC # define getpagesize() NBPC # else /* no NBPC */ # ifdef PAGESIZE # define getpagesize() PAGESIZE # endif /* PAGESIZE */ # endif /* no NBPC */ # endif /* no NBPG */ # endif /* no EXEC_PAGESIZE */ # else /* no HAVE_SYS_PARAM_H */ # define getpagesize() 8192 /* punt totally */ # endif /* no HAVE_SYS_PARAM_H */ # endif #endif int main (void) { char *data, *data2, *data3; const char *cdata2; long i, pagesize; int fd, fd2; pagesize = getpagesize (); /* First, make a file with some known garbage in it. */ data = (char *) malloc (pagesize); if (!data) return 1; for (i = 0; i < pagesize; ++i) *(data + i) = rand (); umask (0); fd = creat ("conftest.mmap", 0600); if (fd < 0) return 2; if (write (fd, data, pagesize) != pagesize) return 3; close (fd); /* Next, check that the tail of a page is zero-filled. File must have non-zero length, otherwise we risk SIGBUS for entire page. */ fd2 = open ("conftest.txt", O_RDWR | O_CREAT | O_TRUNC, 0600); if (fd2 < 0) return 4; cdata2 = ""; if (write (fd2, cdata2, 1) != 1) return 5; data2 = (char *) mmap (0, pagesize, PROT_READ | PROT_WRITE, MAP_SHARED, fd2, 0L); if (data2 == MAP_FAILED) return 6; for (i = 0; i < pagesize; ++i) if (*(data2 + i)) return 7; close (fd2); /* 'return 8;' not currently used. */ /* Next, try to mmap the file at a fixed address which already has something else allocated at it. If we can, also make sure that we see the same garbage. */ fd = open ("conftest.mmap", O_RDWR); if (fd < 0) return 9; if (data2 != mmap (data2, pagesize, PROT_READ | PROT_WRITE, MAP_PRIVATE | MAP_FIXED, fd, 0L)) return 10; for (i = 0; i < pagesize; ++i) if (*(data + i) != *(data2 + i)) return 11; /* Finally, make sure that changes to the mapped area do not percolate back to the file as seen by read(). (This is a bug on some variants of i386 svr4.0.) */ for (i = 0; i < pagesize; ++i) *(data2 + i) = *(data2 + i) + 1; data3 = (char *) malloc (pagesize); if (!data3) return 12; if (read (fd, data3, pagesize) != pagesize) return 13; for (i = 0; i < pagesize; ++i) if (*(data + i) != *(data3 + i)) return 14; close (fd); free (data); free (data3); return 0; } _ACEOF if ac_fn_c_try_run "$LINENO" then : ac_cv_func_mmap_fixed_mapped=yes else case e in #( e) ac_cv_func_mmap_fixed_mapped=no ;; esac fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_mmap_fixed_mapped" >&5 printf "%s\n" "$ac_cv_func_mmap_fixed_mapped" >&6; } if test $ac_cv_func_mmap_fixed_mapped = yes; then printf "%s\n" "#define HAVE_MMAP 1" >>confdefs.h fi rm -f conftest.mmap conftest.txt { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking return type of signal handlers" >&5 printf %s "checking return type of signal handlers... " >&6; } if test ${ac_cv_type_signal+y} then : printf %s "(cached) " >&6 else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main (void) { return *(signal (0, 0)) (0) == 1; ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_type_signal=int else case e in #( e) ac_cv_type_signal=void ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_type_signal" >&5 printf "%s\n" "$ac_cv_type_signal" >&6; } printf "%s\n" "#define RETSIGTYPE $ac_cv_type_signal" >>confdefs.h { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether lstat correctly handles trailing slash" >&5 printf %s "checking whether lstat correctly handles trailing slash... " >&6; } if test ${ac_cv_func_lstat_dereferences_slashed_symlink+y} then : printf %s "(cached) " >&6 else case e in #( e) rm -f conftest.sym conftest.file echo >conftest.file if test "$as_ln_s" = "ln -s" && ln -s conftest.file conftest.sym; then if test "$cross_compiling" = yes then : case "$host_os" in # (( # Guess yes on glibc systems. *-gnu*) ac_cv_func_lstat_dereferences_slashed_symlink=yes ;; # If we don't know, assume the worst. *) ac_cv_func_lstat_dereferences_slashed_symlink=no ;; esac else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main (void) { struct stat sbuf; /* Linux will dereference the symlink and fail, as required by POSIX. That is better in the sense that it means we will not have to compile and use the lstat wrapper. */ return lstat ("conftest.sym/", &sbuf) == 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO" then : ac_cv_func_lstat_dereferences_slashed_symlink=yes else case e in #( e) ac_cv_func_lstat_dereferences_slashed_symlink=no ;; esac fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi else # If the 'ln -s' command failed, then we probably don't even # have an lstat function. ac_cv_func_lstat_dereferences_slashed_symlink=no fi rm -f conftest.sym conftest.file ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_lstat_dereferences_slashed_symlink" >&5 printf "%s\n" "$ac_cv_func_lstat_dereferences_slashed_symlink" >&6; } test $ac_cv_func_lstat_dereferences_slashed_symlink = yes && printf "%s\n" "#define LSTAT_FOLLOWS_SLASHED_SYMLINK 1" >>confdefs.h if test "x$ac_cv_func_lstat_dereferences_slashed_symlink" = xno; then case " $LIBOBJS " in *" lstat.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS lstat.$ac_objext" ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether stat accepts an empty string" >&5 printf %s "checking whether stat accepts an empty string... " >&6; } if test ${ac_cv_func_stat_empty_string_bug+y} then : printf %s "(cached) " >&6 else case e in #( e) if test "$cross_compiling" = yes then : ac_cv_func_stat_empty_string_bug=yes else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main (void) { struct stat sbuf; return stat ("", &sbuf) == 0; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO" then : ac_cv_func_stat_empty_string_bug=no else case e in #( e) ac_cv_func_stat_empty_string_bug=yes ;; esac fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_func_stat_empty_string_bug" >&5 printf "%s\n" "$ac_cv_func_stat_empty_string_bug" >&6; } if test $ac_cv_func_stat_empty_string_bug = yes; then case " $LIBOBJS " in *" stat.$ac_objext "* ) ;; *) LIBOBJS="$LIBOBJS stat.$ac_objext" ;; esac printf "%s\n" "#define HAVE_STAT_EMPTY_STRING_BUG 1" >>confdefs.h fi for ac_func in strftime do : ac_fn_c_check_func "$LINENO" "strftime" "ac_cv_func_strftime" if test "x$ac_cv_func_strftime" = xyes then : printf "%s\n" "#define HAVE_STRFTIME 1" >>confdefs.h else case e in #( e) # strftime is in -lintl on SCO UNIX. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for strftime in -lintl" >&5 printf %s "checking for strftime in -lintl... " >&6; } if test ${ac_cv_lib_intl_strftime+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lintl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char strftime (void); int main (void) { return strftime (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_intl_strftime=yes else case e in #( e) ac_cv_lib_intl_strftime=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_intl_strftime" >&5 printf "%s\n" "$ac_cv_lib_intl_strftime" >&6; } if test "x$ac_cv_lib_intl_strftime" = xyes then : printf "%s\n" "#define HAVE_STRFTIME 1" >>confdefs.h LIBS="-lintl $LIBS" fi ;; esac fi done ac_fn_c_check_func "$LINENO" "dup2" "ac_cv_func_dup2" if test "x$ac_cv_func_dup2" = xyes then : printf "%s\n" "#define HAVE_DUP2 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "getpagesize" "ac_cv_func_getpagesize" if test "x$ac_cv_func_getpagesize" = xyes then : printf "%s\n" "#define HAVE_GETPAGESIZE 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "localtime_r" "ac_cv_func_localtime_r" if test "x$ac_cv_func_localtime_r" = xyes then : printf "%s\n" "#define HAVE_LOCALTIME_R 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "memmove" "ac_cv_func_memmove" if test "x$ac_cv_func_memmove" = xyes then : printf "%s\n" "#define HAVE_MEMMOVE 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "memset" "ac_cv_func_memset" if test "x$ac_cv_func_memset" = xyes then : printf "%s\n" "#define HAVE_MEMSET 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "strchr" "ac_cv_func_strchr" if test "x$ac_cv_func_strchr" = xyes then : printf "%s\n" "#define HAVE_STRCHR 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "strdup" "ac_cv_func_strdup" if test "x$ac_cv_func_strdup" = xyes then : printf "%s\n" "#define HAVE_STRDUP 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "strerror" "ac_cv_func_strerror" if test "x$ac_cv_func_strerror" = xyes then : printf "%s\n" "#define HAVE_STRERROR 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "strspn" "ac_cv_func_strspn" if test "x$ac_cv_func_strspn" = xyes then : printf "%s\n" "#define HAVE_STRSPN 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "strstr" "ac_cv_func_strstr" if test "x$ac_cv_func_strstr" = xyes then : printf "%s\n" "#define HAVE_STRSTR 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "strtol" "ac_cv_func_strtol" if test "x$ac_cv_func_strtol" = xyes then : printf "%s\n" "#define HAVE_STRTOL 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "strtoul" "ac_cv_func_strtoul" if test "x$ac_cv_func_strtoul" = xyes then : printf "%s\n" "#define HAVE_STRTOUL 1" >>confdefs.h fi ac_fn_c_check_func "$LINENO" "uname" "ac_cv_func_uname" if test "x$ac_cv_func_uname" = xyes then : printf "%s\n" "#define HAVE_UNAME 1" >>confdefs.h fi case "${host_os}" in linux*) FKT=yes ;; mingw*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for main in -lpthread" >&5 printf %s "checking for main in -lpthread... " >&6; } if test ${ac_cv_lib_pthread_main+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lpthread $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main (void) { return main (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_pthread_main=yes else case e in #( e) ac_cv_lib_pthread_main=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pthread_main" >&5 printf "%s\n" "$ac_cv_lib_pthread_main" >&6; } if test "x$ac_cv_lib_pthread_main" = xyes then : printf "%s\n" "#define HAVE_LIBPTHREAD 1" >>confdefs.h LIBS="-lpthread $LIBS" fi ac_cv_lib_pthread=ac_cv_lib_pthread_main fxt_windows=yes ;; cygwin*) fxt_windows=yes ;; esac if test "x$fxt_windows" = "xyes"; then FXT_HAVE_WINDOWS_TRUE= FXT_HAVE_WINDOWS_FALSE='#' else FXT_HAVE_WINDOWS_TRUE='#' FXT_HAVE_WINDOWS_FALSE= fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking whether byte ordering is bigendian" >&5 printf %s "checking whether byte ordering is bigendian... " >&6; } if test ${ac_cv_c_bigendian+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_cv_c_bigendian=unknown # See if we're dealing with a universal compiler. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifndef __APPLE_CC__ not a universal capable compiler #endif typedef int dummy; _ACEOF if ac_fn_c_try_compile "$LINENO" then : # Check for potential -arch flags. It is not universal unless # there are at least two -arch flags with different values. ac_arch= ac_prev= for ac_word in $CC $CFLAGS $CPPFLAGS $LDFLAGS; do if test -n "$ac_prev"; then case $ac_word in i?86 | x86_64 | ppc | ppc64) if test -z "$ac_arch" || test "$ac_arch" = "$ac_word"; then ac_arch=$ac_word else ac_cv_c_bigendian=universal break fi ;; esac ac_prev= elif test "x$ac_word" = "x-arch"; then ac_prev=arch fi done fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext if test $ac_cv_c_bigendian = unknown; then # See if sys/param.h defines the BYTE_ORDER macro. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main (void) { #if ! (defined BYTE_ORDER && defined BIG_ENDIAN \\ && defined LITTLE_ENDIAN && BYTE_ORDER && BIG_ENDIAN \\ && LITTLE_ENDIAN) bogus endian macros #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : # It does; now see whether it defined to BIG_ENDIAN or not. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include int main (void) { #if BYTE_ORDER != BIG_ENDIAN not big endian #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_c_bigendian=yes else case e in #( e) ac_cv_c_bigendian=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi if test $ac_cv_c_bigendian = unknown; then # See if defines _LITTLE_ENDIAN or _BIG_ENDIAN (e.g., Solaris). cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { #if ! (defined _LITTLE_ENDIAN || defined _BIG_ENDIAN) bogus endian macros #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : # It does; now see whether it defined to _BIG_ENDIAN or not. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main (void) { #ifndef _BIG_ENDIAN not big endian #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : ac_cv_c_bigendian=yes else case e in #( e) ac_cv_c_bigendian=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext fi if test $ac_cv_c_bigendian = unknown; then # Compile a test program. if test "$cross_compiling" = yes then : # Try to guess by grepping values from an object file. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ unsigned short int ascii_mm[] = { 0x4249, 0x4765, 0x6E44, 0x6961, 0x6E53, 0x7953, 0 }; unsigned short int ascii_ii[] = { 0x694C, 0x5454, 0x656C, 0x6E45, 0x6944, 0x6E61, 0 }; int use_ascii (int i) { return ascii_mm[i] + ascii_ii[i]; } unsigned short int ebcdic_ii[] = { 0x89D3, 0xE3E3, 0x8593, 0x95C5, 0x89C4, 0x9581, 0 }; unsigned short int ebcdic_mm[] = { 0xC2C9, 0xC785, 0x95C4, 0x8981, 0x95E2, 0xA8E2, 0 }; int use_ebcdic (int i) { return ebcdic_mm[i] + ebcdic_ii[i]; } int main (int argc, char **argv) { /* Intimidate the compiler so that it does not optimize the arrays away. */ char *p = argv[0]; ascii_mm[1] = *p++; ebcdic_mm[1] = *p++; ascii_ii[1] = *p++; ebcdic_ii[1] = *p++; return use_ascii (argc) == use_ebcdic (*p); } _ACEOF if ac_fn_c_try_link "$LINENO" then : if grep BIGenDianSyS conftest$ac_exeext >/dev/null; then ac_cv_c_bigendian=yes fi if grep LiTTleEnDian conftest$ac_exeext >/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 fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext else case e in #( e) cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $ac_includes_default int main (void) { /* Are we little or big endian? From Harbison&Steele. */ union { long int l; char c[sizeof (long int)]; } u; u.l = 1; return u.c[sizeof (long int) - 1] == 1; ; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO" then : ac_cv_c_bigendian=no else case e in #( e) ac_cv_c_bigendian=yes ;; esac fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext ;; esac fi fi ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_bigendian" >&5 printf "%s\n" "$ac_cv_c_bigendian" >&6; } case $ac_cv_c_bigendian in #( yes) printf "%s\n" "#define IS_BIG_ENDIAN 1" >>confdefs.h ;; #( no) ;; #( universal) printf "%s\n" "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h ;; #( *) echo "Warning: unknown endian order, don't exchange traces with other endiannesses" ;; esac if test "x$FKT" = xyes; then FKT_TRUE= FKT_FALSE='#' else FKT_TRUE='#' FKT_FALSE= fi if test "x$X11" = xyes; then X11_TRUE= X11_FALSE='#' else X11_TRUE='#' X11_FALSE= fi if test "x$ac_cv_prog_LATEX" != x; then LATEX_TRUE= LATEX_FALSE='#' else LATEX_TRUE='#' LATEX_FALSE= fi if test "x$ac_cv_prog_EPSTOPDF" != x; then EPSTOPDF_TRUE= EPSTOPDF_FALSE='#' else EPSTOPDF_TRUE='#' EPSTOPDF_FALSE= fi # Check whether --enable-gettid was given. if test ${enable_gettid+y} then : enableval=$enable_gettid; fi if test "x$enable_gettid" = xyes; then printf "%s\n" "#define USE_GETTID 1" >>confdefs.h fi AM_LFS_CFLAGS=$(getconf LFS_CFLAGS) AM_LFS_LDFLAGS=$(getconf LFS_LDFLAGS) # On many multicore CPUs, clock cycles are not synchronized, we'd better use # clock_gettime() instead of TSC. { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for clock_gettime in -lrt" >&5 printf %s "checking for clock_gettime in -lrt... " >&6; } if test ${ac_cv_lib_rt_clock_gettime+y} then : printf %s "(cached) " >&6 else case e in #( e) ac_check_lib_save_LIBS=$LIBS LIBS="-lrt $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. The 'extern "C"' is for builds by C++ compilers; although this is not generally supported in C code supporting it here has little cost and some practical benefit (sr 110532). */ #ifdef __cplusplus extern "C" #endif char clock_gettime (void); int main (void) { return clock_gettime (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO" then : ac_cv_lib_rt_clock_gettime=yes else case e in #( e) ac_cv_lib_rt_clock_gettime=no ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS ;; esac fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_rt_clock_gettime" >&5 printf "%s\n" "$ac_cv_lib_rt_clock_gettime" >&6; } if test "x$ac_cv_lib_rt_clock_gettime" = xyes then : LIBS="$LIBS -lrt" fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking for clock_gettime(CLOCK_MONOTONIC)" >&5 printf %s "checking for clock_gettime(CLOCK_MONOTONIC)... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include struct timespec tp; int main (void) { clock_gettime(CLOCK_MONOTONIC, &tp); ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO" then : printf "%s\n" "#define HAVE_CLOCK_GETTIME 1" >>confdefs.h { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: yes" >&5 printf "%s\n" "yes" >&6; } else case e in #( e) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: no" >&5 printf "%s\n" "no" >&6; } ;; esac fi rm -f core conftest.err conftest.$ac_objext conftest.beam conftest.$ac_ext ac_config_files="$ac_config_files tools/template2h.pl" # WARNING: Makefiles on different lines to be grepped by bootstrap ac_config_files="$ac_config_files Makefile tools/Makefile doc/Makefile fxt.pc" 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, we kill variables containing newlines. # 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. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 printf "%s\n" "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}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 "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test ${\1+y} || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then if test "x$cache_file" != "x/dev/null"; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 printf "%s\n" "$as_me: updating cache $cache_file" >&6;} if test ! -f "$cache_file" || test -h "$cache_file"; then cat confcache >"$cache_file" else case $cache_file in #( */* | ?:*) mv -f confcache "$cache_file"$$ && mv -f "$cache_file"$$ "$cache_file" ;; #( *) mv -f confcache "$cache_file" ;; esac fi fi else { printf "%s\n" "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 printf "%s\n" "$as_me: not updating unwritable cache $cache_file" >&6;} 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}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`printf "%s\n" "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs { printf "%s\n" "$as_me:${as_lineno-$LINENO}: checking that generated files are newer than configure" >&5 printf %s "checking that generated files are newer than configure... " >&6; } if test -n "$am_sleep_pid"; then # Hide warnings about reused PIDs. wait $am_sleep_pid 2>/dev/null fi { printf "%s\n" "$as_me:${as_lineno-$LINENO}: result: done" >&5 printf "%s\n" "done" >&6; } case $enable_silent_rules in # ((( yes) AM_DEFAULT_VERBOSITY=0;; no) AM_DEFAULT_VERBOSITY=1;; esac if test $am_cv_make_support_nested_variables = yes; then AM_V='$(V)' AM_DEFAULT_V='$(AM_DEFAULT_VERBOSITY)' else AM_V=$AM_DEFAULT_VERBOSITY AM_DEFAULT_V=$AM_DEFAULT_VERBOSITY fi if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${HAVE_HELP2MAN_TRUE}" && test -z "${HAVE_HELP2MAN_FALSE}"; then as_fn_error $? "conditional \"HAVE_HELP2MAN\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${FXT_HAVE_MS_LIB_TRUE}" && test -z "${FXT_HAVE_MS_LIB_FALSE}"; then as_fn_error $? "conditional \"FXT_HAVE_MS_LIB\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${FXT_HAVE_WINDOWS_TRUE}" && test -z "${FXT_HAVE_WINDOWS_FALSE}"; then as_fn_error $? "conditional \"FXT_HAVE_WINDOWS\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${FKT_TRUE}" && test -z "${FKT_FALSE}"; then as_fn_error $? "conditional \"FKT\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${X11_TRUE}" && test -z "${X11_FALSE}"; then as_fn_error $? "conditional \"X11\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${LATEX_TRUE}" && test -z "${LATEX_FALSE}"; then as_fn_error $? "conditional \"LATEX\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${EPSTOPDF_TRUE}" && test -z "${EPSTOPDF_FALSE}"; then as_fn_error $? "conditional \"EPSTOPDF\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : "${CONFIG_STATUS=./config.status}" ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 printf "%s\n" "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $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} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test ${ZSH_VERSION+y} && (emulate sh) >/dev/null 2>&1 then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case e in #( e) case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac ;; esac fi # Reset variables that may have inherited troublesome values from # the environment. # IFS needs to be set, to space, tab, and newline, in precisely that order. # (If _AS_PATH_WALK were called with IFS unset, it would have the # side effect of setting IFS to empty, thus disabling word splitting.) # Quoting is to prevent editors from complaining about space-tab. as_nl=' ' export as_nl IFS=" "" $as_nl" PS1='$ ' PS2='> ' PS4='+ ' # Ensure predictable behavior from utilities with locale-dependent output. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # We cannot yet rely on "unset" to work, but we need these variables # to be unset--not just set to an empty or harmless value--now, to # avoid bugs in old shells (e.g. pre-3.0 UWIN ksh). This construct # also avoids known problems related to "unset" and subshell syntax # in other old shells (e.g. bash 2.01 and pdksh 5.2.14). for as_var in BASH_ENV ENV MAIL MAILPATH CDPATH do eval test \${$as_var+y} \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done # Ensure that fds 0, 1, and 2 are open. if (exec 3>&0) 2>/dev/null; then :; else exec 0&1) 2>/dev/null; then :; else exec 1>/dev/null; fi if (exec 3>&2) ; then :; else exec 2>/dev/null; fi # The user is always right. if ${PATH_SEPARATOR+false} :; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # Find who we are. Look in the path if we contain no directory separator. as_myself= case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS case $as_dir in #((( '') as_dir=./ ;; */) ;; *) as_dir=$as_dir/ ;; esac test -r "$as_dir$0" && as_myself=$as_dir$0 && break done IFS=$as_save_IFS ;; 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 printf "%s\n" "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi printf "%s\n" "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null then : eval 'as_fn_append () { eval $1+=\$2 }' else case e in #( e) as_fn_append () { eval $1=\$$1\$2 } ;; esac fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null then : eval 'as_fn_arith () { as_val=$(( $* )) }' else case e in #( e) as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } ;; esac fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; 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 if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # 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 # Determine whether it's possible to make 'echo' print without a newline. # These variables are no longer used directly by Autoconf, but are AC_SUBSTed # for compatibility with existing Makefiles. ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac # For backward compatibility with old third-party macros, we provide # the shell variables $as_echo and $as_echo_n. New code should use # AS_ECHO(["message"]) and AS_ECHO_N(["message"]), respectively. as_echo='printf %s\n' as_echo_n='printf %s' rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both 'ln -s file dir' and 'ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; 'ln -s' creates a wrapper executable. # In both cases, we have to default to 'cp -pR'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -pR' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -pR' fi else as_ln_s='cp -pR' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`printf "%s\n" "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi # as_fn_executable_p FILE # ----------------------- # Test if FILE is an executable regular file. as_fn_executable_p () { test -f "$1" && test -x "$1" } # as_fn_executable_p as_test_x='test -x' as_executable_p=as_fn_executable_p # Sed expression to map a string onto a valid CPP name. as_sed_cpp="y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g" as_tr_cpp="eval sed '$as_sed_cpp'" # deprecated # Sed expression to map a string onto a valid variable name. as_sed_sh="y%*+%pp%;s%[^_$as_cr_alnum]%_%g" as_tr_sh="eval sed '$as_sed_sh'" # deprecated exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by Fast Traces Toolkit $as_me 0.3.15, which was generated by GNU Autoconf 2.72. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ '$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent 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 ac_cs_config=`printf "%s\n" "$ac_configure_args" | sed "$ac_safe_unquote"` ac_cs_config_escaped=`printf "%s\n" "$ac_cs_config" | sed "s/^ //; s/'/'\\\\\\\\''/g"` cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config='$ac_cs_config_escaped' ac_cs_version="\\ Fast Traces Toolkit config.status 0.3.15 configured by $0, generated by GNU Autoconf 2.72, with options \\"\$ac_cs_config\\" Copyright (C) 2023 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. 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=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) printf "%s\n" "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) printf "%s\n" "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`printf "%s\n" "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: '$1' Try '$0 --help' for more information.";; --help | --hel | -h ) printf "%s\n" "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: '$1' Try '$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; 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 || ac_write_fail=1 if \$ac_cs_recheck; then set X $SHELL '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \printf "%s\n" "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX printf "%s\n" "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" MAKE="${MAKE-make}" # 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 sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "$macro_version" | $SED "$delay_single_quote_subst"`' macro_revision='`$ECHO "$macro_revision" | $SED "$delay_single_quote_subst"`' enable_static='`$ECHO "$enable_static" | $SED "$delay_single_quote_subst"`' enable_shared='`$ECHO "$enable_shared" | $SED "$delay_single_quote_subst"`' pic_mode='`$ECHO "$pic_mode" | $SED "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "$enable_fast_install" | $SED "$delay_single_quote_subst"`' shared_archive_member_spec='`$ECHO "$shared_archive_member_spec" | $SED "$delay_single_quote_subst"`' SHELL='`$ECHO "$SHELL" | $SED "$delay_single_quote_subst"`' ECHO='`$ECHO "$ECHO" | $SED "$delay_single_quote_subst"`' PATH_SEPARATOR='`$ECHO "$PATH_SEPARATOR" | $SED "$delay_single_quote_subst"`' host_alias='`$ECHO "$host_alias" | $SED "$delay_single_quote_subst"`' host='`$ECHO "$host" | $SED "$delay_single_quote_subst"`' host_os='`$ECHO "$host_os" | $SED "$delay_single_quote_subst"`' build_alias='`$ECHO "$build_alias" | $SED "$delay_single_quote_subst"`' build='`$ECHO "$build" | $SED "$delay_single_quote_subst"`' build_os='`$ECHO "$build_os" | $SED "$delay_single_quote_subst"`' SED='`$ECHO "$SED" | $SED "$delay_single_quote_subst"`' Xsed='`$ECHO "$Xsed" | $SED "$delay_single_quote_subst"`' GREP='`$ECHO "$GREP" | $SED "$delay_single_quote_subst"`' EGREP='`$ECHO "$EGREP" | $SED "$delay_single_quote_subst"`' FGREP='`$ECHO "$FGREP" | $SED "$delay_single_quote_subst"`' LD='`$ECHO "$LD" | $SED "$delay_single_quote_subst"`' NM='`$ECHO "$NM" | $SED "$delay_single_quote_subst"`' LN_S='`$ECHO "$LN_S" | $SED "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "$max_cmd_len" | $SED "$delay_single_quote_subst"`' ac_objext='`$ECHO "$ac_objext" | $SED "$delay_single_quote_subst"`' exeext='`$ECHO "$exeext" | $SED "$delay_single_quote_subst"`' lt_unset='`$ECHO "$lt_unset" | $SED "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "$lt_SP2NL" | $SED "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "$lt_NL2SP" | $SED "$delay_single_quote_subst"`' lt_cv_to_host_file_cmd='`$ECHO "$lt_cv_to_host_file_cmd" | $SED "$delay_single_quote_subst"`' lt_cv_to_tool_file_cmd='`$ECHO "$lt_cv_to_tool_file_cmd" | $SED "$delay_single_quote_subst"`' reload_flag='`$ECHO "$reload_flag" | $SED "$delay_single_quote_subst"`' reload_cmds='`$ECHO "$reload_cmds" | $SED "$delay_single_quote_subst"`' FILECMD='`$ECHO "$FILECMD" | $SED "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "$OBJDUMP" | $SED "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "$deplibs_check_method" | $SED "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "$file_magic_cmd" | $SED "$delay_single_quote_subst"`' file_magic_glob='`$ECHO "$file_magic_glob" | $SED "$delay_single_quote_subst"`' want_nocaseglob='`$ECHO "$want_nocaseglob" | $SED "$delay_single_quote_subst"`' DLLTOOL='`$ECHO "$DLLTOOL" | $SED "$delay_single_quote_subst"`' sharedlib_from_linklib_cmd='`$ECHO "$sharedlib_from_linklib_cmd" | $SED "$delay_single_quote_subst"`' AR='`$ECHO "$AR" | $SED "$delay_single_quote_subst"`' lt_ar_flags='`$ECHO "$lt_ar_flags" | $SED "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "$AR_FLAGS" | $SED "$delay_single_quote_subst"`' archiver_list_spec='`$ECHO "$archiver_list_spec" | $SED "$delay_single_quote_subst"`' STRIP='`$ECHO "$STRIP" | $SED "$delay_single_quote_subst"`' RANLIB='`$ECHO "$RANLIB" | $SED "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "$old_postinstall_cmds" | $SED "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "$old_postuninstall_cmds" | $SED "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "$old_archive_cmds" | $SED "$delay_single_quote_subst"`' lock_old_archive_extraction='`$ECHO "$lock_old_archive_extraction" | $SED "$delay_single_quote_subst"`' CC='`$ECHO "$CC" | $SED "$delay_single_quote_subst"`' CFLAGS='`$ECHO "$CFLAGS" | $SED "$delay_single_quote_subst"`' compiler='`$ECHO "$compiler" | $SED "$delay_single_quote_subst"`' GCC='`$ECHO "$GCC" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "$lt_cv_sys_global_symbol_pipe" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "$lt_cv_sys_global_symbol_to_cdecl" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_import='`$ECHO "$lt_cv_sys_global_symbol_to_import" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address" | $SED "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $SED "$delay_single_quote_subst"`' lt_cv_nm_interface='`$ECHO "$lt_cv_nm_interface" | $SED "$delay_single_quote_subst"`' nm_file_list_spec='`$ECHO "$nm_file_list_spec" | $SED "$delay_single_quote_subst"`' lt_sysroot='`$ECHO "$lt_sysroot" | $SED "$delay_single_quote_subst"`' lt_cv_truncate_bin='`$ECHO "$lt_cv_truncate_bin" | $SED "$delay_single_quote_subst"`' objdir='`$ECHO "$objdir" | $SED "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "$MAGIC_CMD" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "$lt_prog_compiler_no_builtin_flag" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "$lt_prog_compiler_pic" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "$lt_prog_compiler_wl" | $SED "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "$lt_prog_compiler_static" | $SED "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "$lt_cv_prog_compiler_c_o" | $SED "$delay_single_quote_subst"`' need_locks='`$ECHO "$need_locks" | $SED "$delay_single_quote_subst"`' MANIFEST_TOOL='`$ECHO "$MANIFEST_TOOL" | $SED "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "$DSYMUTIL" | $SED "$delay_single_quote_subst"`' NMEDIT='`$ECHO "$NMEDIT" | $SED "$delay_single_quote_subst"`' LIPO='`$ECHO "$LIPO" | $SED "$delay_single_quote_subst"`' OTOOL='`$ECHO "$OTOOL" | $SED "$delay_single_quote_subst"`' OTOOL64='`$ECHO "$OTOOL64" | $SED "$delay_single_quote_subst"`' libext='`$ECHO "$libext" | $SED "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "$shrext_cmds" | $SED "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "$extract_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "$archive_cmds_need_lc" | $SED "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "$enable_shared_with_static_runtimes" | $SED "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "$export_dynamic_flag_spec" | $SED "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "$whole_archive_flag_spec" | $SED "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "$compiler_needs_object" | $SED "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "$old_archive_from_new_cmds" | $SED "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "$old_archive_from_expsyms_cmds" | $SED "$delay_single_quote_subst"`' archive_cmds='`$ECHO "$archive_cmds" | $SED "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "$archive_expsym_cmds" | $SED "$delay_single_quote_subst"`' module_cmds='`$ECHO "$module_cmds" | $SED "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "$module_expsym_cmds" | $SED "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "$with_gnu_ld" | $SED "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "$allow_undefined_flag" | $SED "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "$no_undefined_flag" | $SED "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "$hardcode_libdir_flag_spec" | $SED "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "$hardcode_libdir_separator" | $SED "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "$hardcode_direct" | $SED "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "$hardcode_direct_absolute" | $SED "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "$hardcode_minus_L" | $SED "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "$hardcode_shlibpath_var" | $SED "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "$hardcode_automatic" | $SED "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "$inherit_rpath" | $SED "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "$link_all_deplibs" | $SED "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "$always_export_symbols" | $SED "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "$export_symbols_cmds" | $SED "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "$exclude_expsyms" | $SED "$delay_single_quote_subst"`' include_expsyms='`$ECHO "$include_expsyms" | $SED "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "$prelink_cmds" | $SED "$delay_single_quote_subst"`' postlink_cmds='`$ECHO "$postlink_cmds" | $SED "$delay_single_quote_subst"`' file_list_spec='`$ECHO "$file_list_spec" | $SED "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "$variables_saved_for_relink" | $SED "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "$need_lib_prefix" | $SED "$delay_single_quote_subst"`' need_version='`$ECHO "$need_version" | $SED "$delay_single_quote_subst"`' version_type='`$ECHO "$version_type" | $SED "$delay_single_quote_subst"`' runpath_var='`$ECHO "$runpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "$shlibpath_var" | $SED "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "$shlibpath_overrides_runpath" | $SED "$delay_single_quote_subst"`' libname_spec='`$ECHO "$libname_spec" | $SED "$delay_single_quote_subst"`' library_names_spec='`$ECHO "$library_names_spec" | $SED "$delay_single_quote_subst"`' soname_spec='`$ECHO "$soname_spec" | $SED "$delay_single_quote_subst"`' install_override_mode='`$ECHO "$install_override_mode" | $SED "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "$postinstall_cmds" | $SED "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "$postuninstall_cmds" | $SED "$delay_single_quote_subst"`' finish_cmds='`$ECHO "$finish_cmds" | $SED "$delay_single_quote_subst"`' finish_eval='`$ECHO "$finish_eval" | $SED "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "$hardcode_into_libs" | $SED "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "$sys_lib_search_path_spec" | $SED "$delay_single_quote_subst"`' configure_time_dlsearch_path='`$ECHO "$configure_time_dlsearch_path" | $SED "$delay_single_quote_subst"`' configure_time_lt_sys_library_path='`$ECHO "$configure_time_lt_sys_library_path" | $SED "$delay_single_quote_subst"`' hardcode_action='`$ECHO "$hardcode_action" | $SED "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "$enable_dlopen" | $SED "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "$enable_dlopen_self" | $SED "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "$enable_dlopen_self_static" | $SED "$delay_single_quote_subst"`' old_striplib='`$ECHO "$old_striplib" | $SED "$delay_single_quote_subst"`' striplib='`$ECHO "$striplib" | $SED "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } # Quote evaled strings. for var in SHELL \ ECHO \ PATH_SEPARATOR \ SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ FILECMD \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ file_magic_glob \ want_nocaseglob \ DLLTOOL \ sharedlib_from_linklib_cmd \ AR \ archiver_list_spec \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_import \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ lt_cv_nm_interface \ nm_file_list_spec \ lt_cv_truncate_bin \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_pic \ lt_prog_compiler_wl \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ MANIFEST_TOOL \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_separator \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ install_override_mode \ finish_eval \ old_striplib \ striplib; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postlink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ configure_time_dlsearch_path \ configure_time_lt_sys_library_path; do case \`eval \\\\\$ECHO \\\\""\\\\\$\$var"\\\\"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"\\\$\$var\\" | \\\$SED -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ## exclude from sc_prohibit_nested_quotes ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done ac_aux_dir='$ac_aux_dir' # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' RM='$RM' ofile='$ofile' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "tools/template2h.pl") CONFIG_FILES="$CONFIG_FILES tools/template2h.pl" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "tools/Makefile") CONFIG_FILES="$CONFIG_FILES tools/Makefile" ;; "doc/Makefile") CONFIG_FILES="$CONFIG_FILES doc/Makefile" ;; "fxt.pc") CONFIG_FILES="$CONFIG_FILES fxt.pc" ;; *) as_fn_error $? "invalid argument: '$ac_config_target'" "$LINENO" 5;; 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+y} || CONFIG_FILES=$config_files test ${CONFIG_HEADERS+y} || CONFIG_HEADERS=$config_headers test ${CONFIG_COMMANDS+y} || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to '$tmp'. $debug || { tmp= ac_tmp= trap 'exit_status=$? : "${ac_tmp:=$tmp}" { test ! -d "$ac_tmp" || rm -fr "$ac_tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 ac_tmp=$tmp # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with './config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$ac_tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$ac_tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$ac_tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$ac_tmp/subs1.awk" > "$ac_tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries 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[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with './config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$ac_tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script 'defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_tt=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_tt"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #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. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag '$ac_tag'" "$LINENO" 5;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$ac_tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain ':'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: '$ac_f'" "$LINENO" 5;; esac case $ac_f in *\'*) ac_f=`printf "%s\n" "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # 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. */ configure_input='Generated from '` printf "%s\n" "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { printf "%s\n" "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 printf "%s\n" "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`printf "%s\n" "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$ac_tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`printf "%s\n" "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`printf "%s\n" "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 printf "%s\n" "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when '$srcdir' = '.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;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&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$ac_tmp/subs.awk" \ >$ac_tmp/out || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$ac_tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' \ "$ac_tmp/out"`; test -z "$ac_out"; } && { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable 'datarootdir' which seems to be undefined. Please make sure it is defined" >&5 printf "%s\n" "$as_me: WARNING: $ac_file contains a reference to the variable 'datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$ac_tmp/stdin" case $ac_file in -) cat "$ac_tmp/out" && rm -f "$ac_tmp/out";; *) rm -f "$ac_file" && mv "$ac_tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" } >"$ac_tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$ac_tmp/config.h" >/dev/null 2>&1; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 printf "%s\n" "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$ac_tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else printf "%s\n" "/* $configure_input */" >&1 \ && eval '$AWK -f "$ac_tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { printf "%s\n" "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 printf "%s\n" "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Older Autoconf quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. # TODO: see whether this extra hack can be removed once we start # requiring Autoconf 2.70 or later. case $CONFIG_FILES in #( *\'*) : eval set x "$CONFIG_FILES" ;; #( *) : set x $CONFIG_FILES ;; #( *) : ;; esac shift # Used to flag and report bootstrapping failures. am_rc=0 for am_mf do # Strip MF so we end up with the name of the file. am_mf=`printf "%s\n" "$am_mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile which includes # dependency-tracking related rules and includes. # Grep'ing the whole file directly is not great: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. sed -n 's,^am--depfiles:.*,X,p' "$am_mf" | grep X >/dev/null 2>&1 \ || continue am_dirpart=`$as_dirname -- "$am_mf" || $as_expr X"$am_mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$am_mf" : 'X\(//\)[^/]' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X"$am_mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` am_filepart=`$as_basename -- "$am_mf" || $as_expr X/"$am_mf" : '.*/\([^/][^/]*\)/*$' \| \ X"$am_mf" : 'X\(//\)$' \| \ X"$am_mf" : 'X\(/\)' \| . 2>/dev/null || printf "%s\n" X/"$am_mf" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` { echo "$as_me:$LINENO: cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles" >&5 (cd "$am_dirpart" \ && sed -e '/# am--include-marker/d' "$am_filepart" \ | $MAKE -f - am--depfiles) >&5 2>&5 ac_status=$? echo "$as_me:$LINENO: \$? = $ac_status" >&5 (exit $ac_status); } || am_rc=$? done if test $am_rc -ne 0; then { { printf "%s\n" "$as_me:${as_lineno-$LINENO}: error: in '$ac_pwd':" >&5 printf "%s\n" "$as_me: error: in '$ac_pwd':" >&2;} as_fn_error $? "Something went wrong bootstrapping makefile fragments for automatic dependency tracking. If GNU make was not used, consider re-running the configure script with MAKE=\"gmake\" (or whatever is necessary). You can also try re-running configure with the '--disable-dependency-tracking' option to at least be able to build the package (albeit without support for automatic dependency tracking). See 'config.log' for more details" "$LINENO" 5; } fi { am_dirpart=; unset am_dirpart;} { am_filepart=; unset am_filepart;} { am_mf=; unset am_mf;} { am_rc=; unset am_rc;} rm -f conftest-deps.mk } ;; "libtool":C) # See if we are running on zsh, and set the options that allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}"; then setopt NO_GLOB_SUBST fi cfgfile=${ofile}T trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # Generated automatically by $as_me ($PACKAGE) $VERSION # NOTE: Changes made to this file will be lost: look at ltmain.sh. # Provide generalized library-building support services. # Written by Gordon Matzigkeit, 1996 # Copyright (C) 2024 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. # GNU Libtool 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. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program or library that is built # using GNU Libtool, you may include this file under the same # distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . # The names of the tagged configurations supported by this script. available_tags='' # Configured defaults for sys_lib_dlsearch_path munging. : \${LT_SYS_LIBRARY_PATH="$configure_time_lt_sys_library_path"} # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build static libraries. build_old_libs=$enable_static # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # Shared archive member basename,for filename based shared library versioning on AIX. shared_archive_member_spec=$shared_archive_member_spec # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that protects backslashes. ECHO=$lt_ECHO # The PATH separator for the build system. PATH_SEPARATOR=$lt_PATH_SEPARATOR # 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 # 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//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # convert \$build file names to \$host format. to_host_file_cmd=$lt_cv_to_host_file_cmd # convert \$build files to toolchain format. to_tool_file_cmd=$lt_cv_to_tool_file_cmd # A file(cmd) program that detects file types. FILECMD=$lt_FILECMD # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # 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 # How to find potential files when deplibs_check_method = "file_magic". file_magic_glob=$lt_file_magic_glob # Find potential files using nocaseglob when deplibs_check_method = "file_magic". want_nocaseglob=$lt_want_nocaseglob # DLL creation program. DLLTOOL=$lt_DLLTOOL # Command to associate shared and link libraries. sharedlib_from_linklib_cmd=$lt_sharedlib_from_linklib_cmd # The archiver. AR=$lt_AR # Flags to create an archive (by configure). lt_ar_flags=$lt_ar_flags # Flags to create an archive. AR_FLAGS=\${ARFLAGS-"\$lt_ar_flags"} # How to feed a file listing to the archiver. archiver_list_spec=$lt_archiver_list_spec # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # Whether to use a lock for old archive extraction. lock_old_archive_extraction=$lock_old_archive_extraction # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # 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 into a list of symbols to manually relocate. global_symbol_to_import=$lt_lt_cv_sys_global_symbol_to_import # 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 # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # The name lister interface. nm_interface=$lt_lt_cv_nm_interface # Specify filename containing input files for \$NM. nm_file_list_spec=$lt_nm_file_list_spec # The root where to search for dependent libraries,and where our libraries should be installed. lt_sysroot=$lt_sysroot # Command to truncate a binary pipe. lt_truncate_bin=$lt_lt_cv_truncate_bin # The name of the directory that contains temporary libtool files. objdir=$objdir # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Manifest tool. MANIFEST_TOOL=$lt_MANIFEST_TOOL # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # 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 # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # 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 # Permission mode override for installation of shared libraries. install_override_mode=$lt_install_override_mode # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Detected run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_configure_time_dlsearch_path # Explicit LT_SYS_LIBRARY_PATH set during ./configure time. configure_time_lt_sys_library_path=$lt_configure_time_lt_sys_library_path # 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 # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # 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 # 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 # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # 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 a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # 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 # 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 DIR/libNAME\$shared_ext during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e. impossible to change by setting \$shlibpath_var if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # 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 # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # 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 # 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 # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Commands necessary for finishing linking programs. postlink_cmds=$lt_postlink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # ### END LIBTOOL CONFIG _LT_EOF cat <<'_LT_EOF' >> "$cfgfile" # ### BEGIN FUNCTIONS SHARED WITH CONFIGURE # func_munge_path_list VARIABLE PATH # ----------------------------------- # VARIABLE is name of variable containing _space_ separated list of # directories to be munged by the contents of PATH, which is string # having a format: # "DIR[:DIR]:" # string "DIR[ DIR]" will be prepended to VARIABLE # ":DIR[:DIR]" # string "DIR[ DIR]" will be appended to VARIABLE # "DIRP[:DIRP]::[DIRA:]DIRA" # string "DIRP[ DIRP]" will be prepended to VARIABLE and string # "DIRA[ DIRA]" will be appended to VARIABLE # "DIR[:DIR]" # VARIABLE will be replaced by "DIR[ DIR]" func_munge_path_list () { case x$2 in x) ;; *:) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'` \$$1\" ;; x:*) eval $1=\"\$$1 `$ECHO $2 | $SED 's/:/ /g'`\" ;; *::*) eval $1=\"\$$1\ `$ECHO $2 | $SED -e 's/.*:://' -e 's/:/ /g'`\" eval $1=\"`$ECHO $2 | $SED -e 's/::.*//' -e 's/:/ /g'`\ \$$1\" ;; *) eval $1=\"`$ECHO $2 | $SED 's/:/ /g'`\" ;; esac } # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. func_cc_basename () { for cc_temp in $*""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done func_cc_basename_result=`$ECHO "$cc_temp" | $SED "s%.*/%%; s%^$host_alias-%%"` } # ### END FUNCTIONS SHARED WITH CONFIGURE _LT_EOF case $host_os in aix3*) cat <<\_LT_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 set != "${COLLECT_NAMES+set}"; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain=$ac_aux_dir/ltmain.sh # 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" ;; "tools/template2h.pl":F) chmod +x tools/template2h.pl ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # 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 || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { printf "%s\n" "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 printf "%s\n" "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi fxt-0.3.15/PaxHeaders/configure.ac0000644000000000000000000000013215007141537013750 xustar0030 mtime=1746715487.687497698 30 atime=1746716493.932049574 30 ctime=1746716504.646816743 fxt-0.3.15/configure.ac0000644000175000017500000001046315007141537013442 0ustar00samysamy# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.60) AC_INIT(Fast Traces Toolkit, 0.3.15, samuel.thibault@labri.fr,fxt) AC_CONFIG_SRCDIR([tools/fxt.c]) AC_CONFIG_AUX_DIR([build-aux]) AC_CONFIG_HEADER([config.h]) AC_CONFIG_MACRO_DIR([m4]) AM_INIT_AUTOMAKE([-Wall -Werror foreign 1.9 tar-pax color-tests parallel-tests]) AMX_SILENT_RULES([AM_DEFAULT_VERBOSITY=1]) AC_USE_SYSTEM_EXTENSIONS AM_PROG_AR LT_INIT([disable-static]) # Checks for programs. AC_PROG_CC AC_PROG_LN_S AC_CHECK_PROGS([AWK], [awk]) AC_CHECK_PROGS([LATEX], [latex], [latex]) AC_CHECK_PROGS([EPSTOPDF], [epstopdf], [epstopdf]) AC_CHECK_PROGS([HELP2MAN], [help2man], [no]) AM_CONDITIONAL([HAVE_HELP2MAN], [test "x$HELP2MAN" != "xno"]) LT_PREREQ([2]) LT_INIT([win32-dll]) AC_PATH_PROG(PERL, perl, no) AC_PATH_PROGS([FXT_MS_LIB], [lib]) AC_ARG_VAR([FXT_MS_LIB], [Path to Microsoft's Visual Studio `lib' tool]) AM_CONDITIONAL([FXT_HAVE_MS_LIB], [test "x$FXT_MS_LIB" != "x"]) AC_CHECK_SIZEOF([void *]) SIZEOF_VOID_P=$ac_cv_sizeof_void_p case $SIZEOF_VOID_P in 4) FXT_MS_LIB_ARCH=X86 ;; 8) FXT_MS_LIB_ARCH=X64 ;; esac AC_SUBST(FXT_MS_LIB_ARCH) echo a | $AWK '{ print gensub(/a/, "AA", "g"); }' 2>/dev/null if test x$? != x0 ; then AC_MSG_ERROR(Your awk program does not define gensub. Use gawk or another awk with gensub) fi AC_PATH_XTRA # Checks for libraries. libs_save="${LIBS}" LIBS= AC_CHECK_HEADER([bfd.h], [AC_CHECK_LIB([bfd], bfd_release, , [ # add some libs that bfd is "known" to depend on when statically linking AC_HAVE_LIBRARY(iberty) AC_HAVE_LIBRARY(z) AC_CHECK_LIB([bfd], bfd_release, , echo "FxT needs the binutils-dev package for function names") ]) ]) FXT_LIBS="${LIBS}" LIBS="${libs_save}" AC_SUBST(FXT_LIBS) ldflags_save="${LDFLAGS}" LDFLAGS="${LDFLAGS} ${X_LIBS}" AC_CHECK_HEADERS([X11/Xlib.h X11/Xutil.h], [dnl AC_CHECK_LIB(X11,XDrawLine, X11=yes, echo "fxt_select needs the xlibs-dev package" ; X11=no) ]) LDFLAGS="${ldflags_save}" # Checks for header files. AC_HEADER_DIRENT AC_HEADER_STDC AC_HEADER_SYS_WAIT AC_CHECK_HEADERS([fcntl.h limits.h stdint.h stdlib.h string.h sys/ioctl.h sys/mount.h sys/vfs.h unistd.h]) # Checks for typedefs, structures, and compiler characteristics. AC_C_CONST AC_C_INLINE AC_TYPE_OFF_T AC_TYPE_PID_T AC_TYPE_SIZE_T AC_STRUCT_TM AC_C_VOLATILE # Checks for library functions. AC_FUNC_FORK AC_PROG_GCC_TRADITIONAL AC_FUNC_MMAP AC_TYPE_SIGNAL AC_FUNC_STAT AC_FUNC_STRFTIME AC_CHECK_FUNCS([dup2 getpagesize localtime_r memmove memset strchr strdup strerror strspn strstr strtol strtoul uname]) case "${host_os}" in linux*) FKT=yes ;; mingw*) AC_HAVE_LIBRARY(pthread) fxt_windows=yes ;; cygwin*) fxt_windows=yes ;; esac AM_CONDITIONAL([FXT_HAVE_WINDOWS], [test "x$fxt_windows" = "xyes"]) AC_C_BIGENDIAN(AC_DEFINE([IS_BIG_ENDIAN],[1],[Define this if architecture is big endian]), , [echo "Warning: unknown endian order, don't exchange traces with other endiannesses"]) AM_CONDITIONAL(FKT, [test "x$FKT" = xyes]) AM_CONDITIONAL(X11, [test "x$X11" = xyes]) AM_CONDITIONAL(LATEX, [test "x$ac_cv_prog_LATEX" != x]) AM_CONDITIONAL(EPSTOPDF, [test "x$ac_cv_prog_EPSTOPDF" != x]) AC_ARG_ENABLE([gettid], AC_HELP_STRING([--enable-gettid], [Use syscall(SYS_gettid) to get the thread ID instead of pthread_self(). This however costs a system call for each trace entry])) if test "x$enable_gettid" = xyes; then AC_DEFINE([USE_GETTID], [1], [Use gettid]) fi AC_SUBST([AM_LFS_CFLAGS], [$(getconf LFS_CFLAGS)]) AC_SUBST([AM_LFS_LDFLAGS], [$(getconf LFS_LDFLAGS)]) # On many multicore CPUs, clock cycles are not synchronized, we'd better use # clock_gettime() instead of TSC. AC_CHECK_LIB([rt], [clock_gettime], [LIBS="$LIBS -lrt"] ) AC_MSG_CHECKING([for clock_gettime(CLOCK_MONOTONIC)]) AC_COMPILE_IFELSE( [AC_LANG_PROGRAM([[ #include struct timespec tp; ]], [[ clock_gettime(CLOCK_MONOTONIC, &tp); ]])], AC_DEFINE(HAVE_CLOCK_GETTIME, [1], [Use clock_gettime]) AC_MSG_RESULT([yes]), AC_MSG_RESULT([no]) ) AC_CONFIG_FILES([ tools/template2h.pl ], [chmod +x tools/template2h.pl]) # WARNING: Makefiles on different lines to be grepped by bootstrap AC_OUTPUT([ Makefile tools/Makefile doc/Makefile fxt.pc ]) fxt-0.3.15/PaxHeaders/Makefile.am0000644000000000000000000000013213512105462013512 xustar0030 mtime=1562938162.966740157 30 atime=1746715490.247509303 30 ctime=1746716504.638318474 fxt-0.3.15/Makefile.am0000644000175000017500000000031413512105462013176 0ustar00samysamy ACLOCAL_AMFLAGS = -I m4 SUBDIRS = tools doc pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = fxt.pc EXTRA_DIST = kernel INSTALL.FKT bootstrap dist-hook: rm -rf `find $(distdir)/kernel -name CVS` fxt-0.3.15/PaxHeaders/ltmain.sh0000644000000000000000000000013213314420542013275 xustar0030 mtime=1530012002.383829124 30 atime=1746715490.247509303 30 ctime=1746716504.669181905 fxt-0.3.15/ltmain.sh0000644000175000017500000120470313314420542012772 0ustar00samysamy#! /bin/sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2014-01-03.01 # libtool (GNU libtool) 2.4.6 # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996-2015 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. # GNU Libtool 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. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . PROGRAM=libtool PACKAGE=libtool VERSION="2.4.6 Debian-2.4.6-2.1" package_revision=2.4.6 ## ------ ## ## Usage. ## ## ------ ## # Run './libtool --help' for help with using this script from the # command line. ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # After configure completes, it has a better idea of some of the # shell tools we need than the defaults used by the functions shared # with bootstrap, so set those here where they can still be over- # ridden by the user, but otherwise take precedence. : ${AUTOCONF="autoconf"} : ${AUTOMAKE="automake"} ## -------------------------- ## ## Source external libraries. ## ## -------------------------- ## # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. # Set a version string for this script. scriptversion=2015-10-12.13; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 # Copyright (C) 2004-2015 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. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 3 of the License, or # (at your option) any later version. # As a special exception to the GNU General Public License, if you distribute # this file as part of a program or library that is built using GNU Libtool, # you may include this file under the same distribution terms that you use # for the rest of that program. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNES FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # Evaluate this file near the top of your script to gain access to # the functions and variables defined here: # # . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh # # If you need to override any of the default environment variable # settings, do that before evaluating this file. ## -------------------- ## ## Shell normalisation. ## ## -------------------- ## # Some shells need a little help to be as Bourne compatible as possible. # Before doing anything else, make sure all that help has been provided! DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # NLS nuisances: We save the old values in case they are required later. _G_user_locale= _G_safe_locale= for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test set = \"\${$_G_var+set}\"; then save_$_G_var=\$$_G_var $_G_var=C export $_G_var _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # Make sure IFS has a sensible default sp=' ' nl=' ' IFS="$sp $nl" # There are apparently some retarded systems that use ';' as a PATH separator! if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi ## ------------------------- ## ## Locate command utilities. ## ## ------------------------- ## # func_executable_p FILE # ---------------------- # Check that FILE is an executable regular file. func_executable_p () { test -f "$1" && test -x "$1" } # func_path_progs PROGS_LIST CHECK_FUNC [PATH] # -------------------------------------------- # Search for either a program that responds to --version with output # containing "GNU", or else returned by CHECK_FUNC otherwise, by # trying all the directories in PATH with each of the elements of # PROGS_LIST. # # CHECK_FUNC should accept the path to a candidate program, and # set $func_check_prog_result if it truncates its output less than # $_G_path_prog_max characters. func_path_progs () { _G_progs_list=$1 _G_check_func=$2 _G_PATH=${3-"$PATH"} _G_path_prog_max=0 _G_path_prog_found=false _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} for _G_dir in $_G_PATH; do IFS=$_G_save_IFS test -z "$_G_dir" && _G_dir=. for _G_prog_name in $_G_progs_list; do for _exeext in '' .EXE; do _G_path_prog=$_G_dir/$_G_prog_name$_exeext func_executable_p "$_G_path_prog" || continue case `"$_G_path_prog" --version 2>&1` in *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; *) $_G_check_func $_G_path_prog func_path_progs_result=$func_check_prog_result ;; esac $_G_path_prog_found && break 3 done done done IFS=$_G_save_IFS test -z "$func_path_progs_result" && { echo "no acceptable sed could be found in \$PATH" >&2 exit 1 } } # We want to be able to use the functions in this file before configure # has figured out where the best binaries are kept, which means we have # to search for them ourselves - except when the results are already set # where we skip the searches. # Unless the user overrides by setting SED, search the path for either GNU # sed, or the sed that truncates its output the least. test -z "$SED" && { _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for _G_i in 1 2 3 4 5 6 7; do _G_sed_script=$_G_sed_script$nl$_G_sed_script done echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed _G_sed_script= func_check_prog_sed () { _G_path_prog=$1 _G_count=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo '' >> conftest.nl "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "sed gsed" func_check_prog_sed $PATH:/usr/xpg4/bin rm -f conftest.sed SED=$func_path_progs_result } # Unless the user overrides by setting GREP, search the path for either GNU # grep, or the grep that truncates its output the least. test -z "$GREP" && { func_check_prog_grep () { _G_path_prog=$1 _G_count=0 _G_path_prog_max=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo 'GREP' >> conftest.nl "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "grep ggrep" func_check_prog_grep $PATH:/usr/xpg4/bin GREP=$func_path_progs_result } ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # All uppercase variable names are used for environment variables. These # variables can be overridden by the user before calling a script that # uses them if a suitable command of that name is not already available # in the command search PATH. : ${CP="cp -f"} : ${ECHO="printf %s\n"} : ${EGREP="$GREP -E"} : ${FGREP="$GREP -F"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} ## -------------------- ## ## Useful sed snippets. ## ## -------------------- ## sed_dirname='s|/[^/]*$||' sed_basename='s|^.*/||' # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s|\([`"$\\]\)|\\\1|g' # Same as above, but do not quote variable references. sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' # Sed substitution that converts a w32 file name or path # that contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-'\' parameter expansions in output of sed_double_quote_subst that # were '\'-ed in input to the same. If an odd number of '\' preceded a # '$' in input to sed_double_quote_subst, that '$' was protected from # expansion. Since each input '\' is now two '\'s, look for any number # of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. _G_bs='\\' _G_bs2='\\\\' _G_bs4='\\\\\\\\' _G_dollar='\$' sed_double_backslash="\ s/$_G_bs4/&\\ /g s/^$_G_bs2$_G_dollar/$_G_bs&/ s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" ## ----------------- ## ## Global variables. ## ## ----------------- ## # Except for the global variables explicitly listed below, the following # functions in the '^func_' namespace, and the '^require_' namespace # variables initialised in the 'Resource management' section, sourcing # this file will not pollute your global namespace with anything # else. There's no portable way to scope variables in Bourne shell # though, so actually running these functions will sometimes place # results into a variable named after the function, and often use # temporary variables in the '^_G_' namespace. If you are careful to # avoid using those namespaces casually in your sourcing script, things # should continue to work as you expect. And, of course, you can freely # overwrite any of the functions or variables defined here before # calling anything to customize them. EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. # Allow overriding, eg assuming that you follow the convention of # putting '$debug_cmd' at the start of all your functions, you can get # bash to show function call trace with: # # debug_cmd='eval echo "${FUNCNAME[0]} $*" >&2' bash your-script-name debug_cmd=${debug_cmd-":"} exit_cmd=: # By convention, finish your script with: # # exit $exit_status # # so that you can set exit_status to non-zero if you want to indicate # something went wrong during execution without actually bailing out at # the point of failure. exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath=$0 # The name of this program. progname=`$ECHO "$progpath" |$SED "$sed_basename"` # Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` progpath=$progdir/$progname ;; *) _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS=$_G_IFS test -x "$progdir/$progname" && break done IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` progpath=$progdir/$progname ;; esac ## ----------------- ## ## Standard options. ## ## ----------------- ## # The following options affect the operation of the functions defined # below, and should be set appropriately depending on run-time para- # meters passed on the command line. opt_dry_run=false opt_quiet=false opt_verbose=false # Categories 'all' and 'none' are always available. Append any others # you will pass as the first argument to func_warning from your own # code. warning_categories= # By default, display warnings according to 'opt_warning_types'. Set # 'warning_func' to ':' to elide all warnings, or func_fatal_error to # treat the next displayed warning as a fatal error. warning_func=func_warn_and_continue # Set to 'all' to display all warnings, 'none' to suppress all # warnings, or a space delimited list of some subset of # 'warning_categories' to display only the listed warnings. opt_warning_types=all ## -------------------- ## ## Resource management. ## ## -------------------- ## # This section contains definitions for functions that each ensure a # particular resource (a file, or a non-empty configuration variable for # example) is available, and if appropriate to extract default values # from pertinent package files. Call them using their associated # 'require_*' variable to ensure that they are executed, at most, once. # # It's entirely deliberate that calling these functions can set # variables that don't obey the namespace limitations obeyed by the rest # of this file, in order that that they be as useful as possible to # callers. # require_term_colors # ------------------- # Allow display of bold text on terminals that support it. require_term_colors=func_require_term_colors func_require_term_colors () { $debug_cmd test -t 1 && { # COLORTERM and USE_ANSI_COLORS environment variables take # precedence, because most terminfo databases neglect to describe # whether color sequences are supported. test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} if test 1 = "$USE_ANSI_COLORS"; then # Standard ANSI escape sequences tc_reset='' tc_bold=''; tc_standout='' tc_red=''; tc_green='' tc_blue=''; tc_cyan='' else # Otherwise trust the terminfo database after all. test -n "`tput sgr0 2>/dev/null`" && { tc_reset=`tput sgr0` test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` tc_standout=$tc_bold test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` } fi } require_term_colors=: } ## ----------------- ## ## Function library. ## ## ----------------- ## # This section contains a variety of useful functions to call in your # scripts. Take note of the portable wrappers for features provided by # some modern shells, which will fall back to slower equivalents on # less featureful shells. # func_append VAR VALUE # --------------------- # Append VALUE onto the existing contents of VAR. # We should try to minimise forks, especially on Windows where they are # unreasonably slow, so skip the feature probes when bash or zsh are # being used: if test set = "${BASH_VERSION+set}${ZSH_VERSION+set}"; then : ${_G_HAVE_ARITH_OP="yes"} : ${_G_HAVE_XSI_OPS="yes"} # The += operator was introduced in bash 3.1 case $BASH_VERSION in [12].* | 3.0 | 3.0*) ;; *) : ${_G_HAVE_PLUSEQ_OP="yes"} ;; esac fi # _G_HAVE_PLUSEQ_OP # Can be empty, in which case the shell is probed, "yes" if += is # useable or anything else if it does not work. test -z "$_G_HAVE_PLUSEQ_OP" \ && (eval 'x=a; x+=" b"; test "a b" = "$x"') 2>/dev/null \ && _G_HAVE_PLUSEQ_OP=yes if test yes = "$_G_HAVE_PLUSEQ_OP" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_append () { $debug_cmd eval "$1+=\$2" }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_append () { $debug_cmd eval "$1=\$$1\$2" } fi # func_append_quoted VAR VALUE # ---------------------------- # Quote VALUE and append to the end of shell variable VAR, separated # by a space. if test yes = "$_G_HAVE_PLUSEQ_OP"; then eval 'func_append_quoted () { $debug_cmd func_quote_arg pretty "$2" eval "$1+=\\ \$func_quote_arg_result" }' else func_append_quoted () { $debug_cmd func_quote_arg pretty "$2" eval "$1=\$$1\\ \$func_quote_arg_result" } fi # func_append_uniq VAR VALUE # -------------------------- # Append unique VALUE onto the existing contents of VAR, assuming # entries are delimited by the first character of VALUE. For example: # # func_append_uniq options " --another-option option-argument" # # will only append to $options if " --another-option option-argument " # is not already present somewhere in $options already (note spaces at # each end implied by leading space in second argument). func_append_uniq () { $debug_cmd eval _G_current_value='`$ECHO $'$1'`' _G_delim=`expr "$2" : '\(.\)'` case $_G_delim$_G_current_value$_G_delim in *"$2$_G_delim"*) ;; *) func_append "$@" ;; esac } # func_arith TERM... # ------------------ # Set func_arith_result to the result of evaluating TERMs. test -z "$_G_HAVE_ARITH_OP" \ && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ && _G_HAVE_ARITH_OP=yes if test yes = "$_G_HAVE_ARITH_OP"; then eval 'func_arith () { $debug_cmd func_arith_result=$(( $* )) }' else func_arith () { $debug_cmd func_arith_result=`expr "$@"` } fi # func_basename FILE # ------------------ # Set func_basename_result to FILE with everything up to and including # the last / stripped. if test yes = "$_G_HAVE_XSI_OPS"; then # If this shell supports suffix pattern removal, then use it to avoid # forking. Hide the definitions single quotes in case the shell chokes # on unsupported syntax... _b='func_basename_result=${1##*/}' _d='case $1 in */*) func_dirname_result=${1%/*}$2 ;; * ) func_dirname_result=$3 ;; esac' else # ...otherwise fall back to using sed. _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` if test "X$func_dirname_result" = "X$1"; then func_dirname_result=$3 else func_append func_dirname_result "$2" fi' fi eval 'func_basename () { $debug_cmd '"$_b"' }' # func_dirname FILE APPEND NONDIR_REPLACEMENT # ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. eval 'func_dirname () { $debug_cmd '"$_d"' }' # func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT # -------------------------------------------------------- # Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # For efficiency, we do not delegate to the functions above but instead # duplicate the functionality here. eval 'func_dirname_and_basename () { $debug_cmd '"$_b"' '"$_d"' }' # func_echo ARG... # ---------------- # Echo program name prefixed message. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname: $_G_line" done IFS=$func_echo_IFS } # func_echo_all ARG... # -------------------- # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_echo_infix_1 INFIX ARG... # ------------------------------ # Echo program name, followed by INFIX on the first line, with any # additional lines not showing INFIX. func_echo_infix_1 () { $debug_cmd $require_term_colors _G_infix=$1; shift _G_indent=$_G_infix _G_prefix="$progname: $_G_infix: " _G_message=$* # Strip color escape sequences before counting printable length for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" do test -n "$_G_tc" && { _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` } done _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes func_echo_infix_1_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_infix_1_IFS $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 _G_prefix=$_G_indent done IFS=$func_echo_infix_1_IFS } # func_error ARG... # ----------------- # Echo program name prefixed message to standard error. func_error () { $debug_cmd $require_term_colors func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } # func_fatal_error ARG... # ----------------------- # Echo program name prefixed message to standard error, and exit. func_fatal_error () { $debug_cmd func_error "$*" exit $EXIT_FAILURE } # func_grep EXPRESSION FILENAME # ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $debug_cmd $GREP "$1" "$2" >/dev/null 2>&1 } # func_len STRING # --------------- # Set func_len_result to the length of STRING. STRING may not # start with a hyphen. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_len () { $debug_cmd func_len_result=${#1} }' else func_len () { $debug_cmd func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } fi # func_mkdir_p DIRECTORY-PATH # --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { $debug_cmd _G_directory_path=$1 _G_dir_list= if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then # Protect directory names starting with '-' case $_G_directory_path in -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` func_mkdir_p_IFS=$IFS; IFS=: for _G_dir in $_G_dir_list; do IFS=$func_mkdir_p_IFS # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$_G_dir" 2>/dev/null || : done IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. test -d "$_G_directory_path" || \ func_fatal_error "Failed to create '$1'" fi } # func_mktempdir [BASENAME] # ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, BASENAME is the basename for that directory. func_mktempdir () { $debug_cmd _G_template=${TMPDIR-/tmp}/${1-$progname} if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race _G_tmpdir=$_G_template-${RANDOM-0}$$ func_mktempdir_umask=`umask` umask 0077 $MKDIR "$_G_tmpdir" umask $func_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$_G_tmpdir" || \ func_fatal_error "cannot create temporary directory '$_G_tmpdir'" fi $ECHO "$_G_tmpdir" } # func_normal_abspath PATH # ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. func_normal_abspath () { $debug_cmd # These SED scripts presuppose an absolute path with a trailing slash. _G_pathcar='s|^/\([^/]*\).*$|\1|' _G_pathcdr='s|^/[^/]*||' _G_removedotparts=':dotsl s|/\./|/|g t dotsl s|/\.$|/|' _G_collapseslashes='s|/\{1,\}|/|g' _G_finalslash='s|/*$|/|' # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` while :; do # Processed it all yet? if test / = "$func_normal_abspath_tpath"; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result"; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_notquiet ARG... # -------------------- # Echo program name prefixed message only when not in quiet mode. func_notquiet () { $debug_cmd $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_relative_path SRCDIR DSTDIR # -------------------------------- # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. func_relative_path () { $debug_cmd func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=$func_dirname_result if test -z "$func_relative_path_tlibdir"; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test -n "$func_stripname_result"; then func_append func_relative_path_result "/$func_stripname_result" fi # Normalisation. If bindir is libdir, return '.' else relative path. if test -n "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result" func_relative_path_result=$func_stripname_result fi test -n "$func_relative_path_result" || func_relative_path_result=. : } # func_quote_portable EVAL ARG # ---------------------------- # Internal function to portably implement func_quote_arg. Note that we still # keep attention to performance here so we as much as possible try to avoid # calling sed binary (so far O(N) complexity as long as func_append is O(1)). func_quote_portable () { $debug_cmd func_quote_portable_result=$2 # one-time-loop (easy break) while true do if $1; then func_quote_portable_result=`$ECHO "$2" | $SED \ -e "$sed_double_quote_subst" -e "$sed_double_backslash"` break fi # Quote for eval. case $func_quote_portable_result in *[\\\`\"\$]*) case $func_quote_portable_result in *[\[\*\?]*) func_quote_portable_result=`$ECHO "$func_quote_portable_result" | $SED "$sed_quote_subst"` break ;; esac func_quote_portable_old_IFS=$IFS for _G_char in '\' '`' '"' '$' do # STATE($1) PREV($2) SEPARATOR($3) set start "" "" func_quote_portable_result=dummy"$_G_char$func_quote_portable_result$_G_char"dummy IFS=$_G_char for _G_part in $func_quote_portable_result do case $1 in quote) func_append func_quote_portable_result "$3$2" set quote "$_G_part" "\\$_G_char" ;; start) set first "" "" func_quote_portable_result= ;; first) set quote "$_G_part" "" ;; esac done done IFS=$func_quote_portable_old_IFS ;; *) ;; esac break done func_quote_portable_unquoted_result=$func_quote_portable_result case $func_quote_portable_result in # double-quote args containing shell metacharacters to delay # word splitting, command substitution and variable expansion # for a subsequent eval. # many bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") func_quote_portable_result=\"$func_quote_portable_result\" ;; esac } # func_quotefast_eval ARG # ----------------------- # Quote one ARG (internal). This is equivalent to 'func_quote_arg eval ARG', # but optimized for speed. Result is stored in $func_quotefast_eval. if test xyes = `(x=; printf -v x %q yes; echo x"$x") 2>/dev/null`; then func_quotefast_eval () { printf -v func_quotefast_eval_result %q "$1" } else func_quotefast_eval () { func_quote_portable false "$1" func_quotefast_eval_result=$func_quote_portable_result } fi # func_quote_arg MODEs ARG # ------------------------ # Quote one ARG to be evaled later. MODEs argument may contain zero ore more # specifiers listed below separated by ',' character. This function returns two # values: # i) func_quote_arg_result # double-quoted (when needed), suitable for a subsequent eval # ii) func_quote_arg_unquoted_result # has all characters that are still active within double # quotes backslashified. Available only if 'unquoted' is specified. # # Available modes: # ---------------- # 'eval' (default) # - escape shell special characters # 'expand' # - the same as 'eval'; but do not quote variable references # 'pretty' # - request aesthetic output, i.e. '"a b"' instead of 'a\ b'. This might # later used in func_quote to get output like: 'echo "a b"' instead of # 'echo a\ b'. This is slower than default on some shells. # 'unquoted' # - produce also $func_quote_arg_unquoted_result which does not contain # wrapping double-quotes. # # Examples for 'func_quote_arg pretty,unquoted string': # # string | *_result | *_unquoted_result # ------------+-----------------------+------------------- # " | \" | \" # a b | "a b" | a b # "a b" | "\"a b\"" | \"a b\" # * | "*" | * # z="${x-$y}" | "z=\"\${x-\$y}\"" | z=\"\${x-\$y}\" # # Examples for 'func_quote_arg pretty,unquoted,expand string': # # string | *_result | *_unquoted_result # --------------+---------------------+-------------------- # z="${x-$y}" | "z=\"${x-$y}\"" | z=\"${x-$y}\" func_quote_arg () { _G_quote_expand=false case ,$1, in *,expand,*) _G_quote_expand=: ;; esac case ,$1, in *,pretty,*|*,expand,*|*,unquoted,*) func_quote_portable $_G_quote_expand "$2" func_quote_arg_result=$func_quote_portable_result func_quote_arg_unquoted_result=$func_quote_portable_unquoted_result ;; *) # Faster quote-for-eval for some shells. func_quotefast_eval "$2" func_quote_arg_result=$func_quotefast_eval_result ;; esac } # func_quote MODEs ARGs... # ------------------------ # Quote all ARGs to be evaled later and join them into single command. See # func_quote_arg's description for more info. func_quote () { $debug_cmd _G_func_quote_mode=$1 ; shift func_quote_result= while test 0 -lt $#; do func_quote_arg "$_G_func_quote_mode" "$1" if test -n "$func_quote_result"; then func_append func_quote_result " $func_quote_arg_result" else func_append func_quote_result "$func_quote_arg_result" fi shift done } # func_stripname PREFIX SUFFIX NAME # --------------------------------- # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_stripname () { $debug_cmd # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary variable first. func_stripname_result=$3 func_stripname_result=${func_stripname_result#"$1"} func_stripname_result=${func_stripname_result%"$2"} }' else func_stripname () { $debug_cmd case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; esac } fi # func_show_eval CMD [FAIL_EXP] # ----------------------------- # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} func_quote_arg pretty,expand "$_G_cmd" eval "func_notquiet $func_quote_arg_result" $opt_dry_run || { eval "$_G_cmd" _G_status=$? if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_show_eval_locale CMD [FAIL_EXP] # ------------------------------------ # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} $opt_quiet || { func_quote_arg expand,pretty "$_G_cmd" eval "func_echo $func_quote_arg_result" } $opt_dry_run || { eval "$_G_user_locale $_G_cmd" _G_status=$? eval "$_G_safe_locale" if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_tr_sh # ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { $debug_cmd case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_verbose ARG... # ------------------- # Echo program name prefixed message in verbose mode only. func_verbose () { $debug_cmd $opt_verbose && func_echo "$*" : } # func_warn_and_continue ARG... # ----------------------------- # Echo program name prefixed warning message to standard error. func_warn_and_continue () { $debug_cmd $require_term_colors func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } # func_warning CATEGORY ARG... # ---------------------------- # Echo program name prefixed warning message to standard error. Warning # messages can be filtered according to CATEGORY, where this function # elides messages where CATEGORY is not listed in the global variable # 'opt_warning_types'. func_warning () { $debug_cmd # CATEGORY must be in the warning_categories list! case " $warning_categories " in *" $1 "*) ;; *) func_internal_error "invalid warning category '$1'" ;; esac _G_category=$1 shift case " $opt_warning_types " in *" $_G_category "*) $warning_func ${1+"$@"} ;; esac } # func_sort_ver VER1 VER2 # ----------------------- # 'sort -V' is not generally available. # Note this deviates from the version comparison in automake # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a # but this should suffice as we won't be specifying old # version formats or redundant trailing .0 in bootstrap.conf. # If we did want full compatibility then we should probably # use m4_version_compare from autoconf. func_sort_ver () { $debug_cmd printf '%s\n%s\n' "$1" "$2" \ | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n } # func_lt_ver PREV CURR # --------------------- # Return true if PREV and CURR are in the correct order according to # func_sort_ver, otherwise false. Use it like this: # # func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." func_lt_ver () { $debug_cmd test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: #! /bin/sh # Set a version string for this script. scriptversion=2015-10-12.13; # UTC # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 # Copyright (C) 2010-2015 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. # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # Please report bugs or propose patches to gary@gnu.org. ## ------ ## ## Usage. ## ## ------ ## # This file is a library for parsing options in your shell scripts along # with assorted other useful supporting features that you can make use # of too. # # For the simplest scripts you might need only: # # #!/bin/sh # . relative/path/to/funclib.sh # . relative/path/to/options-parser # scriptversion=1.0 # func_options ${1+"$@"} # eval set dummy "$func_options_result"; shift # ...rest of your script... # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file # starting with '# Written by ' and ending with '# warranty; '. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the # '# Written by ' line, like the one at the top of this file. # # The default options also support '--debug', which will turn on shell # execution tracing (see the comment above debug_cmd below for another # use), and '--verbose' and the func_verbose function to allow your script # to display verbose messages only when your user has specified # '--verbose'. # # After sourcing this file, you can plug processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. ## -------------- ## ## Configuration. ## ## -------------- ## # You should override these variables in your script after sourcing this # file so that they reflect the customisations you have added to the # option parser. # The usage line for option parsing errors and the start of '-h' and # '--help' output messages. You can embed shell variables for delayed # expansion at the time the message is displayed, but you will need to # quote other shell meta-characters carefully to prevent them being # expanded when the contents are evaled. usage='$progpath [OPTION]...' # Short help message in response to '-h' and '--help'. Add to this or # override it after sourcing this library to reflect the full set of # options your script accepts. usage_message="\ --debug enable verbose shell tracing -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -v, --verbose verbosely report processing --version print version information and exit -h, --help print short or long help message and exit " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=" Warning categories include: 'all' show all warnings 'none' turn off all the warnings 'error' warnings are treated as fatal errors" # Help message printed before fatal option parsing errors. fatal_help="Try '\$progname --help' for more information." ## ------------------------- ## ## Hook function management. ## ## ------------------------- ## # This section contains functions for adding, removing, and running hooks # to the main code. A hook is just a named list of of function, that can # be run in order later on. # func_hookable FUNC_NAME # ----------------------- # Declare that FUNC_NAME will run hooks added with # 'func_add_hook FUNC_NAME ...'. func_hookable () { $debug_cmd func_append hookable_fns " $1" } # func_add_hook FUNC_NAME HOOK_FUNC # --------------------------------- # Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must # first have been declared "hookable" by a call to 'func_hookable'. func_add_hook () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not accept hook functions." ;; esac eval func_append ${1}_hooks '" $2"' } # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ # Remove HOOK_FUNC from the list of functions called by FUNC_NAME. func_remove_hook () { $debug_cmd eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' } # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. # It is assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. func_run_hooks () { $debug_cmd _G_rc_run_hooks=false case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook funcions.n" ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do if eval $_G_hook '"$@"'; then # store returned options list back into positional # parameters for next 'cmd' execution. eval _G_hook_result=\$${_G_hook}_result eval set dummy "$_G_hook_result"; shift _G_rc_run_hooks=: fi done $_G_rc_run_hooks && func_run_hooks_result=$_G_hook_result } ## --------------- ## ## Option parsing. ## ## --------------- ## # In order to add your own option parsing hooks, you must accept the # full positional parameter list in your hook function, you may remove/edit # any options that you action, and then pass back the remaining unprocessed # options in '_result', escaped suitably for # 'eval'. In this case you also must return $EXIT_SUCCESS to let the # hook's caller know that it should pay attention to # '_result'. Returning $EXIT_FAILURE signalizes that # arguments are left untouched by the hook and therefore caller will ignore the # result variable. # # Like this: # # my_options_prep () # { # $debug_cmd # # # Extend the existing usage message. # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' # # No change in '$@' (ignored completely by this hook). There is # # no need to do the equivalent (but slower) action: # # func_quote eval ${1+"$@"} # # my_options_prep_result=$func_quote_result # false # } # func_add_hook func_options_prep my_options_prep # # # my_silent_option () # { # $debug_cmd # # args_changed=false # # # Note that for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in # --silent|-s) opt_silent=: # args_changed=: # ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift # args_changed=: # ;; # *) # Make sure the first unrecognised option "$_G_opt" # # is added back to "$@", we could need that later # # if $args_changed is true. # set dummy "$_G_opt" ${1+"$@"}; shift; break ;; # esac # done # # if $args_changed; then # func_quote eval ${1+"$@"} # my_silent_option_result=$func_quote_result # fi # # $args_changed # } # func_add_hook func_parse_options my_silent_option # # # my_option_validation () # { # $debug_cmd # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # # false # } # func_add_hook func_validate_options my_option_validation # # You'll also need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. # func_options_finish [ARG]... # ---------------------------- # Finishing the option parse loop (call 'func_options' hooks ATM). func_options_finish () { $debug_cmd _G_func_options_finish_exit=false if func_run_hooks func_options ${1+"$@"}; then func_options_finish_result=$func_run_hooks_result _G_func_options_finish_exit=: fi $_G_func_options_finish_exit } # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the # individual implementations for details. func_hookable func_options func_options () { $debug_cmd _G_rc_options=false for my_func in options_prep parse_options validate_options options_finish do if eval func_$my_func '${1+"$@"}'; then eval _G_res_var='$'"func_${my_func}_result" eval set dummy "$_G_res_var" ; shift _G_rc_options=: fi done # Save modified positional parameters for caller. As a top-level # options-parser function we always need to set the 'func_options_result' # variable (regardless the $_G_rc_options value). if $_G_rc_options; then func_options_result=$_G_res_var else func_quote eval ${1+"$@"} func_options_result=$func_quote_result fi $_G_rc_options } # func_options_prep [ARG]... # -------------------------- # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and # needs to propagate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before # returning $EXIT_SUCCESS (otherwise $EXIT_FAILURE is returned). func_hookable func_options_prep func_options_prep () { $debug_cmd # Option defaults: opt_verbose=false opt_warning_types= _G_rc_options_prep=false if func_run_hooks func_options_prep ${1+"$@"}; then _G_rc_options_prep=: # save modified positional parameters for caller func_options_prep_result=$func_run_hooks_result fi $_G_rc_options_prep } # func_parse_options [ARG]... # --------------------------- # The main option parsing loop. func_hookable func_parse_options func_parse_options () { $debug_cmd func_parse_options_result= _G_rc_parse_options=false # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. if func_run_hooks func_parse_options ${1+"$@"}; then eval set dummy "$func_run_hooks_result"; shift _G_rc_parse_options=: fi # Break out of the loop if we already parsed every option. test $# -gt 0 || break _G_match_parse_options=: _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' func_echo "enabling shell trace mode" $debug_cmd ;; --no-warnings|--no-warning|--no-warn) set dummy --warnings none ${1+"$@"} shift ;; --warnings|--warning|-W) if test $# = 0 && func_missing_arg $_G_opt; then _G_rc_parse_options=: break fi case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above func_append_uniq opt_warning_types " $1" ;; *all) opt_warning_types=$warning_categories ;; *none) opt_warning_types=none warning_func=: ;; *error) opt_warning_types=$warning_categories warning_func=func_fatal_error ;; *) func_fatal_error \ "unsupported warning category: '$1'" ;; esac shift ;; --verbose|-v) opt_verbose=: ;; --version) func_version ;; -\?|-h) func_usage ;; --help) func_help ;; # Separate optargs to long options (plugins may need this): --*=*) func_split_equals "$_G_opt" set dummy "$func_split_equals_lhs" \ "$func_split_equals_rhs" ${1+"$@"} shift ;; # Separate optargs to short options: -W*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "$func_split_short_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-v*|-x*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) _G_rc_parse_options=: ; break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; *) set dummy "$_G_opt" ${1+"$@"}; shift _G_match_parse_options=false break ;; esac $_G_match_parse_options && _G_rc_parse_options=: done if $_G_rc_parse_options; then # save modified positional parameters for caller func_quote eval ${1+"$@"} func_parse_options_result=$func_quote_result fi $_G_rc_parse_options } # func_validate_options [ARG]... # ------------------------------ # Perform any sanity checks on option settings and/or unconsumed # arguments. func_hookable func_validate_options func_validate_options () { $debug_cmd _G_rc_validate_options=false # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" if func_run_hooks func_validate_options ${1+"$@"}; then # save modified positional parameters for caller func_validate_options_result=$func_run_hooks_result _G_rc_validate_options=: fi # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE $_G_rc_validate_options } ## ----------------- ## ## Helper functions. ## ## ----------------- ## # This section contains the helper functions used by the rest of the # hookable option parser framework in ascii-betical order. # func_fatal_help ARG... # ---------------------- # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { $debug_cmd eval \$ECHO \""Usage: $usage"\" eval \$ECHO \""$fatal_help"\" func_error ${1+"$@"} exit $EXIT_FAILURE } # func_help # --------- # Echo long help message to standard output and exit. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message" exit 0 } # func_missing_arg ARGNAME # ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $debug_cmd func_error "Missing argument for '$1'." exit_cmd=exit } # func_split_equals STRING # ------------------------ # Set func_split_equals_lhs and func_split_equals_rhs shell variables after # splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_equals () { $debug_cmd func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} test "x$func_split_equals_lhs" = "x$1" \ && func_split_equals_rhs= }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_equals () { $debug_cmd func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` func_split_equals_rhs= test "x$func_split_equals_lhs" = "x$1" \ || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` } fi #func_split_equals # func_split_short_opt SHORTOPT # ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_short_opt () { $debug_cmd func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"} }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_short_opt () { $debug_cmd func_split_short_opt_name=`expr "x$1" : 'x-\(.\)'` func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` } fi #func_split_short_opt # func_usage # ---------- # Echo short help message to standard output and exit. func_usage () { $debug_cmd func_usage_message $ECHO "Run '$progname --help |${PAGER-more}' for full usage" exit 0 } # func_usage_message # ------------------ # Echo short help message to standard output. func_usage_message () { $debug_cmd eval \$ECHO \""Usage: $usage"\" echo $SED -n 's|^# || /^Written by/{ x;p;x } h /^Written by/q' < "$progpath" echo eval \$ECHO \""$usage_message"\" } # func_version # ------------ # Echo version message to standard output and exit. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' /(C)/!b go :more /\./!{ N s|\n# | | b more } :go /^# Written by /,/# warranty; / { s|^# || s|^# *$|| s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| p } /^# Written by / { s|^# || p } /^warranty; /q' < "$progpath" exit $? } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. scriptversion='(GNU libtool) 2.4.6' # func_echo ARG... # ---------------- # Libtool also displays the current mode in messages, so override # funclib.sh func_echo with this custom definition. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" done IFS=$func_echo_IFS } # func_warning ARG... # ------------------- # Libtool warnings are not categorized, so override funclib.sh # func_warning with this simpler definition. func_warning () { $debug_cmd $warning_func ${1+"$@"} } ## ---------------- ## ## Options parsing. ## ## ---------------- ## # Hook in the functions to make sure our own options are parsed during # the option parsing loop. usage='$progpath [OPTION]... [MODE-ARG]...' # Short help message in response to '-h'. usage_message="Options: --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information and exit --mode=MODE use operation mode MODE --no-warnings equivalent to '-Wnone' --preserve-dup-deps don't remove duplicate dependency libraries --quiet, --silent don't print informational messages --tag=TAG use configuration variables from tag TAG -v, --verbose print more informational messages than default --version print version information -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -h, --help, --help-all print short, long, or detailed help message " # Additional text appended to 'usage_message' in response to '--help'. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. When passed as first option, '--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. Try '$progname --help --mode=MODE' for a more detailed description of MODE. When reporting a bug, please describe a test case to reproduce it and include the following information: host-triplet: $host shell: $SHELL compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) version: $progname $scriptversion Debian-2.4.6-2.1 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . GNU libtool home page: . General help using GNU software: ." exit 0 } # func_lo2o OBJECT-NAME # --------------------- # Transform OBJECT-NAME from a '.lo' suffix to the platform specific # object suffix. lo2o=s/\\.lo\$/.$objext/ o2lo=s/\\.$objext\$/.lo/ if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_lo2o () { case $1 in *.lo) func_lo2o_result=${1%.lo}.$objext ;; * ) func_lo2o_result=$1 ;; esac }' # func_xform LIBOBJ-OR-SOURCE # --------------------------- # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) # suffix to a '.lo' libtool-object suffix. eval 'func_xform () { func_xform_result=${1%.*}.lo }' else # ...otherwise fall back to using sed. func_lo2o () { func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` } func_xform () { func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` } fi # func_fatal_configuration ARG... # ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func__fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } # func_config # ----------- # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # ------------- # Display the features supported by this script. func_features () { echo "host: $host" if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag TAGNAME # ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname=$1 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf=/$re_begincf/,/$re_endcf/p # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # libtool_options_prep [ARG]... # ----------------------------- # Preparation for options parsed by libtool. libtool_options_prep () { $debug_mode # Option defaults: opt_config=false opt_dlopen= opt_dry_run=false opt_help=false opt_mode= opt_preserve_dup_deps=false opt_quiet=false nonopt= preserve_args= _G_rc_lt_options_prep=: # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; *) _G_rc_lt_options_prep=false ;; esac if $_G_rc_lt_options_prep; then # Pass back the list of options. func_quote eval ${1+"$@"} libtool_options_prep_result=$func_quote_result fi $_G_rc_lt_options_prep } func_add_hook func_options_prep libtool_options_prep # libtool_parse_options [ARG]... # --------------------------------- # Provide handling for libtool specific options. libtool_parse_options () { $debug_cmd _G_rc_lt_parse_options=false # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do _G_match_lt_parse_options=: _G_opt=$1 shift case $_G_opt in --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) func_config ;; --dlopen|-dlopen) opt_dlopen="${opt_dlopen+$opt_dlopen }$1" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) func_features ;; --finish) set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $_G_opt && break opt_mode=$1 case $1 in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $_G_opt" exit_cmd=exit break ;; esac shift ;; --no-silent|--no-quiet) opt_quiet=false func_append preserve_args " $_G_opt" ;; --no-warnings|--no-warning|--no-warn) opt_warning=false func_append preserve_args " $_G_opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $_G_opt" ;; --silent|--quiet) opt_quiet=: opt_verbose=false func_append preserve_args " $_G_opt" ;; --tag) test $# = 0 && func_missing_arg $_G_opt && break opt_tag=$1 func_append preserve_args " $_G_opt $1" func_enable_tag "$1" shift ;; --verbose|-v) opt_quiet=false opt_verbose=: func_append preserve_args " $_G_opt" ;; # An option not handled by this hook function: *) set dummy "$_G_opt" ${1+"$@"} ; shift _G_match_lt_parse_options=false break ;; esac $_G_match_lt_parse_options && _G_rc_lt_parse_options=: done if $_G_rc_lt_parse_options; then # save modified positional parameters for caller func_quote eval ${1+"$@"} libtool_parse_options_result=$func_quote_result fi $_G_rc_lt_parse_options } func_add_hook func_parse_options libtool_parse_options # libtool_validate_options [ARG]... # --------------------------------- # Perform any sanity checks on option settings and/or unconsumed # arguments. libtool_validate_options () { # save first non-option argument if test 0 -lt $#; then nonopt=$1 shift fi # preserve --debug test : = "$debug_cmd" || func_append preserve_args " --debug" case $host in # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 *cygwin* | *mingw* | *pw32* | *cegcc* | *solaris2* | *os2*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match test yes != "$build_libtool_libs" \ && test yes != "$build_old_libs" \ && func_fatal_configuration "not configured to build any kind of library" # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test execute != "$opt_mode"; then func_error "unrecognized option '-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help=$help help="Try '$progname --help --mode=$opt_mode' for more information." } # Pass back the unparsed argument list func_quote eval ${1+"$@"} libtool_validate_options_result=$func_quote_result } func_add_hook func_validate_options libtool_validate_options # Process options as early as possible so that --help and --version # can return quickly. func_options ${1+"$@"} eval set dummy "$func_options_result"; shift ## ----------- ## ## Main. ## ## ----------- ## magic='%%%MAGIC variable%%%' magic_exe='%%%MAGIC EXE variable%%%' # Global variables. extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # func_generated_by_libtool # True iff stdin has been generated by Libtool. This function is only # a basic sanity check; it will hardly flush out determined imposters. func_generated_by_libtool_p () { $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test yes = "$lalib_p" } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { test -f "$1" && $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $debug_cmd save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # 'FILE.' does not work on cygwin managed mounts. func_source () { $debug_cmd case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $debug_cmd if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=$1 if test yes = "$build_libtool_libs"; then write_lobj=\'$2\' else write_lobj=none fi if test yes = "$build_old_libs"; then write_oldobj=\'$3\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, cygwin, or some other w32 environment. Relies on a correctly # configured wine environment available, with the winepath program in $build's # $PATH. Assumes ARG has no leading or trailing path separator characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $debug_cmd # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $debug_cmd if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $debug_cmd # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $debug_cmd if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result=$1 fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $debug_cmd if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result=$3 fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $debug_cmd case $4 in $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $debug_cmd $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $debug_cmd case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result=$1 } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $debug_cmd if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd=func_convert_path_$func_stripname_result fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $debug_cmd func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result=$1 } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_dll_def_p FILE # True iff FILE is a Windows DLL '.def' file. # Keep in sync with _LT_DLL_DEF_P in libtool.m4 func_dll_def_p () { $debug_cmd func_dll_def_p_tmp=`$SED -n \ -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" } # func_mode_compile arg... func_mode_compile () { $debug_cmd # Get the compilation command and the source file. base_compile= srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg=$arg arg_mode=normal ;; target ) libobj=$arg arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs=$IFS; IFS=, for arg in $args; do IFS=$save_ifs func_append_quoted lastarg "$arg" done IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg=$srcfile srcfile=$arg ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj=$func_basename_result } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test yes = "$build_libtool_libs" \ || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_arg pretty "$libobj" test "X$libobj" != "X$func_quote_arg_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname=$func_basename_result xdir=$func_dirname_result lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test no = "$compiler_c_o"; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext lockfile=$output_obj.lock else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_arg pretty "$srcfile" qsrcfile=$func_quote_arg_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test yes = "$build_old_libs"; then if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a '.o' file suitable for static linking -static only build a '.o' file suitable for static linking -Wc,FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix '.c' with the library object suffix, '.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the '--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE use a list of object files found in FILE to specify objects -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with '-') are ignored. Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in '.la', then a libtool library is created, only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created using 'ar' and 'ranlib', or on Windows using 'lib'. If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test : = "$opt_help"; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | $SED '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # func_mode_execute arg... func_mode_execute () { $debug_cmd # The first argument is the command name. cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "'$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir=$func_dirname_result ;; *) func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file=$progdir/$program fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if $opt_dry_run; then # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd=\$cmd$args fi } test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $debug_cmd libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "'$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument '$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $debug_cmd # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. func_quote_arg pretty "$nonopt" install_prog="$func_quote_arg_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_arg pretty "$arg" func_append install_prog "$func_quote_arg_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=false stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_arg pretty "$arg" func_append install_prog " $func_quote_arg_result" if test -n "$arg2"; then func_quote_arg pretty "$arg2" fi func_append install_shared_prog " $func_quote_arg_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_arg pretty "$install_override_mode" func_append install_shared_prog " -m $func_quote_arg_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=: if $isdir; then destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." destdir=$func_dirname_result destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "$destdir" | $SED -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking '$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname=$1 shift srcname=$realname test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme=$stripme case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme= ;; esac ;; os2*) case $realname in *_dll.a) tstripme= ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name=$func_basename_result instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest=$destfile destfile= ;; *) func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=.exe fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script '$wrapper'" finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then func_warning "'$lib' has not been installed in '$libdir'" finalize=false fi done relink_command= func_source "$wrapper" outputname= if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file=$func_basename_result outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { func_quote_arg expand,pretty "$relink_command" eval "func_echo $func_quote_arg_result" } if eval "$relink_command"; then : else func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file=$outputname else func_warning "cannot relink '$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name=$func_basename_result # Set up the ranlib parameters. oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $debug_cmd my_outputname=$1 my_originator=$2 my_pic_p=${3-false} my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* External symbol declarations for the compiler. */\ " if test yes = "$dlself"; then func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" name=$func_basename_result case $host in *cygwin* | *mingw* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi func_show_eval '$RM "${nlist}I"' if test -n "$global_symbol_to_import"; then eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[];\ " if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ static void lt_syminit(void) { LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; for (; symbol->name; ++symbol) {" $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" echo >> "$output_objdir/$my_dlsyms" "\ } }" fi echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = { {\"$my_originator\", (void *) 0}," if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ {\"@INIT@\", (void *) <_syminit}," fi case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $debug_cmd win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64)' >/dev/null; then case $nm_interface in "MS dumpbin") if func_cygming_ms_implib_p "$1" || func_cygming_gnu_implib_p "$1" then win32_nmres=import else win32_nmres= fi ;; *) func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s|.*|import| p q } }'` ;; esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $debug_cmd sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $debug_cmd match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive that possess that section. Heuristic: eliminate # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $debug_cmd if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result= fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $debug_cmd f_ex_an_ar_dir=$1; shift f_ex_an_ar_oldlib=$1 if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $debug_cmd my_gentop=$1; shift my_oldlibs=${1+"$@"} my_oldobjs= my_xlib= my_xabs= my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` func_basename "$darwin_archive" darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches; do func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" cd "unfat-$$/$darwin_base_archive-$darwin_arch" func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result=$my_oldobjs } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # 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+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # 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 relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" func_quote_arg pretty "$ECHO" qECHO=$func_quote_arg_result $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=$qECHO fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* declarations of non-ANSI functions */ #if defined __MINGW32__ # ifdef __STRICT_ANSI__ int _putenv (const char *); # endif #elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ #if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC #elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined other platforms ... */ #endif #if defined PATH_MAX # define LT_PATHMAX PATH_MAX #elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free (stale); stale = 0; } \ } while (0) #if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; size_t tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined HAVE_DOS_BASED_FILE_SYSTEM if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined HAVE_DOS_BASED_FILE_SYSTEM } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = (size_t) (q - p); p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (STREQ (str, pat)) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else size_t len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { size_t orig_value_len = strlen (orig_value); size_t add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ size_t len = strlen (new_value); while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $debug_cmd case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_suncc_cstd_abi # !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! # Several compiler flags select an ABI that is incompatible with the # Cstd library. Avoid specifying it if any are in CXXFLAGS. func_suncc_cstd_abi () { $debug_cmd case " $compile_command " in *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) suncc_use_cstd_abi=no ;; *) suncc_use_cstd_abi=yes ;; esac } # func_mode_link arg... func_mode_link () { $debug_cmd case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=false prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test yes != "$build_libtool_libs" \ && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg=$1 shift func_quote_arg pretty,unquoted "$arg" qarg=$func_quote_arg_unquoted_result func_append libtool_args " $func_quote_arg_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir=$arg prev= continue ;; dlfiles|dlprefiles) $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=: } case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test no = "$dlself"; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test dlprefiles = "$prev"; then dlself=yes elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols=$arg test -f "$arg" \ || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex=$arg prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir=$arg prev= continue ;; mllvm) # Clang does not use LLVM to link, so we can simply discard any # '-mllvm $arg' options when doing the link step. prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object fi # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; os2dllname) os2dllname=$arg prev= continue ;; precious_regex) precious_files_regex=$arg prev= continue ;; release) release=-$arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds=$arg prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg=$arg case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between '-L' and '$1'" else func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of '$dir'" dir=$absdir ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test X-lc = "X$arg" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc due to us having libc/libc_r. test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test X-lc = "X$arg" && continue ;; esac elif test X-lc_r = "X$arg"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-bitrig*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -mllvm) prev=mllvm continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot|--sysroot) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) func_append compiler_flags " $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) func_append new_inherited_linker_flags " $arg" ;; esac continue ;; -multi_module) single_module=$wl-multi_module continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "'-no-install' is ignored for $host" func_warning "assuming '-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -os2dllname) prev=os2dllname continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; =*) func_stripname '=' '' "$dir" dir=$lt_sysroot$func_stripname_result ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_arg pretty "$flag" func_append arg " $func_quote_arg_result" func_append compiler_flags " $func_quote_arg_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs=$IFS; IFS=, for flag in $args; do IFS=$save_ifs func_quote_arg pretty "$flag" func_append arg " $wl$func_quote_arg_result" func_append compiler_flags " $wl$func_quote_arg_result" func_append linker_flags " $func_quote_arg_result" done IFS=$save_ifs func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_arg pretty "$arg" arg=$func_quote_arg_result ;; # Flags to be passed through unchanged, with rationale: # -64, -mips[0-9] enable 64-bit mode for the SGI compiler # -r[0-9][0-9]* specify processor for the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode for the Sun compiler # +DA*, +DD* enable 64-bit mode for the HP compiler # -q* compiler args for the IBM compiler # -m*, -t[45]*, -txscale* architecture-specific flags for GCC # -F/path path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* profiling flags for GCC # -fstack-protector* stack protector flags for GCC # @file GCC response files # -tp=* Portland pgcc target processor selection # --sysroot=* for sysroot support # -O*, -g*, -flto*, -fwhopr*, -fuse-linker-plugin GCC link-time optimization # -specs=* GCC specs files # -stdlib=* select c++ std lib with clang # -fsanitize=* Clang/GCC memory and address sanitizer -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*|-tp=*|--sysroot=*| \ -O*|-g*|-flto*|-fwhopr*|-fuse-linker-plugin|-fstack-protector*|-stdlib=*| \ -specs=*|-fsanitize=*) func_quote_arg pretty "$arg" arg=$func_quote_arg_result func_append compile_command " $arg" func_append finalize_command " $arg" func_append compiler_flags " $arg" continue ;; -Z*) if test os2 = "`expr $host : '.*\(os2\)'`"; then # OS/2 uses -Zxxx to specify OS/2-specific options compiler_flags="$compiler_flags $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case $arg in -Zlinker | -Zstack) prev=xcompiler ;; esac continue else # Otherwise treat like 'Some other compiler flag' below func_quote_arg pretty "$arg" arg=$func_quote_arg_result fi ;; # Some other compiler flag. -* | +*) func_quote_arg pretty "$arg" arg=$func_quote_arg_result ;; *.$objext) # A standard object. func_append objs " $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result test none = "$pic_object" || { # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object } # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. func_append deplibs " $arg" func_append old_deplibs " $arg" continue ;; *.la) # A libtool-controlled library. func_resolve_sysroot "$arg" if test dlfiles = "$prev"; then # This library was specified with -dlopen. func_append dlfiles " $func_resolve_sysroot_result" prev= elif test dlprefiles = "$prev"; then # The library was specified with -dlpreopen. func_append dlprefiles " $func_resolve_sysroot_result" prev= else func_append deplibs " $func_resolve_sysroot_result" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_arg pretty "$arg" arg=$func_quote_arg_result ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the '$prevarg' option requires an argument" if test yes = "$export_dynamic" && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname=$func_basename_result libobjs_save=$libobjs if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"\$$shlibpath_var\" \| \$SED \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" # Definition is injected by LT_CONFIG during libtool generation. func_munge_path_list sys_lib_dlsearch_path "$LT_SYS_LIBRARY_PATH" func_dirname "$output" "/" "" output_objdir=$func_dirname_result$objdir func_to_tool_file "$output_objdir/" tool_output_objdir=$func_to_tool_file_result # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_preserve_dup_deps; then case "$libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append libs " $deplib" done if test lib = "$linkmode"; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) func_append specialdeplibs " $pre_post_deps" ;; esac func_append pre_post_deps " $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can '-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=false newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test lib,link = "$linkmode,$pass"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs=$tmp_deplibs fi if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass"; then libs=$deplibs deplibs= fi if test prog = "$linkmode"; then case $pass in dlopen) libs=$dlfiles ;; dlpreopen) libs=$dlprefiles ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test lib,dlpreopen = "$linkmode,$pass"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= func_resolve_sysroot "$lib" case $lib in *.la) func_source "$func_resolve_sysroot_result" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do func_basename "$deplib" deplib_base=$func_basename_result case " $weak_libs " in *" $deplib_base "*) ;; *) func_append deplibs " $deplib" ;; esac done done libs=$dlprefiles fi if test dlopen = "$pass"; then # Collect dlpreopened libraries save_deplibs=$deplibs deplibs= fi for deplib in $libs; do lib= found=false case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe \ |-threads|-fopenmp|-openmp|-mp|-xopenmp|-omp|-qsmp=*) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append compiler_flags " $deplib" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -l*) if test lib != "$linkmode" && test prog != "$linkmode"; then func_warning "'-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test lib = "$linkmode"; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib=$searchdir/lib$name$search_ext if test -f "$lib"; then if test .la = "$search_ext"; then found=: else found=false fi break 2 fi done done if $found; then # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll=$l done if test "X$ll" = "X$old_library"; then # only static version available found=false func_dirname "$lib" "" "." ladir=$func_dirname_result lib=$ladir/$old_library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi else # deplib doesn't seem to be a libtool library if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test lib = "$linkmode" && newdependency_libs="$deplib $newdependency_libs" fi continue fi ;; # -l *.ltframework) if test prog,link = "$linkmode,$pass"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test lib = "$linkmode"; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) func_append new_inherited_linker_flags " $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test conv = "$pass" && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; prog) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi if test scan = "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; *) func_warning "'-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test link = "$pass"; then func_stripname '-R' '' "$deplib" func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) func_append xrpath " $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) func_resolve_sysroot "$deplib" lib=$func_resolve_sysroot_result ;; *.$libext) if test conv = "$pass"; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=false case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"$deplib\"" 2>/dev/null | $SED 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=: fi ;; pass_all) valid_a_lib=: ;; esac if $valid_a_lib; then echo $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" else echo $ECHO "*** Warning: Trying to link with static lib archive $deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because the file extensions .$libext of this argument makes me believe" echo "*** that it is just a static archive that I should not use here." fi ;; esac continue ;; prog) if test link != "$pass"; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test conv = "$pass"; then deplibs="$deplib $deplibs" elif test prog = "$linkmode"; then if test dlpreopen = "$pass" || test yes != "$dlopen_support" || test no = "$build_libtool_libs"; then # If there is no dlopen support or we're linking statically, # we need to preload. func_append newdlprefiles " $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else func_append newdlfiles " $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=: continue ;; esac # case $deplib $found || test -f "$lib" \ || func_fatal_error "cannot find the library '$lib' or unhandled argument '$deplib'" # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "'$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir=$func_dirname_result dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "$inherited_linker_flags" | $SED 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) func_append new_inherited_linker_flags " $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO " $dependency_libs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` if test lib,link = "$linkmode,$pass" || test prog,scan = "$linkmode,$pass" || { test prog != "$linkmode" && test lib != "$linkmode"; }; then test -n "$dlopen" && func_append dlfiles " $dlopen" test -n "$dlpreopen" && func_append dlprefiles " $dlpreopen" fi if test conv = "$pass"; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for '$lib'" fi # It is a libtool convenience library, so add in its objects. func_append convenience " $ladir/$objdir/$old_library" func_append old_convenience " $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done elif test prog != "$linkmode" && test lib != "$linkmode"; then func_fatal_error "'$lib' is not a convenience library" fi continue fi # $pass = conv # Get the name of the library we link against. linklib= if test -n "$old_library" && { test yes = "$prefer_static_libs" || test built,no = "$prefer_static_libs,$installed"; }; then linklib=$old_library else for l in $old_library $library_names; do linklib=$l done fi if test -z "$linklib"; then func_fatal_error "cannot find name of link library for '$lib'" fi # This library was specified with -dlopen. if test dlopen = "$pass"; then test -z "$libdir" \ && func_fatal_error "cannot -dlopen a convenience library: '$lib'" if test -z "$dlname" || test yes != "$dlopen_support" || test no = "$build_libtool_libs" then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. func_append dlprefiles " $lib $dependency_libs" else func_append newdlfiles " $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir=$ladir ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of '$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir=$ladir fi ;; esac func_basename "$lib" laname=$func_basename_result # Find the relevant object directory and library name. if test yes = "$installed"; then if test ! -f "$lt_sysroot$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library '$lib' was moved." dir=$ladir absdir=$abs_ladir libdir=$abs_ladir else dir=$lt_sysroot$libdir absdir=$lt_sysroot$libdir fi test yes = "$hardcode_automatic" && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir=$ladir absdir=$abs_ladir # Remove this search path later func_append notinst_path " $abs_ladir" else dir=$ladir/$objdir absdir=$abs_ladir/$objdir # Remove this search path later func_append notinst_path " $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test dlpreopen = "$pass"; then if test -z "$libdir" && test prog = "$linkmode"; then func_fatal_error "only libraries may -dlpreopen a convenience library: '$lib'" fi case $host in # special handling for platforms with PE-DLLs. *cygwin* | *mingw* | *cegcc* ) # Linker will automatically link against shared library if both # static and shared are present. Therefore, ensure we extract # symbols from the import library if a shared library is present # (otherwise, the dlopen module name will be incorrect). We do # this by putting the import library name into $newdlprefiles. # We recover the dlopen module name by 'saving' the la file # name in a special purpose variable, and (later) extracting the # dlname from the la file. if test -n "$dlname"; then func_tr_sh "$dir/$linklib" eval "libfile_$func_tr_sh_result=\$abs_ladir/\$laname" func_append newdlprefiles " $dir/$linklib" else func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" fi ;; * ) # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then func_append newdlprefiles " $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ func_append dlpreconveniencelibs " $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then func_append newdlprefiles " $dir/$dlname" else func_append newdlprefiles " $dir/$linklib" fi ;; esac fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test lib = "$linkmode"; then deplibs="$dir/$old_library $deplibs" elif test prog,link = "$linkmode,$pass"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test prog = "$linkmode" && test link != "$pass"; then func_append newlib_search_path " $ladir" deplibs="$lib $deplibs" linkalldeplibs=false if test no != "$link_all_deplibs" || test -z "$library_names" || test no = "$build_libtool_libs"; then linkalldeplibs=: fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result" func_append newlib_search_path " $func_resolve_sysroot_result" ;; esac # Need to link against all dependency_libs? if $linkalldeplibs; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $deplib "*) func_append specialdeplibs " $deplib" ;; esac fi func_append tmp_libs " $deplib" done # for deplib continue fi # $linkmode = prog... if test prog,link = "$linkmode,$pass"; then if test -n "$library_names" && { { test no = "$prefer_static_libs" || test built,yes = "$prefer_static_libs,$installed"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath"; then # Make sure the rpath contains only unique directories. case $temp_rpath: in *"$absdir:"*) ;; *) func_append temp_rpath "$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi # $linkmode,$pass = prog,link... if $alldeplibs && { test pass_all = "$deplibs_check_method" || { test yes = "$build_libtool_libs" && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test built = "$use_static_libs" && test yes = "$installed"; then use_static_libs=no fi if test -n "$library_names" && { test no = "$use_static_libs" || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc* | *os2*) # No point in relinking DLLs because paths are not encoded func_append notinst_deplibs " $lib" need_relink=no ;; *) if test no = "$installed"; then func_append notinst_deplibs " $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule= for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule=$dlpremoduletest break fi done if test -z "$dlopenmodule" && test yes = "$shouldnotlink" && test link = "$pass"; then echo if test prog = "$linkmode"; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test lib = "$linkmode" && test yes = "$hardcode_into_libs"; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) func_append compile_rpath " $absdir" ;; esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname=$1 shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname=$dlname elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc* | *os2*) func_arith $current - $age major=$func_arith_result versuffix=-$major ;; esac eval soname=\"$soname_spec\" else soname=$realname fi # Make a new name for the extract_expsyms_cmds to use soroot=$soname func_basename "$soroot" soname=$func_basename_result func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from '$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for '$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test prog = "$linkmode" || test relink != "$opt_mode"; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test no = "$hardcode_direct"; then add=$dir/$linklib case $host in *-*-sco3.2v5.0.[024]*) add_dir=-L$dir ;; *-*-sysv4*uw2*) add_dir=-L$dir ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir=-L$dir ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we cannot # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library"; then echo echo "*** And there doesn't seem to be a static archive available" echo "*** The link will probably fail, sorry" else add=$dir/$old_library fi elif test -n "$old_library"; then add=$dir/$old_library fi fi esac elif test no = "$hardcode_minus_L"; then case $host in *-*-sunos*) add_shlibpath=$dir ;; esac add_dir=-L$dir add=-l$name elif test no = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; relink) if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$dir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$absdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name elif test yes = "$hardcode_shlibpath_var"; then add_shlibpath=$dir add=-l$name else lib_linked=no fi ;; *) lib_linked=no ;; esac if test yes != "$lib_linked"; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) func_append compile_shlibpath "$add_shlibpath:" ;; esac fi if test prog = "$linkmode"; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test yes != "$hardcode_direct" && test yes != "$hardcode_minus_L" && test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac fi fi fi if test prog = "$linkmode" || test relink = "$opt_mode"; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test yes = "$hardcode_direct" && test no = "$hardcode_direct_absolute"; then add=$libdir/$linklib elif test yes = "$hardcode_minus_L"; then add_dir=-L$libdir add=-l$name elif test yes = "$hardcode_shlibpath_var"; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) func_append finalize_shlibpath "$libdir:" ;; esac add=-l$name elif test yes = "$hardcode_automatic"; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib"; then add=$inst_prefix_dir$libdir/$linklib else add=$libdir/$linklib fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir=-L$libdir # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) func_append add_dir " -L$inst_prefix_dir$libdir" ;; esac fi add=-l$name fi if test prog = "$linkmode"; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test prog = "$linkmode"; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test unsupported != "$hardcode_direct"; then test -n "$old_library" && linklib=$old_library compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test yes = "$build_libtool_libs"; then # Not a shared library if test pass_all != "$deplibs_check_method"; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. echo $ECHO "*** Warning: This system cannot link to static lib archive $lib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have." if test yes = "$module"; then echo "*** But as you try to build a module library, libtool will still create " echo "*** a static module, that should work as long as the dlopening application" echo "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test lib = "$linkmode"; then if test -n "$dependency_libs" && { test yes != "$hardcode_into_libs" || test yes = "$build_old_libs" || test yes = "$link_static"; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) func_append xrpath " $temp_xrpath";; esac;; *) func_append temp_deplibs " $libdir";; esac done dependency_libs=$temp_deplibs fi func_append newlib_search_path " $absdir" # Link against this library test no = "$link_static" && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" case $deplib in -L*) func_stripname '-L' '' "$deplib" func_resolve_sysroot "$func_stripname_result";; *) func_resolve_sysroot "$deplib" ;; esac if $opt_preserve_dup_deps; then case "$tmp_libs " in *" $func_resolve_sysroot_result "*) func_append specialdeplibs " $func_resolve_sysroot_result" ;; esac fi func_append tmp_libs " $func_resolve_sysroot_result" done if test no != "$link_all_deplibs"; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path=$deplib ;; *.la) func_resolve_sysroot "$deplib" deplib=$func_resolve_sysroot_result func_dirname "$deplib" "" "." dir=$func_dirname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir=$dir ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of '$dir'" absdir=$dir fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`$SED -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names"; then for tmp in $deplibrary_names; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl"; then depdepl=$absdir/$objdir/$depdepl darwin_install_name=`$OTOOL -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`$OTOOL64 -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi func_append compiler_flags " $wl-dylib_file $wl$darwin_install_name:$depdepl" func_append linker_flags " -dylib_file $darwin_install_name:$depdepl" path= fi fi ;; *) path=-L$absdir/$objdir ;; esac else eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "'$deplib' seems to be moved" path=-L$absdir fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test link = "$pass"; then if test prog = "$linkmode"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs=$newdependency_libs if test dlpreopen = "$pass"; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test dlopen != "$pass"; then test conv = "$pass" || { # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) func_append lib_search_path " $dir" ;; esac done newlib_search_path= } if test prog,link = "$linkmode,$pass"; then vars="compile_deplibs finalize_deplibs" else vars=deplibs fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) func_append tmp_libs " $deplib" ;; esac ;; *) func_append tmp_libs " $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Add Sun CC postdeps if required: test CXX = "$tagname" && { case $host_os in linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; solaris*) func_cc_basename "$CC" case $func_cc_basename_result in CC* | sunCC*) func_suncc_cstd_abi if test no != "$suncc_use_cstd_abi"; then func_append postdeps ' -library=Cstd -library=Crun' fi ;; esac ;; esac } # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i= ;; esac if test -n "$i"; then func_append tmp_libs " $i" fi done dependency_libs=$tmp_libs done # for pass if test prog = "$linkmode"; then dlfiles=$newdlfiles fi if test prog = "$linkmode" || test lib = "$linkmode"; then dlprefiles=$newdlprefiles fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "'-R' is ignored for archives" test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "'-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "'-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs=$output func_append objs "$old_deplibs" ;; lib) # Make sure we only generate libraries of the form 'libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test no = "$module" \ && func_fatal_help "libtool library '$output' must begin with 'lib'" if test no != "$need_lib_prefix"; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test pass_all != "$deplibs_check_method"; then func_fatal_error "cannot build libtool library '$output' from non-libtool objects on this host:$objs" else echo $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" func_append libobjs " $objs" fi fi test no = "$dlself" \ || func_warning "'-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test 1 -lt "$#" \ && func_warning "ignoring multiple '-rpath's for a libtool library" install_libdir=$1 oldlibs= if test -z "$rpath"; then if test yes = "$build_libtool_libs"; then # Building a libtool convenience library. # Some compilers have problems with a '.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "'-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "'-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs=$IFS; IFS=: set dummy $vinfo 0 0 0 shift IFS=$save_ifs test -n "$7" && \ func_fatal_help "too many parameters to '-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major=$1 number_minor=$2 number_revision=$3 # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # that has an extra 1 added just for fun # case $version_type in # correct linux to gnu/linux during the next big refactor darwin|freebsd-elf|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_revision ;; freebsd-aout|qnx|sunos) current=$number_major revision=$number_minor age=0 ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age=$number_minor revision=$number_minor lt_irix_increment=no ;; *) func_fatal_configuration "$modename: unknown library version type '$version_type'" ;; esac ;; no) current=$1 revision=$2 age=$3 ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT '$current' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION '$revision' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE '$age' must be a nonnegative integer" func_fatal_error "'$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE '$age' is greater than the current interface number '$current'" func_fatal_error "'$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" # On Darwin other compilers case $CC in nagfor*) verstring="$wl-compatibility_version $wl$minor_current $wl-current_version $wl$minor_current.$revision" ;; *) verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; esac ;; freebsd-aout) major=.$current versuffix=.$current.$revision ;; freebsd-elf) func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; irix | nonstopux) if test no = "$lt_irix_increment"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring=$verstring_prefix$major.$revision # Add in all the interfaces that we are compatible with. loop=$revision while test 0 -ne "$loop"; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring_prefix$major.$iface:$verstring done # Before this point, $major must not contain '.'. major=.$major versuffix=$major.$revision ;; linux) # correct to gnu/linux during the next big refactor func_arith $current - $age major=.$func_arith_result versuffix=$major.$age.$revision ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=.$current.$age.$revision verstring=$current.$age.$revision # Add in all the interfaces that we are compatible with. loop=$age while test 0 -ne "$loop"; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring=$verstring:$iface.0 done # Make executables depend on our current version. func_append verstring ":$current.0" ;; qnx) major=.$current versuffix=.$current ;; sco) major=.$current versuffix=.$current ;; sunos) major=.$current versuffix=.$current.$revision ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 file systems. func_arith $current - $age major=$func_arith_result versuffix=-$major ;; *) func_fatal_configuration "unknown library version type '$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring=0.0 ;; esac if test no = "$need_version"; then versuffix= else versuffix=.0.0 fi fi # Remove version info from name if versioning should be avoided if test yes,no = "$avoid_version,$need_version"; then major= versuffix= verstring= fi # Check to see if the archive will have undefined symbols. if test yes = "$allow_undefined"; then if test unsupported = "$allow_undefined_flag"; then if test yes = "$build_old_libs"; then func_warning "undefined symbols not allowed in $host shared libraries; building static only" build_libtool_libs=no else func_fatal_error "can't build $host shared library unless -no-undefined is specified" fi fi else # Don't allow undefined symbols. allow_undefined_flag=$no_undefined_flag fi fi func_generate_dlsyms "$libname" "$libname" : func_append libobjs " $symfileobj" test " " = "$libobjs" && libobjs= if test relink != "$opt_mode"; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/$libname$release.*) if test -n "$precious_files_regex"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi func_append removelist " $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test yes = "$build_old_libs" && test convenience != "$build_libtool_libs"; then func_append oldlibs " $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; $lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "$lib_search_path " | $SED "s% $path % %g"` # deplibs=`$ECHO "$deplibs " | $SED "s% -L$path % %g"` # dependency_libs=`$ECHO "$dependency_libs " | $SED "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do func_replace_sysroot "$libdir" func_append temp_xrpath " -R$func_replace_sysroot_result" case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done if test yes != "$hardcode_into_libs" || test yes = "$build_old_libs"; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles=$dlfiles dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) func_append dlfiles " $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles=$dlprefiles dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) func_append dlprefiles " $lib" ;; esac done if test yes = "$build_libtool_libs"; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc* | *-*-haiku*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework func_append deplibs " System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test yes = "$build_libtool_need_lc"; then func_append deplibs " -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release= versuffix= major= newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` $nocaseglob else potential_libs=`ls $i/$libnameglob[.-]* 2>/dev/null` fi for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib=$potent_lib while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | $SED 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib=$potliblink;; *) potlib=`$ECHO "$potlib" | $SED 's|[^/]*$||'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test yes = "$allow_libtool_libs_with_static_runtimes"; then case " $predeps $postdeps " in *" $a_deplib "*) func_append newdeplibs " $a_deplib" a_deplib= ;; esac fi if test -n "$a_deplib"; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib=$potent_lib # see symlink-check above in file_magic test if eval "\$ECHO \"$potent_lib\"" 2>/dev/null | $SED 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then func_append newdeplibs " $a_deplib" a_deplib= break 2 fi done done fi if test -n "$a_deplib"; then droppeddeps=yes echo $ECHO "*** Warning: linker path does not have real file for library $a_deplib." echo "*** I have the capability to make that library automatically link in when" echo "*** you link to this library. But I can only do this if you have a" echo "*** shared version of the library, which you do not appear to have" echo "*** because I did check the linker path looking for a file starting" if test -z "$potlib"; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. func_append newdeplibs " $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs= tmp_deplibs=`$ECHO " $deplibs" | $SED 's/ -lc$//; s/ -[LR][^ ]*//g'` if test yes = "$allow_libtool_libs_with_static_runtimes"; then for i in $predeps $postdeps; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO " $tmp_deplibs" | $SED "s|$i||"` done fi case $tmp_deplibs in *[!\ \ ]*) echo if test none = "$deplibs_check_method"; then echo "*** Warning: inter-library dependencies are not supported in this platform." else echo "*** Warning: inter-library dependencies are not known to be supported." fi echo "*** All declared inter-library dependencies are being dropped." droppeddeps=yes ;; esac ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO " $newdeplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac if test yes = "$droppeddeps"; then if test yes = "$module"; then echo echo "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" echo "*** a static module, that should work as long as the dlopening" echo "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then echo echo "*** However, this would only work if libtool was able to extract symbol" echo "*** lists from a program, using 'nm' or equivalent, but libtool could" echo "*** not find such a program. So, this module is probably useless." echo "*** 'nm' from GNU binutils and a full rebuild may help." fi if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else echo "*** The inter-library dependencies that have been dropped here will be" echo "*** automatically added whenever a program is linked with this library" echo "*** or is declared to -dlopen it." if test no = "$allow_undefined"; then echo echo "*** Since this library must not contain undefined symbols," echo "*** because either the platform does not support them or" echo "*** it was explicitly requested with -no-undefined," echo "*** libtool will only create a static version of it." if test no = "$build_old_libs"; then oldlibs=$output_objdir/$libname.$libext build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO " $newdeplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO " $new_inherited_linker_flags" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO " $deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done deplibs=$new_libs # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test yes = "$build_libtool_libs"; then # Remove $wl instances when linking with ld. # FIXME: should test the right _cmds variable. case $archive_cmds in *\$LD\ *) wl= ;; esac if test yes = "$hardcode_into_libs"; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath=$finalize_rpath test relink = "$opt_mode" || rpath=$compile_rpath$rpath for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then func_replace_sysroot "$libdir" libdir=$func_replace_sysroot_result if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append dep_rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval "dep_rpath=\"$hardcode_libdir_flag_spec\"" fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath=$finalize_shlibpath test relink = "$opt_mode" || shlibpath=$compile_shlibpath$shlibpath if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname=$1 shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname=$realname fi if test -z "$dlname"; then dlname=$soname fi lib=$output_objdir/$realname linknames= for link do func_append linknames " $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "$libobjs" | $SP2NL | $SED "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols=$output_objdir/$libname.uexp func_append delfiles " $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile func_dll_def_p "$export_symbols" || { # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols=$export_symbols export_symbols= always_export_symbols=yes } fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test yes = "$always_export_symbols" || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs=$IFS; IFS='~' for cmd1 in $cmds; do IFS=$save_ifs # Take the normal branch if the nm_file_list_spec branch # doesn't work or if tool conversion is not needed. case $nm_file_list_spec~$to_tool_file_cmd in *~func_convert_file_noop | *~func_convert_file_msys_to_w32 | ~*) try_normal_branch=yes eval cmd=\"$cmd1\" func_len " $cmd" len=$func_len_result ;; *) try_normal_branch=no ;; esac if test yes = "$try_normal_branch" \ && { test "$len" -lt "$max_cmd_len" \ || test "$max_cmd_len" -le -1; } then func_show_eval "$cmd" 'exit $?' skipped_export=false elif test -n "$nm_file_list_spec"; then func_basename "$output" output_la=$func_basename_result save_libobjs=$libobjs save_output=$output output=$output_objdir/$output_la.nm func_to_tool_file "$output" libobjs=$nm_file_list_spec$func_to_tool_file_result func_append delfiles " $output" func_verbose "creating $NM input file list: $output" for obj in $save_libobjs; do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > "$output" eval cmd=\"$cmd1\" func_show_eval "$cmd" 'exit $?' output=$save_output libobjs=$save_libobjs skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS=$save_ifs if test -n "$export_symbols_regex" && test : != "$skipped_export"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test : != "$skipped_export" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) func_append tmp_deplibs " $test_deplib" ;; esac done deplibs=$tmp_deplibs if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test yes = "$compiler_needs_object" && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $convenience func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test yes = "$thread_safe" && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" func_append linker_flags " $flag" fi # Make a backup of the uninstalled library when relinking if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test : != "$skipped_export" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output func_basename "$output" output_la=$func_basename_result # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test : != "$skipped_export" && test yes = "$with_gnu_ld"; then output=$output_objdir/$output_la.lnkscript func_verbose "creating GNU ld script: $output" echo 'INPUT (' > $output for obj in $save_libobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done echo ')' >> $output func_append delfiles " $output" func_to_tool_file "$output" output=$func_to_tool_file_result elif test -n "$save_libobjs" && test : != "$skipped_export" && test -n "$file_list_spec"; then output=$output_objdir/$output_la.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test yes = "$compiler_needs_object"; then firstobj="$1 " shift fi for obj do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" >> $output done func_append delfiles " $output" func_to_tool_file "$output" output=$firstobj\"$file_list_spec$func_to_tool_file_result\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-$k.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test -z "$objlist" || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test 1 -eq "$k"; then # The first file doesn't have a previous command to add. reload_objs=$objlist eval concat_cmds=\"$reload_cmds\" else # All subsequent reloadable object files will link in # the last one created. reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds~$reload_cmds~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-$k.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-$k.$objext objlist=" $obj" func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ reload_objs="$objlist $last_robj" eval concat_cmds=\"\$concat_cmds$reload_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi func_append delfiles " $output" else output= fi ${skipped_export-false} && { func_verbose "generating symbol list for '$libname.la'" export_symbols=$output_objdir/$libname.exp $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi } test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs=$IFS; IFS='~' for cmd in $concat_cmds; do IFS=$save_ifs $opt_quiet || { func_quote_arg expand,pretty "$cmd" eval "func_echo $func_quote_arg_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi ${skipped_export-false} && { if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols=$export_symbols test -n "$orig_export_symbols" && tmp_export_symbols=$orig_export_symbols $opt_dry_run || eval '$ECHO "$include_expsyms" | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for '$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands, which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter func_append delfiles " $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi } libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test yes = "$module" && test -n "$module_cmds"; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append libobjs " $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs=$IFS; IFS='~' for cmd in $cmds; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs $opt_quiet || { func_quote_arg expand,pretty "$cmd" eval "func_echo $func_quote_arg_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test relink = "$opt_mode"; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS=$save_ifs # Restore the uninstalled library and exit if test relink = "$opt_mode"; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test yes = "$module" || test yes = "$export_dynamic"; then # On all known operating systems, these are identical. dlname=$soname fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then func_warning "'-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "'-l' and '-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "'-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "'-R' is ignored for objects" test -n "$vinfo" && \ func_warning "'-version-info' is ignored for objects" test -n "$release" && \ func_warning "'-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object '$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj=$output ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # if reload_cmds runs $LD directly, get rid of -Wl from # whole_archive_flag_spec and hope we can get by with turning comma # into space. case $reload_cmds in *\$LD[\ \$]*) wl= ;; esac if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" test -n "$wl" || tmp_whole_archive_flags=`$ECHO "$tmp_whole_archive_flags" | $SED 's|,| |g'` reload_conv_objs=$reload_objs\ $tmp_whole_archive_flags else gentop=$output_objdir/${obj}x func_append generated " $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # If we're not building shared, we need to use non_pic_objs test yes = "$build_libtool_libs" || libobjs=$non_pic_objects # Create the old-style object. reload_objs=$objs$old_deplibs' '`$ECHO "$libobjs" | $SP2NL | $SED "/\.$libext$/d; /\.lib$/d; $lo2o" | $NL2SP`' '$reload_conv_objs output=$obj func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi test yes = "$build_libtool_libs" || { if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS } if test -n "$pic_flag" || test default != "$pic_mode"; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output=$libobj func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "'-version-info' is ignored for programs" test -n "$release" && \ func_warning "'-release' is ignored for programs" $preload \ && test unknown,unknown,unknown = "$dlopen_support,$dlopen_self,$dlopen_self_static" \ && func_warning "'LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test CXX = "$tagname"; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) func_append compile_command " $wl-bind_at_load" func_append finalize_command " $wl-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO " $compile_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO " $finalize_deplibs" | $SED 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) func_append new_libs " -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) func_append new_libs " $deplib" ;; esac ;; *) func_append new_libs " $deplib" ;; esac done compile_deplibs=$new_libs func_append compile_command " $compile_deplibs" func_append finalize_command " $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) func_append finalize_rpath " $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) func_append perm_rpath " $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$libdir" | $SED -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) func_append dllsearchpath ":$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath=$rpath rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs=$libdir else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) func_append hardcode_libdirs "$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" func_append rpath " $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) func_append finalize_perm_rpath " $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir=$hardcode_libdirs eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath=$rpath if test -n "$libobjs" && test yes = "$build_old_libs"; then # Transform all the library objects into standard objects. compile_command=`$ECHO "$compile_command" | $SP2NL | $SED "$lo2o" | $NL2SP` finalize_command=`$ECHO "$finalize_command" | $SP2NL | $SED "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" false # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=: case $host in *cegcc* | *mingw32ce*) # Disable wrappers for cegcc and mingw32ce hosts, we are cross compiling anyway. wrappers_required=false ;; *cygwin* | *mingw* ) test yes = "$build_libtool_libs" || wrappers_required=false ;; *) if test no = "$need_relink" || test yes != "$build_libtool_libs"; then wrappers_required=false fi ;; esac $wrappers_required || { # Replace the output file specification. compile_command=`$ECHO "$compile_command" | $SED 's%@OUTPUT@%'"$output"'%g'` link_command=$compile_command$compile_rpath # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Delete the generated files. if test -f "$output_objdir/${outputname}S.$objext"; then func_show_eval '$RM "$output_objdir/${outputname}S.$objext"' fi exit $exit_status } if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do func_append rpath "$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do func_append rpath "$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test yes = "$no_install"; then # We don't need to create a wrapper script. link_command=$compile_var$compile_command$compile_rpath # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi exit $EXIT_SUCCESS fi case $hardcode_action,$fast_install in relink,*) # Fast installation is not supported link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath func_warning "this platform does not like uninstalled shared libraries" func_warning "'$output' will be relinked during installation" ;; *,yes) link_command=$finalize_var$compile_command$finalize_rpath relink_command=`$ECHO "$compile_var$compile_command$compile_rpath" | $SED 's%@OUTPUT@%\$progdir/\$file%g'` ;; *,no) link_command=$compile_var$compile_command$compile_rpath relink_command=$finalize_var$finalize_command$finalize_rpath ;; *,needless) link_command=$finalize_var$compile_command$finalize_rpath relink_command= ;; esac # Replace the output file specification. link_command=`$ECHO "$link_command" | $SED 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' if test -n "$postlink_cmds"; then func_to_tool_file "$output_objdir/$outputname" postlink_cmds=`func_echo_all "$postlink_cmds" | $SED -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g' -e 's%@TOOL_OUTPUT@%'"$func_to_tool_file_result"'%g'` func_execute_cmds "$postlink_cmds" 'exit $?' fi # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_arg pretty "$var_value" relink_command="$var=$func_quote_arg_result; export $var; $relink_command" fi done func_quote_arg pretty,unquoted "(cd `pwd`; $relink_command)" relink_command=$func_quote_arg_unquoted_result fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource=$output_path/$objdir/lt-$output_name.c cwrapper=$output_path/$output_name.exe $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host"; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do case $build_libtool_libs in convenience) oldobjs="$libobjs_save $symfileobj" addlibs=$convenience build_libtool_libs=no ;; module) oldobjs=$libobjs_save addlibs=$old_convenience build_libtool_libs=no ;; *) oldobjs="$old_deplibs $non_pic_objects" $preload && test -f "$symfileobj" \ && func_append oldobjs " $symfileobj" addlibs=$old_convenience ;; esac if test -n "$addlibs"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $addlibs func_append oldobjs " $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test yes = "$build_libtool_libs"; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_extract_archives $gentop $dlprefiles func_append oldobjs " $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else echo "copying selected object files to avoid basename conflicts..." gentop=$output_objdir/${outputname}x func_append generated " $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase=$func_basename_result case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" func_append oldobjs " $gentop/$newobj" ;; *) func_append oldobjs " $obj" ;; esac done fi func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds elif test -n "$archiver_list_spec"; then func_verbose "using command file archive linking..." for obj in $oldobjs do func_to_tool_file "$obj" $ECHO "$func_to_tool_file_result" done > $output_objdir/$libname.libcmd func_to_tool_file "$output_objdir/$libname.libcmd" oldobjs=" $archiver_list_spec$func_to_tool_file_result" cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj"; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test -z "$oldobjs"; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test yes = "$build_old_libs" && old_library=$libname.$libext func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_arg pretty,unquoted "$var_value" relink_command="$var=$func_quote_arg_unquoted_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL \"$progpath\" $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" func_quote_arg pretty,unquoted "$relink_command" relink_command=$func_quote_arg_unquoted_result if test yes = "$hardcode_automatic"; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test yes = "$installed"; then if test -z "$install_libdir"; then break fi output=$output_objdir/${outputname}i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name=$func_basename_result func_resolve_sysroot "$deplib" eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $func_resolve_sysroot_result` test -z "$libdir" && \ func_fatal_error "'$deplib' is not a valid libtool archive" func_append newdependency_libs " ${lt_sysroot:+=}$libdir/$name" ;; -L*) func_stripname -L '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -L$func_replace_sysroot_result" ;; -R*) func_stripname -R '' "$deplib" func_replace_sysroot "$func_stripname_result" func_append newdependency_libs " -R$func_replace_sysroot_result" ;; *) func_append newdependency_libs " $deplib" ;; esac done dependency_libs=$newdependency_libs newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlfiles " ${lt_sysroot:+=}$libdir/$name" ;; *) func_append newdlfiles " $lib" ;; esac done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name=$func_basename_result eval libdir=`$SED -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "'$lib' is not a valid libtool archive" func_append newdlprefiles " ${lt_sysroot:+=}$libdir/$name" ;; esac done dlprefiles=$newdlprefiles else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlfiles " $abs" done dlfiles=$newdlfiles newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs=$lib ;; *) abs=`pwd`"/$lib" ;; esac func_append newdlprefiles " $abs" done dlprefiles=$newdlprefiles fi $RM $output # place dlname in correct position for cygwin # In fact, it would be nice if we could use this code for all target # systems that can't hard-code library paths into their executables # and that have no shared library path variable independent of PATH, # but it turns out we can't easily determine that from inspecting # libtool variables, so we have to hard-code the OSs to which it # applies here; at the moment, that means platforms that use the PE # object format with DLL files. See the long comment at the top of # tests/bindir.at for full details. tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) # If a -bindir argument was supplied, place the dll there. if test -n "$bindir"; then func_relative_path "$install_libdir" "$bindir" tdlname=$func_relative_path_result/$dlname else # Otherwise fall back on heuristic. tdlname=../bin/$dlname fi ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that cannot go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test no,yes = "$installed,$need_relink"; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } if test link = "$opt_mode" || test relink = "$opt_mode"; then func_mode_link ${1+"$@"} fi # func_mode_uninstall arg... func_mode_uninstall () { $debug_cmd RM=$nonopt files= rmforce=false exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic for arg do case $arg in -f) func_append RM " $arg"; rmforce=: ;; -*) func_append RM " $arg" ;; *) func_append files " $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= for file in $files; do func_dirname "$file" "" "." dir=$func_dirname_result if test . = "$dir"; then odir=$objdir else odir=$dir/$objdir fi func_basename "$file" name=$func_basename_result test uninstall = "$opt_mode" && odir=$dir # Remember odir for removal later, being careful to avoid duplicates if test clean = "$opt_mode"; then case " $rmdirs " in *" $odir "*) ;; *) func_append rmdirs " $odir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif $rmforce; then continue fi rmfiles=$file case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do func_append rmfiles " $odir/$n" done test -n "$old_library" && func_append rmfiles " $odir/$old_library" case $opt_mode in clean) case " $library_names " in *" $dlname "*) ;; *) test -n "$dlname" && func_append rmfiles " $odir/$dlname" ;; esac test -n "$libdir" && func_append rmfiles " $odir/$name $odir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" '$rmforce || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" '$rmforce || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test none != "$pic_object"; then func_append rmfiles " $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test none != "$non_pic_object"; then func_append rmfiles " $dir/$non_pic_object" fi fi ;; *) if test clean = "$opt_mode"; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe func_append rmfiles " $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result func_append rmfiles " $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles func_append rmfiles " $odir/$name $odir/${name}S.$objext" if test yes = "$fast_install" && test -n "$relink_command"; then func_append rmfiles " $odir/lt-$name" fi if test "X$noexename" != "X$name"; then func_append rmfiles " $odir/lt-$noexename.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done # Try to remove the $objdir's in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } if test uninstall = "$opt_mode" || test clean = "$opt_mode"; then func_mode_uninstall ${1+"$@"} fi test -z "$opt_mode" && { help=$generic_help func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode '$opt_mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # where we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: fxt-0.3.15/PaxHeaders/COPYING0000644000000000000000000000007410271436740012523 xustar0030 atime=1746715490.257509348 30 ctime=1746716504.659063352 fxt-0.3.15/COPYING0000644000175000017500000004307710271436740012217 0ustar00samysamy GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 675 Mass Ave, Cambridge, MA 02139, USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS Appendix: How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy 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., 675 Mass Ave, Cambridge, MA 02139, USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. fxt-0.3.15/PaxHeaders/doc0000644000000000000000000000013215007143530012145 xustar0030 mtime=1746716504.792098724 30 atime=1746716504.802098769 30 ctime=1746716504.792098724 fxt-0.3.15/doc/0002755000175000017500000000000015007143530011712 5ustar00samysamyfxt-0.3.15/doc/PaxHeaders/FxT.bib0000644000000000000000000000007410271436740013414 xustar0030 atime=1746715490.257509348 30 ctime=1746716504.793403156 fxt-0.3.15/doc/FxT.bib0000644000175000017500000000133710271436740013101 0ustar00samysamy@Article{ DanWac05TSI, Author = {Vincent Danjean and Pierre-André Wacrenier}, Title = {{M}écanismes de traces efficaces pour programmes multithreadés}, Journal = {TSI}, Year = 2005, Note = {\url{http://dept-info.labri.fr/\~danjean/publications.html\#DanWac05TSI}}, optkey = {}, optvolume = {}, optnumber = {}, optpages = {}, optmonth = {}, optannote = {}, } @Techreport{Fkt, Author = {Samuel Thibault and Robert D. Russell}, Title = { Developing a software tool for precise kernel measurements }, Institution = {{ENS} {Lyon}}, Year = 2003, Note = {\url{http://dept-info.labri.fr/\~thibault/recherche.html.fr}}, } fxt-0.3.15/doc/PaxHeaders/Makefile.am0000644000000000000000000000013013512105462014255 xustar0029 mtime=1562938162.98674024 30 atime=1746715490.257509348 29 ctime=1746716504.78745047 fxt-0.3.15/doc/Makefile.am0000644000175000017500000000167113512105462013752 0ustar00samysamy pkgdocdir = $(docdir)/@PACKAGE@ if LATEX if EPSTOPDF dist_pkgdoc_DATA = manuel.pdf LOCAL_TEXSOURCES=manuel.tex paje.eps FxT.bib doc: manuel.pdf # See # http://www.gnu.org/software/automake/manual/html_node/distcleancheck.html#distcleancheck # for explications manuel.pdf: $(LOCAL_TEXSOURCES) $(MAKE) $(AM_MAKEFLAGS) paje.pdf for f in $(LOCAL_TEXSOURCES) ; do \ test -f $$f || $(LN_S) $(srcdir)/$$f $$f ; \ done -MAKEFILES=LaTeX.mk $(MAKE) -f /dev/null MAKE="$(MAKE) -f /dev/null" $@ touch $@ paje.pdf: paje.eps epstopdf --outfile=$@ $< CLEANFILES=paje.pdf DISTCLEANFILES=$(dist_doc_DATA) clean-local: clean-latex distclean distclean-generic: distclean-latex clean-latex distclean-latex:: %-latex: -MAKEFILES=LaTeX.mk $(MAKE) -f /dev/null MAKE="$(MAKE) -f /dev/null" $* distclean-latex:: for f in $(LOCAL_TEXSOURCES) ; do \ if test -h "$$f" ; then $(RM) "$$f" ; fi ; \ done EXTRA_DIST = manuel.tex paje.eps FxT.bib endif endif fxt-0.3.15/doc/PaxHeaders/manuel.pdf0000644000000000000000000000013113733342500014177 xustar0030 mtime=1601029440.567692092 30 atime=1746715490.257509348 29 ctime=1746716504.78859668 fxt-0.3.15/doc/manuel.pdf0000644000175000017500000157475413733342500013715 0ustar00samysamy%PDF-1.5 %ÐÔÅØ 73 0 obj << /Length 274 /Filter /FlateDecode >> stream xÚ…‘MOÃ0 †ïû¾‘j'NÒ+‚!!q‹âPXAC|iÝþ?vº $8$uœ×Ï븞ÁÁåÂýó=«‹ÓeH@S"†ú{Œ‰}Fï{¨+¸3K›‹¬7ÓÖvÁySmîÍF3ãdïëÕŒ‰˜Kö #‚.,£îÛÎ;@Çhïuû® /?Tõ¨’>ÉsTU—R(b1Å<+¯µËwKÙìF‰^ç¬$<‘µ“µ]k^·ihÇVÑ "ƒ÷Ø3S{UBÇ‚Òtšñ7ë&ÖAˆI1: bs.™aó2 ÔbˆÐ‘Ì¥§™@rÉZ•̤~j¼)ïA‚Í8CÉÉA6ýú•uñZ¹oÍ endstream endobj 98 0 obj << /Length 880 /Filter /FlateDecode >> stream xÚíXKo1¾÷WìÑ{X×3~¬}©­!UUàR iZ"òb“ úïñ³ÙM¶éjK¡•¸xÇë™ùÆßçñ²ì&cÙÙ‹Ï׃£ãSe2´Ô%dƒë l_3Ì**Pgƒ«ì’ rÍÉ0òuj›q^pŽäjlû+×çdf»Ãõ$M>1Ä\Øùîï*ÌùÉøªg~ÿUD— ¨CǾ-«¸rJÁ9”é+Pý“ÁÑoh¡ã„ endstream endobj 109 0 obj << /Length 2169 /Filter /FlateDecode >> stream xÚY[¯Û6~?¿Âo±˜+^t{Ü-Ú¢Û-'ÀI (²Nâ–½’}üûÎ")é$é>K"‡Ã™á|sáÉ66ÙæÇ‡Lžÿz|øÇE½1™* “oŸ6Ú8UefSX­\Vo›·Ûï>îô¶¹ÂÏñ?C·Û[k¶z÷ûã¿™SeUjdmö®V•¶¼ô·a§«í»Ìث춃å#þô;SmoÍíï—žU›ZÕ…)H§jç6û\ƒ8óúçˆÿ¼à/pÝ^ÁÏGäsG.¯w{SÔ[|=ñ+mvãw’{gjÅì\i¶ÝÈ3T þÞeºhyµ†¥<‡[\Þ{¡‡gÜ­pž·À@èÛËù*Òu=Š8„9àïzúÔÛsÇúó m(Ò\ñ[èí­²Ù{Kh­êäô?œæ3¢‰Fx Y¬{ò´g¡9Ès&åÈ£“†~ÏQœNÄ—Åú¥ÕÆ{ ¹À§ È»,Ïhãƒ?±¾é'Ÿ˜iÞ²K1ªèøìy&dœ"‹ï{yyF2ûþ‰§‹9KFùHÂbÉÙáË“Ì4w–§¿à’ψ(Zº>ŽS®´é)ýB`…"a6 €Ààîÿ猯³4‹À7Ed~í|Zê(ß½57ÎÂë™<ŸJ„‘G$£%fæA›Í‚¬š>|D[·Q°¡cª ÖºŠ6ãί=‘ó)6™ ±×wíMRÇÜÍÃÙs&ð-Ê móB‹áõÜpm—d÷!̯·?”¨°ï¡j¤™;‘§tãúãÔ²!£;G _l}#Fß¼€Ñ²ZǨÓõöÍ8”¾wäí_Âf™©ZQá]¡'\×gH³¯Ø_“v<yñ3e¡Z_Í;VYcfò,J[>ø¹jI¥a”4LIeÓR¢Š‡?^Øjä¥&Ó*Ëí¼Ä£öâËÞi°•KžÁ¬O*ð N‡äFxôN[ðǸ$?§†‹€ørók`+F¼‡"k*:WË)Š·0sä #ÑExqa‚‘)-ä‘÷+ɵý}S*õjQO¸‹©›Áñ‹Ï›ˆ(Ñ­Èi\úRn•1“o¿éyMO¡˜–H‡S/U=Ï[þè£6²ª&—zd ð= 5Z"‚_V ¸ùñ¡¸’ ’ƒ\T´JŽ9©úa°_Œ ËP)«åV` ⪂>0 , Ö@\ª<ä»õâÑ(WÔ¯xT,œø4Ëû4Ž$]œjQ>»r8*ÏÍQŽ™PȦªQW¾£âF8×÷«´Æàs¥[ârÀ“ÕþÒGî†pdv0ý<;‡µSW†ïÞ—¨„íVRJfMém5 ü®»\œ‰}$×/çW*«§c›A¾¦ë¼W_^É"(©3 ¬MTo›Ê,ªµj5:D±ÅëJ¶NýÝ_¶¹Ìz‹PAŠß×aªW¨ÓÇ)N¾f n—Æõå¡Ûl<4\"â蔇l(œ\æBó‹®çˆèk—BŽ]éFcH÷DŽšçEwpŸ5ŠIB¡œM–7'¾Üãß¹’;Gµ&ÎäùM±Å0g'GÆ÷(RñÙÄxšîHèópçiŠˆèè(zŸVÂÉÌF¿í ´6rZ,TU@Ý¡*@‡¿²±ì\™Êtin­}áõ<ßàÅôjZ{ö‰Õm¦Sõi´Ýhx#Lƒ£>¥‚n¬?F1!)GC ÚM›ÝæšRšk¨*!ï!ÚÖÚ–Ró+·1RB°?ÜEä&ÜÆŽqå«£ÓL¯Ñ‘ƃ××Âü‰hÚdE¿¼*:†{ŽÁ[1`·vÛQ[UÙ¯g¬BîË×°^œ˜4ö[æz\‘âþ–­‹,2šYÁù´â׸H´ðý…zÈÀñÑyü¿þçLJÍ[Íÿšþ¹Bþî=" jE»#•ñŸ^¬ŒIh¾|ø Ÿ¨m  endstream endobj 120 0 obj << /Length 2357 /Filter /FlateDecode >> stream xÚ¥Ymã¶þ~¿ÂßVÎ<‘zO¿5ém6Mø€½ÐÚZŸ®²åHÖâš_Ÿy#E½lº·ÅÂ+š’ÃáÙgÆáæ´ 7ß¿ åùçý›wïÓbcB•¦&Ùì7ÚÄ*Í&´ŠÃb³?nþ|ûi«ƒò ÿêüëªí.ŠL`¶ÿÚÿ'ˆU–g'7»¸P¹Žxè_/0 ÇQeÓàlÖíÅ Õ±ŠâÔÈÐ$ƒ‰d¨Q ª·;†aðËVçÁÇÐDÛ8‚ꯆë´5ƒ¬®Võc»=Õ8ªÆnüÞ³ ù¦PEjRÚ|¬Š8ÞìŒä¬Å{Ë6©*²(G1Ø,Xhg”Ž ýc9W¤t†eöÛII%ܰGT¦¿â— ECÕðgá~àý pSñ³¯i”Eá,áO¥›”›¿|ÇšþÆ`g‰×¤É'™?x¨ßÀç|P»>Oò¼ÈÛ8NÉ÷Vž'yò®%…¹ÿÌßIÿgRZY»™Gøü‡úxC Ω9M©¤HíŠnvQª"Ñ›ÖðLùÝÏ[“í@0Hƒ‡­)$™ ªËôëÇPÇ¢Qí°“’ÖM%h¹`ãŒ#s<8|ä#Âæ >t”Ááë× g,·&ûÃjóq¹~T­kOhÓò|ö^à ÜjÁ«\¨ìÏA‡²ƒ¥I‚ZÏfÕ`Ö(«&¬\35܉¬…óÅ&n²ä¸4tuú·,÷„;ky!舂ÒJT¿A‡N¼Ceæ'ŒÁÐOó@¦ê[:î;Þ /•·–(ÉJµ^´›îÏÞ.Ÿ*È+9¯Ð?0«ü‚`ðG<‚n'H”w›*²ÉÒÏ€ƒL;žLÝÓ]Áã`GŸ‡Æ¢Ì8GEQàw¿ÂFeàª_à :kRy‹åã]ðîûQúKóEdjßI»”þGé{'s–òý ó4ôîüAAfáÂT%óS¸¿³zô²?Y`$‘»ÕÐ|Íöܾ¬à…nÌh|.Ï«û€DWxr‰!ŽÏK‹oþ‹˜+ÙqÒÀ×*úao¯-‡/óÕ‘â<ã§›µG92‘¾¾èZLî$AºŸl=’-÷Ü>κ—–°Á™…8šŒöPÏPƒÈ¨4.!Ê'AÍd@NÐDzd‘+]&¶úDÆ?IU”Î\€ ^¼áÂÏYüw²å¶îÆ S^å팈=<n®µx•½uæ3lÇJN˜ð±ÃPÂ.†yÂè Æq; T —ÍãÿÞzé›Ulg¡»I° ³MÀ{žbçÏ­¥$oG ‘ixS’#>…j?X†;tãhW²UZ›‚µAwB»~ÚEf/—þÃÅR¥LÍüƒ…µP_¸}%ÓÉyìÛ‘=YÄþ¢öâ×Ì3¢H¨[LæQ«Ác:¥e6f­9(¾ŽèGìúqw¥]¿sd= ,ÔòàÓgöð(4­Þ“¡~&L“–÷äc˜„Â䈷ÃwÍ ­Ü ðvEê¢Ã˜fÅ¡F¿B“Æ¡ Î娮׽ Ç™e93áK {%âa“µMƒ*Qbqv~BãPJ)‹ :4;’jˆÄÐó œ ™Ã÷“eåeÓdAl¾`w좶‹®&dþíD!9+± E¾Ðvë[~cMåO~êÊ3çSN„¬àL@BbªÇñÖß°¤Ø~­‚˜)›€ظÓüuýà„$93šfR[c˜þ¯dLQ®L–ŽÎPÊ[-ŠuW¥¢P½§â #×­ #8@£[@˜JID6&i* ÿo'„‹Mö´Ž\èx¾ÆÚÏ"U!–i¶ÙžGe#yuž„ ô46\Àõ§Sëlêv|Α ûU!u9­x¢ÿ¯$×»@{ð:Úë)4eJl©‹Ùë–¼Ò‹çy?$ :³¼cP¼˜ºZËbO4qÙpbƒ©þ²TÕß$»#üèŽän.²‚=2É9e‹©Ð”¾± Ź' k"†~IäT6ó}6ïÂÀÚØŠB7Æ`pøyn%a¡o‚[r„ž¦Ägj]ޏ‹Š_ž¦wa†vkTñvÄüqª{›<Ùi§é¡¼‘ˆo„ø2¶*ç±ÌÝtѧy­of-[àš¹ï1‰GéxyîX”›1Ë…vOñú*þ¸q[µ|!×\Ýíüp=õ|ðŸX´nøI°ŽŽ ÑReÓZŽ–ë‘íåì-ÛÎá×.|æÂß`ë(4d·¶s_¹ú› šÄßߣ*:ð;Ê/Â0ŽXº¦}ge¸6sôt<Ð1&¿ØjÉÙ'…²‚;‹F„g÷D¨†r»[qÕÎ,oŸ¿eç²¶¾+÷¼d­K\c7•ˆ¢|ÔøB@= 2«¸žèØÃéNÛ{oÝ~>ÞáÇÖê¬Ãàßc Äãü¹‚£èFÉó\§^ñ–¾³Ë\ªw+@;Pú)¸§ëëÜ2R )ÊCñ Ç”¬ç7¥I½W‚v;ð¾Ñž¶ÂÄëå^)˜\2ÄÓ£¼^åõ…į'ösYo¬IŸûÑe&õNë ¬Eó‚üLÜ€u{Ñ´¤Ôÿ:+(ȘI ´bëÿ¾·,S.üCâ…W®ð#*dü›§EšároëPLµ€ Ý&¡-ŒáàuQÙžsª½Vo+ðx‹ÔÀ´Š3í+Ïý5µD«dœ¨ñRr[_)‰D±JƬ_î,gͦN›Lý²WÊ¥_\‚¨&¥ó L¢ U…ÊsáDÑDæ/û7¿t  endstream endobj 126 0 obj << /Length 2928 /Filter /FlateDecode >> stream xÚ½ZÛŽÛF}÷WèÍ`õ4»yÍK€uâÀ›ì®‘  ÄëMqÆJt‹(Nì|ýÖ­›Ý$Gc$›}ЈêkuuÕ©SÅÑ‹û…^|óLË÷_nŸÝ¼Ê«E¥ªÜä‹Û»EbRUj³(t®S-n7‹—F­ÖÖšåëÃ*Yv—z_øiásæ®]ßvy‚¦ú .[@÷«¤X¾ÕÆ®ÒÒҬäçl?ý0o#߯ éÛÛÕ¿oÿzóª …MU•¦‹µ±*)s–õ ÊV7¸Èoðgý°2åòØw²bMG`YwÃNgÅò†ä9­Ö¦`É.ðç¸[ž‹+rE`iXäâD&i‹E®ªÂ–$miU¥KW%©aiÿ5=ž¥Zcnòwæ¾añðâÖI•¨¿”Ñ ÏD!7«uf,©ð#|nás3Ý4U™¶<™§þ ÏG*ØàÉßê$e•ò±ÂS­t™L~b ŸŸE-wx¯½(øòØ |ÿýT¨2Q6KÜÂx!9Ü$œÎhÎ'ñ¼ÝH'K÷iV<ôÜÚÉõéœqâÅYt³¥àuž¥¬¢ ¬‚%hɺ½IÈБ=¬ñ4 O›+¸üu’¨*E¡k¹N³œ5Óás±ì޽ØYÓ²¡bë¦ç‘‡#Nû„rÖ½èKGΛ(°QØw[ܪÿ8U¬)UbS7îoR;v[Þ”ÚrçŽn•VÎ/x,›Å B8p¡»†á‚¾­Ýz-ÞEWû“~Ywi¥²,åe,ë[i¹ºÃFDÎdù\E–9Ym–>"+ö´è us‘뇖ÍðHÓØ†ÆXùÔÄVÄë ˜È¿;²^yKWé0åxÁß;ŸxÁã¼à©o× TA×éìý±A >´¤$k§sWx<€¢ò¶µÍÓåw¨|›‹“BœÒåΟgryn#BFl¯CÆuG„y¶u’åãÉöÈ=§¢<ˆI°·t}p M°â»×sÊ™xïÙ 6ƒi‰2¥÷39™´GÂz’õ>ø¹_ùÏÄ+£tîAsC˜ 1j7Ĥ«èsž ”“¨S*µöw˜!A›"V¥ðÚ›=8Ÿ) fø,AÃ#À–š.ûïã‹;Äç _rð n‡íÃ&ZSæ¤%'cÍ@ þÀ=ˆ¹8)v{Œ„àX"Ëd¦,iÙç¸4.³iŠ1E Õ·h„sydÇ=zE}ºQ¨—{X ;‚ỿøbh•¦IL öQ&‚àÑ_ì«–‹Ý‰-ßÉðËÔxÖs[¼D­6€ŽÆÀ÷ñÞ?*̘ÁVàùŠ­Lã\…Þ;c‡À ­1C”£•ŽXOUx~;ªvÞ[“LU6D›yãäXàN2U¤¥[ v!^ ãFÎkáSÂ'—¶Ÿ=Åæ«iå:n¢ëH–ÿ  §&¯æ!üü0w àVÕX91¡´‚vìúÎL‘¥ö»‘¶1TŽåU$ï+¡òšH¹2‰ð¹ÚaÂ9Ù-‡üF{j/3ÛÁ¹ƒ[ûÜýÖÛ˜ànß’ ¦nqŒÓiì²!NVàWÓÊÃÈÊ®žáï˜ÃLD¸Ò\,9ˆˆµ'®’Í#Ôˆ(§ÏAK ~ñø %âxãûÙÄh3£‹>¨`™SЃ£¦ftxèåì=²bâµö|¡4è+GãñGÓÊ76ʲq•àiåg;a‰HºZðĶç(R¼T"Én2âÑóÎí5£ †.àììë(¦ðÎÚ†í]`oêKÈ”aËÅL•>’öcO+º¬Ò@Áäútrþï@zàìÕȃ+Ÿ#ããÞW,7|'è÷ýÙî3­r8²^œ'åñûož-~¤ñý1‰UzÄÎzÇ{½Ú¤–㨾/ƒ†âz \ûëfœG2/íÂmX˜l$kênà£Q™ä0À)dk6*Ð:–rñ0¤¶å­ÙMú/$it޼|\»Ýó墣׾NÚ9TÝQI¹#&ÙîV MÁƒëÅÝ,Ž,©öÙY!üž"y”lM:ÐÒÎ]F=¬ä iþv–;»‰G¶Ý VËãÌñ7ƒ)vmH­ß#tߟ0'H_hóÒQesÛ½wa¦»ž>Ÿj™A×Ïñ4ëä<‚ºa­c›×‰¿™vï4I­f°$+T™xüRùriýÒhe·el¤þްÀO¬Šex’D¡\ÚÍl…““²d1Ï£|ðAzj’E¥2ë3à°¤ck e³,†WL+P#Gd1—­ØHZ1wfŒ=ÉÓ/®–“}!†?RU…)EâcPpKó40¥‡Ø²cÊä·¡.òœûí`"Ñ䎅;´ü=¤^Ìn.ΰÕ¼ÇK‚`×MÓãX_ïpVRjèÏ1^ºÀäS ¶ç&A÷#.1b0Þ% ´Äeaöpzìàr¯¼® ià”4>xÍ…?ƒ787ôLR@ñ*…\øqC9ÙK‚¢æÜ»Fq«ÇY¯éŽyH»Ôþ¤ó ËÒÀ`ŸqfH`h¤Ò.…n?ñ,Õ|lˆWÍuæ¦hÄø¬£²â™}i–º0åÞçsÈÜ›¡!úíkï¿C™ßżÂåÙ!É¡§^3©Ñ”&¡>·uåø“÷o?é¶:´07Ürü’ {úš{`÷æ¹+ë¸ñÜq¿Ü#È"p¦D;|ô©>­èÆ5ü[\¼s¹¿_çÀlf¦>5g÷ßÂà¯áó=|þ.¥±mhدáóêŸ+ •ÖW£7UF~G?Os%B6X”Êê"|q—|ôŽE°\qVM÷zæ‘ýJF{™íªxD—<<¸ú’.•.«'ü&,OtOT®»ßQ¿0‰Ò‰ùC¥ëkµ‹py¸ê,[þD ¢²4I|Ž“&F¸Sm'ÜX3pý&šÄÏ! gø×¾ð|-´c)Õ>QKÖ`?&¶£sT³ž.«UYšëõ`]xoø5¸–‹Küfýü[©_ãjFÀäÞQT|ï)66£൩IŸÚ© •¼“ð ¿Ês´ÃÄ[P›F%Uõ‡+|ªÏ«ðÍy‰ŸÉKÂ$“ÈÀ©‹`§Kñ‡û‡Ëþ¶å€D]·˜&¼¹yýfU¦HX°í«¡8l§®…©`džü1æÒ6 ³~ÿ~P¦(jeŠ$N+1 ‚ÉÝùj°÷ìQ­&H¹ïqw~\= î!é†:6×àŸ3+š¡ícÊä“òi:f¬U•ñ®ßHpº›«@$…Ò6wC¿ür&[2ª0v.˜ŽÞ+œêûvf‡Ô¨¬¬®íP…EWWExò¥¬NñÇÿÐiØòø</ŠÖòZU‰Ì²"H¡å ÃøXËùÏ8f‡“Q—«ÊˆStÚñû½n«'€hÁgL£ _ß>û/äM‹ endstream endobj 133 0 obj << /Length 2120 /Filter /FlateDecode >> stream xÚÍZKsã6¾ûWð©j“ŸÇÍVœJ¶¶*3ñ-“uq$Z£$rHÑ“©üùt7ºIð¡±ì([{€EFèþúAûÞÖó½ïoüþ~{s{—d^¦²XÇÞý£ľ2ÚKüHAÿýÆûe‘/ƒE m í#´[h;hZ -æ>/¡¡=2Íšâçãò×û'"ÀŸU¨,Š^¶Ú¿Î®xÍU6Ð æþ÷¯ö¯Vó*ø¼ç±CË‘`Oï—Hqî·w©«.¡ÊÂ׉e·«(ZüO«=É|˜æ;óLZ¦!͸Ã˼g2‡J'J'‰Påíre²xÑ|êæ´ÔÙ⽯õ2Lô¢8ÐB0žðÑ#]Ù¡’ä'ÞVyT–×wtmÞLXTxbåâ0]ñ í­¢TEY60Ty,é˜CAa("2êß;‚åøP“Š)Ëá'¼ý²­íÛÞákœP8l‰ _pbÞþNæ0:/›ßXó:›D%˜wÃGu䣜@ÐðÄB£²¬›\4´§UEŽŽoóî¦ Rl ÐÚн—ð†Ž+¼÷ƒph…¥«ˆ¦léB©'¯H]°›àÓâéß‚.á9€‹TvTë’”µ°˜¢C­t˜Mmi¶jô¢A;7†Îª”+Uvìn™‚¬k9ÁÂöÁ™P›Z ý¿1áËþZ³b=Ü;ýÍ«ágÌýßå€K–ø5`±*0©4ìÏê¨kBû<âcjͶ}Â&ðjm7žP£vÇàZ;;&à«` å[9ýOCpðɳú+?ë€\¤îÅ!Š÷„HÍkw;ÖR_…ÁÈR¬1UÀ-+¶xvPÿ‘C|¾Öuk¶ž#9l|@QÚîÞ¬1îìoo,vÆâ0™Ì þ¥‰2a$ûDz6N öÄÏ› T™üusÔa¨üH_ÇJ_l¯]é¿?r“Syà@Úu½—Kã:ðs+¼È£³ÛÙ‡#g¶Ñþ³û sÀÞõÎQ:˜;Œü|qZ@³s…¨- zIV÷Á¬x­?£³lñVxu»+x °z%qP#˜36…ý¥`–<”Œ4e碓`êÄÅ-=éK36Ú‘·'…ä‡|'X5Ö‡ÞhQ”0ãìh¥#ß• ·Â[E*Þ:Ѹ€ ¯ûž×£?XÂía” :Z›= è×rž'>õÚeÝKªI)lÏšG›¿Ã\zš›¡}]Lªt_žm6N.\8æûòø»`°(κÎkCÒ9ÙŸžøùS©xÅÍõàGܨõØio’¸qã&<ñ`¾ͦPa¨ƒ4ÔÕN(€¡?=Ø¥š‘'?’-Sþ^ˆDÖZ$Ž_SÓ2»' }`ËQo«ð<¡S_ ‰ã-9ܪ¹æñÞ|ûLMŠÝÔ¹D&R‰w¹ÈH'Ÿç­/æÝp~)A4ñßËçÖÃò^Ÿs³QI ´é‚’ÏìbeÅðÙÅÓ\–¤pÕ¹~µLIÑé/lS?_Á¥ÇqgS&ŽÕÀ °gÃTƒÂNÇ= -]ZËcŽWÁWÌÏ(ß÷}ØÏ\ýKæ nAT:ãËÅY™(탉²>ÙuD€9³õ7J\™ÀÝb”Ø(š¢–í®‘;±GäÝaßAš§!ðÇ1À_Þp²¦l¶¤Еt]X¼H Ë-ÝÐAÎ://n ‘Ò\AÜmìKüþiç$‹Ã¸žú›OAi,®MÞ»LŒ3 Xþc7~ê½*®–ê}Ät϶ (¼º 6ôÉ%’Áî,ZÁd$멳Îñû:å€ç:çu6½`ö4Ws›äâi:V[xºv!g'}àü}:Zæ!õÏÓYGþ:ˆ€Lp/†d¦U£~ÄÚI04ggözçŒóEÛ5òveu}r+:vÙiÆ×;Íì”x¼f,¹ÖijÓcUåFALG`§°;)åa ¶ðúÃ;Tú·NR #JRO«HV8º*9€‹„¼}åŒýÃY<ïJ¿µ­½K #Å(žèz{;v9×*H!è6#w8°CP±CÔ ùdaŒ[Øøú'‹æW¸Û9^XÝ` ï{ðM3/ "•fÚ[n~ùÕ÷60Ë*“¥Þg"=xÆÏcPS÷ÞÏ7oL´ ÒÔ O’äkL|/Jñ„I¶èä¯1‘í\Àd¼Á6 KÒ˜úøÀ<ðUêÞPwÛ¶žùÀdFÝ·úˆX|ýÃþ¼ãÆÈ·X0ÉÃôúç…V.ˆÇ1CYO7º°Û×›[ÉžŠf¶(Ñ'²X…~n O&´ÆZö' ÄÕ endstream endobj 137 0 obj << /Length 2256 /Filter /FlateDecode >> stream xÚÍYK“Û6¾ûWèKU#˜øÌmãͤ¼ylª,om*ÞMq$ކöˆ”I1•Ý_¿Ý’[ÎæG|4ÐF÷×_c¢Õq­¾yñïW»g/nóU!ŠT¥«ÝýJªXä‘ZeQ*¤*V»Ãêçu¹Ù&ÉúÝF®Ûá«ÍVkµ>Tpßã½^Ÿá¶«ñÙ{y°²zÃ:¸Êýì{Ùôf¶ÇQ'«ñ¹j3r¥ÚãàÎè6*_¿”ÞÄ™ZWÖ–råÛ®#yøtÞlUºncÃFek3Õ¿vsÞ±¿/n³Â÷Q$âX®¶²™Œ‹N8 \ï=‰ÒkôFC‹•47~~äkËï÷ü‹²G6­A¦»²¨LþD»òúåkxxe$Ž®·êxAàX®º„çc´–{ùWž^¾|ýʸ"õ½­¶*¹VÆ ±àíÉŸ°¼à]ÛŒKŒ\Óâ^ÿc"cái‹"ŽA…™Qð¦1&Ç0ì¾­Ÿð¡$G/UxawƒS»N” iŒ|•2q”ÁÂHßw5*~[Ú¦•Ð…¶r¨½­Ñ­E¾þ·Qn÷“5ï[ ˳ñÉÄJó¶‹~Ý$éº|d÷0rˆ úæ-u@'cîdLØ`&Äešˆ ý&¥(PN±¡ ,ü›(i×rû-Lµ[®¤´r+F—SE±iUý×á1¤½¨ë¦Ž06Vç(íog`‘÷±Hejͱþ¢í‚+°cª±²ò6ˆš·‘Œ1éqd‡ÙǦÿоo½Ä—¨ÂFQƈ¦Ö_^V[©s‘èb WhÃÁÀÔrrý‚<M½€8Z ½w0Fn(|#R%Ò8±Žx%nV 9á€Ö–wûÀzY.tä¶î)Õ2:ÿ˜êß>CåbÑ2ì*‰E¤²)²ÿc“Ã*¿J)ÙáJILÙÄKY»ô…c‡õ%ë,aIŠö`’ fzN}n.Wxs2…‰ª$7ϤåÔÒ쎒§Õ’ «¦0á@š‹¼È€Ø·! H †õ$€–»§Ež:¿„™þ×pÝR‰’ëoàú…ŸŸ@œD Å“M“xæy¥“H$Ó ¹N§yÞñ÷ïáúšßÙ±ßÁõS 6E™Hs‡'t[p0`g(G{S{˜"T%ñ¶0ì¤÷›¾SLõæÞã ü†÷o›ç(ÙØÙT"Ý(S%x³*RXR#Æi¾§÷4ʼn‰š9¬G7F˜Rµ¦‘°Õø’c“ßTÆ4’¢ “(B'ෙˈ1u&)H! Ío‚ZM3~à ¨Í73v°¥ÉU<£ý-–€G&}ç€ø†+#©­,Gy¬[ htlÉ^y>³µ¸‡ûòÂw­eƒUÿý™Y#=â/µ7´//¬eè,p9†å¯îÕ£™èžøúÅ)“Âj®Î•ÇäOg«Ð[Lï9À÷XÊ@ QÑç^壀-èÈ\ñ# ïØ&,±*’»aÇmˆEá~ï?§6Ç"‰ôûEçÀ‹<›Ç/àö sûDI¶^)M’~zÐñHöóñ©Pü¬VgÉß]/ã³ø„Yü›±X˜Mò“§ÂlàðójqšôÀtŒ#/ë¥õÝiLXn¦à`Ú¥ž@Çòm:ðï~†%6ÁáÓ#‹0ýÛãzp9žÌyÑÈR‡)÷°ü„ƒ-ò„X«j.SWa_Xº°A!éùžwó²t`,E–ºÂ{c $h6l\I‘g³BhÒ½x¶%%ÚÕ —Ô'bí¶ÕÿòÿéÆßsL¶#ÕýøÚ9è'…7‘¹NY¦-¡¶:[•Ç®Žá½W¦û¶a£ìÇr„tnøz÷¦Ù¬™´%D¿Ðg¿¯#´ t•…2út‡• ™¸à@|G^åtõëÆ|"Zh“„V‘¸Fñ3<}¥c Tz ˳ ‡á~‰u½›‡˜9Æ?µ¸ŒúB‰X*?è+Ʀ=oüÉÅóV·&„þ9Í_8D#Ûô™ÀéØŒåêÊ6-ƒF@§Ó8.=°+¿-\?²y{Žß­Ýïø[Çï½hÃ}b¼ð‰C§x,] ¹m HUÙ››Ã”п#ly Ž§Þµ¾Œ:ìA›\€¼§£ö#ëÜ3Y²ÿ|³ý“hZ›<’qç¶·åÉ­x¢%H3"®³sì;¾îÃth\ÏŽp?¾ÿ÷Ìœ8…üOüïfgÓ~6õÌ`FTY˜8µµÀåiø‚N÷S{6ô–ª\¦¥‡jé<Ï{Ws¦ç´‡}ïþ=víÿ'G±ýˆÁÑð´™¼»®‹ÿÚ|ÏòIžä¢P¨à8j:ðõîÙÿª¥Ÿ endstream endobj 145 0 obj << /Length 753 /Filter /FlateDecode >> stream xÚ…UÉnÛ0½ç+t UÄ4I-MÛtAA¡Ц(d›YPÅNe;hóõµÄ.r H‰³½7‹Tr“¨äý‰âý¼>™_T‰“®4eR_'Úä²R&±ª”Ú¸¤^%ßÅŸjÑ6é,«2±Ü¬ám»ƒGk^±Ûìñ*ȵpô|¾R:_¦¦·(Ö:¾Y§ÆÁµÉÒÜá—¤´…gƒ’ör2i¡”hû§{r® ã‡;R_ RR]‘Óõ'ÀªF`Mi¤+,0A0/@ìkÍr1Yåy”¢ÀÖ[rAüFü4˜Hf¦r@¥NfZƒ—"h÷·ãîkÆ&Ù¼>¤3S tß{Ö!þ ŠìgF¬|Ø»g”nZ'ÞƒEÏIñfÝ À_ô>’hY#Šén–¡K‚¨s逘 ÀKŒh³+&¯ÄCËH¶øî(FܯÉTŸ5Šf5‹Ÿ²ú„²í8ÁZœÙÇàxð…¬Ùð¥‹ü>…«>…Ä~Ûäàm¬Ü`$honºæžøHPsÍ©žQ™ÆúÓúyFFéDÿÎ>‰†R¥c‰çúµnT˜ÎJgb]^‚ÐkX5¬GŠ8“®2Ç‹œÅŠcß}óÂyÁd/"ÿÓ-c27A¨PºR…JõñÆ?¢‹Lj]Äè¢#ôŒ•ò‡™’°^B˵´e•Á³Æ”X54©BŠ2]J[6#¥¨ÀUãòÓ\>ò¥ÈP!BaÓñ¡é†o£kâøö,@¬Ÿ)™Ù~ÂÌûž çÜ&X8 ~ŸÚgqH‹Í¤ªÊhôìˆßB:•½äõ?Ö‰ô|°Nød:ÓåhÓ}6 lÄÀÙÎ6˜f–ƒΧÉ3…†¿‘foÔ<ùÓ¢M‡7 ߇ù…}uÚûxd\ÔÙktä±¹=Ócªd¦]„û„ßÂú ÏaÃúÂ=ˆû7¾¡/-Vý/ˆæjÿwNf¹•¦„_HQ@®4·¡wõÉ?ì¸Ñ§ endstream endobj 151 0 obj << /Length 2015 /Filter /FlateDecode >> stream xÚ­XKÛ6¾ï¯Ðme bDêžÚ  Òä{(¤×ÖnÜÚ’#ÙAôÇw^¤HY 6E¶(r8œÎã¥Ñ}”FϯRyþrsõøYÙD&UeiŠèæ.Ò&Wuj¢2Ó*O›èf½Ÿ~\éx}„¿Ý þ†v•d™‰³Õû›ß˜A®ªºÒÈ ’¼QµÎxëëwÁo”M[Ó0‹‰×þ6-0·:jTSš’„ÉU“çQRh©d†Ï˜¬ŠJÕTYdp8Hœ¥sÃD\òÊ”®AЉæf•䩎«Ä”q‹bPŒO£˜×ðëoO$°Ž;ÔbÀÕ4Þ²ÀDIZ }6Þä‘&M¿KM¶Ê+C,6bG†§œíÐ45rìÏð·o­dÝÊT,^j­ˆ÷"iû%ä°AÞ'±~ß9ÁÁ2`+£ê¬ˆ­USlw©.ôÄòeF¬€gÏyŸW¬8óVHÆO[~nPPv™Ýj2PË<™˜h/û?¡ ²õ–Ý…3|Øg´c{@OrJ¸˜#žkÔ H3ö¦ðd²âx¶âá¿úF@×ÝȾº·›ÁYÉýÌ›µoY¤mOüÄÃA2ÿÂpº¿K€¼°qXs4lxFÇÊDA–—F‚+3ª1 ™B½Jt Wû Æ/oÄñÓ…(2E"Ø£5¥ªóÎ!ª 6P‘"ócd3ë˜/hàõ½Üt‘‹)I÷ƒÕ?¼4äxæ'¦G“}Å¿õ™Œ@+/öüüÊ5³§«=á9°osQ˜Ù»¹“ëƒr§Ì´æÈµªÞ=0yˆÜ4ñ|Ô|uµkÊy—DYÞõtßuÊ"™D<;«lÊ:~¨÷.A“ãÊŸ.yä öä‰5yÔ$ÔVœ ÇSÑŒ‹Ü½äµÅ0à›ïÏžŸ^\zQÄQ°•,¤üuOy‘ƒAˆã ǣdNšñ³ EžFg´µ^L¬6&L¥êÊ ?.^tÈå4ˆiýÈDæ“ô™½T ¼œoV&]«¬Ö|ô«kDîû½UÀ“î‚p|´’4a2—,=cÝ(ÌÆæ³—°i9‚«ÒQ½K‹”iš4(†uYZš D‹ZгRºðò;XuHÈ+€°œF@ ¾y~½%í ò5L'˜ƒ…Ò¢èº×â½g–‘Êß0ag¸3—îÇ×nƨ´œEø+ºÈ—ð@«¬qf“[ Ê+aÕ$)ÄÈÑ8Ri*rÄËx€“ݬœÒ9ûnðx{IË{í¥£å0„[ï,‚".÷JB‘²¡hØŠªÐ‘sÇBx’Êä¼”†[²"°{™!Ò*ŒõAcø­L^"P³K?3ãq—Iɵ߉b¦ *$›RfÆÞx[\ýžd¬íe£)Í.š”¥ÊóFì!ÅöŸ™'x1Ôq(†0€íî/àÛ o¬ „à$£Cê*Ëø§ðÄYŠ~ <¹fLriÏko-ìpyr@GÍ2_Ÿ9}ãû§åÁPÚ iIPrOøÀáÂgu†ž ÔG‹ÙÖ[ò$—~={,ÀN4 ¦L–<Р†Íü‚]G`rm•qác J?Û2}·{¦Ÿ’tÕ¹›*³9ÉâfòkŠ|IÁ—‰Ìd^þ×|ˆÀ°³à‡œ’¬zoƒYº;G²Ÿ¤'óx¼pC¢ %Â,ÜÅ™ÑÝÄxއžÇÿÿŽš|ÊTbvAÃÂa Ññãs>p›>xx.w¤ˆ#Œ_q| k¹ÈÈY ‰vœÀclðŒã\‡iPÉeH†²•¨Ý‹Hí#×›€Ï(6Sê®ëЈµó2—lÀcI“#YñÖ2ǵÂÅý®c½Y³Ü1#Þ‹WŽïCòKœŒ+û–ŸËM®üÎwÍ ?¥NØS|LeWVH"^@½wutŒ>“¬„C]q‚d3µíp¸µžb5'¹JIx|‡iS@á}(Ëêü¿!1ó;HŒk-yXï¤4–Õ,_àŒÀî–;ñ߉±džå²ÚSî·±DÊ&ܨjæxwIVWÎ÷pÌï¹2¨§ui…m¤ßÚ.´f,víÄüŽƒ"19}äšw`ËÑu}Háž,¿490\H)²ÔI.øâE÷‡ù%g< ~‹»ð § ¼æwÉܰc3åá1ûÖľ=§µ9R°ûèûUBéoœxm#¾N-&ÉuÛ]|Ä^H4…¾Y$Çí«—¢ úÐÑH‹øf¥+ѸÎàè`ÚvR…>]îCÓ¸Ô0ºŠ$M§¥/›I3hë´ ltô¿ñ܃­õ=šm{™ ÅÁî³ »Ðׄ¢©qO þ6àÕx÷-NÖ]'ãð[Îü  NKÿÌ»åçÜ2dùZÜ4h)N6Ї ިȔpÒÐ^²ïƒÛÆ©—÷Û…2…k÷$ßp+„¾›ê»…AñÝÒg)ìB5çÎCC[:`xXw—;‡‰”ðŽ{¼aŒt“Òd< ’¹}Î1d¡ÊR#JS)~ÄdIa²ø­L}ôä2>+ü½ŸÈùyS.îáwoQ¥W"9òÇ;4Ó0ã¡ Nòµž•È"SU  (/Tj?ó×Á†_o®þEÌâ9 endstream endobj 2 0 obj << /Type /ObjStm /N 100 /First 789 /Length 2001 /Filter /FlateDecode >> stream xÚ½YMsÛȽóWôÑÞÃ`fz>Sª­Ò®£Ä•l•ÊÒf7ÑêÓŒ˜tÉÿ~_¤$R$EYtª€žž×¯{º{††4ybM¼¦LI“ÁÉ0‹Á‘ xÄSÆÈj&kȲYK߬'›‰!m3±ë5²ÇÀÄIÞƒ4Grb‰¼±ä yÇ#gÉä¡Å ˜ä2…RÔ˜¢LrpFŠè%¼ †RÈ£`)eLò”Ř@ÙE –d¨ œEÓð1Â$˜ÑcŒPma) £mâfó…Š- ób‚~Èe°*H²c þI°Ÿ ¨ d0¦J@VY‘íöÛc2(ÑÈŒ  Äb1ˆ²s°ž½K”A[€r˜Ã zÆÄ¢3¨Ë:ŽŒNä44Ðæ è2ð™³0̱ncðÄ@¼qFÞ€[-NÐò&ƒm-2ÐáO°âµ8®ÑB ŸC›ï£>²XÜÀ—ÞzY^±YÞà“ë§2yo]<>ø<§p™–7ð¬Ága¾aèÉ‚4–1â<1làZ-oF| Άð?³M#ƒ ˜°$8ÁÉã Ï‹%ž‚xÎ1…( Ï…¤%²%@X’Dd¼E0è4::¢âŒŠ¿MϧT¼¡WãåMWµÊ¾¦½2tÚþÁÞ̪¦+»zÚ¼Þ:# 3,½mf]9™lŸUcù âB\z'+Œç72´UK“jF“éu=®«Él»†´Ô`éäçÛåŒ_ 2üzNUׯ0ïêIÝ•u[ͶeV1x¨g}¨¨kËqµ–YXưl3®ùû;Ùt' i!®^RMæÔL¿–óÝ*ò½ » r:éêluÐrKå—jLWŸº? ǶOÛÛ­°f©Ö.I;ýÅîDbíÝ”MÆÇM;½nËÏŸ7Ò÷@ß+zhÒì¡M½1!Ý…°Ô8úëíÍdZ?ò”í"d 9nÊÉ×Ù Ÿí’Œ;õ„¥KÿªgórRÏàáæcý¿yµ?/&{:­ÚÙ¨ü²#VP¼ˆ¼ž±«a75›ì¼@}ÐôŽŠ“º»”)GG£âüëMEÅiy]ŠŸ§MÏÍP‹DpT¼«fÓy+¶#yôo~©>ÔåOÓ[ºÐRW³W6¢`8£R¾AÖî(¦^z±Äƒ•ÿ÷$ª¤‘ˆ<«ŒÛÌ'“Ë­²n5AiäÓÙÀ%±ñ(ÛPwbìŸ!Vœ¶Óñ¢ø6¾9¡â¼ºíèNÃFãsZ7>‡o0¾8nš)Ô] –÷p’†Á¼d‡‡Á ƒ†Á–4˜‘Ò0 Zò %Zò %Zò %ZÖ¬ìጊ³ùû®ÿÿŸuóiTü„tPµ½=ú²ø{ñ¶øù•ˆÌ¥0qƒ»Ð”VAJdÈ­R߬ò ±cÚ]M‹dG¸Ød­†z¯U0v'Œp@œT”!ªäû.Hi'í[R!Ç(V+ßAQ @C`’W1ãmPèLv¢H‡G¡½’FÐ{PLNÅvbXTæƒÆ…KH&è‹Ð·ª, `¶*Ù¼3.ÌáÃaShi½.qI«hÝn:Á`“¢öIIûË:£IœkÓf“ÃBqÈ”8¤{ç#(â'¡äÃ;‡µµF9ìAfït΢!:,# ˜`Î àb·'±ö;@1€‚ƒ£ÎzœàóÓPøð;˜SR8Y$x9,qÎÇÝåÅ—pФx½º;LÞ?Í­ ?±;6 /Oc{ £®*ŸÌ~Â’)γ/ÙÛRï7ïŽðhwX÷²ÝaùGuÇèæœ\g޹op3ŽìÎj´l›ëöU}=o+Öó¬õÏȳëÂC$%t/n?aNA…ïâíƒ$F~t!&×÷/¹“_öß©…-º!Ýÿ"aåÒai«|< í;ãc:üsè0Î>â#<#ÞÖ……¼àåÈ¿§°sè@tÜOØJWÎÛˆÞÚí­†íJDâ‹ÓëäÇ/t‡s{†çf"V;Ý{V¾ÕDo›˜¿ÅÄÉ× -‰ü:vÀ$̌ؕ£cŒ¨`84¹Œ³\”_‰qxŠÿ¯Û9 ¢î°Uò;«Ñ8ز^n.Í.?(c׋×{lÎ?/´À endstream endobj 158 0 obj << /Length 3238 /Filter /FlateDecode >> stream xÚ¥ZY“Û6~÷¯Ð›¥ªL€'ò¶ë²·œu*ÞxRµUq’âHœ±l]!EÛ³¿~û_yâl4º¿>Àdq·Hÿz”ÈóŸ×ž<¯VÙ‹ëÛ…6™ª³(“Bic×ÛÅoË×+½Ü­Ö¦L—{(6\$KÚ‚,ió :õ- .Lô6¥¥*²¿­L…²©g±ÅñŸ¨Y™9þge΂”•²m¤^zî¸:ÊábñÃ*/–¤™8i}㧃½¢}ö–ÄÍÁÏ™áÀ¸—W1ó®aÀ/ðûüPÓž ?žÃïü^RÝ”¹Êq|hDxuÖj=,o뛎‰6‹ò3óhð¦¡i@ˆýPLÚàßÊþh›„ –6u^ÚUn@YðŸõðÙõ£¿ihOz‘V…*M¹(R£[-6‡G¿ýž,¶Ðøã"Q)T}¤®‡Eªl…â½_¼~ô¶!Ñ©MT© L¥Ueň ÙsÉx)¦@óžæ@‚JŽUß&‡G€#+³ 9mVy’ Ðá{hâ~'Ëg%¡h ZFšAÝE\±8:¸Íi?(9¶óùG}>į,¼ƒ ÁÕ¯ü º2FÖ •¸î/(¼)´*,þžÆ¯Ý4;=³BÍ7F;¶cP‹óe½—e ¨ƒæFoJ€‘s·cÔL2tí²áöcN‘¨‚¤³iâ/$^ €«2­H(@Ä3@ø6#›ÐŸ‘!0%@EÐÛÙM¤˜(dƒ³‹\Ú'<µ{¤ŒØ“þX ÚdMÒ;{„Øž*]š˜Ïo’?G£eÄí?…­ElöÂê{ao7§¬2mÄS€­9çZ¥ºüšõ¿°&ÀƒISˆö¯"·-d–³åx–µ÷9+QèÇ^9 Îø âž_k~¸0Ë΢îÈ–žÞN#L!!R¼Ð3!¬ÒF$öЧs%^V Æ=^ÇÂoØx7–vÞ:ÄÀ@ù©6ð³ámŒwBL‹]"û/Ó»Y¶“7ŒÃÐZ¡˜Q/g˜ xaY,TŒÌ˜ÔÌ2rž.ø"/’˜ {çÉ ×ïø)b‘ç¾fO%rбί<é×õrø—/úÁQÇpÔÉDÿûŽX¯>ï‘â$gç´ã2ù 'bEï;:jL4 š1ѸAb‰ÕúYÀVHêÔ×KL6HÌ™%æ,h÷ñk¥¥à)jwf§žâ¸diuxi®²$%‡CÆO§ø©­ÊÊ‚] ×㎦&Љ2§ÝàáÒ±NcMlÛ$Hâ&‡ZX4TjĘaðåð × \[┕V":öð>óLU¥æ;vκS¨;ë¼Lî6ÒèRòãŒìaM€·^á-8©œvÃÒ/ö2C ƒÒ¼Zþáû_dØodÿ V)­BÀázù`¯¿[Ï)S¢j/íU†!!¯ç"¨#nÕþ4w—± ‚÷¨HW¥|ì-N8ñ¨±ÛVžwdî;RÀ.X‘Þ‘¸ EÖíx7Mõr&’ð”C!–¸µ7Dê­¸¯8™ȪïÓûã·*:Ò»qDër6ï™j0é‰dáÀ‰ø¦¸íeOFŠÑpÝv(ÆÆuÙ„ ßDJ/ŒálPaI>¾wî,›¡g˜Ä"³r*ŠDnþ$"Á%NÎ>ß)) YÄ1.%Èœñ@u¢Ê»À0&?AÈ 0ÕDZ¡ÑÀˆðì¬(5ì‰ i"ñDâîŽm†Øào†Ì(“dCþ:–üí¬0$ži ²–k(EuØ5ŰɬÖ:<ÅôÓ¯×Ã&/\|ÅŸf””Êj½Èai‘\ÃXl t*!.(˜~nz.{LU¦Ê"O£t&Ôüwº p§²‹ ÐgªrœÄàIpÂåJŒS(uR›.#X,ž‚üK€ÁØN2ìb=k}œ:!ÉÝQ¤‡„4á‚ C×’·7ªJó©ÿ;‰ÞáŒS–ƒXÕìÁ‹ ÷НGÉaB± R¢4Î…6ØXÏ;XÒºRø~¨?÷NZžtëý„3*±íQÜïi]LMp*¡Ób„™‹Ùl>`”åF£q¾ 4S w.ä{ôÂ,,ß`£s„w'ó6¶!ÌÙÂ#(Œ=·óì¬ußqã>Ææ»`ýˆRÜ¡T¹}Ž\ýwß®®-†K‚ ¼öq ·[w_–¹J˜Á댺©²€1_¡¯U¤¯‚FU”(6ªðØàK”;+•1yèÉšér%OèÆ6rØaB°Ìéé4Ý™»Ó¬âô•ËҚႇsgñkêíì^Œ‚ƒq»ù‰-…1|úû)Í™Xô¹‹ÁäcÀѷο»Ì$19Zªb”³ ìä8¡7ãc¬å‘Ð|ÍŸ{¦ÍwŸ;Z!¢“­PQ¨‚,C挛 üÓb‡^°ëÕŠŠÅR_†(/•“ î'&w6}äÝ®J¥•®43;ãYfˆ#cBîSÈ2– `¶J¤ëï‰|tc‡+(›{)ò9Û¹.ÍáÉËtœi|:’Õõ\âËú—FÿʪŒ2ÖÌwìÒ0.;I™ëÁ„ñ©9{l;8RÛ™[)Qš·5c¿¼ˆýòD%Egp^ ¦<ä4œO(_lê0OÛéP!å‡Ï¹õ&S¦4á•åqHõÒ)ƒZÃÁÞ sbëv((…æl Žtâ­3^Âäch¬dtç0ä쳓Û(Ó¼±*5ÕÌw裤vª XÉñ1}<ÀRé­a€U ûVðâÓœ‘Úøó‡Í ·¹PöÁh²åù.ä^Ü ¬x%k„Ôíã ~˜Àál,rœ:/s` A‹¼ä;‡Ä´Tó`ÈîÝ#LÔù¹a—ÁC^WP¯õëü5$ü±v·bÉ ÚWòØ{+Ïs-`?¶ç'>è'3.ÔxM^Ï9˜á–ÖYÁI˄‘;\&ËüŠëIv¿lÜ× gç½¶·CCœÊ2=“¹HÝîB²F ìôÎÝùË1&ϸk'_­à`W äáð*pŒi;–œÿìw”» endstream endobj 166 0 obj << /Length 2255 /Filter /FlateDecode >> stream xÚ­YKã6¾Ï¯ð-6ÐfKÔƒbö´2‹ìN‚ÅÂÌ$ÆvwœÈVG²³@~üÖ‹)ÉÝl¶(²È*¿z°”¬WÉêo’Éó«Ý›û·¥]YeK]®v«4³ÊäåÊ$¥Jµ]í«÷ëo.›tÝ_á¯àï|„¿ËFWëk}=A»½l¶Y¦×õ€4í™{‡’q0[¹ùq÷OÏùþm5áj« FˆßÖÓšg㊧ÿP†šÙò0ö~Ñ>9"˜Ü¿5á–ªBåEåÖÞÙƒÓ¶dz'ÒžIbÃ~G?Hß>dG}Ä1ÜÍV§‰Ê­YmÓTÙ¢`ÆZx.^š©R{ñ…Å~¾lZ¨²Láhµ¬HÇžÛ- 8*CúžÆ®?$iNËk³þEéÆÛ›m‘¯ÅîëØ½§s}’ ‡Dg›ÜhÒ–Õ^«'f] Ÿw1Hàq²Å­‚Ò¬Ò•uF:3´ @ŽãÈm:¾z?Bí1–æÙXÜn¶™ }zS$ɺæw‚Ëž™z %{~Eiöm€é¨Xi®lžÃ³P˜éákZ“&µÎ(:ä}Ç<Ø>óËiÜã´½Èù G9 ¯Æ©tC Psó|0—:Xªq[Ôë':ãGü¯Ïç°“à°—ÆSÝðPì F™Å6WE’ K >‰ÍájÀ©ÎÖObºm`Ö˜ðϤêØd?IßUh>$Exƒ+¯úšßÃo'« þ¿ƒßßá÷üÞIß“Of;wq•ÙgቺüíÙY¿=3 $Máñ7BIÛÉŸPŒó{8þ4*"ä2ñjèÔò4>‘w€]•|ÚÇ3ñacÓlÄhàaØüÎì^ »@ìÒð!¶RÚ~׉ÄÓ¸9Þ}µ'v6žÂm±ç×sÝû0Ô;>hÒ¯OñëÅíe´ú>Ü™ ðC¤ü‹K)q ­ ¼)ÁiwÇ/Îמ ô æ½È¤d͑ۓEG~R¦¨(”g›ÇWÖê}й°b £Hõð ÷,Œ½C7Ê/¤}¯`% IÔL€úo ûV‚àªTÖd…6£4@ "a*ªÓs–ª¬~Q_dÒ$,¤Ú‡CL‚° =ÞMI1*îq™_Npýb¨. Û…à{1¡³˜Ð½îåwíu’8Æ«f‰2Inim±¾|H²LÔ{.Â{„½ÍGÔDIÑâ6kJ›l.{#k¢±0Í…WpFs+H«RUÖëþÿ±‚JåIYÁ±“îQüÆg¿´M̯Qó\¦?‚rhŒâÃ#܉…Sªü#…óÔBºjTYGY£êØR÷ ÚfºP©Icoñ-AÏ™Îér\ÀX¦F0H[ÄZš•$—k0.`M¢àGwß ÕÆ¤e"50¶¥yý©ÏœjAcÕû1eaÿ–Ù„ÎÏø´%¿?áRhÆD¯”ŠW–/lÑasXèë“øpàDùM#3ÐlþËíš«›Ö]à ]-íµ(Ã<]x…ÚHŠñEs”ä¿PE•ÆÑ“\©O+o8 ÷0ÓÊ¥{qc¹…9€´Ò#‚Fè0µ`'WU‚g”©*7Lš)XPÓß( þÏ&5¢å*cÞmãòÍ>ÈÖ%žÇhè Œ…„§Î^x?|%©ó-`g¹Êo7ðµÛR؆p§LjbEËÝ,xƒ@t¡S…*½çQ'·ñrÙpáÁé-aÁK‚sI^eNå æ”«Ž/4§;âÔð³(×MË+¿s*Dû#¡)I»8é¸sêÃ@™ˆlŒ[¹šÎ}gZ)]êÑQ¥r¡Ü½›ïAWªÌ=(÷­ÏE)? !ƺH…MÊÔ\rXÂÂDRS˜io÷L­Ò\3“"­JáRÐì/8bßHMM}ÇoCðyn£{;vÈ‘¨qÿYÆ]ò\Ú‘ºöÊý¸TyV,W‚ ö\û,d¬³¼¨ý\kÂb .»0âò@y²ÞÙ —ƒâ&áì˜æý/ÞþŠÜpŽíCîÒç–2ýÃà“ȹ#´|RIà;o·‹p[Yâe™Ÿ\ùárðNv gâË%íÓ³9›@ö†]¡&94­Ï6;ÈÈiDÂá-¥©*Ró*¥LH¢*ã'bͳ|ÜÞ…¥ð.z¸2Áàë –ì>æ¾®ª”)«H ûטC•AY”, K Ms%Ü\3Œ1$ÈØ#ÆŠ4düýî9PäViS¼7îäÖ¼•†4®œB¹ûºzíLƒ¦TI¡GSD0¾òÑ£v¹Z)¶CÉmq!hbªô¯È »µ€HÊŸ±à ! çqèa@n‰´F*óú‹®®W» +÷¢ê߇i„I'~ᎠÇXØl±ž} c©5ªÈÌŸzÝ|áÊ"®ê¹ˆ0“e/¹‡´Ç…D1QÚf hB ¼lõ~põZ=ßÑ·Ø•/c =±þ+®‹Fc£ëb-—Ù@¾›9ºäæ%ä-U|:M°­Óøyh²:þZàÜ…êúMX²"¯]W¥,-.QCÑôQ¡îØû¯ U5‘ù•>ÇÓ÷ì¾½_Úê\û,š%]}æ’õ×Þ´Nܱ§OOò}$¾tãøó%|¡³–åï$ÈÄ—"›DR_ÈÊõü:¾´ë¹PB˧H–ë„øüxbÖÜ9»-œëÎeÓP¹žXÇ…ÝþäI¯®¦+e–š›¤kÿÕûcsRÐÃ…_tGºLÀ”Š—S€×|.XøÒ'ËO˾ ~î_IùZ9âêü¼ ·Þ¼ˆ.¬£§´0¨3-/”v¡$M"¢¯woþ~ú¸ endstream endobj 170 0 obj << /Length 2082 /Filter /FlateDecode >> stream xÚ¥YÍwÛ6 ¿ç¯Ð-ò{±*’úì­Ëš½n=lkºKÛõ)–’úͶËÊÚÿ~ø"EÉj“®Å Bü0qpÄÁ/g±üþt}öì*+GY¦Óàú6P:‰ŠX™QQ—Áu¼ /?-TXíáÏúÍbiŒ“Ňë_™AåE®A,“2*”á­/þ3îÜÀÓ®áϱ:âO»c&u/üΊgˆw”Q™éŒDK¢2I‚eª@ŒٿÝ-ˆ“è4¼%ö¿àç“Ìgš<àxÕ#ÙZÄÃgMû.& yȈÎãÝB—áûX›E’ë°Yñ§€sµ–/‰Dus*L…W8ó·4H‰²±§­.âH«ìIŠ^ÙÛëS£è<‚Ý’]Qž%RK£u”h,•ŠÊ4eª£¨ÙîHЦ@ÍtQ„]O иF¡ñý3¿W(éj¡óð“08’ ‘]oõîd/.¿•[ŠHä{ñû8á5Knˆ).4$Uí­ ßT]ðŠËáxö€p¨ñ$;Åcí™H…»z8O(;ý"Ãv»™dqEâæyXu{düÝ#/òLkÍ 3½ì^[¯ëšaÑ: oeÚ»Cµ…ß­]xÎŸÛ "ܶH¸­DÚãâÅ@7§ó J±s&’ÆŸ³Ýð£ùFbx'àÀêTÌu¨„ß`¼Šô¿‘Èk"'é&É´À‰ÑQ©s3‰€R-–*ŽãðÅ$”ÑF"uaBr`ÑFåãùGPH# ,ÕÏGì¸yö;þµG×l×ÂðÀ ä6x˜{ôÊ žD1Î1˜l€ZÏ8Ò±¬»>»ÊK_ ÀÃ2N} ø,›>âDd´£ù•¯óiÄyɓإ„ I¹j)€á}\[Õ êîh}à%<Ò*‹Ò,{Ôõæ=oÎíK•Á©tlËÿG¸]Tê-¾xyr©ËÂå½Rò±xŸ€—WsªÂ솊‡àˆ4È®rù‡—êsW¤<È„'[Çü8c šg™;k ýžð\ÂóRl€µÜ+x^ÓÜiê Ø¨rlÈFËC¹•—UkIÕMÇò«Ð‚I6*­g㫤̉·Ò‘Xe< •"‚’Î9ìa‘jˆüËöòúìþ :T`´Ò3 ŒÉ"x‚Õöì݇8¨aŠÈ”Eð/‘n•ž÷&xsö7%£(r´“2R Ès±=qÉ"§aôÐzÔO…„l>)š,#¿2™”Y[Êÿ5;MCŽÒ‹Ê”j.øc(j~ e§Ð±%.eKz6Yá²°'߀4'èµ_ð”­„õ@»k©´ÄU/·ÒÒó~Þ}§aé7Tj¢äyîIàH_J_º¼†Óe,mŒí-¤lÔÛj=° p­À2v`[d!WåÚŽK>Ò¡$C:RiGS°Œ‘‚»æk1f#"ÜcÍvîÁôlݵ¶Ñ2Š@Ö²'¹ÿ›³cªÚ•Fi—†”ž¤!¥¬Ì£Ê±aZ4\ïj{ ~¥È¥s×’àŒ·«Ëséÿ®º“uÛÏÈNë©£ÎÇáÈl5q508ŸêtzÛ8»Ù²Âë#fAŸº€siKm?B6«(³ÒQ~6üšÃCö; ‰ÔHbFD±W jˆÓâô#¨MG–ÿn˜¢ðq㜂Çoíeg«ƒD‡ö§ïxÍ:c¢¹²Õ…¼³›¯ãŒ»§PXƤés§A¹ ÜÚ^¡ãwëž+PI}Ò»ö›‰(°1ã3ØÛBõ”ñ|+WNtšhy‚|ô) VW!ã×ɆÍðe¿žž‰ Ix®ªÍW»¢zˆbz°¡)ë÷'BãجÊ&NOTžDìŒÖÆÃ!ªªhÕëÐ<·wbTƒοà=¶á …RàÍ£8½t/5¡™‡$*é¬[êÒù– m}C¹7°lN #ÒŽnXÒðƆÚp±»¥DÃáÐ g>ñÄ‹7—T "¿®lZ©ÐtR„;«½ÜÚ/¿v…e/ò,fŠ-)Á Ïí`ÒÉÕž ¢ájO0”|EÆÇ’,å] ZÄ½ï¥ qõ½ç‡ÎK'W¸ß¼*ʼ«"-WE­BúÊõÕ¨‚Üì57ÕÁCd<éˆÚh]ªÓëf]º²×§Ç^ÚtJ·­ì¤îR¶”ÔF²¯½ÇÌØƒ7Q>ô|Wopþž>ÝE}sœá¤t”çÆ¿ðÿmŽ‘‰ŒÖ–а-å&`ÿÿy ! r8Å´j\ô@·öß< endstream endobj 177 0 obj << /Length 3060 /Filter /FlateDecode >> stream xÚÅZYoܺ~÷¯˜7ÏF"©-}ºMoŠÛ¦@Ú¸h4(Æ3²=élI©Ó_ß³‘"%Ùi–â>$Cq=<ëwÌîfÉì÷‰üþöúâÅërV©*×ùìúv–j«ÊDÏŠ$W©®f×›Ùûy»Hçgø·]èrþD›…-ô¼†žºY,u‘Bg–ÀçÎuYÏû´ÐUÐsÀy{8,tAûËF‡š›ãkùëV4CãŠp«5Ùà„-’‰›îëp1ƒä×w8£áÛD›ÈáÜå t>ò~ò9PD_GÜkã΂›§ðsµøpý`é2MU•eÌ·BÕbiŒž¿º$b[þ’Œ1t?Üõx‡ÿ¯öûš§t-q‰Ù¶þ’´|ñº¨BáÙRé*2èøFß!Kà_GüFÚii(vS©2÷ pò–I¨™eÔ¦s›“ã ¬nix‘Mß\×2´âï—xªW<÷;¸Á2- U¤)4 ûž[Øåþ!þ¹H=»¶r! /ÓfþšKùבJ±ðÏ<wñNN³W"¨Zúo¾c߇ñ ÿ ¶:H{ÇÓ¦‡¾ãDÔ­eš(kÓXÖ Üí£_2”BUÖ Cƒe?”Cቇ⎨&¹mdR64´ªd •¶?x Fö@F=uÇwÀYä‰X¿“ȯ•ªJ¼†¿†½Û6 œ‚›E¶ »è*ô"KTf]U=qHLëø¥˜„WøÝ¶â?¦®‚w?nYsñ{…^ðú¬ã¶¿Ê&vRÉÛx:X'2­tbbööKÚx¶â5»V:®>;¦Ê xNúýéÝ+èý=þÜ NwÂù@ä(¬çð—m6ÒÒe .È&9^I™Òôzúµ³ ·&­æÝAüžNbaãàሌûŒŒ[uÜõ”’Âa:TÑ?N«¨Ñ:VQÞ³WшŽmëØ¤x&J–BSû Õ§Ÿø1ÖO\ó¼~‚ ëgT‘Õ×X•Áe".OëgXz…¾W_¥¢I©¬Ñ߬¢Èú©¨~ÊNÝŘʡÍŸgwmÝëÜ3–ÙôþDJ­nû¤y0ï|<ïÙsNh`®!JŽCo%(íGVšDÈg‰*a¼÷3$Ǽ&þРD ðiA^%UþÕ Å&I=m”â ³ÊcOlüiœfÜR¬Ãƒ Èd“QOVÖ3yBK:¢†Iõp5®ëœÛ‘Á ÚX÷ØŸçô¨dRdÒ@`Y–©¤„ÿim’‚"Ì%ÉšbÍá@Ð}a\öçî¤1±rãÕpGø'g!MÝŸ$M‡ö’r¾_ñí©Ÿ”¦F»‘£Ú`#9, õÔÎ ‡ {°)£s*]c=äø‹’…EH´åÞaêÕ¦ï\Y™¸ËñPj!ö§^ºp3i¿8žxjjÙ—1ý“™R 1Þèy¬9›äe+ç3!ÏrŸ˜,Me„&Çìn8[²€Êz²M•ÑØ€W/Þ, jÍÿí·x©¤GrÊ}j& çC Jólî~z"=œ0)>ù-ÅvظôFÕŠ’2S®x Gvjâ¤K¹ß„Úø”¦žˆÜcã\ÂËýðþ}súsOÐÍy­3t˜ý ‘Û,kV¬ ’$Úò’4™íPÇÏlÎfjj'šÎr<îÌò飰]È\mý¡}8]N±£ñ2‡ ±™r߯¨¢4ßš[ºuQÒ‹y$‘´¯åz-½Wª¼ªb:ÆsÐþð÷Šq‰²Ç$S¸]¹ÄájâVe¢´Í¿íV…uëV@Q¾Æ£ïO­Ã;šŽ€ ÈAÖeÆ5óÓ‘\ñN?9€C_dÇSl¹SÁ Ve¾”=ŽÑf®ÒÄ#&d8¸žÎãmˆb&f7™¥»'ÍF¦vxÌi7À€A¥¦/ßÐ_ugùB2ÎÃFŸ²Þ%hÞ‚pL²°6#dI}V†ïrŠtÚÞ¾i|ˆ˜Ë@ yhVKaXÄçXÎ G$’ïró–×~å‚¡Ì-]­‰'ð•óU8v"+€Fз£²ÞeMzïÿÉEsŠù»­TV­÷0‰«Rxä}ùŒÑã Ê|zL«)ø*b¦2[9=Q(› X9A‡^Y[±u6q×{ˆ®Ðì“Ùº4ÿ(ÿ=-µ*Á?龆œ“ª€:s’ü‚kŽ7ŒŠ@`ÎÙR¿›õc˜™n[ÞrÓñèf¨Ù2wC SÁêƒOƒê!gWéÅ£NâQ몊aPh— “ç*¶Å ò}jqXкâ)ÂxlîW>mgc7šl¶bû86ˆf„à‰­$¼F&Ý#7>»ˆýàBcà 8b80î(ß¹ \5â(Ö|·.#|ÌL$O‰Uº,’þ]Òn²¢ÔÎßý >&ú R®>” RLÅ¢óä¼]{lç«Ñ¬uçq‘]Š×ŠÃqOA-ò¥“Eä,Uº¯OÕQš‰p˜*3(œ‘Œþ6¹ï+y»0—ÈsŸBÑ)æYŽ\mƒæŰ "“¥(JŠŸa ixsØ¢q‰´GŸìœ:¦zå*+N3qÚË)}s\DäA-™ºôö¯øÕ£s½CdC‹Ò9á›G^²^!qkgà2#Ômœ`ô —úS¦DŽ‚cQ_¡øS$ϪS3µ¿î=÷ZTi×GL7#Šk‘ ÎK'` ‹2€%ãs •˜ÉSÃõD‘!W‰õÖX·“•N•å_ÜÛLIAlP]¶`³Œ›¨)‘›½^oo:ÀNÌÐh€žÇ¨'ùà 9ù]€hu÷¤»¼AâKïãøiºÑÎc.Süaš_i¯ùÐTìŒñghyÁ „’»ßZSÄ»ðæ^Ÿ.ÝÁ2waýcß:Œû\Õç¿;»tÕ¼Ón"'xÆÁþ|}ñp‘°Lý_ b½ ²ål½¿xÿ!™m`€²2U9û7MÝÏRS(KéÚnöîâÏüW‡6‡­*’”„o2•¥v–ZÈ­Lï—™I©ú„o¬–Aú±CMµÅ|WK£½?÷i4|£·«@¤&¡ÌŒjÐM¯^8ýˆÃMNTè©´®}NoKï[¡éÀ…ñUä\àø‘³šËiçúÔgAYb0 :àò6èÅÜèŠç7µ(m'‹û°"WÊ­d ¬Ñ|óÌ€/Úîäï¢XôÔoYöð+²gÁƒÔ·G© Àþe–r9!L–6¬r1èÀ¥7M Þ)g>ß/Õÿbéy®ÊÂÎ ïT¹IEØz¨jÿžôW endstream endobj 189 0 obj << /Length 244 /Filter /FlateDecode >> stream xÚe±N1 †÷<…7’á\Ûé%Ί &N,Ðát-UmE¡,¼<É][q0Ä¿cùe‡`7†þè»á¬ A‘)'A ÝÆLn7 W;óp¦/3™)AÂ$@ó¬5p$”š<Ù™c»^öK7oî2ÿ ÷§uÊ^=8ÅL²«¼÷ö{Çu.}rhßú´dŸÅp·-„ØE¾\`›ÏrxU€}!»c¡uí—ÍÛî8Èhð:bôá4ʽSµíkC^)¡JºÏ$¾oU„$%ž[ý’ÿ¾õ¤ãí+&E…*&T–ÁýÈâº1?Ñ^e endstream endobj 172 0 obj << /Type /XObject /Subtype /Form /FormType 1 /PTEX.FileName (./paje.pdf) /PTEX.PageNumber 1 /PTEX.InfoDict 191 0 R /BBox [0 0 474 474] /Resources << /ProcSet [ /PDF /ImageC ] /XObject << /R7 192 0 R >>>> /Length 56 /Filter /FlateDecode >> stream xœ+T0Ð3T0A(œËU¨`bnl¦gh €± õÌŒ, ´‰H¡~¹‚K>W 8r endstream endobj 192 0 obj << /Subtype /Image /ColorSpace /DeviceRGB /Width 888 /Height 888 /BitsPerComponent 8 /Filter /DCTDecode /Length 251520 >> stream ÿØÿîAdobedÿÛC       ÿÛC  ÿÀxxÿÄ ÿĵ}!1AQa"q2‘¡#B±ÁRÑð$3br‚ %&'()*456789:CDEFGHIJSTUVWXYZcdefghijstuvwxyzƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚáâãäåæçèéêñòóôõö÷øùúÿÄ ÿĵw!1AQaq"2B‘¡±Á #3RðbrÑ $4á%ñ&'()*56789:CDEFGHIJSTUVWXYZcdefghijstuvwxyz‚ƒ„…†‡ˆ‰Š’“”•–—˜™š¢£¤¥¦§¨©ª²³´µ¶·¸¹ºÂÃÄÅÆÇÈÉÊÒÓÔÕÖרÙÚâãäåæçèéêòóôõö÷øùúÿÚ ?ýü € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € (Å>?üøqû5ü9Ô>&|MÔ¥·Ñ`‘m­í-Ks¨Ü°% œ…cÉ ³1@cûH~з¿ —ãý“Xx%ìµ£ÓÆQ6½%ŽÏ0J,>È"Þcù¼Ÿ´yŸÃÜP‰þ×?·Ä/…Ÿ³oÁŸÚoàŽ™áÉü+ã{ËkFѺ € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € (ð»þ w§ëáOÙ×XXgÚjÚœ‰LìûD‘Û4öÜc†ïð*ý¹‹WÑ#Ð#×¢¾µO ­˜»[ÀÁa[m›Ãç Mœç¦(ñ›þ Óªø[ýˆþê¿ åÒäð Ç´öÒŸE‰b´6ãNÕù* (N0ô ¿k­"×à7‚?àšŸ¾=ΑñPðÌWZ†½ÄŸhÔ}&D9l²´ÌÊ#a6 ëïø(Ÿ|_â?ÚóöJý™¯5}BËàçŠ/t›nÆÊâKdÖÍΨÖÒA3!•b„as€gÎ3´€wâôß²ÇüëàgÃß6¿Ø?¼¥éi¯x3J-3\\ÝÚ¼ÂØˆèE(eåXôg Äø_ÃÚ…ÿà·úŽá½ÏLÒ”Mr,ì!XcÍá4ϵ@žY$v=K;É4æ¿¶…´?ØöÈðŸÇ/¾Ð/t[‹¨]ø>k Öžša-ºàªâÙgò¥’¬­º)Ô ƒiý£ý¾ü)øiðOÂZ¿Ã(4K¹|]ao¬êž%Ѭc³]jyw͸"(òâ§‘"‡ÊL&€>¯ € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( €8O‰_ ü ñÁºÇÃÿ‰>´×|#ª [‹ °@$«£) ޤ®¤2‘E|áaûx^ÏÁ±ü/›ãOś߄+´>º×m¾Èö}>ÈnÙo>Ï·äòÅÈ>^œP—íûü3ý¤ü à†>&ñ‰ü7ðó²G5†àç°´ƒ|P´–ó­e`"‰äETe\Hr…*å?àœ ¾0øgà÷„üsñgâuÞ‘ðÏKm+AÝé:F]NùHÓþwÅm< –Ñð\Èîî_e†Ÿ¼=à-;â=þ½âÿ¼sèþ<µ¹†ËZµ¸B„Î%†%‹s4hå|¯/r‚H§à_ÙáÇ„~,ËñÛÄ:ï‰üwñ|Z‹+_øÒêÞitèÙm ¼CU˜nîùߟ²ç¶ÿ°O€mÿi/øj¿øZÿ$ø®oEÓË%Æ“öY"‹o³…€>I¶I³ûþz×ñìMáOø?ãƒ|añwâ·kñ*òÆó[Ô5¡½Ð6©²8áq¦€‘í`m% Jј٤.èß³gìÝ þÌ ¸øàÿøÏ_ðxq%Ž›âË›;…ÒIyAlÐ[BÁdy72¹q•Bå·}@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@ fT³=IÅs7Þ4ð¾›1‚÷ZµŠ_î´‚€)Ÿˆž \gÄ6|ÿÓUÿšxFáÂE¯Y³ÂQ@-½å­Ú -®#•t`hÍP@|Wñ'öåøuðŸã÷ÿg_ü?ñÝ¿‹ü_}ae£ê°ÛiÒé÷kwp-£Ÿx¼óV!.åmÑ„#ûR€ ( € ( .ðÏÆÏ„ž2ñLj¾xW⇪øÿA6§ Y]¬—V"VL‘ŽWl’"ô,zP@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@WñƒÇ×ß<&ž#°··šOµ$ —*Ì»YñµÎUyôÏ›°2韵7Änsi¢ø&ÇP»q†ÊÞêg× IÅ.`Õ‘_þÕž<Ò®^ËTðfŸgxŸz ¨.¢uäŽUˆ#Gàhæ 2¨ý®üZzxoG?E¸?û5``Þþܲi³½¦£ÿ¥­Ò}èn.^6_¨gQv?øoKùüð_þŸþ9EÀ?á½ íwà¼×ùÿã”\þÒßþ~üÿÇÿŽS»Ãöó¶?vóÁ‡þßÿûe+€ƒöó€øúð`úߟþ9EØÿ†ðƒþ|ÿÿý²‹¾À;þºùüðWþ Gÿ¢àðݱÏç‚¿ðb?øí`)ý»aà}·Á?ø2üvØü7l­ï‚¿ DñÚWÿ†ï¶ÿŸïÿàÀñÚ.Àoü7…·üÿx/öüvØ·u¦2uàxÿã´®À_ønûú—ƒsí|þÕ¢ï° ÿ Ýaù ø3ÿGÿ¢ì,øÿ+‡ÁvÐIm†o$vÆÛI̧ô”Ñp:ß ÿÁBíÚöò´dFkïGO¶ÿöÚW}€SûyYŽ·Þ Çµïÿm¢ï°FGñúÞ@\h¤Dßý•;ð¯íåû||@ø%à¯é_ äÑ ñ·ŠîæŠ=]â[±§Á{,nY ŒÓDuewà†Â´Æ±ãK_ÛÓö9ºñÇļe¨é·>u×e³¶²wÛ¬»:Ê–ê‘`>ò ªŒ î*X >¥øïû_~Ð?mï‚ß ¼1ñyåøWâË&ïPЮ4­&H Ž{ù­å·Žà[ „~\*rÒv;úakõçÇÛø(Õ÷ÀSâËk_Í:i—Ú^•šGÛ?´Co›c™Â©ß¸ª(rÇq «ÉñJ7é&Ÿÿ?û*Wòçöyý­><~Øÿþ/êÅEøkð§ÂoV›¢iuÕÖ¡ç4Â9'šö)¿†̨ýb€F , Úgöàøÿû3| 𭯆õo~'ÕuKuØ­—ì«empV;±nŽTK$2Ú„íRí¸|»H??jÿ±ÏÄÏ€ðøçâ„_>øÔKm­Á©èö3éòÂöë4ÖgXP.U–9CðŒ¥²Á”Ÿýª¿j/Úcáçíµð{áÃ/Œ"ÏÁ8]i4½GDÒîíìZæúkIdòíØ„·åØQ´(§ÁÿÚ‡ãׂÿà ¾0ý—¾ |Qø{v{KÝWN²³šÒS§G¨+)¶Ž1³DWîžÐÊ?²~‘âËÏø(§íQc¤ü`×ü?­Ãˆ ÇŠ4û="[­H ^Ð2ÉŤ–êйòâB ¥W*@>Æø÷ûvø¾Úßß³W‡¾#h | cŸÄž=½K)%YÍ®Ò(žô=´jTÀ€²1/!ô€Oû'~ÛŸ>0øÇã¿ìýâÿˆn£®øpÞ7‡¾'x~ÞÉ$Ô,’ãìâäGµíÇ™ˆDf6ARHÈ¿?kßÛ#ãgÁ_ÚgÅzçítË߇ú:kZø{HŽâêD‚îcVQ |1 _qM¬ :¸Ó¿ÿlÿaˆõ.‹ñoÁ¶ú»'ˆ´û.¤öv¿j‹Í·ž!ÇD}‘©;IR¤æ€4Ýüf’ŠþñR[Û_ãhãívŽöù@Ö¥ /Ú¥2"¾à2ÅAZýýißüAýœ~xËâGˆ4í[ƺŒ7m}¨O1KÉãLÅŽ5ÄhƒåQœdä’J¸ÿÿm}?á–u+è2½ÊÈÞ\³åˆ]¸Ú€Ÿ¼h»äsÿm´ @Ñ4b=~þ9F  ÿ‚·Z?âI£`ÿ¿ÿÇ(Ô@ð×ü@×Q|åðí¬‡´Ò²9h»Ó-ÿo½2éj> úߨÿÚÔ®À±ÿ ákÿ?¾ ÿÁ‚ÿñê.À_ønû_ùýðoþ¯ÿ¢àðÝöŸóûàßü_þ=EÀiý¼-û]ø4ÿÜAøõ`3þÊ÷^ ÷_þ;EØ ÿ åkÿ?ž ÿÁ‚ÿñê.Àíçh:Þø7ð¿_þ=EØ ÿ†ö³ÿŸÏÿàzÿñêw`/ü7µŸüþx7ÿ×ÿR¸ ÿ ícÞ÷Áÿ…òÿñê.ûŸðÞÖg8»ðyÿ·ôÿãÔ]€ŸðÞÖ¿óõàïü/ÿ¢àðÞÖ¿óõàïü'ÿ§vÛÚÛþ~¼ÿƒÿãÔ]€ïøoK_ùüðgþ SÿQvÃzÛÏß‚ÿðb¿üz‹°øo[ùûð_þ —ÿR»ìÛÖùúðVì$¿üvß`þÞöºðW㩯ÿ¥wØÿ†ô‹þ~|ÿƒ5ÿã´]€£öô·Ç7ž ÓûIøí}€rþÞv§ï_x(}5ö­}€“þÆÇ¾¡àÏüüv‹°ûxØöÔ|ÿÃÿŽÑvÿ ãeŒCÁŸø?øí`ðÞ6_ôðgþþ;Eß`ÿ ßeÿA/ÿàxÿã´]ößðÝÖ?ôðWþþ;Eß`ønÛ"p5/í~?øí}€×°ý³u-V6—KµðåäjpÏi$“>åd4]x~×>&'hдrÇ Ù??øýa©$ÿµ—‹­™çÃzTNÃr¬‘\)#Ôe½åEÀH¿k_Ï ŠéRÊ‚8§cù¢ì·ío┑â“ÃÚJʇ à©÷èæXÿkʲ<^Ó]#’ † =IßÀ¢ì W?¶‰-mn/úcC 3¶È¦$€2@Ì€gZ.¿~ËŸu?|-ñ[WÓml/5‹ÍV!id$q[jWV±}æc¸Çn…ŽpX¶€ú€ ( € ( € ( € ( € ( ¿iЧáªRWûB<ÿ\å¤öäx›áï…SÃzW‹u³ÒõkµˆÝŽnf[‰¡T|B¤ …é™ êkίR*¯,ö;¨Aº|ÐÜøÿâwÄÓþ%i áñ2ø/]ÔDu¬îD€A#ªˆUÏâ£Ò§;ÎJ;Š£-ΧÇS^ÙxSR›I[ȯd1[Ç:Äs›*F\õPä¥zGž|Ÿñ“Å—Á¿‡g_ð—†Ròqw ¼’ÞA#Gn¯¸™§*Al°TÉeù¥^OÝfkuãøGFYñ_Äoêz%ö´Ú^—®è–rEgržZ…fa,è¹™.×wšP$JÌT±P¬mþ'ø&âY¶­qk¨xzËûKRÓõ.êÎæÚ×Ëy¾D¨²2ì*ÙU<:}rX í;ÄÚN§¬ÜxpE¨Øø†U½m/YÑî´Û†¶gd$WŒñïR¥Ô ‘i> Ó5ýSSÒ´+}OQ“N¸’ÒòòÇE»žÎÒxãI·j†uR7+8 ¤gŠÄ´ø‹á á¤Moyuý—«^¶›§ëéqé÷÷Jd_* ÖŒA#†@¡$;й4X£PÓu«©m×LÖìô¸U[Ík­ MI¥o—hU[«}€ Ù$¶r8䄸Cªø£Ç^ðÄëz\ëP]Ntm/ò’ž]ÅŲµ5é-sû“€qך,v_ü ƒà]BÿÅ‘_K∮[OºƒB»²MFH$d‘-á-+’ÔÝ#ð‹’‹%çÅÿ‡š~Ÿ©êWZœëk¥ÈÐêa4›Ç“H‘fò6ÞÆ"/jÆ_‘DÁ 4X ýcÇЯ|G§^Å©IwáëuºÖOÑ/o—H‰•Ø5Ûì,nةڥºsE€éí'µÔ-m¯ì^+‹˜ÖXn-×ÌŽhØeYXpT‚#‚ Åüâ‰Þ-øKΈ–øvïZÕ"šê? G¢ÍÎÞKnñ ö¼`’2Àì¬Ð ÊŒ°v¤ðÇÄ-Åqü/½ƒTŽÔx»O»»¶ÒãÑî.会Þ,Ïwı¬$Êò28,ìù¨[Lñ߆uk­ÒÔ-å×mžóImSE»°MVTv{gž$Y€IÿvXímÝ9  ×ßü-a}â>Hµ9çðÔ)q¬>Ÿ _ÞE¦Dñ™Uç–(Y#SfË0VþéÂå/Ú;Ƹÿ„ub½ ×ú|µº½¼±m&Š@GÞ÷±É¦€‹Iøã¦ø+©¢C¨BrÈÖï²&  ›vŽ{÷¢Ày„wZŸÄŦêw7_ÚWKæÁ§ÚÚÍs=–ۈ¢Y¤=NÕáXã Húáæ‘ð—K>»·ÔßV}jîÛO³»´Óîn`{ËõVÏ2FR;†Ÿ%ʸ•š5ëH­b8mUpŒ… &1®>hGýûá@“ 4ýcáL =Cº©ÍÞ˜Žëÿ [[Oð‡t¹„öšJ¤££‡øPL=<†Çû˜¦bùàÿ÷Å >è𦡫áýýU‰šÙ qÑ€ÃÁ¦οµ¿ìÍ7íáZèzÌZWŒ|=s%ÆŸs|Ž`‘d $ŽB ²äǰS9È7ñ?öaý£~&ünøEñºöóáê_ø=tÇ—ERÔ"Šg´»k– 7ÙâFcórnæôÚOödø™ñãÁŽÿ.tâÏ‹5¼Ñu«™£·—ì÷-rž\Ë,¥¤•[*§n瀉¡~Ë´‡í{í;©j¾‚á×í:Tz…ý³ÃØ­£¬dÚ8o)s´’¾fÀHq ú…OFüE|ð‡ö[ø©û3|Fø›¬üÔ<#­|;ñ›Ç1Ñ|Wsw§Üi/JÑˆä† –TA<‹‚°Û’ ä€t_?c[ãçÁ¿ ø_Å?&¹ø¹áûËNßÅ76Çìï-Ëî–ØDtvà‘0K(… Ýó[Çÿ²§ÅoÚGâ7ÁßþÐZ§„4ï xZS¤x>{»Ù5»‡xžS#Ï "œÁ*¢B0 ’X´7ì§ñãâŸí_ð×öƒð”ž‹Að*é‘Ù麾³} Ƥ¶·RÝ“/—c"ÂYçd™06rv€ÿ†TøñíÙ}ûXÄþ Íw䮌úÍòÝ !`ºx”ÿ ”ó¼¥ó|½Ûwžf?yH Ú/ì“ñÏáWí=ñ“ãǯø.ûOñÝ®£Eâ)îí§Ò¤»ž+“ Ž;yRo.XF²‡^ ^´ÀÖñÿì‡ñ >;|9ý¥¾xÃBÕ>&éZ|>"³ñe»ÙÚx‚T´6’\†·ü—xÜ•RªGL¡ü7áÿŒVwþ0ñ—‰.¼6u«=,ô_i3Ìš]£¡g2O|ÖþsÉ#2©aˆ0ŒI4ðÀoØÇã÷Á…Ÿ´_뻿êSüFп³-/!Ö/ã[9ŠK2)±ÉAÔÎÉ/&rèêÿ³Oì¿ñáwÀ_Š_þ%_xzM3ÅøC«xröâåÔ^Z‹iâ–Þ »+) Û‹Bà€ùÓÃÿ±¯í)£þÎÿ?g/íG¡ëÄZµ¾®÷w%ÉY-‰‰”Aû´Å²¾ì1Ü6mÃoVÚ¿³Ã|ø;á߆~;]KÍͽæƒy=Ê]G$ÒM¹Ä°DQƒJWhÜPr3€€ò/ÚƒHÒ|g«Úø~ñã¶´ÿÙg$ãþù @|Nß³¯…‹ºQíšw§ösðÆW—=¹¤ø‹öyÔ¬7ÜhWOÈ\š`yì7?¼æ[¿&3×,A çBý¡õý0ýŸY´we’X,¯ø[öƒÐ5™¥­äõf#úÒ°Ùaâ-+SE{MA˜ÿlCϘOüÿ“©“õ?ã@ ¾òŸûé¿Æ@¬÷Ö ‰ïÈ{n?ã@†ƒ¨œãêÔjºñrÃó -po?*˜FÒÿ.øOü½ÿ:7AÓíkúЀøú­m¿åäãÔl¶ùú“Ї¯Ú÷^€l9¿‚½ ¶/ùùÿÇZžàÊï8ÿ¾ <,_óØß'ühÁ#ÿžÀÿÀOøÐùqùj?#þ4žT'þZþ†€" òÿ¥ßg·þñÿ¾h°`€éFÀL=›?…0³Ãê)h2xµk)aÚ.™Âd‚zQíE€ô_ë–¾Ñ/5ß6.–ç•‚,;ƒ3IœàT#'¦ìÔÉÙsÀ‡Ä-#Vûc[ø–Úîh£3JðjWAyÁ$`•çÔŠÎì»#GÆ>'ׯ´ÏYé>3“ÂòêZºÆ¥smHÓ2Þ$‡—vëü\ƒÆ-»‘Âx;Å®“â+»+ÏËâ[68e•>'y–T ùT6Iê£Ó”Ÿ`h¿ñ¯âïˆ|9âéô j‘\éV–—ÇEƒvø¤Œ;Öe?wq qµOï+½ô ÏøŽ{½%4·×—Z–ë@¹¼ŸRŒü’I» T@Ú>B·î¾eR uB–ÇêÇüy?ØÛáJH0âï_Èÿ¸Þ¡Z¢O¸è € ( € ( € ( € ( € ùËö£¹‚Ïá{ÝÝ9KhoRIp¢)I8ž;R`~>ø<}ãÝ3FÕ|/à-f;@¿lÒµ[mVÂÝÞ)UJ¾Ç“ :;d{rU(ƦèÒeOágšx?á/Åm3ÅKã_x;]ñ7ˆ¢ROy¬iá`Sž<âSÓÖœ)Fž‘Z u%7y3Ýnçø‘{o5¥ÏÁ»×¶•J;Ñô-v jñO¤êšÿ‹użÓí­ç?fs¦Å$¶BXãå"ŽQÒ¨ÍîÀ­cोï쯆šŒ÷³y÷wVZNƒ÷’eÛtÓ-ø’C™üì~ñ¤+ðÃá‹þü*øqà½wEÔou½.µ>ƒö) ‰æ½¹¸—žê.«2†Ú…3÷]‡4Zàqß ¿g‰—ökžý!Y¾è^$mRK „f3ß›“o©,»çSp7—òâ~Y[4ÀÉÖg‰ºŸÁoˆÿm­Dz¿Œüo{¯[$׈,-d¸²òÚü¬‡l‚;y[l qØÈ&€5î¿g¿ÄOŒiö0ë ¼W¨Ï«6‹â¿jz$m¸’_=¡L–Tš&Œ¨&â4©p6>ðj>Õt«m#HƒÂ˜ƒNÓ¬¬’-Ú\YÀ±[ÇŠn¯bžE@›7ɳmÝŽh˾|øÛá?‡>ð5寂íF—m$2ê2kwÛù÷SܳU´T‘£ûA_-n\ÇĪpÅÿ†tñ@—á•á]?Tðþ‡ào x‡J›Q¹ke»žòúÆH„ö©ì¹™î®&ŸkË h0¡Æcx?ö]ø“áíwà±¢xsáÿ†Ç†¬.­uãÏusv.`Š™ç¹¯5Ë‹‹³<Ä+«…#øñ¾ßÁü'¤[héá_ßêÚÖŸ«7•©Ésuh¡¢0C$–ÅY‘`ŽF¹C^VVE@ücÐ|A£ø§Á–š­”–—º_‚t]æ$lâ⣄er¥T©RņH8ÈÃ%¸ð)¾‡XµŽâÈêzÜfÞîý‹ÌªZ?”ªoXÕs'Ι‚Ø2ýCøyð‡Åv;Õ>$:!¦ÝøßFžÆw¨Í{ÍÇÙ#–eÿFDVBÓÉpú ï þÏ?´ï~Êþ ½Šà[x‡V¹(Ö6ЭíåÓÄ»Í{²Â˜XLe¿å®Ñšöqá=HÌ—â¿ûãIÿåð‰j=üâ¯û÷¤ÿòÆ€øDõúüWÿ|i?ü± ÿ„SQÿ¡Å_÷ïHÿå+'ü#˜ÿ™ÅGé‘ÿË,<1¨÷ð/Š¿ïÞ‘ÿË,ÿ¾ æEñOýûÒ?ùcE€ú àÿÛ’ÎëÃ×^ñ¿Æh Òé 2±ù•v^¿CÏ8ûÔî±iwñ"Õï›OþH¦„zlãþ`z§ýóiÿÉ¡Ÿ8ÇüIu!ÿµÿãôÂÍñcá-‡ŠSÀ×ÿ ñ—ýó£ÿòÊ‹Â+¬ЛãûçGÿå•+£ÂÚ¸ÿ™/ÆGþ£ÿòƘð¾±ÛÁ^2ÿ¾tþYP kô%xËòÑÿùeLÂ1¬Žž ñýó£ÿòÊ•€OøFµŸúüeÿ|èßü² ÿ„oYÿ¡Æ?÷ÎÿË*Qá½hÌ‘ãûãFÿå•0ÿîµÿB?Œ?ïÿ–T€OøG5Ÿúüaÿ|hßü²¢À!ðîµÓþ_ÿß7ÿ,¨°|9­`ÿÅ ãûãFÿå•0>FøÉ¯üLðæ²¶úW…õÛ{ ¤æé-7ä+‰ë@{£þÐ:N»£êFEàíHyüåîþ øÏá¿Ë‘Òµÿ·?"M¥ŽïǼ7µ;«[¨”™«¦íø ËÓØŒÁdTÊ7v<ªÛà—ÄeÔd3|/– P[]6mÚYÐ2¶Ç•d©eÀ©Pcæ=Æžño‹í4è'ø-wæØ¡Kw¹Ô4™¶)Æ@Ý!àà~B›Á;oþ øïÃ:Ê뺗Ã+¹îbÁŠ >ïK´‰Xd(³|Ì0“€M Íü6ø“­ß^êº7Ã;ë VíU%¹{ý1™Ðv’& Wånà¹à‘Êp¸)Xßøið·Çz¶£a'ÃQog°¹ßz—v Ç²á ‚BÛs¸áTœ±'<Óå²w?Pà›ÌÍûü+g9¶xƒ'þãz…X¸è € ( € ( € ( € ( € ù“ö·f_ƒZÓ*9“ÿ^ÓÒ{ñ/À:kŸ´›¶‘-ï´ý"ÚCÕ^8”àFpOQLLûgÿè^×?ðsÿ"PöÏÿн®àæþD ížÿ¡{\ÿÁÌü‰@Û<ÿBö¹ÿƒ˜?ù€<§âïÄ ÁZ'…æðï†¯Ž©¬ø—GÐÄÚŽ¦“ÅWWqÇ+ùio(Èç1V;‚”`k×­ü¢kšÎý‰®Mö ¹­|ïíxÌØåwcì§Æq“@_lð?ý Úçþ`ÿäJ>ÙàúµÏüÁÿÈ”}³Àÿô/kŸø9ƒÿ‘(Ëþ5|Aðçß„þ?ñ¾…ámJmoHÓežÍ/õhÞ?c2¢Û+: ²«)` ¤î¿©[x;F–ÎÎëIÖnnZÊÒæI¢Õ!…Y¦·ŽR ³“,zP¶xþ…ísÿ0ò%lð?ý Úçþ`ÿäJ>ÙàúµÏüÁÿÈ”“¯kþÑ4=gYÿ„_\›ì“]y?Ûp'™± mÏÙ3Œg€<×ᯉ/¼cðëÀ.Ôâ‚-K\Ñ,u+ˆ­U–$–hF’3IÇRzÐ¥M¦yZ¬ùùûUÝů“·<¤·g<çÏÆ1ÆÞùà&R°Ú\ßNÂ;+sË;ª†IÁ'»É$h£©gP2H “þ$ü Ò~1“®®l¯a»ºµ;[vï&y!Îp:ù{±Û8ç  O~ȾÐ/ Ô5;†¹’"Wé@`ØÙA§ÚÃilaB€(ÝP@P@¬¯.4û¨/-_lñ6å?Ðûv ¢ô-f×[±ŽîÝ€n’DO1·¡þ†€:$=(æÏÚö¤ð§ì·à½3ĺîs­kz½É´ÒôKID-t껞BÈÔÉ Ç. ’@åÿí3¯x³^ý½¿cûŸx/ øŒ]xe¥ÓíõÔb`ÚðeœGb (À ÃFq¹v±ý;øûWØøCã_„g_ø9¼_ñw\ˆÜ=œÚˆÓ,´ØDO6닟.V åDïµcc·ØSáWí©àé_×Åž½ð§Œ¾¥ìÞ&Ðt¾) ©K%´ªL¡¡uûªrWŒ0$˜ðGí“ñâ?­OãwgË}gÀMpZÂÏÅé&¸ÑBì®ß`[B¡°¬Â36ö*W |Ø^}²ÊÒóÊxŒñ,žTƒ àÓî3ŠøgĶWŒ<#ûUx[öcñ'ÁÝ.Çþ;„}7ÅRø®O&æÁÚ@’ˆ~ß=„.¢øópžfzí>(þÑ¿|⌺g…~h>$ðÏà GâOW›ÅÒØKöso<Æ iò…Ÿ³ža<¶,¾fÐáú7üZñì«âÏÚNø)j4ï ëãFÔ4 üRÉ'”ÆÕx¦D;o#SE«6òp´ëzwí£àÈ?eö¨ñÎq¡éZ¢ÊøzÎä_O-À¹–Þ8b¤AÙ¼’ä•P«»<.HoûuKáýKàtŸ>?ƒüñjÙn|=¯Zë©©ù*þQA{‘‘•¸‰V(g£më¼Wû[È¿´6¥û5|6ð%–½ã½.ÅooîüAâÐìã,‘H"…ļÒlž3µS»vV Ù~|DñWŽÓÆ6ž3øoyàíúŸöl¶³]‹Ø/AŠ9V{k€ˆ$ˆ¬€gh ‚=AÏZð¿ˆ)[é‹§ÊÖ6Ìò/IöÏé@a@P@^{Kk¤)qH§³.hÍßg¯]yþ_öm¢ÝmÛŸ73ÃÜçõÙÏ?wò)ZZ\ßÜÁee“ÝÎâ8á‰K3±à;šætÝ~ÓVÔn-l)ìVÆÖþè%%ÂNÓ+Ž âCAÇL ê( € ( € ( € (  CCÒµ@~ßeÙþúƒ@:øÿá·Á“; mm-._8覀>$ø‰ð£NÑ.޹ðû[†ha%ŠG Ü¿Jñ-WÅz¿ˆnt«meškÛinläŒÐí§ÀÍ%õ?höo!€Ç§\]d¦ìù6òM·|¼g¶sÎ1@ª«;*ª’Äà2I  yudÄ0è ¼»/„Ò,€ùZÍ2Ä@þ ò2°ÎU£*Fs€ z(¦ðž?´ïò@Ù:§'þ¼g¤ÀôŸø&çü™¯Â¯úüñþŸ5 h¹h € ( € ( € ( € ( € ùöºsÁqÁÁ^íÚzLgߣü|çu¶ˆsÿ†˜ußŇ֞9Ñ~·‰ìåñƨ҈t›fóeŒG’±—nD`,O÷ˆ$àÍ{ÃÏ ß|JñW‹|#¡K—‡tý;Rº–ý™"’+Ù/#ˆFT1,O›p 0[$(°Ã8øãþ‚ºýÿŸÿPÊÚŸŒ4mBñψõ&š'ÂwzÍž¡'—¸çL¹¸¶¹tUÉe/k#'F*W!I*>{ø§ãÏüCðÂ{Á>$±Ö4¦øá°f²”1Œý¹>W_¼þË}¨éÿ¼ð§_ñŽ»ãÏÚévoªß#”––é–W%bŒeœôè8ÈÎ3@EðóöŒøIñÃÖ:ý‡Œô}:[©et­[R¶‚ò ³dø‹ûQ|øoi£Þê2ÓuXïoRÒH4Ø/g´FŽVóÞræ Ñ$‚ëÖ€=+Lø£ðïXðuÇÄ7ÆZTÞ Y¦ÕþЫ ÆVBq±²Tml7Ì8äP–x'ö®ø%ã½{ĺ.™ã; (tŸ%c¾Ö®b°Rg2îû2ÊÊÒÍþ±hÑüQ⟠ëžñ‚è¾"Òõm"進¼ŠlƒFÒxÀ'ð  _äˆ|ÿ±SIÿÒ8¨é=>ûKÒôjZâÑ-5û¹ï[½Éh,ZAå"³Iòƒò*’Ý$â€>Fð'†¼Kã-'ÀÿQ>𥵯ü#ú²….ïï"ˆGý»¬Æ]ó¨IóÃ1ZYÚ>­$2oUóä:8÷#(3°!àŸŠŸ|3਼Y¢x’ =#Ÿ 4¾ƒk¦ZÅ¥xÖúƒ4LBb+Vˆ­J¬6Çå< :Èú§|M‹Äz†¼t¥¬ú?ˆtí }&hSç󣲸}¥†ã!K£ó)+±HÚPŽ¿à¦ÿ‹a–ââ;ˆ£¼qŽ_oعUËaòÁ ý©.~!øÿö±ý›þ6xàwÄ“ào ®ƒ5Ü׿YáÕychÖ&ua½P»˜ò¡•”°ÆÏ~6Ðÿj}?ã¸ð‡5Ï…×zRéú­Ï‚ÞòßRÒ¥JûlñÛ2\ƵÔq²Y"l°e Kü4ø3áß ]|{ø—ðßöqÕ­â»ðn¡§ÅŒu=R{¿^N<é-ÞÒô‰R&0ƆI]Úf @>ø¹û2ŧKàþÇ_ >:xWâÅÝê}»F¼Ó/ìl´hÊ3šŒ¨ 2˱AÈ…rI\rûû਼Gkàï ÚøÂê+ŸC¦ZǪÜÁ€“^”Lë€ ˆÀhó×þ QðGƾ2ðÃ_Ÿô-SSø§ð÷]·ò-ô+9.®ä¶•¼Àé`»˜§‚Iôü:ø‘ñ'öhøÙqâ½ ]â?ÅÛ-oV½Ñ®‹Ã,wwvϤ›ðñÁmZÄ#lèÌÀ ü¾ðF“ñGHý‚~;~Î’üø†ÿnüWkzÐ/‡n¼¤·7n ¹_ÞHd¶+å f*ÁÀØ”Ý5_þ+Á4üðÆÃÂ> Ò~$ü=Õ$Õî4éw:L—[f½fHÊ"È<‹Íᔕ,›3»Š“ÁÿÅ´|5ÑïuoøI£6Y¢Š‰fI™•ÂeQWyûêëÿðMÍ㯅~ø¿Nø×s«A¦4¶·~Óuù™î--Y%ãq&8]‘v¡#¶€À°yñ?ö„¼þ×ñ–‰àÏÄgðߊü?¢_X4qeíõ'Óãf?òÓfÛÉZ'?{ ‚dE+@áüDÖ<{a=Ôªxbÿĺޅ ¾“G‹KYµüq5ЬƒP{²Ö1L¦¨±”ô¯‚Z‡‰õÏ…žñ?Œ;øˆ~$ø† * Tx{Bñ.‘¡æhðèïÌZ|“5ÓO"ÞµØòˆ…¹̶˱É8¬6ñm®­ñ+¿éQ^.Ÿ¬ÞhßÚÂØèj¶S„‹uùñ,l)|—Cq™Ûìåc‰Á©iâ¿ÞÙxcÁãÅZå–·â¹4BûR±ÓWWÒt™õ5FhV[ daIE ‰‘¤ Ã+ñ߈üSð÷A>*û=‚ÂV𤢯ŸUM'Yµ²‹m ’!o5‘,¡&1< JÐKû†µ´žáWs"’­~txçö ñn›â-GLƒA& yL`È„î´ãºÏÆÏˆ^2•l4Í#Êi¸+]s@v~Ξ »Ñ¼:𖵦Ço«Ü Ò]¹ °ü=ÿ ÿØ*?ý.´ üOo¯øïÅ>;ðn…y¬é 5 ,·õYà—O¹ÔévVóèÚY-¹,^X&šêõÚæHbù|éää¾-ØXé¾<éše”zmŸÃ§‚ÞÒÖ5Š("H5%TDPª¨0À *ø·⫯ƒßþÏ{ªKÃz&«>«â’Q-î‘kje±spNdšížÚ‹ Žck«"cËS@•ªë~+]Kâu‡†î¾ÏvÞ5·±Ù£&›«wöÁ[3v¼×!Àf7ˆµŽ`§1ÄÜ>/Ö|]|÷šwÄè4_i>Òµ‡öUާöŸxvìÝQ¶Û^nÖlG•1Ù&#|íc±þR~Vè@9û_x‹À>ñ^¯á…> ðŽ¥o-…ü¶¾"ú}jÒÞàKuoå›}Ó=°ž(GÍ—ŸïE÷¨+_ñÿŽn´Í;Pðôš­Æ‘ãK§h‡A‹N„z\lÒy¶Íw‹VY®tù§I%2µ¹0ì _ø™â½Oá׆®<[?‡žóOñ4šœÖ°i—·Î,5+;kbÒ'kÞÉ~^0Ï:ãaBÄøoÄ^3×5 oâ5¯‰~˯x‹áÿ‚®›MÊxd¼º½GdgOøùÿ^-VâVŒÏt]é°FõÃÍbmwÂZ}íÎ¥=õärÜÙÜMwm´ë4A$s¤lÑ£xš9代âIc~»\ЬüýšµXµ¦Õ|siˆ„4jÜÐ鯀là°¾žÖÚ0Ǥjjª;°Ï@)ã CÅú‡‹áðïÃmOWѤ»ðõž»â–³x#ðøKÍFFm%ÜíŸS¹†êÞ6¸ ²Ò;TmÒJbH@¢xgAðnµà¿ xcL‹OдýQŽÞ֣ϳ%™‰,ÎÌY™Ø–fff$’HÏ¿³ÇËè¼3ðKÅ–žðo…­í´KKË­oÃ× úˆâ“O1ˆ/PZBZI£¹|Í0Û ÃH€5¿ˆÞ.Ðþ éšÏÄ‹ëmOÅÞŸÅ7º¾§XC,oiqÇoM шØ_I$„¡v”e QbéÿÕ>Zø’ãMÓ!ˆAu©XjÒS*É"ÇZFÑÝY¼Æ`Àû+þ ¸1ûü*¯Û`ý¯Ìø-­¦q–“Ÿûvž“ãÙÁvèÿ—ÒÛDøì4Àüâ»ð'Áiþ%éàýŸ|]Š[‰o|?<:ÆŸ~d‰Ðf¿*»^O0`¹W`WÙÿÄ=âOúÿÉéÿògÃÿÄHáú ÿÉ*òÕ¿i‡³O‰>1xÑ¿gÏhž Ö4- 5¯†,´|©l$Õ%¸šX’ýÌw+¹–À…ÝŽ'sü%â+a­'&ùàì’»vR¾Ýð¼øÊôðÔ17œÚŒW%EvÝ’»…·}t>¤ÿ‡¥|ÿ¢?ñWÿ´?þY׿¿ë.Wÿ?¿òY‘ý ÿKŽÿè_ÿ•hÿòÃòë^ñÇÁIñÏ^ýŸµi¼Qãßkk¯.‘ ÉÕµK–²"wºÊΉwn›‰ÚŒœ1U J\M•B©*ÚF2“÷e¤bœ¤þ‰7ÝôÔó³O ø¿%ÂËŽÁrRN)¿iIë9(GHͽe$¶Ò÷vWe˯…^ø]¥ü6°ðßÁoøfê_øtOâO]éwS^¨ÄD%í®åeÎìàFˆDc'p\òdœi‘ñ"X\³í*F.MrÎ>êi^òŠ[µÖçÉæc•RU±t¹bݯx½lßFû3Ôj߉_4ÿøãÃz§€µ¯ j¾.Ôô´Óõ]Nbˆ¹¤o·w ÒB',XÆ+ôî,áßõc‡(ñµöžÓÙûœ¼¶ç7Åy^Û|*þGÌø[Œÿˆ•Ç2àÎ_«ÛÛ~öüÿ¿Ø÷>+>žg„ø'â÷Äχž±ð„­ü eáë)'{{A¢_¸‡Í™æ` jã|žjü‡ýtÿ¨ü›ÿµ?­ÿâY¿êoÿ”?û±ÕÿÃIüoÿžþÿÁ ïÿ'ÑþºÔ?þMÿÚ‡üK7ýMÿò‡ÿv8o|KñçÄÛ #JñΗà-WJÓ¯—QŠÎãC¿òÚuŽHÔº@nf”ñœg¥ë§ýCÿäßý¨ijÔßÿ(÷c©ñ‹¾"øïöiøÝw¨Ýx7Nð¿‡ÄºIÑô?Ü[<ËökYÕ£”Þ²D](+å6Dg[+9ö¹î%úµ¾± O›Ÿáåöºròëg½Öûi¯ã¼_á÷ú«[Gë^ÓêÒ„oÉËÍÏ s¿Ç+[Ú[­í}/eúûHé¿üàãñgÃ~2ð§ö/‘á›(tKÃ7SΟik f»MB5m­3J…x3üuË–ø…ý¡âE¾«Ëí'ûn{Ûš’«gȯkòÛwò?8Ìÿá7(¯šü^Ο.×å¾—Ö×¶ö~‡æ·Åˆ<ñ¯‰¼/ðïÇ:€µ½* KG¾ˆ\h7éžîæ{gŒj8]ßi8b@8Ækõ?°ßê&8{û{Ò[ü“å·¿¿.ý/³<ÞÌ?ÖŽâ7åöÙj/Ù_›Úó~Ñä·ø'sîσ>ø»ñ#KñÖ›gㇺ&•á}dh e®åŠá …á`ƒU@ƒý4¦Ìû¼çæÀþnâO¿ÕùaWöo?¶§í?ËoÞT§oá;ÿ÷Ó{[K³³õÓ#£rû/hä¹oÍnY8üVïkì­±ð'†|{ã?‡v‰ñÁº'ÃÝ*óâOØN¡ge _GL-n®Õ‚CnFçCµS;íƒýYÅœ;þ¬på ö¾ÓÚ{?s—–Üñæø¯+Ûo…_ÈÓÂÜgüD®9—rý^ÞÛ÷·çþþǹñ[ùôó=Løáñ‡Æ×º×„u;ÏæËáýGP¸–×C¼Y^(Œ´HZø…f[“‡!‚•å[8¯ÈeÆvö?ìÿÄ­N—Å·´æ÷¾m˶—¾èûÿ8Oþ ×ö?ïþ·õúþÇáö^Ïá÷¾*œßÃîí¹õŸÀŸù"ÿìTÒôŽ*û“ã¿ø;XñÄ=œ|]á­;NyåKO ÏiÍ$¢0ï#Io#1Ä1€7``àd’@<ëþV¯ÿGñWÿZÿ!ЧøcÁ–Ñ4="êúï]¹Ò®'»ƒV×VnÄò™·Ë½#E¶âTܪ G “¹‰én,,o&°¸»²‚{‹Lö²Í»[JQã/#*Æ9$LŒ®Ã¡"€2­ü'á[?_ø¾ÓÃ:T,¾ˆAu­Ce]ÜÄ’N{(ÇÁ$|‹è(Ñü'á__kZžá+LÔµ‰|ýFïO²Š oåË6ùÝtŽrÄœ»æ€*é^ð>…¡ê^Ñ<¡éþÔ<϶i6:t[]yˆ#2%P¹Sr ÅZ›Â~¹±ÐtË éR麰O¥ÚIeE¦ËÛ Û¡\DѯP£Š.<'á[ÏXx¾ïÃ:Tþ,±ˆÁk­MeÝÛDC‚‘ÎWz©IÀ |íêh¿ðŸ…uM÷ÚŸ†t«Ï^JóÜiwVQKo<¯1âe*ÌÓ!$d¹Üyæ€5oì,uKÝ3S²‚óM¼‰à¸´ºeŠxœdt`C+) ‚0AÁ  ­kÂ~ñ$Ö—"ðΕª\ZÅqê6Q\41Nž\è…Ô•Y#ùx9P¹4o¶yº5‹ý®îûöè|û˜¼¯*gãæ‘<ˆ6¹ù—ÊLµpG èpýÊѬSì—s_Ûì·Aä\Ëæù³',çϹÇÌÞkäÍ ‰á? Çcq¦Gá)tÛ>=&[E²ˆE-ŒaÖ;fM¸0ªË(XÈÚŒùŽ@8­cáÞ§ªxêÓÅëú}µ¼rYHóG£ Õ£K[ˆ®’Ö E$]¶o<»Ã$R–ó&Ô2y@QØø×LÕ ‡Oñ–“m{0e–XU ‚7 €pO#×¥z¾’T)Þ?‹åyì  z˜=J€)ê6×…°µ‹U¼²Ì1³(¬äK+qó( þ«ƒÿ3n»ÿ¢ÿãt¡k£[Cesa}4ºœÉæIý¤#—qÂàÐFEM›¥ÚÚÏcm§ZÅe6|Ëx¡UI20w(9=¨R‘ dœD‚wUF(Üʤ ô›ÜúЫø×þ…líÝ%– ¥c`.GÊ tÇé@¬x’ïUk˜â‚+åiä¶´@‚YWŽ]ŽIô Ò~èv+ñ'Œ/í,u jûU:…ÝÅ’ôÚ}Œ‰ §,7­˜,Ë·!övä€tþ𭟈¯ü_iá*_D ºÖ¡²‰.îbI' ½”ãà’>Eô«aac¥ØÙiše”zmœI½¥¬kPD€*¢"€U@€:]–™¦YAg¦ÙÄ[ÚZƱEHª"(UT`P«àO뺛áoÁº¡á½?Ëû“}§A=µ¯–†4òâe(›P• HP­cÂ~ñ ö‹©ëþÒµ=KG—ÏÓ®õ (§–Â\«oÝI·F‡*AÊ)ì(¸ðŸ…oOjÒ®¼&‘Eè·QIh±DTÆ‚»6¡DÚ1´cnÏAÐôÿ쯰hÖ6ßÙ–†ÂÇìöéØí—˜bÀù#>L9EÂþé8ùF2¿áð?ý ºü‚¿°¿äüƒ?çËîÿÇ·ý1ûžÔ¿aac¥ØÙiše”zmœI½¥¬kPD€*¢"€U@€[ € ( €îˆ7;_S@ÖöÑŽÕ¹ŒŸM€$–Hc¦”¯–£$šát¯‰Õµ‰´;-F¿ˆá£V€;]B+û­7T±Ó5ÛíêöÒ{?í=3ÊûEºMFæ3*:(ì$g#u“ÉÑïP¶‘0sIì®ÿÁ7¿ä;ÿ×ïˆ?ôù¨S@}É@P@P@P@P@PÌ?µâø-®)û¤Éœz}š|Ò`|mû7ª¦ð’«k¢O¦Èiò¯ü+ÿô/xÿ {ßþV×ìÿñêÿ*÷3ðÿøƒ?õÿ”¿û ýözøûñ½þ(|-дχú~¥e [Iu{â[óŨýºÞ#]4–ek‹)Ú0Säíâ̼QþÐÁVÂ}O—ÚBQ¿´½¹“W·"½¯µÑÝ–xMý›Ž¡Œúï7³œgogkòÉ;_Ú;^ÛÙúOü;{ö§ÿŸï…_øRêŸü«¯æÏõ/þ¢?ò_þØÿBÿâfêQÿ•ÿû‰ó®‰ð ãDúÌ„ž -áoIÑɯ^/Ú'Ò5fŠUR,I,œ+®¬T­MN ö”jÑúÇÇ Âü›sÂP¿Å­¯{uµ®·>Š||ÿYr¹å¿ÙžÏšTåÍí¹¿‡R-od·å¶ú^úÚǵüfÔþ"ÞÚü1‹ÅÞðÞ™¦øu’ãGñÆ£+Köø°¦9,`v–;·’iÉ#Èà ÔÜÂxÿ­û^h8[“–×”e{óËùmkuÜü›ˆ8³ûw 7°ä´”¯Í}“V·*îzOÆÏÙ«Fñ¿ÄÏjšÇÄ ÿ„—PÔ ´µþËX­ey'\&l‹• 3¨ÌprI#5û.mœcs̶F>§>¶’·*´uŠRÑwzõ>#…°Ô¸/<|I‘¯c|þþ²þ%ùýÙóC[ÿ.,yŸü2'…¿è¦xçþúÒ¿ù¾?ýZÊÿçÏþM/ó?\ÿˆÛÇô0ÿÊTùXÃ"x[þŠgŽï­+ÿhÿV²¿ùóÿ“KüÃþ#oÿÐÃÿ)Qÿåaÿ ‰áoú)ž9ÿ¾´¯þA£ýZÊÿçÏþM/óø¼wÿCü¥Gÿ•œ?Å|-øñ‹û â/Šîô›ËYo¯4ItÇ‚îsPfŽÍ%\$Q`$Š3È9`ÑÊiã¨æQ£ûú1q„¹¥¤_5Õ¹¬þ9n›×É[ã³~.Îséש˜Wç•g?v î*1_ U¬¡¥¶×Vïö·Æÿøâ Â)¨üYñ]‡‚§±ÐnWÃúm¶Ž †[x,îce–[Ÿý|)) )å~çËYá¸G&Âq$8º f0jJ§4Ýš‡"|Ž^ÏáÓXùï©óx¯öÌL}iM8Émt÷WZõèî|Ï{û%øsQÖ­¼Eyñ;Ç2k5£Çq»I]¦Úc<(±ÚvÊÌÜŽsƒ‘Å}OשŵláûY(J ü>ì“R^ç.é½w]Í”á(äYaÃò`qÖöôîß?.Þô¯8Ûû’‰ì>ð?¼ºúxSã׎lWZ¾•ðû‡¦óîDÛïýæ˜Ûumáp>Lã$“ù¾eáOfî“Æ`¹½œy#ûÊªÑæ”í¤ÕýéÉÝÝëkÙ$Œ‹G†°0Ër¸û:½£w+s7'¬®õm½YãRþÈÞ›Jðö‰'Äß3CòþÁí$y!hæû[»/ÌO\õÁ¯Õ³lãže°Ê1õ9ððå´l•¹U£¬R–‹»×©\-†¥ÁyãâL{kç÷õ—ñ/ÏîÏšßùtébïìÏ¢x.ÃÄ.Ò¾#xÊMJÏG½„Ått¶ŠxVI!p,Úíy*UÀ+.I¯|7•¾KÒø'‹Þ–“…ù^ý.ôz>©ŸAÇþcâGÔÿÖz¿Xú¥OkKHÃ’z{ß»PæÙi+¯#Ú¾ÿÉø7ÿb¦“ÿ¤qW¸xǽ)&ðæqgi$ºµî§wiˆƒ;L;S*Žû¥|`dîïÅy¾«âï é:/…µ¹uhnañMä^ƒOÿJ“[y63Én#Îè!…üùgÿW`ÙtVãu‰Ú'ƒt oÆ“j¢É.õR÷º~‰{­½µÌ«ºv¶…ÖXÂüÒmÈV98b: ↼E}g¦XVßRºŠæxm5ûL–H­ÍºÌá.aŒíV¼·Æ¹ ´µ € Êѵ½/Äs_é_h´ŠîêÅßc&'·žKy— ùeŠEÏC· A ´P@Skz]¾¹§xn[­ºÕõ¥Åõ½¾Æ>d< +nÆÑµ®`$¿€pØÊÖÑ©ìþËÕlôK¿ÜÊ|«Û¯³yp¼îûm¯Ì2£ÌùˆÚØçì¾.xÿV}" ­U]u t£q¡j0X}®9šÝ¡Ï·,gS âOžBw3@=*€ (  { _[éì“›‰â’eu‚Fˆ*V (]ŠÄÈ»U˜3ÅAå@-Ð@U¦üfðN«®Gá»;ÿm7ZÞãÂÔBLî‘I+Ij«lÑÈŽU?vüü­€@е½/ÄÚâMëí:.«i õÆÆÎ‚Tµ€eʰ8 ž@  Z(+QÖô½*óB°¿ºò®õ›¶±±MŒÞ|ë×r û«y›-òc9 *øáÿ ‡ü"7ð‡nþÑÇzÐç5έñûFs{9ÔÆÙ< uÚíWã*ÞëKñM“º”+’n”âÚÄ3¢üG‹ÅvSºÚÜO¾E'œÎhöËá6³¤xòÆ õ"{vÒïn0ŒI¤²!àötSއ´æ÷ßüO¨™“L±³Óàr<·Úf–1Æ~fùNyþ‡ñ  ÖñÿŒu)#’ç_¹R£[‘üBŸÆ€6m|Mâ)ß®êþÞüh¨²×u£Œê×þôî­uº~·ª¡ÏÛ¥|ñûÿùÐ/ñ{Ãó|Gø©ø^çPmp²»X|Â…¢‘2S# Ù@ðçþ—G@UøïþGØVïÿG=r”P@?þÕ?òo??ìßúÐÕ~2ÿ½Ÿý‚´¿ý!‚€9J( SÇŸò#øÏþÁ7ú%è•øÿ$CàßýŠšOþ‘Å@ówã=3Àþð6¹{{¦Gwk®ß]ÚÚêwëd—ov³Ì!Š‚v‚Á[nìí=Ë ,¼áHlµ¯øßÃ7~1M2ßF€YêJÖ~ÒáA¥éÂYEµ³¹2ÜI™¦fv@,øº õÿ€mt(dÔnu3ÄÑÙÅ`¦v»iðF±ÉrÅ€P¹ÎF(CÇÓè–ZUýüÓÛϸöú²JD’2ªÞ£LŠeb%ˆ\8Ü‚WÜs.à[ð׆nì¼%ñ:m'Ã0\øzú-.¡i¾¿ð®œ.%7wK’àÜ^°‚Xšh•nâ·ŽÙZB]Pæ]ÀÉÐt;¸ôA§x‹Â“ß|3·ñ‚êw:&Ÿà»û ty4‰-ÑcÑdÉ´jÑùWa&Û²Š’$„æ]À„õ{‡~3øÄ“êVz߉¤²ðæµm=û4Ój³Ëj$ºŠs-û F°^H`Y'vù±³˸íû@ÄføjЋ+û½þ ðêý—K¹û-ÌùÖl¾Hfó#òä=üÄÚH;—Ì»âšß…µ ]Â7á°ü,o­ì:¥á;»ÛXôŸìa ÐÊ£:®éA‰HºÚPy„ºªðW€.fñÁ—ñ›{¦iW‰nà{6m6ÚÕäÕ4é¬"û–A qŶ¶™‹Ä¶Ñ‘ËØÎeÜ@ñƬžø§ðÿÄ—úN»s¢ÇáýrÆKE¾Õ|™å¹Òž5uµŠFMËćš9—p2¾#øZçÆš§‚o4”¿‹Añu¤ž×âþÏš“K‘EînÕ‚Éîín¬—xG…õwudpRC™wŠŸÁ¾6Ô¾ë—zÕæ­qã½SÆ ¬š¬:jGw ®›ªÙZý¦(Ù6·Zš¡C n“‡]ÒHs.à{ÿ…¼¾¾Õµ›ïjÚÿˆu ¶›UÖªKöx ­ !-¡† ª÷ »fòe!˜…@§2îmƒéG2îƒéG2îƒéG2îƒéG2îƒéG2îƒéG2îƒéG2îÔÚ®—£ø_¹Õõ+[fÖ4èÖ[É–%fòoŽbp DZ£™wç.o j>6Ö>"xËÅR:¦­{ øwLÕþѧøe/º’˜‡–òæI]ç¹eR"XáŒ!9—p=–z÷¯tÛ¸nìåÕSdöÒ ñejdGÔRsŠÕ°<3Mð îµðËöJð׈¼3%¦Ÿö¬éóC4gDðýômÒŒ•’#“ä3ÊpÁÊœþ±KùìÃÁþ½ºñ‡Ã¯øfüh¾ÿ„ÐYÃ<3Gmf‹®Ù2=œ'–¶ñ#ÛÆÀ¢‹xÞ0 HÊ}b—ó ³8¯„Þ ñ¾c©ÜÜè7>,·ð}Õžµ¦iz ß…åÖõ†û^³%ÉûuÙ’+¥KëueS4òù‰æÆ$>±KùY•t_ k°XøïNÒü4SÁ—ßðÜ6›áÿj>³¹†ÛS/¬#iÓ—id’ÆX°3wòcIL(>±KùYšqøBØø_â(ÁZî—ápÔn<'âïˆÞ+ñoŠü)†ì¯,¯´¯ iúÀž ­FÚÂÚÅu{ó!îÄ6±Ç J¢uRë¾i^ZÏø•<-ðwÇË_ Mµssàw´†-%…ÓM;E¨…‰Dy,ä²€£“¸qÍv•Þ‘ñƒÂ0ðÆŽÚæ•w-§•¥¬xwPÓžÂåƒ{¨ÔP—’cITÆÛ‘Ñä%MyW„¼-âýgÄþ×"øÝqiáùïu{Ÿ‡Piz³3$}(Ö£uŒ¹ùÁg<ÃóF—,7*Lá€9ÿ[juß_XxSÅvþ¿ÿ„Ö »‹½2{¨à×îeº’ò\C䤄³0ŽD æŒFÑÈÀ®>CsâK Oë/ˆ¦km*ÒÚK{4æð³ï ‘…Ai%ì³$‹þªI&•1‘Õ€9_xOÅRx?ÄZe¯†uVKüKÒl-"²”ˆ¢“S·]:Ú µ´H F qÚ£¯‰ü q¡ÞüBÑ|/áËåðdÖž¾½µ¶Šk„Õ‚ê×M«´€îkË™l"Eœ2iÐÆŒ$.ª@:¿€Ðévóüc‹DÑ/´}x®3g¦ê(ÑIGÒÊ1hc*AްÅHÌqlòеҬ/£øÃã­NK)×M¸ðÖ…Wm¥–;­]¤E|`²¬±ä Ÿ¼2ò¬?5màö¦è^Õ`ÕõƒZͶ·[N÷º µÓ–Ö œ‚ï2»ŽŸ&4ó#‰UP¿ñcáÆ¡‰$Ò´-;ÉÑ_ÃðZøzïþ[¿^YjÍqz÷76—ksé÷¬ÓYÈ×·N¢YHÒþâFßtícþZëz…¼WOÕt›¸uX<3¨êÚ…Þ— –ÒÞµ®«˜¬còVöÓ›d»UÚõCW†î#øŸàK»ëŸð—Úø×]¼Ö¼F-&[gÓå·ÕÆš'¸ÈK¬[ËkL<ß³.`f¤Hõë¢8Úê} PŸHÓ.ch§²…ÐŒTP¿´÷m4Ëx/¼;áD¸žVÚïr£×ŠøbÃᗵ˂l<=r›(@Ðìgì£áÿxbh¼Ct"ò´mVY^á¬*,. $ž©4ãK üCñ%”!ñ_…-¾ÚivvWÚm¦°$›ÅÏowywo¢¬Digo-ì®¶ÑîÈÁçfX¢‰@;[}{CÖüq¢ck67þN•æ}Šá&òó5ž7m'ÁÆ} q_üâ_ |:ørúÿ‹¼Gpëá­>ðÖ±kcZ\¢²€Gká£ÚÑâYàÛ› <óHñU÷í/Â0ø#Äk©xoà׈<5w,šl«º±ƒKì–äŒÎÛ­ßd‘†ŠPtòí ×ß<+„>/|@Óô*{ Íá(nQñ#Ey¨˜µ•ºålù×oÚyÒ¹i\‹±ùM ©ÿà›ùÿ†8ø[ž¿nñþŸ5 ûŽ€ ( € ( € ( ø§ñÃß í' ¨ø’bZL3e^ y[bàñ‘–<€Ì  ø›â7‹ü{uçx‹V’KPûâ°‡÷vðrØÛà€vËã‚Æ€< ×öŽøL¾)Ô<º®¹'Œ,̹Ѡð¾¯-Ì)…míÛ³k¡ ІSœ@áðûâƒ>"i²êÞ ñ¦«e ¦ Í»öÒŽ©,lÆÿì°Ú€=zË úPÛŸøO@Ô´m]ñF‘¦êÚ¬‚+ +ûØ šùË 3‘‹2Œ(',zôû.Ô×Y ij¼i’~?ú  ø}ûH| ñgÄ{ÿ‚ZНâ¾hn/4;ÍP²–Ú4XϘx6R%‰”†!ÕÕ—rœÐiñàæñ'H¸Óumw^Óï™6ìè·kmyjp@*û °‰ "ºg’§€??ümû%x·Á—Ó~Ð_®´©N"¾ŽþÀ.ºãìgk~8#¡8 p_ð¢µú8/Š¿ø2Óÿù€øQZ¿ýÅ_üiÿü‡@Ùò;«ýó]øÁñ[¶Òu;MZ?V½±’ '¶™fp[ElnA¬§ŒŒÐ®­ð{Äzæ«©ëZ—í ñIõBâK©Þ+Ý2i‹1TK ¨2N@ q@ÿð¢µú8/Š¿ø2Óÿù€øQZ¿ýÅ_üiÿü‡@ü(­_þŽ â¯þ ´ÿþC  ­söm&Ñõ_øáñ:ÿE¿‰ ¹³¹¿ÓÝ&CÔö?ר<Ší|Sð³Ä>,ׯµë¿Ž¿ìÞãb%–™w§[ÛÚÅ,qÅ ?º‘¢(,YŽÜ³3Ä/€ºÔÒ$QþЋ¹ÀRÓùÿÉ:çÅbi`èʽghÅ]²¡9rÇs¬¶ý•ü[>Ò~>|VP½©Xò~}Žñ?%Â])Ý£ª8*’èjÿÃ%xŸþŽâŸþ ì?ù¼'ãWÙšÿgÌŠãöCñÔZÝ|zøŸ5´ÈÑÉ ºŽžË"‘‚¬ ž àƒKþ#&WÙ‡ö|ÏcðŸÁ§ðw…¼5á2y¤Ót=>ßM·’é•¥x¡cRä Q’ì(ÿˆÉ•öaýŸ2‡ˆÿg¿øÒâÖçÆ^ ðö»sl¦8fÖtÈ/'%TȤžp)KÆL±+¨°þÏ™˜Ÿ²Á<3áCzÂ=eÿÆëëã\Ÿ³¥¡¢Ë_Vzžð‹Â~Ò-4=M°Ò´‹mÞNŸ¦ÛÇm;˜»mUË31Àä’{×…[ÆÊ­Gìiû¦«/‚Z³¥_ x~ #®ïRkÇŸˆ\K‹›(»z,%î/ü#~þú~t¿×~*þW÷Õ¨ð߆¿¾Ÿ÷Сq¿+ûƒêÔþ¿ }?ï¡GúïÅ_Êþàúµð×÷Óþú>7â¯åp}ZRûÀ^ × ŠËQ¶ŽæÞ;‹{µŒ¹– Rh›‚>ì‘£z¼äq\øž<âzP¼®—¡K Ešsx7B,¨UFk,/‰œB¢éó6ßKKr¿ü#^Oλ׎)z¨¿¸Ÿ«Pá¿ ÿ}?ï¡GúïÅ_Êþàúµ>ð×÷Óþú.7â¯åp}Z€Â7á®~tÿ¾…ë¿+û˜}Z€Â7á¯ï§çGúïÅ_Êþàúµ>ð×÷Óþú.7â¯åp}Z€Â7á¯ï§ýô(ÿ]ø«ù_ÜV Ã~þúßB‡ÆüUü¯î«PøFü5ýôüèÿ]ø«ù_ÜV ðøk?ï¡GúïÅ_Êþàúµð×÷Óþú>7â¯åp}Z€Ÿðøkûéÿ} ñWò¿¸>­@ç¼Eð·á‹¡·¶ñ_†ômjÞ݋íg ÒÄÇ‚TH¤Žâõߊ¿•ýÁõj*gÙßòJ<ÿ‚;?þ7Bã~*þW÷Õ¨Ÿ‡>ü4ð]œ¶>ðþ‘£éÒJg{].Ö+XÞB.QˆUë…••N+âÌb䊗Ü5B„u7XxQr?uøTÂ\c-}àWÿ®?åOüf7ûcÿgáÉÿSU?õÇOŒKêâøE2?ÔÓ_ë+øƒýœ%Ѽ5}´¡Œgû¤Q‡ân+ʯ©?TÁÑ¡=Ž_Äß |9â½ZðÑõ[I¬®í·²yÐJ…w) 2¬FAg‚+ÜÀø¿™ašXšwFrËàþC?éÀ&¯©ÂxÓ‡“µjmK.}•?€õX†T¯¢Âx·”b¦ìe,DQ> Öü±5êGÄÜŽ_òðÏêu;ü!šÆ3äš_ñ²;ÛÚÔªöàÝ`ÿËMø›‘¯ùxS©Ø?á Ö3$Ñÿ7#µý }N§aËà½`‘û“ÍD¼PÉ"›öƒú•NƤ_µÚ]€ÏjðkøÇ–BüŠæ«/ŸS ¶ø}l‘ƒu8Ý_ñ“V«XJZÇ/Š^ó4ãð~…lƒÎqŸRkÁ«âWã§ûˆ¿¸Õ`éEjJ<7á¾~düë q¿+û‡õjâÐ<7 oÌg‰¬ñ_ÅX˜òZKä8РK;IM2á–Þ1ÂCb¾g53ZQY9ÝisYS¦©½–üW០øªÞãGñ.¦ë3H$û«kÔ%”ðÛÈìq_ÚYsœ°´ÝOŠÈùÙÛ™ØóÏøQ??èøÿ ë/þ7]¤_†< à}»þßèzÛv}§ûN‚Ïí7lßåªîÛ½ñœãqÇS@UP@P@ZÞ‰¥øKºÑõ‹_>Â}¤ª»FèêÁÒHäB9Õ]$BU”†P@O ø_FðŒ¶,ªM)ž{‹Û¹¯..¥!W|×;Ë+D@]˜„aU@è( € ( €)ÞiöwéåÝÛ¤«èã4¶‹¥Ú [ØÂŸî¨ jšF“­é·z6µ¥ÚjEÒysØÞ“C2ÿuÑVÄPÿ‰ø!ÿDoÀßøOYñºè<7ð×á׃¯¥Ôü!àhz”±ïGÒ­í%x‰V(^4©eSŒã*a@­ÓøGZäúiº‰ÿÉ9é=€ô¯ø&÷ü™¿ÂÏúýñþŸ5 h¸è € ( € ( €<«âïÄËo†^:’Eιxæ 9ÏŒ™gq ÇRʹ]Û€åíþ¡{«_ÝjZ•Ô—7÷2fžS–‘‰É$Ð¥—U …¼ÿ)ø¡ÿ`¿ôO  ^ñ ý·¿iûË]M4ß[xmµMZä¡x-æHläiÞu’Iøêw¸šÏñ—ísñ;ÀÞ økñwÂ&ñg‰<¨j­§_ÍâÍE±Óuso7ìKo‹È¾häɸqˤ0sûni7÷µWìn"ñ6¥lu ~Òs v§û)þßf¾m¾ø[sä†ÄÞjåGË·*@=ëãí ãßþÑŸ?f#Åþ ´Ñïô·ÔõßéÚ:ηxwL‘Ái¤‘çýndµl' ¨Ä€} û|TøÛãëo‰>øÕàýzÊïÃZ¨‹FñF³áÛþ=>F”G'“$q¯˜¢ X"®±‚ ä_öâý¡¾"ü4ñìãðsឥ‰ªüM×ÒÆóÄrZEu%…¿Ú-­ñ r«FX›¢Ie80>l€˜~éZÕ§üSã&‘«xžêÿV Ž1­˜-ã¸*tý/Ër‹‡ÌT(#YIØÛ@~þÓŸ´_‰>ÁCgÖþ1j3jßÚ3áPiäöÖ§âqý~§`²øÓâMA"³‚ÕVöMPé¢îæÆhbÔÝo6ÎUÇËÁnOÏœ´ÿâä÷øÿúýNÆ÷…þ'ëÚŽ’÷:„(—bòòDrê¾]̱€€H‡JÑx;•=¤/í ˜ž(øËâ}-|Jt«k6mJ]JEº ûðþx?.ß³“È;÷Ê}ê¸ø9•§«bþЙ}ñsǯÞiVQiâØêk¥Á4Í&åcd·M#¨à„€PFòÀnigöhxY’Qœ.fñµSwHñÖ­â-FÖ™ší Hn¼û¼½ènp3Œã8ía8&Â+FŠûŒå‰©.§'Ä [ûN×K½º·[¥Ö%±¹;ˆQ„Ë ¦[9&k(Ø‘2] |ÈO³C ˰êФ¾ã7VovsZ‡Ä½~ÓD¶×ÒâßÈk&ÕE”VWWRËnÅÞ‘£;mI‰T_z—ó06Æwtd`¿çÒû…í%ܹyâÍâ›+[=Umí"ñÙfIJãþËãý` >ÿmݱñ•mëû#ÿ>—ÜÒ]ΫÆzÞ¹§xKÄšŽ“¨ }FÒÊkˆ¥’?4)D-÷rpä‚C‚d`¿çÒûƒÚK¹ÍAâOikt¾Šm7KÔ,ô«ˆæóåšê[³“2Í$¬QTÝŒFÂCˆñ¼nOìŒüú_p{Iw:Ÿ ø›Äš‚êw·“[ÇoíÕ­²[ïÜË Ä±orN!møKgçÚ˜×È2ìL9*QMz UšÙ’ø«Ç'Ó“ÛÏX¶öžòé%’(ÊíÛ˜ù…X&áƒ$b3¹Ná^}ÉèKšý xŠ©Ë]ø÷__]é¶‘Í-µ¥õ½”–ñé×SD« 4ßj_ÝDgÜQ”’"<ão¬²|VT—ÜG´—s&çâ?‹­bÔîZÚÁí­ÓV¹LK"±‚ÂãË`Fß eAÎi“çȉOìŒüú_p{Iw;j:‚è±$W÷0ùÚ†Ÿ½¼Ïì’îpHa•fhþÈÁÏ¥÷´—s—ðÍæ£¨_ÜÏwkâI ê·àj_ÚÌ-Çu0EòEÆv€Š›|¬r1ÍÙ/ùô¾àö’înZxÏYŸû{F>Û­ßé²`7AöÍ…yûÇìÉ“Èå°Ù/ùô¾àö’îsö_¼Q‡k­ëQYËö¿Ï®GmdÒGåù) (ÎÅ·yžp# <¼ýçÞ¥ý‘‚ÿŸKîi.æ‰5Úhñ×´õ¹:–œ‰ymk4a•î£F¢ó‰ÆJ’ÞaÞ¬éµxrd`¿çÒûƒÚK¸Yx«Ä·ÒZiZmå½µä÷´†æò9n•c¶½òB„óTå¼Õ9ßµvm?²0_óé}Áí%ÜΗâ7‰ç±¸Ölb³‹Mµðý®¿43´’Jþ`š ¨X@v‘÷wÊÿ²0_óé}Áí%Üêÿá'דÅÙw{ü £”5Èò÷™#œf2Áƒ§Ùȶ6—vÜ)_Ù/ùô¾àö’îPñw‹u}iç´;ÛèZú‰^M¦HM¹PT0ç$ñ\¶OìŒüú_p{Iw5tø‚MWSÑõymþÓ½½âµžð¨³4Ê"%Ž\©€þó »pùŸÙ/ùô¾àö’îsZ¶¿­E¡ü_š=Nåf±ó¾Ìë#o:~_™¸îI£û#ÿ>—ÜÒ]ÍÿøIõåñGöUÃÇžÿ,hå t<½æH猰`éörí¥Ý· OìŒüú_p{Iw8‹O‰¾$¼ÐõMl[³Ãý‰q«BdÓn­¢´tEt…ås¶ãvóóǰb& a†Û†Y„ƒ¼i¯¸Nr}OFò/u3ìºÔÌ—üÒÿfÜM—ón ²«+œ ÃnìµAÚ:V’û(Wg—F—ÖŸUÓõ-Nm[û{ìQ‹ÝZéãh×W*ÌáAET,¥³œO«ÒþTgA'‰üN³A£ÂÚ|š°Ö—-ÛÇ$p²›wæ,[Ù\¨Ø\îØ~dÝ”>¯KùP]†•ã=cQ×ÖÑmå}9ïn¬™NºQj!2¯œ×g÷Rh@Ø e$¡Ü}^—ò »*Áñ/V±:¬ÓòîÊüî3Âl›½ÈØÚ8ꈵ¦|gÕe»ÓžêÚa©Ýéq¨ÂHš´fF|áƒ}•¾P£Ç'oÍóØ¿ð’_¹¨Ñ¬suEK·×6úeÌúE¨ŽâßLº.FÈ[ÙŒ1¨u'd5sœÕæ5£î§s»US‡"<<’I'©¯ê¸ÅE$ J`P@P@P@P@P@P@ÒxP1Õ.‚}ã¦ê#ÿ$æ¤öÓ?à›ßòfß ÿë÷Äú|Ô) >ä € ( € ( € üâý¦üAyªüLºÑ¥f[-Þ!y*ZDYöô |ÅRGQúPÏ#¨  û/á Óÿf"‰z×Å뉾5µñæ­Ù®/á:QSÈÐ"ÆÖE c8Ýòç$’H¨øSöwøi xgǾK Ëçñ´sGâ cR¹3_j~j°bóq‚7±B€N@Íy«þÀŸ µ¯‡ÚÃ-oâ7î¼%¢ÞË}¦Z-í”bÉ¥ÜdUÿE!ƒ,KAÎÝ¡˜0Ñf|]»ø_®x§Å>&‹Æ~¹[½+ÄÚt–pÝ4ÊñHXÍ»@Ç̆6À…W €$Pæ­û'ü>ñ£ðóÅ âi¿¼Ó6ãk è[R:Ye•f2Å$2#<ó†-Š$ePªvÐÑ¿~é¾›_ÔF³«k~$×§Ž}O\×&î.Ìh#vÄ‘Å"Œ*E(%Ž2Äkö…ýž>üzѼ)qâçÔì¥û |»×þ7ê:_ÄÏè~ø±¹üKá½öÒ;[™‹É tg¶y,’ÈáíË•!£&:úàÂ_~Ï?4Ï…žñ¾»¬xSLži¬Ä2Û<ÖBYY#G·‚Êd’Gù÷0.@;@ªøƒá/ü@±Óa×oäŠm>Fh/m.æ·ž5|ÍFWØÄ!+œ2£~>ü-ÿ‰ZZ4‹M}ö‘ÄÛå€-ÃðÓáäMrãÄR™÷¶ù‹p«òƒ£ 8ÉêI ËðáZi62êøÓ¬¾ÏäEç7îü†V‹œäí1©äóŽsÍPÕþ|žëûSTñ]Í­ãÆ4Öú´ö^b)fPDn àÈägŸ˜Ð'øuð ê)¬]ø¾×ÌGYdC©ì‚WLm’HƒÝ×jaÙK ‰‚6®8KSýì5é¯ÅÖú7fû9Ö7Å ­î‘1¤¹òꡎ÷Éù› z—ſ؇A‹WÓuŠÞœêûâý¼·º%ˆçiãäE^1Óך¢ß´ìö–½tµ}§í»ÅÓçÎò|øÿ®_.:wëÍxö‰ûWþÌþ Õõᯊ Òe“g–âW1÷Q2Ä\¨¸EÉÀ5ð¼iÀ˜>0Ã(Î^δ~ïo&º¦z<|°¯•«ÅÿZË þÕ_³‹ü¶·ø‰ à“vÙ&ÚQÊ•ÈÈ™…~àŽ+áÉòÓŸ:[8¶Ó_šôg§b©f,ØÆXñÛµo‡ãÎ%ËöÉ´»¢^Œö2µŸü8ñ¥ä:¿ˆ4ù'žÔÛa-œïÚ]7‘&ÂÛ6v6æR ãÕÿˆ»›¦¿vGÔ)÷!×<-à›Sýµg Ê.¾ÜeF‘‡ä}Ÿvê¾\tïŒó_Wþ.Ƶoe˜Ç”®Êð®ä:ÈȦéa’EÆÙ<·uÚ˜vRÃb`ü«†øÃ([Ö_x¾¯S±ú¿ÂÙbžÚmF#Ñ^@ë‹‘¹.¤N:€sÔ ‹ò†¯í—ÞW©ØÏñ?ņ2ÁŸ{ãk[I#»µºËÁ)'Éž9¶ãhëåíÏlçœb»ègÙ~"<Ъ¾ò])­ÐÛ?Œß4èOÙÇ K,ì6ÌròHÒ9å{»±ÇAœ Ûû_ÿ?WÞ/g.ÆJ|Kø5Hu”ñE—ö„2¼ñ>nJÀÓSxv.í†l°7Á/ùz¾ðörìKÅQCah¾&ÓÚÞÎÉôØa•g‘E³ÃFÁ”†E;²x÷9Úø/ùú¾ðörì^³ñ?ÁýJÂæÎßÄosËÄòO%Íô““‰#ÄìLЯ倱x犿å˜wiÖ_yJŒßCZm_áÄ1Â5‡‡d³L²ÚIyo(iœÉ(ó#ÚûYÎâ™Û¼|«ŽoõÃ(ÿŸËï+êõ;²øUµ¾‚ÞhM¥å’i³E SF†ÙDcP –Aòàóì1çâ|@ÉpÎβ)aj>†ÈÓ|.ÚÖÅÂý¸ó»lÛ7íÙæyxÙælù<ÌoÙòçoÂüMÈÓ·´+êU{½Òü/®I$w÷ 1’Ò{âdÌló€>÷–œõàŒššž'd7´‚¨ú]·†ôs{>¤—ñ‹ëˆb†I>š4.È1Œ dç瞃_²¨?u6j²ù™wÿü/¨]Iwu|Å¦Ç W7Cu€÷Ы—*êr )ÈT/ò·Ñ‡ö|˧Á^ Ö~×ö‡ÞݺM›öìó<¿¹ælù<ÌoÙòço—Œ™cèÇýŸ3:/†þ[mBÜ\µ»·’Ñâ’yÝbøh¡â#hÛÑò¯*à~1å‰ÚÌ?³æt¿Øö;¶ÿjEŸ£…?øŒy]¯f/ìù™Mà¿­™°7q}]ý·fé?×ùÿhÝž¿ë~ltíŒqD|cÊßF?ìùŠ|ááv5µÅö³wöíû¤ÿ_ä}Ÿv:ªùqÓ¾3Í/øŒ™eöaýŸ2xjEõH¯¹ò2ÌÐÅ#¾D„Ÿ-·>]T1Þù?3eËÆ<­taýŸ3-þxCO 0˜<[!Ó\KDÊU¢H˜”Xˆ#1( ò'"mèÃx½”ÖŸ,ô&X ˆÍÒ´ è×7—}Ñ·+w5ÄòN¹Mîû‹½€$“·hÎ@öâ&ä–¿´3úNÁs£øR]E5IîÚ‹¤…\,2ȸÚïýÛºíL;)a±0FÕÀ¼MÉü¼©Tì:¶úƒj±\‘q½¤T-pÐÅ#gt‰ ýÚ;n|º¨c½ò~fÊÿˆ‘ÞÞÐ>¥W±¾àÈá·‚ C VpF¿é k!’ÿrNzž‘N^&äqÿ—õ*‡7‡|t&³’D)4W:þünK¹“Œÿ¶àõ¦~'d‘‡2¨?©Tìt7_¼)©ÞE©ÞKÝ a¸_žeA4eJK°a|Á±W~7 +ò×…?²¨É¤™¢ËæmXøÂãìdßB‚Öîkèrò|“Ëæï~zçÏ—ƒÀÝÀó1ž4a!ü6\ré=Ù¿ ümôûc}ÛZ[Çh°Çs2,°' À0 †Ù7™¸ù›>||j¾ô‹yw™=÷Ã_j2Þ\ꟽ—A Ü𤎠#"0S"ávÈFõ(„Qq?ñõþgy·økàHžæU½‚A?Ú„‘Ï,“!:ìrT+²)*3œ¸æ¥ãU¶¤ÙÞaÃAjùÅå†f–îî{‰KC ’1æ;Ú®7ÎÜ–ãæl‹Æ­/ìƒû;̶|áªYjÛ0Ç$WçP›–>tŸfknçåÂéÇËÓ$šäÅxÑZ­'Tí&RË’z²ÏŒ¾=üøUcäk^<Ñì'Ç 4ÜþC5ñÙ6IšqîcíñWä¿S¢¥HaahŸ0êµßÀ Náç›âÖˆrxcÿñ5ýQ‘dx|‹ =ÚLJV««+³7þ£öyÿ¢±¡ÿßÇÿâkÛ3øjÙçþŠÆ‡ÿÿ‰ þ£öyÿ¢±¡ÿßÇÿâhÿ†¨ýžè¬h÷ñÿøš?áª?gŸú+ýüþ&€øjÙçþŠÆ‡ÿÿ‰ þ£öyÿ¢±¡ÿßÇÿâhÿ†¨ýžè¬h÷ñÿøš?áª?gŸú+ýüþ&€øjÙçþŠÆ‡ÿÿ‰ þ£öyÿ¢±¡ÿßÇÿâhÿ†¨ýžè¬h÷ñÿøš?áª?gŸú+ýüþ&€øjÙçþŠÆ‡ÿÿ‰ þ£öyÿ¢±¡ÿßÇÿâhÿ†¨ýžè¬h÷ñÿøš?áª?gŸú+ýüþ&€øjÙçþŠÆ‡ÿÿ‰ þ£öyÿ¢±¡ÿßÇÿâhÿ†¨ýžè¬h÷ñÿøš?áª?gŸú+ýüþ&€øjÙçþŠÆ‡ÿÿ‰ þ£öyÿ¢±¡ÿßÇÿâhÿ†¨ýžè¬h÷ñÿøš?áª?gŸú+ýüþ&€øjÙçþŠÆ‡ÿÿ‰ þ£öyÿ¢±¡ÿßÇÿâhؾ üWø{ñG\ñ¯ÃÏØë—N‹{y|¶LßèÐ4Mv$²Lƒ“’q€HL£¿à›ßòfß ÿë÷Äú|Ô) >ä € ( € ( € üÈý¢b–?‹þ*y#eIVÕј`:ýš!‘ê2úƒ@&:Šß²í@m—A@u—jâþ|pðwÅo|Hð·†­5xµjMÔ_R³ò#’BÒ.amÇræ'ûÁ[¡Æ4ô…—jç~$|iøcðKGÓuïŠ^+‡AÒ/î~Éoq4Ì%›i} DŒGʬrF8 ²þÐÕ³ý•7Ñ¿ô@ÚL² [‡î#àöElùÒÿÏWÿ¾$6Ö×w³»xæ+o ¨<¾¿A@uñoMÓlüp‹mk•’ýôHÆl0àñó7ÀsÚ€?:þ*Û·†>ünñ—9]MôMGR¶‘£‹þ%²G§ìQlBƒ†„KŒ“æHíž@¯>(ü+MV÷[—RºˆhFçH—N@¹òµ ÞúÞÍھͺöHn’87Ûï›’ýbšÁð¿Œü©é°xsRñ3K©ÜxŽ{…Õ4Ý.àCg»U{‹]2òéíü»Yü¦·µ’ÎfIG˜" —Œ Þ“ÁŸüQâZèÐj~ºÑt•Ó¢Ö<5ugKæ_I%Ä"êÚ4‘dŠ[_ž"ĈÆì …€$ŸàG„màø[¦é¾Ñ®tïÝ/ö¥Æ«g —:½²é×VËç2ʼn¤3Ëo+nIŒ·Þ ?‹?f†wþø£cá¿øbx–ÖäØ]^i–ÊšMÓÙ%¼^C¤;ጠÐí|Iÿ ^¡r·vþM‘@ž$½ŽÎÞkß³´1G1²6‹ º™÷H2Ê(WÃú컨ø’ûÆCÂ~Ok¶š‘£iš—…Å”ó^Ü\^ùsCi=²3Gr³@xÁW’’BÀÄ_²øQð5ï…Þ ðÏ„ü=4¾ÔÛPÔ5O… X4ëËwƒíßf÷—k9Ie‰\²µ¬ìT4,eÍZJàwÞ+ýœ~^øOâ~ŸáŸxrxŽÒçû:æóM·Hô‹–²Kx¼†H·Cx–S·,$’Fœ þ¯KùPîεþü"mwN×Sáç‡b6v·¿`‹H´[iü×…¼É#òþiÈÚŸ”K(çw á¨ËGe | Ðt­m7RÑ´ˆuíÛ½J;Í*Òqju9.í­Ë´yÙös€cfôSŒ5yØŒ‡/Å+T¤ŸÈµVqÙ˜z¿‹üàߊ~#Ó¼C£BtËCNÓôí]Iä»–Miäòííá‘òa²ÜÌa< óßeþ\¯¸¿¬Tîz„¾3ü4Ñá𖟯i×^…G[Õ-Þ;kËq¦˨yBÖyÚ ºeY3å $ÀqùïøK…ÇÍÖÁ¾VuQÇÊ Ò;Ý_ãG´=&÷NÓZöãźdº®Š¶åóKŠ%ÙonòE7ä–PA—¦x¯ƒ—„9²vU4:–>ŸcÓÆ«àŸ=gÿ„zÀaYv hö¶qÉäŒqõ>´åáooâ‚ÇÓìSƒQð£[˜ït 8L.^Uh`Còy¥d¯÷6‚:u‘Íð7³½Pxú}‰“Vð Ô.¥éfÅ ‰cQn…„¤ÞJíÀ1àƒ“ƒœ`fW„Y½ÿˆ_§Øâ¼cñ'áŸÃÛ? ]ëšM”:A¸ž;‹¹-B±A§Þ];¸U%°–¬ÄI#šsð7¾•Acéö9ýOã§Á{K„ŠÞ}Nþ+¦Hï´;¨N˜`Hx ìaAqm#I8E :ɬ 7áoËüPúý>ÅÙ¾;ü7×XÚþÚâæÂ;ÐnZMFhe1Ü 8„¯ /‰ ¸F2_h9¢æýjƒÇÓìuþñ_€¼C¡C¨ÚéztÖó\Ìé$6Á]\?î¤W@ñÈ›|¹"e Œ®„¦§þ!oâ×éö5áÕ|(š…ÜáÍ/ì K‹tÜ$ !rWnÁœã5/ó~•Acéö"—Pð “GK}Mh`“< ½ãòGEù›yBsÔõþ!n£ü@úý;ìfxÆãá>›áx—UðÖ”ÑÙØ\ÞË,–Q…c„“°íÊà&xîI¯5ø}ĸ[”½KúÝjÎnçÇ_³Tmq.¥/ö|ÒX´@ô©EÜvŽ O'7%.Z8I„>Ö•AÆñœãÁT¤½ç÷âh Ó¼Yû:ÜOi£3EûuÄ«p4v –îX¡†yš °HÓA%¿“!Wó¢Û»‰pG3ûı4 _ jß¼a%γ xGN—GšÖÚH..¼=%¤s«ùŒ$ˆÍ ,ŠÊPîBÜc8sO‚8ªËÞx}fÔºøL]ßKðî—ö{gÄìöц‘N£¢üͼ¡9ÇsÔwÃøcÄÇzÓkæ'¥†_j^6:ªØhwÛ§ü:TŽO/j€B’« À'$šì~fÿóôŸ¯ÓìY›Ä>ŠHäµÐí*²ùka[8äŒuxúšîÂx3ŒªïˆªL³­‘â>ý¡þjWMá­RÜZkÃW¼„Óe0D‰«^Y[,·B# Fi,Þ$Gugo‘A, úÁK»ûR?´|Œ8ÿkƒp^ϬK#çEU¶Š? êmp–‘i¯ž²îK2³[„¹?»r²ß»8oÁDÕ½¨hù ü_Ð/¼Y០ènÒÚ_Ëo{qy§OˆŠÖá^ {Ï$[Ü\¤Ê¬ð¤›”[Ü…Àö¨ø5—ªj5$Û3y„ï¡ÖkÚÆ¥.…â˜|?mbºõí´ß`{ØÕbµ¸0„•BÊÔ1Àc–b3À­×ƒ™ZêÉþЙ¸þ!…îàºþÏ·8ž3†?-÷;˜mÎåÙÏGn¹KÁ¼±ucþЙ‰¤ëÒæµÖí¬…éÔn.[$SþöÇ–Édÿž>R8Æ>ðjƒ™cw»í ž{®|wÐü#ñYÑ|C¦±³}7Iû¶›£\j3Oupú³º¤6ñHç÷Z{1;p|ž”ÿâevµØ¿´&akŸ´—ÃÍ&çÖ–ÚÔ6uõ­½õêè÷wk«}¦Ëu´³ÁnÑ]ÝJ×vSbbÆ2òcpGÁÌ­ucþЙoÄ´„åð­ìÞ[ûÄ–Ú¯ö4ÜòZÏhRÎo2m{tŠäÆz¹Î3)ÄË/»í žÜ|A »Šèiöê©Æ`Xcɸ¡ÜÃ,6`sÑ›®xrðs+}XhL©áï]Ãa<>!°°kÃs2Ii#ìæéÞ%”säùhÃpŒóñ¾ á*G÷i•ÆKtkCâxWZÔ'—DÓNöÐ,"ÄÁ¦óK.ÜU¡Á“†È󟂺¿í#†ñ÷Åÿ ü=ƒÁWºÍ…¼z!¼¸Žúö[q#%½¾—}vò0E%ˆ™ Iè3ŠQðR×½PþÑò0u¿Ú3áœMüV,-µ½N ÃZ–‰{Òž W{åû>ûí6²´— Šu“%_ñ5þ(hù6©ñãán­êºEÌ–³kº2ÛGu£i–{pèI$*-àä’_.Úiv ,±+Hʆ§//µPþÑò5ü-ãíÄzZ¤VvG=åÃÇ-´.Ÿl2¬ˆ¯¨ª"–&PÈë"¦¼V³ªÚ>DƒÄw¿ð’j—o¦iŸØYÚ¥´+2%½Á™™và)W·‚I*Ù>ÎÁœ¾0J¤›frÌfÞ†«yªÉ'‚¡Ó"±k->ìMïc_6îÜZ\F>êaœÎöîs´aXõ[ á&OCY«™ËQœ?Å-j_ |1ø½â]>Ž¡o¢ê•±xcÅœ‘Y¢(*»¢ÔîÇ<€=8øe’Gþ]‘õÊÌ˯ÿ ¢¼Ôu)o'tY'Òå²Mëeôæú66ÑýŸuãEuåÀZßÌTkŒ7úÄ4¿âäw¿³×jwáïxv}3ÂÚF±¯éƒ]ñN¹©K£ÇgË‹ˆ­ï'»û3Ç$Aã0Ûİ\#ªùl"C•Ë—†Y$¿åؾ¹S¹wÀ?ôÏëú߉|?içø*}'L:y¿ðýæž$‘žíäš#soKÆöØh™þïÍ´,/ òD­ìÃë•;5힤£À–zwئ°Ó.¿âk6¡µ aeqÜU0òÞÞFÎÑò±€ SðÓ$§%/fã*>§’üGøàÏøgâu½·…´ xŠÒèi÷ºµ„ ºMËÙ­¼^C¬EâŒM®iÚßü*ß 'Ù-.-~Á‡d-§ó^ó$Êù¤O#j6~U–QÎî=OŸü%àoÙÇSµ—Á>!ðN‡kâOøJõ •»·ðÒlŠñ%ìvvó^ý¡Š9‘´X]ÔÈŸºA–Q@ô­/ö`ŸÄWþ4‹À>»ðž¹§é~‘£CàK™.䏯§t×1X}‹Ì0Ín­Â!Gûƒwî¨Ö‘ð¿öyÕ/þøcÂþ ÐæE»Ûy{â =³ëÑŦ]ÂÖïs%¢Esz³2K5¹a"=¬å‘^Uô~Ëÿ /|'ñCOðÇÃï AâOZ\ÿgÜÝé6©‘rÖImÉøcÊvå„’Hã–Àêæý>M®iÚßü*ß 'Ù-.-~Á‡d-§ó^ó$Êù¤O#j6~U–QÎî9Mö_øYÿäÚGˆ~xSíÿð]j±ÞéÚM¯™öoíY/-­‹¼9òü*ÞHñ·Ë߸4Åjþ ýŸüñgÄöž"øWáÆÓn´M ?MÓü 5&{¹%ÖäÇmoo#nhlòÌîÀ¹?( ~ëÁŸ²î–< §éº/….4_¦ëzÍÿ‡DÉ­YG¡\L¼K_"ú壸¶½1#då òpxÃÀß³´¾ñþ™áï†ßfñŒ­5#£ÇwðëPYtÉâ²¶¶ó Š=<ϲI-´†@„y³HT–ʨÐ~Ο&×4íoþo…ì–—¿`C²Óù¯ù’Gå|Ò'‘µ?*Ë(çw¦û/ü,ÿ„rm#Ä?¼)öÿøH.µXïtí&×Ìû7ö¬—–ÖÅÞù~G•o$xÛåïNÜÖ³ý>Cãëw | þ»Ò´ë[Kì;Sä\Å5ëÏ'–bØ»Ò{UÜæò°Ø ¹óO|øðÆÃàÇö‡€ü8|=£êǪêwÚ%´óÞÚ[h:œ¯%ÑH³;n·I[å;(Ÿñ‡‚¿fY<'ãý;Cð®‡aâŸZjFÅõOËoÿÄñY[[™&ÏÌÓ-£2Ú\´“„íF`v¸4ÕÍáÿÙ*}sNÖ“À𙠥ŵޕmà¶h¼B’¼n,`…µ)` &µóR8§w'd¨WÁ³ßÁø&6¸ðG…'óüAyªEa£[Ç:@º¼·1YKæÀ$dj–“Û²‚e‡¼uv³§ÂÈ|qânãáoŸÃwzVkiaý‡j|‹˜¦½yäòÌ[zOj»ÜÞVW 2~Ëÿ ,¢øW§é?¼)=‡†î×ûNçTÒm^çW¶]:êÙ|æXq4†ymåmØRÑ—ûÊ €sÿ¾üð×ÂŸŽºþ™ðçË©\hš–¥o)Ò,ÁÒåN¨µ+1(h¸>d’0?6[ÏþÉK¬]ëóxC‹ûíZ<šl~ o#Qïí­ „ZföHn£ŽÜ=¿˜#7L­5Msþø}û5êzTÔ¼1áÉu+Ïvº®›á‚"³-«=Õ®—yvö¾]¬ÞS[ÚIe3$€H! óÇ«á÷Ã_€þ<ñWˆ¼]áÿ…¾¸ðM扤¥„Z‡‚¤°‰¥_I%ÄæÒ8äY"š×爱"5Ýå–è$ý—þYEð¯OÒ~xR{ ݯöΩ¤Ú½Î¯lºuÕ²ṵ̀âi òÛÊÛ°¥£/÷•AÐæð ׇôémàáåìŸbHžöioä‡ì8ŠÚh¦€%ÉÂKöY@cä6>Çý”|?ðŸBðïÄ=ᆆm¡³ð’Y_j­¡>Ÿ6¤Ñ´h ó˜"YîQ„«2Œ¼R™Eò´ô§üxcö7øX=/|@?ò¹¨P€ûŽ€ ( € ( € (äÿÚ‡á寷¤ØøëIµ’kí&3òD¥‹Zd°“àFʼnÂçH @Íϰ9p’)Bcv€#2Tû‚í@šuokºGí5ÿÄÏ+ø*®4@&øÓHñ¶³¤è°êZ¶—â=BÚM@I¥yÎÓ„”,²4Ÿ1‘rŠ€?_~ü6—ÀÞ ñFªþ8ñFºÚΦ¤öÚþ©=ô0\Â÷~mźHÅmüï57EHÇ”»UzPŸ|iñlz¦¥oá»CÚiì^ᔂ~›à#¯V ô ™Ið„|QâÏ^ê¶·¢/†º/ˆ/n¬mµÝ:ãf¯<ºÍì×0ÃÔhB4ÑG ·1ÌíVx‘ €wú?Á½z-*þÓÅ1²Õõ‹­SGÔåÖÓL¸Žæsc{ÙŽC-Üʱ»#lŠ0™¥dç+@Gâßh_ ¾1|0ð‰âÖ¦Ò5Ýjžk6ØçQÔ$ž)¾Óto74ú­ÆZÆÀyxy67˜öŸ‘@‘@ ñãç…þüDðÃxsÄ ¨øÂî=/Q´ŽÖKW’Ic‹ç&q"…iSq1ôû»¨Ç<{ã mcöˆ?ôÝOÄ>ñ§‰tû„ïd¯gwgdš¥Î~Ói¨Cu‘§ÈØcpm°d•…{Ɖð»^Ó¼_£k÷Þ Ñn´-.Ö+kßG¸¶‹J j ?bAx`‡.f!Ì2Å;Áæ”Æ9ý[à9¾ðOÃ?G©hn¾Ò¢Ò†»{¡}£S·Ù 1}§L¸ó×ì#ÉÞ²m—kˆÛËÃ{·J( ?ñÿƒuOEáÙ´OÿaëZ%ÝÍõÿØÖïËžM:òÉËf v5à—!¼­¤ Û€•MðOÆ’hzvˆ©ªn.v$rÄRyä†H¤HÚ,C-Ýüñ•ßOŽçñþ•u®éú…Íþ‰6£¢]Ü9eI`ìŸoù"ÖvFñÛ4²Co4­#FÊàÁà¿ Â# G¤=÷Û.仼Ô.®V/)$¹º¹–êsyb‘ù³É± ;*m܂Ī €9_øhø×Á2ðh¿6G^Ò®ô϶y~oÙüø^-û2»¶ïÎ23Œdu¥d•^ü*øƒu¨xßSO‰¶+¨k>dVZ„šMã\év­u†Ö6‚¤Qµ¼bkXí¥vX¦2y±†'*ìÙ|$ñu¾£à™.JÿfxSFþÅÓaò÷þõm<é¿ÒÌÛ$»þt†Ú<¼±Ê»ê”í`ªÎpŠXúš‰Ô…5y´—˜Zå”ÓïßîYNßîÆÇúW Lã.¥üLL¬â¿RÕ9½“<×à-¼A£ÞÅâ%»ðµž«y«PÐï3=Æ©s~ξUÜq¼Š'…#kˆ§Ij“F¨ÌÀòK‰òH|Xê+þâCÿ’+ØÔeýÆ·ìáñŠXoìõ¯Á}o«D"կחŸÚ7N$Šâ ©o¥“A –[e…Þ gwX3´ _ðòß1¡ÿƒiÿòAõz¿Èþæz—ðCÅzwˆt«©®n%ðž­ê>"Ó´äÑåŽí/¯Eßœ'º2’u½ˆ°FÃ÷9vØÞ`¸¿‡žÙüOÿ’Õêÿ#û™ë§DÖ‡]"ô}mßü+HñVE/‡EÿÜXòBö•ý̉´½M>þt¿XXJè†”Ôø1tߤãþböUÙqYíî#ÿY‹þò‘]´±¸jß«z4ÿ&K‹[£Ãüwð»Äž&×5}sÃ~;þ“S´Ó,n¡û-ËyÐZ>¡&ß:ÚêÞtß%üM˜äB>͵‹¤®•ÒIÏÝ|#øŠºÎ›«èŸ|9`š\VPé–Â÷Zé 1Ç,v–£PX#Yqržg”n©!Yö… Þ¯ð?ûOÃðÇöž‡ÿµÄÚçAó¯t¿>A'üI%óÇög“÷møŸÊX­ÇÍäüàÿ@çþ?ðn©âè¼;6‰â_ì=kD»¹¾³¿ûÝùsɧ^Y#ylÁNƼàä7•´»pò©¾ øÒMNÑ46´[»‹­JÞçGÕ'‹].$ngÕMÅÎÄŽXŠO<ɉEˆcÀ]3örÔ|9â+hu[KKŠßû>/i¶wpùè5’k¿³¥´· éªÝ¶ï1Í+É+Ϫî¾ ðÇü":zCß}²îK»ÍBêåbò’K›«™n§1Ç–)›<›³²¦Ð]È,@:ª(•ñ߆?á5ð?Œ¼öï±oiWzgÛ<¯7ìþ|/ý™]ÛwçnFqŒŽ´åW¿ > ]j7ÔÓâeŠê:Ï™Ž¡&“x×:U«]G!µ† ©moÚÖ;i]’)ŒžlaˆN‡û=Þiÿ…©ªn.v$rÄRyä†H¤HÚ,C2¼;û4Âyá­KÂ~ Ðô›ÿ |º9²ðï“þ`{o7ZXîê+²„•ßd“LÛJÈc  <áøDtô‡¾ûeÜ—wš…ÕÊÅå$—7W2ÝNc,R?6y6!geM »X€uTP+ã¿ Âkàx7íßbþÞÒ®ô϶y^oÙüø^-û2»¶ïÎÜŒãhʯ~|@ºÔñ¯ˆ¿´¼8º”š„­ö­§xzHuGž!”·¿–îYc†d‚1p²ùï9žñšAöŒFé_ ¾ÿ¾þÛ“ÍÐáþÑòWû3Âz7ö&™—¿÷«içKþ’þfÙ%ßó¤0.Ñåå€=V€ (À-þø’ÓÄ:=êxÞÆëÂÖZ­æ¬t GK¹xÌ÷¥Íû¸ò¯#äQ<)\E8ŠKTš5FfðçÁßZýŸþ?Øëò6«cªj‘éw0\ê¦×Í–ä–[ɼ¨Òñ ºH­Ö(Q£•-“¸K|ð¦¡áAñ†Â=^ÞçA»Òõ=JÂÜÚ4w³]^ýªàK7˜VU3NÞXX£(€+Ï@µÿßÏü1ÇÂÌõûoˆ3ÿƒÍB„ÜtP@P@P@|ñ«ö{¿Ð#½ñ_Ãí>çSÓ‹3Ë Ú iíóÈòA#zÆ äJîeüiøû=ë2ø»ã(ø½ðãTƒÃ^-¼[«9#Ö¡ Bk‰‘iw½ƒy°„:Î02÷÷‡#ð¦“àcÂ|ÞÓ6$CØ™8V…Ї‡?2y<òh©ðgÂO‡þÕ5{DÑf#Õ¡^kw×÷W×óF>Õ<0Pp€6¯  ¼û2üðçŠu èzÖŸâXÞ=^æßÄúÀ“PÜÅ‹HßiÉ|»ÿxol˜äΗûþζÞÔ¾Áà­F?ê7‘êZx›XÓÜ ²4jÆìÏ®ÄÎv.=kQýšþ ø«áž‡ðÄÞ}[áîŽèú~›¨ê—×dQY#\4ÆdUF(ª$©Ú^(­¼ýš>x‹ÁÿðƒxƒÀ±jšÔ?µ¼ÍJúîæ÷í»U>Óöç”Üù»›»jªç ô=á_‚<m¬j^Ó¯ZÔ"H.µmgT¼Õïg†0æ8šêîYe1©w*›ö‚Ä’hç+ØCö[¸Ñµ­‡·‡µé¢ÔnôT×u8¬ÖäÞlP%¤Oü;”BT€vÞ*ýŽ?gŸx;Áþño„u}WÁžÊÒ4›ÏkO ’UBµóµÄÜNÄÂ.@nþ2xoCÔu?…_¯ïïî4Ææ]r÷Q›RÄWѪ¥ÔÒI,Ò†µ—s»  ŽBy…ôF‘ÕeA@ÐÙW±sÕ¨óçöœø«ñ ÀþxÁºž­§è¾>}ÏY“ÃÓ¥¦¡yW÷H-­î]ãXYÅÛüÞd|…˪î­èÔ”,^í £Õ~ü2øƒgãÿ_ü}á kNøªxjÒïÂö:÷‹mî5-6q-¤µ­ô· sÍ;#ï yh¥¹Ú{¡¥(É{¶Ó]tÛ©,ó?ø%ÿÂ߇Þ&ø7âkɨEâ—ñuÅ…µÕŽ¿§9X¬-Ý<´‚xÇš«qv<Åg—4©»c2˜ÁB ½ïÝ„™ØÿÁ@ô±ð à„WŸ åÔlWÄZÍŽŒXM”Òl£ÓÚKxäK$WéÖi,W,oäÚŠJ”=οåoÆËpެìþè?þþÒºöàÏ[|×´+ÈZËǾ)Ó5=B=CcÝÜOb¢þæl\O/2Äv»H]×÷hV©óªi>WÝþZ½ÄìÑå±>•ñ·áÅï‰þ/ø«â_ x‹M—þ½*ãL×®´û éÖ6‹-±0,¨“Gº—?i2 ±±$3Hío~““OmöKúê7¡?íËnúŸíûYÅ®¼²Ýk±.³bÊË_Ø.x+Tøƒsñ¦ÃƬ5;Øi~Ñtøb·–[9ôû›è£`Y w¶±æLù•æz_í¯ëž%ý¢à—^"ñ=­§‰5OH¼Ô-ln#¹‚ ™/ôÇ•b–6d‘– ê̬0A æ€;/ˆ“gþ ðLôð¥Çþ›uzóÍ/â§íûCüNýµô=O‰x·Á·ŸÙ Ó|â[m Çò¥ÅÜi%ôRÞÛ Ÿ3챆,—æ“åLÆ(õcögñgÄü ø}¬|^ŽÁ>$µ´¶ú³é·¶—Ï,3I”Kjï gXÕØ#aY™p¸ÀúÏVò$˜OQýߥujÁ”2TŒ‚;ÐÐ@P\ÛÅŸ2dR:‚yü«ËÆgyn^ä±8ˆE­Ó’æÿÀwü 9ÏdR“X²Lm.ÿî¯OÏòø¿²<5½œ¥Sü1µ¿ð>_ÂæñÂU–úŸ^";bGbÍÓóxŸa5‡Â6º9NßzQúQ²À¾²)¾»xr"_|ÿ:ù¬GйÔÓTéÓgË&×ß+~ËO«eGÕõ‘öŒèª?¥|õo8–¢këVO´ ¿[þ&« E}ŸÌ¨÷×§ŸµÍø9óõ¸«=¨Üž:¯Ê¤’û“±ª¡I}•÷$šWûò»¼Ä×…ŠÌ1˜¯ãÖ”ýdßæÍcÇd@zòfXÊå™H޹¦Rzšå–ã: ÖÇ­u@’Eë]P%Eu@DŠH ‚Aö®Ê5'MóA´üˆjû–ÖîéæUÎE{Ø|ÿ6 ¹ibêEyNKòfR¥Mï÷cÔ¯£û·NÞù¿{˜>5Ïð¿2oüVŸþ”™œ°Ô¥¼KQë7ËË:¿³(þ˜¯ âNAÞ¥HÔÿÿÒ9L¥ƒ¤öV.G®ÍÏ›7û¤¯ø×ÐàüTÆ+ýk …¸þ|æRÀÇìÈ··æDêßìàŠú,/‰Ù}H¯¬PœeåË%÷·ø¼ÖÌ»¡g!ÀœþÖWù×ÓaxÃ$Æ>XbRÞ¼$¿aêGt[VW‘ƒ)îkè(×¥‰‚©FJQ}SM}èɦ˜êÔA@P@P@P@P@P@P@P@P@P@Eñ<·`œá½\gÓ÷–t˜<ÿÁ7Æ?c…£þŸ¼Cÿ§ÍBšî:( € ( € ( € ñÿ|ðOâøYÿeëÒnoí =BùŽwœËÝ|³îcào€>m×~xçÃ4¶v±êúrn+5Ì›s…Ý ù·Îxó@‚ÙÞi÷/g¨ZMmw7ÁqÓ#<©äpEt¶_Ã@m‘é@u—ðÐ]eü47‰u 'Ã÷ºŽ©}oga3Ëuu*ÅJ‰,Ì@æ€>vÕÿi‡º›bÚ5Ìž »’Ò)av$dc9ùJ0`C ~(åŸürñÏDöS^ 7@|ìÝ<”YæâWûÒpÀ‡í€8†òQü_ÿb¦…ÿ§ v€>€ €: ÔH&¸#8;·sý( ò=¨ˇ§ëšéh >øñGÁß <)ªøÛÆ—wðøoL¦½ºÓt»ÍLÚĪÎòÉ´r:ÆŠ¬Í!T ±áVâ<:«Jj¥G´bã­úsI¨Þý9¯äj¨É«µdr¾øíðÿâ¿€#ø›ðÓÄ ®ø*Xæu¼Óín%˜˜³½>ͰMæŒqyÈÂÃ?q–k†®ðp ¨Ëoy©=vié z¦¼Îšxzms7r—Ãß‹þø¿¥êσ/5›*Òê[)fÕ4=GIS~ÐZ©â?„^,þÞÑtÛ¿°Ý\}‚îÏÊŸb¾Ý·FÇåu9Žz×NwæXÑÌirJJé^.êöû-­ÂXUWƒ¹ë­Ú¾zf¨Ãñ¿§x[CÕ3è^ñ_€¼ xº†§âßO$Z~“¦[}¢T† ×S¼{4Œq—P'ö9Gçp¥:ʪ•:k_i®¯e‰Ë²¿©ÏR;ÚھǮêFØÆTúŽE}N_ǘzÖŽ2›ƒÓUï/6Öz.fa,+_ 4c–9FèÜ0öí_gƒÇa±ðö˜jŠK˧ªÝ|ÎyEÇF‰+¬ € ( € ( € ( € ( € ( € ( € ( € çüYâ ÀÞñ7|S}ö/ xO¸Õ5ß)åû=¬´²É±;mDcµT±Æ'ŠÌðü+ñ?¶^4ð]íÍׇ¶I/,.tù’kk‰-§ŽK{ˆã–7I¡• º)ÊØ4'}Påã%fŽÎEñ<¢­Ù»ÿÞ­ŸûùgCçŸø&ÿü™ÇÂÏúýñþŸ5 ûŽ€ ( € ( € ( € (µÝ¥ý»ÚßZÃsjøÝ è# ðy bïÀ ½t’_Z£ Àû00Ä!þ4JïÁ¾Ò­ÞîþÒÞÒÑ>ô×rF‹õbø­)Q©^J¢å'Ñ+¿ÀM¥«<ßQøðBv¼Agq(à-ƒÏv ödÜ¿­{ø~Îq*ñô¿½hþ §øJ½5ÔÅöøCfçìZV«?mËj¤~äèG3F½çêßè™?Zå¾-x_âÂíkÂþÓµ{Ùã™SíÅ5¼È2UÛ»ŽÝ3S>Ìaöàþoÿ‘¬Ã³>Ñ<%­YøoÂv&Ù$šËFÓíd8 € €; •’ ˜\6=ˆÇô £È”WK­–«ã ½ÊÖëW:e˜¶¶¾¹kXf‘^쪼«ŒŠKrÂ7#Ð×E 5{ žIû&~Ôö¢ðw‰|YÿGü#?Ù:ŸöwÙ´þßç~é$߿ɋo߯0zg5´*ó«‰è}YæŸòjùÄa£œÍ4sàþý£|âïÞ6ø¥[jëã Yûé®-ÑmZ0mÁȱlÝGÁQѽ9•Vï”g¼y¦«œG1ãPn<âÛ~¾n™t˜úĦr÷XÑêßk>µÀP}¬úÐö³ë@ ö³ë@ ö³ë@ÚÏ­z_‘ÚÖúé‡É#ª/¾Ðsÿ¡Pcqu¸ù¹sÑEx™Æ}†ÉáûÏzoh­ý_eç÷'fiN“©¶Æ÷sOÍ„þêð+òœÛˆ1Ù«q«;CùV‹çßç+ÔéFn|óûTÿɱ~Ñÿö!øƒÿMóדÿÈÏ ÿ_!ÿ¥"ê|ô?&Ä>(ÿ‚`|nÓ"ü-M?TÖ<]ñÅv:F«:ùö°C.»¬\}¤( HLq€œáŽB•>^ †qžË ‹¼cN•7%³º§M[ËW©rªéÓæVÿ6zgþ9|cý›¿i٫ᇊ¾ Ïñ Áÿ|½2üjÚe…¥Æ›|ÓGjöpÂ;çŒì•d!UþrH#ËÃe8ï*ÆbèÒöS¡ª³“N6nÏ™½lžªÚÛCIT•9Æ-Ý3Íü3ñ“ö‹ñOí™ûKü‹ãž§iàxfóWÓ%:%Õ¼È,Lx“ì€0tÀïVÊd}â$]ñY^U‡ÈpY“§R¤ÔeïNÍ{×Ó›´z5¯–Fsuemò<3@ý±jOþÄ,ý£¤ø¥Ÿ‹üâè<> µÐ´ó± gw»W…°ß銫äy ÎCÈô«ð¶KCˆéå>ÂôêÓsÖR¼_½n[5§»¯76ý,B¯QÑu/ªgíÂ/]|FøOðÃâõ¬V×Þ(ðÍovB÷6ÑÌʹç¹>•øîo„Ž_ uNrŠá“_¡èS—4»£á…øïñâ§íÑñöu𗃼à/6¦Ïi¦ÙÝM¬]í³À®#¬!ï@+Æ+ÂÙ_¬žI—e|/C8ÄRöµkO—YI(ÇßÛ•«»Gwt›ÛMyÕIλ¦’> ý‰¾6ꟳÏì!ûGüSдØ/µý7Åöö]†0‰çŠÒy •O0±ÛBäg#ìøÛ$§ÄuÍZ\Ãrë ¥ ·¸ͯÌ 0$' ±±?)ü%ƒ­ãsÊÐIÓŸ$!9û8-b›”¹¡üÚ.uµµmÖ¯%V4Ö—Wz]ž«|Iø÷ñ;öIý°|9ñ›Fñ^ƒyá;¶Ò|Wá–ÐÏ‹´ÆY‚æÜ($D žRÆáeŒ ‡$û2ÌŸ+â<ª¾W8TU\y ª{Oe?vöq•úû¼ÎI´÷[CIѨ§un¶µÏrÿ‚bhš•¯ì‘ð»ZŸÅú½æ›zššÁ \Åd-4⺭àf…’œ— ³y³H2ÇhQ€<¯+Â|G‰¤©EJ<—’ææ•éÃ{ÉÇNœ±ËÁ'ì“¿õsœÿ‚˜|oøÅû?x á÷>üC»Ð/µ\éwVÙÚuäGäË.ü\[ÈáÁ@>W Œü¹æ»ü6Érìû_ ˜PSQ2|ÓM;¥ovI[^×ó'Rt¢¥bmCöø·ðwöÞð7ÀøÎOøÆž:Àk2ÒÞãHºT¼fxã/keÞÁerW-µ‹›pÕ\× KÙU¥S—II©/s~fìýíÕ•ÖÚé.¬©ÖPné£È¾þÓÿ´/ÆŸÙ·öˆý©´Ÿˆã¿ð…êW1h~ ±Òtû›·¶‚ÞáÖòI¡{‰㸠º9b”0voùVO›àòIÑöžÖ+šnRR¼›º“QI5{8ËO¼Î5§Rœª'kt8?Úûö“ñ¯bÙÓöƒÒ†›§ê>"×­÷‡5=KÖtñu Þ£\Åõ´ÎŽ$´o,«ŒG)q;«Òá|‡‚âfW;ÉB7RRœegË£p”SV–ºn´¶ÄVªåJ3î{ßíuñÃã×Ãß²Wƒ~|S¸Ò´O‰—öv–›w¤i·vñ–º´€²·ó€ap凛鴥y¼3•eØì·_AJTi©I=¤ÿšÚ[M=n]iÎ3Š‹ÜÚýœ>4|d¾ý²ÿhÿÙwÆÿoüMá¯éjzF»{aaõ‹³^<˜&âû8hÊæ!…²›ÍòÌ r<&m‡¢¡9ÊÒŠrqvßÙèï®â„åí%M»žÿØÑµKß¶öª|{âm×ïˆ?ôù¨P€ûŽ€ ( € ( € ( € (Ïþ |Qð7à 4j^2ס³?sh¿¼¸¹>‘Ä>fúýÑÜŠö2|‡0Ϫû, '.ïh¯W²ôÝôLÎ¥XRW“>ñßí©âÍvIì~iQhziÈ[ëÀ·n=Bó}0çÐ×ëÙO…ø<"U3)º³þUu¿âù/¡ÁS)| ÇÍš—‰üIâ«¿·x“]¾ÔîÎH’öv”¯°Éà{+íè`0¹|=ž”a$—ü9Ìç)ë'sBÏøkƒGYeÐWT¤hêÃþ%rúßú ¯:©hÉÒÿãÚÌvòcÿÐEyÕK; EVP®¡”ðA¼ÚÉ4Ó-Z/„´×5=VÚÁ-õ+« [ig‡+¾8¥ºt]¿w†žcÀÉÞrzcæñ¹>½Ú+î´ü66I#n÷A½µS,kç@:²GÔWÊc2ªØ]W½ëõFñšfy…—ôÛù4ë¸îez:y{Šõ{Yíï K‹wÝwôö>ôùcmaã_ø(oÅ=ã"Eqá]Áïsáë]Q±  fÆâßwEY/Ì_™X1âḙò÷ìùâÏx;öý£õ_Ý]Úx€ø‚þÝbJMknÉh³º0åXDÏÈù€,ÃK;Eî¿ ¼ã=>ëö@ø­à;øBÞæÚÃLÖ-ôýnîêûÇ‚u9¸…,–?´Žñ›+ˆÙFdPŠÅ««4ñCþêß~:øƒÂ^ø¿ð§ZñÚmÖ¡ªÍ"jÞ”JЛ;Woµ1<žPhÕóåÆã Í+½Ø®Ÿ¼Uoâ…ÿõH¿·°»ðöŸseoªÌZàFÐE4…@v†çMÙäàè¤ÄÏˇwà þ ûBKâÿ xbiZ Ú”jvp}O™³¥1)Œ…c—e‘T1–H9§ï Èð¶…ñö†ø«ûex{Äúg†ïgÖtˆ– dÇg} ûZ‰÷=´,þfíårÙ$ç1–¿a¸á¿?·?à JÞ+߇Ú6¬VÇÃ÷¨'´¶W“QVU‰ò mÿ–`ÐÆ 4ÇÿøøÑãI´_4?ÙRY6^X:xýú=èn³·¼®såŒ}“ñŸ>%ÝþϾ;µ“Â6ñ†þiÚ¯ˆ>üB,±\µÂέ¨dÛ ÈåX³„Œ2Šú‡öø—ᯉŸÑ5¤Ñ´SB Ä"‡G`YT8꬧šxL[À׆"0Rqi«Þ×NéèÖÞ¶ò£Ì¬ax³à¿…¾!|%Ô>|I¼¾ñ_‡ï¬Í¥Æ¡«-´wrs ÛÃI,giFH×Ns•,Æ®±¸d¡$î’½¼Ö­»>·e8)G–ZžQkûü_ÙÃEý—u»MW]øs¤É5ÅÖ«r‚þÞy.&¸ó–hcUÕî$PB°í`À¶v©Ä¸å™Ë5¦ÔjÊÉÙ{­$•¬ÛÑÙußUbUò{7±sCý“ü gñÁ¿¼gâÏxóÆ>²¹ñ}ͣǤF27Gµ¼ òò{(‘óƒ»*¤qâ8‡,-LF”*;Ë‘?{ÕÊRiy+"•%̤ÝÚ8ý'ö(ðž…ñ{âÇ3âçÄ8¾ xÓO¹Òõk’Ú+E%´ËÚ‘8ª0@ÊG9ˆn, †ªüW^®–]<=7J“RŠýåî¯×Úk{»úém,F‚Rs»»ôÿ#Òÿàœ? 4ƒ%øcñ?âBü4×uˆµË˹ÒSu¢åf:~ð­äÀHÏXW áô­Ç˜ê™„3IP¥í¡í;Yß§´·W÷úY,,T.íòÿ#ì…ÞµøWðÿŸ´íVÖ4ŸÙE¦ØÝë_f7 káŒÄŒ5T ³q –,rOÅæ˜éfXª˜¹ÁFSnMFö»Õ¿yÉêõÞÝ¬Ž˜G’*7Øò?~ËñÆ9¾;iÿ‰¼+ñóM:F©yá««xÓY´*©åÜ$ÐËÎÈãPñ”qå¡ ‚;(q>/—,ª¤!RŠ—4TÓ|²Þé©G«z;­^–l—F.|éÙž}ð³öø7ð«á·Ä/„jþ(ñ'Ãoú–‰â[‹9Lš)`¶†TyQw klߎ³,ÓC2q…:ô~AKmtjR’kW}5½¶0°„\7Lï|û2x{À–>ПâüCáÌ—‡µû»6µÓ¤Yb; ¶ŠY„AÎÅžIp¤ ª‘ãæ\O[:õU têVVœâ¥Í$÷ø¥(ÆöÕÅE½uÕšBŠŠJí¥±îž)Ñ$ñ/‡u-jûImB·:Ž˜°4öᆠŒM‘ç20ç¥|ƺÂ×…g>W{Jö~¼®/îhÚK™XðOÙ«ö_ðìµáÍwÂ>ñoŠu/ j—§R{Ke0‚䯑¼‘¼6Ñ>Y"‰J³2€€ b}~,âÌW׆'J©Ëx)«Æí¤Ô§%£oT“×Vô´P¡ ÑnÇKñ«àÃÏ6ƒÆ–÷Ðk¾]KD×´{³_i*TùÈC/%•ee%‘•y™ãør¥Yap«YÂJñœuÑ­WªiêõÕ•RŒk[›¦Ç;á/Ù£Á¾ø‰âŒþ$ñ‰~.j–Ù‹âïIf÷}¾Ð¡m¡†Þ+høŸ$“Îrƒ<bñ˜ yL)–æöpæ´ïïJS”ßþé²±UeVpßI[ÄìÃ,ªá(?ªÿ Ý©î»$žµnÚQV»jú´ÚMd°PŠ•¤ýíöÿ#å¯Ûwàö§¯ü#øqû)~Ï¿¼fãÁÞ'¶û$©¤\¶qhöïuý¤WÈæ{ÇGß"¿™¤¨\öÞçtðùž'‰s¼m?ßSw÷ãΤ¦’³¿7Ããd×+нîŽlU6à¨Ó‹Ñü¶î~‡øÿö`ð7Ä|5øƒ}©ë^ø©à›t·Ó<[á{ˆ¢ºŠ0¤4L³Å,RÄKÉòÉâGüó+â¼fYC‚„cS]ÞT曋}×,£$ôZ©-—duT¡µ-šêŽª?€¾ºðŸÄ¯ x›SÖüHþ?·{_k:ÍÌk½ŒÂ`U_&8â…Q رFŠ -‚Ä“+?ÄLJÄPŒiûxF)ò§~gñ7)]îå&ÚÒöH~Ér´õ¾æÀ_ٛŸ³ÞŸ¦hÞñ—‹µ}J³¹±ÒôïÞ[I› ÅÏÚ§¬E½ž`|»ÙGÊ¥T},ó‰±CRUq¡ ɧ'Ó“ŒyUù¥+Yt“ݦȥERVMŸÁXü!ãoˆ¿ ~xGáï€|Yâzß\:”Ðxw@¾Ôqo4{žXbhÔïe  çæ¾ç¬^/Æâ1ÊЧUÍ8Æîéè›MéÖÖó9±ÑsŠQW>¾øyû6ü7O‰Úgíu­xËľ:þÈM7G¹ñ² Y4[-¬¢8íMµ¼‘¾Ç‘IZSæ9c–b~sÄ8Ç‚–N£ t¹¹¤©ê¥.î\ÒM]+rµ´HÖ4£Íí5oÌç'ý…þÅ£üAð†3~Ä ¾5|:ðÂ=CXñ/†~ø<£éº…%²†1"#Æ’I$öÓJÌIß‹–`̓ZåYŽÊ±UqÑŒgZ¦òŸ3{ÞÉ)En—M-ed*”#8¨ì‘ğدÂßü]ð§Ç>,ø½ñ ¼OðèÁ.ƒwhÚ,B ˆ¤ŽQ;§öqY¼11V>\zrþ(­—ѯ‡£‡§ÉZüÉûMšjË÷—JÍùù“**m6ÞžŸämxö?ð€ÿh~Ò:gÄ]xÿÄ‘ImªÁ~ú[YÞ[9ˆù&4²VESo ޝû¡–9mÚWâ:ؼº\èÁS†±·=Ó×[¹¾ïtÖ»l ŠŒùï«#ð_ì]ðÓáïÄŸüFð‡Šüg§/‹u»ëƒP·uåå¼òÜBOî>Ð#Y¦‘¼±0Fݵƒ/Ë]Uø“ŒÃSÃV„³‹ŒegÌ“I>¼·²ZòߪԕF1“iî/†ÿbÿ‡ž<ÒþøßÇð'Œ®^ëYðf‡}hš|ï"ìDò[=ͰdùO‘!Äb½œ±á:”Õ£&Ÿ6›^ÍEüâÅì”n“²gÖº^›c£išv¥Û%¶™cvÖÖñýØbE Š=‚€? ó9åRNrwoV^ÈÒ^•ÑG¯zꀙ©§ÌCIùO#Ø×ÝðŽc8Ux)»Åݯ&µ&µõõg-x+sÕú ÊP@P@P@P@P@P@P@áÿ´Þ“ªëÿ³oí¡hZeÞ£­ê>×m,ôûZyîç’ÂtŽ(£PYÝ™‚ª¨$’ öOµÔm~ @ú¦‹ªéSÞø£ÅzŒVZÞq§] {ŸjW<–ó¢KøeÀuSµÁÇ5ÓŒ}ŽŒ\ãWRqz96¾lúB¬ç<âx/ÿ¡kWÿÐìè`|ñÿßÿ“7øYÿ_¾ ÿÓæ¡Bî:( € ( € ( € (áÿÚ+ö¿Ò~Ow࿇¦ÛVñºæ;›Æ>e¶”Þ‡I(þïE?{$¯Õ8/ÃzÙÜcÌïOº[Jå=ßNç#©û°ÕþG寭âMÅڽνâm^ëRÖ.[2Ý]È]°ôQÙF+÷¼> —PŽ MBÙ%eÿݽ_SÌrsw“»4¬ºŠÂ¨#­²è=kΪZ:Û.«^uRÑÖYôZóê”[þArýþ‚kΪZ2tÏøö³ÿ®1ÿè"¼Ú¥£±²í^uRÎ×EÿÛú÷‹ÿC–¼ú…ž‡eÚ¼ú¥uo[ê¨÷`¾Ævã )÷ô>õóØÜ*^pÒ_ƒ5Œí¹ä÷6·sÉmu EøwDÕ¤Aßèút6w ¼õ–5WÉÉÉÎO|ÑÊ‚æMßÀ?‚ÚŽ­6¹ª|,ð¥ö­$Ëqö»ÍÖYD€cq”ǽ³Ôîc“ÏsK•ÏM—J±fI"b’ ˆ¨‘Ô*qò®ÊBã8ç4íp8Ý[á?Ã=wY³ñ.³à-ÿÅ6d5¾¹¨iÐ]^ÀË¥g‘Yþ\årH ,‚á¬ü&øaâk>÷Å_<5®êVQ$0_ëZEµäñªŒ$t$~¢È.Søð·á—ŒôÉn|aðëÃíÆe$VrëEµãZ RBÆdBPgœ.Z/¯Ào«¨Ùë ðcÀ£V´ò¾Ïz<;b&ƒÊUX¶?—¹v*(\”(F|¿>øGJñ÷„žÑügwa5œ7šu¾$ ’æ w‘S¡ #d¨ã¸ù{ö?ý/~ x;Tð¯Æü9ñ=üzÔšÖ•¯[)Ôgµg†ŒJ·6hbÚmÇG9/£ hx«áÃ_\ÛÜøßá߆|Gw ¢—\Ò-¯ž4É!TÊŒ@Ë1ÀîO­zׂ¾[iZuž—¤è–^ðݸýÕ…ª[¢rBB€*äû¹Á vÓt»"ÙmlaÆ9'«9õ'¹  W™a’1ÔŽ+ÎͰo‚«‡ŽòZz­Wâ‹§.I&sDH#pE~!Z§' «4ì×™énE\s) =MrÌdmÖ¹fPÆí\³<ÇâÅÏ|Ñ,uŸêínu¸ôý3Nµ…îo5kÉ#·µ·@^YX© dÖ˜<»™Ttðñ½•Ûz(¥»“z$‚SPWg©~Ò~Ò~:ø#öwÔ4ŸCñÅ:;ëV¬l­-âU•ŒsLáñƒå €€ ERȱ5rÚ¹¤eJœ¹^º·¦©[mVö~AíRš‡V}_73SÀÿh?Ú+À³_…tO|@²×.´½WU‡H4!u"Í"»`Y@P#nåEVÅJ1r|ÎÊÊÞO¿§v‰©V4Rr=Ð0uWÃFAò=+榬j†·jå™DmÚ¹fRzå˜ÆW,Ë#®Yû@~п?f¿Ç㿉77£M¸»K[=2=Íäì¬á#Rʼ,nij*ŒuÉû<5Âù‡ã~¥—%Ì““rvŠI¥vìÞí+$ßâgZ¼(Gšg]ð÷â ÏŽãÖûáïŠü%}¦¼*ö~)·¶¦F$V‰íçš76*À«F+Ÿ1Ë#—8rb)ÖŒ¯­7'k;4Ô£ /-,Ö©´8Ï;¦½OI^•ɇ¯Zê,xê+ª$Eu@ƒÊþüqøWñkYñLJþøºgXð}ÒYëvÑ[ϰ™žTTc"(lµ¼Ã*Hù=Æ}üvIÊiÑ­Œ¥ÉªðwNëGѾ’[Ûs8Ô…FÔ^Ç?ðƒöŒðÆ¿|[ðo„lµØ5_‡Z ÒuY5k³Å4Å¥MÐ6âYwA'Þ ÝÜkÑ̸“PÃb1.5ãÍ;´´ßO5µ×™«¥Ð÷áÐW›Øõï]PÌímmsr–òÜL:7į£ü2ñOóþÏþ•Ã<$~Ã8Ëü¿B®2Ûã'…/.ÖüBó£Mðëݧâïb ~&¹¥B¢zE¿“ÿ!Üô+}^˜Rá,ue¹m*î&üU£~"¥Ò¨·‹û˜:­¸ëðúØÜñ›Mn†'ö½¯üñ½ÿÀÿøŠW'_Ö¬!Ðu¹î>Ó´vs<“Ïk4qÄ¡ ,îʨ’Hrhi´ôÕáÐu¹ñåi7dæ&ó#FÝ·J½úK×üֽ略¥YÃG±ƒ,2ÂÛdBcØ×å9Ž[ŠËj{âvƒRý•å1*ÿ£Âv*… ±œšÃ†Ã×àÜV&¥(:•”¹cÌ•áö’¿W«wÖÛM¬DRzÖg/xÛö ý¥?k;âw|c¥è_µ4Ñ´ xkĺVq›‹È|鬑™¥Qh„™K®éOË sqÃÙF_<(JU—4ç(FméeÌ—¼ö³Ó}ÇIºµ'Ìö8?ø(wˆügðÛöZøâüxñ6¥âDÕàÒeñ·†¼Audšìe¹Ë"[OäÈÆHc;þfH  ôp& ˜g˜º¬$#W/g(Eò>h«'(ó%fôÑy Ü)EÆZ÷?aty]#J–Wg‘í¢fv9,JŒ’}kñÜBJ¤’îÏAŸ üMãnÿÚÿáF§ñ'Æòü9Ò|ua¤^x¯T‘4éIÓ$ó`vœ¼N<évº0*®B¼WꙦ ¸O+Ì)áéªÒ«ä©ÃÞ_¼Vk–Íh®šiµw©Ã ?o86ínïÈá?f¯ˆ|mÿâý¥|o⟉þ5Ôêý§>1|J“öØøû>é¿ð–ÿ¶¿ÑäÕï´oꉣê> ›Ë½!õ®-¶F†Õ2¢xò<ϼÅ¿:ál“¸KÔöXŒÔ#*±s…5xkÈ¡;·Ìõä—M•Ù×^¤ý¼i+ÛËKïè{oìiuûCiÒü^ð/ÇxîÞÏDÕ"ŸÃWÞ·§êš²i÷bÞ›iå`Ê‘ÄÁ¥$·˜à3ãåøöUƒÆäÍ^¤Z¨£ Ÿ”*UÃRæ„9#_’m7N 1 [YêÝÝ™x©Ê›§J ¤Þý~ñÚ7޼mðëþ ìפx«ÄºßÂøa¯®4ýsY¼ÔçÐçÓ¿›ìÒ=Ì{š\p àŒ˜Þ¦_„Í8%çõiBªU9SŒ#5Íg¥noåû:îî”å O²M¸µ÷|?Ö~#xËÁ¿ðQ‹kãWĹ øbæ_ Ãÿ †¦ßaxçÔv|í1vP–Ê¥Yжw0,¨Ë÷Ù…  Ãê–ŠxŸâ?eO[ÆôQ²ÖWºW[+&Ó僔£Vòzm«ó=3âíYñÏÃðM/Ÿ´^ø£UŸ@Ôübðÿ…¼#ñÁ/}á/ ¢G¥hvZµþ›ef<´+ok4q–T%Š’ªHEc€âLÏ)«S„«j“ø¤ãIõzÊ-êõzêõ*taQ%%¢=›BÑ,|7£éÚ˜÷§ØÄ°Âoïg¾›`é¾yÝäû»ï_;Š­,EIU®õvJ+䢒_$imá>1ý”¾xçâ=×Åx>sã‹Û?ìûûÛ VöÅu;m<«¨¡•d(ª¥\ʪ¬§†â¬×‚Y}¿ºO™'Ë•Þ÷‹’n.ú¦¶z«2eB—;Z˜¾ý¿g xÅ? <5á _Nð‰$ꚯŠõµ‚íö„$µåw(U}¤oT@û‚¨‹ã<댧¯V2­OHÉÓ¥u×ù:=Uömµk°Žœbâ–͘šì-û0ê¾ Ð>j^Õ.|¡ÝMy§h3ø³\kk)¥æGŽ3w…É,qÐ$#Ü•>â 8¹ã©×Š­4”¤©Ræil›äôù$º+ IÅE­›ÿ3Ó|aû>|%ñõ·ƒãñ†îµC¸þÇ×$ÕïãÕlÇÌš’L.‹,e$ $ó^‰s<¶Už¢Œjüq䃄½i¸¸|¹tÙJŒ'ne·ß÷îv> øá/‡öº·…´Çõµ_^ÝÝO{w6ЂK‹™Ý時ª¨.ìB¨€xù–gŠÌ¥be~Uh¤”c{Ú1ŠQŠ»oDµÔºpŒ6<ÿã/ìåð{ö€I¶ø¹á›½zËLbö¶cZÔlàÈ#Ì0ÛÏ3à‘½”°ŒãŠëȸ¯6á™NYUUMÏwÉNM®×”dÒòN×ÔUhS­ñ«üÙ·âÿ ü‘Šƒ~©îû²cFm¥«ûþóÍt¯Ø›öoÑlü{§é^Ö­¬üm•â(£ñ~»ho2fãý3÷¹ßæ<‘$ƒ8vÝŸ縉ÐZÑn‡ðÿuGÜÒÞ﹦‰i¶‰î•²úµ%t–ûêÿÌí´Ùào‡~Þü±ð2Ü|,º‘¥okæ§o 3ï&´Ë#CûÂdýÙ\;1$å[ŠslN`³YÖ¶!iÏÆ-émyb”´Ó[é¦Ú¨SPäKC§ðÁ/†ß / Ô<)£_ BÞÈi–×Z¾±«Ëeg•o³Û½ÜÒ˜!Ê!1ÆUNÅÈùF fwÌâሚ³|ÍF0‚rþi(F<ÏW«»Õ÷iÆ•—ì¥ðMñ®½ñ Lð#Yx£[¿MWP–ËVÔ ·»½Gy#¹{Tœ@fI$yO/r;RšõæÕp°ÁÔ­zp\±¼`Ú‹²qRqæ³I&¯f´zì)©s%«,|4ý–¾|!ñ7‰é$;ÝKìAŽz1ÜK™æÔiáñu¡…(B<¶þW¦–‹Dí¢ì(Q„q[ù³6Øóöp‹ìð¯ÃXއ¢uh¼6úûèÑÞÏeÒŒÆÌ> ô8é]‘â¬ÞZºþó\¼Ü±çåíÏn{Ûĺû—Ül|Hý–þ |^ñ‡¼{ñÃZ¦¡âÍ£}&úßÄšµöS£+«ÛGosBá‘z(bʤ’@5¦[Ä9†YBxl4Ò„þ%ÉÍ~Ê-µ®ÍØS£ ¾i-~dZì³ðsÁßu¿^ðæ¥mñoRŽaq®]x›Yœ^—÷w½Ë$å"ýÛ)UòÓhsâ v+ y§B6´T ­n©¨¦žúÞú»îÉT£s-þd¿g=/áµñ â·­|_ñõé¾ñˆÚßìñàRÚÖÌb·Œ,ÌØ˜áBõfyÌót°ÔãÉB’´c{ú¹=/'è—e½æùov}-^t q[O.<¸˜ƒß{Ø “0Ì,ðô$ÓëkGÿv_‰ŒêB³J)Î Ò=“_m—ðy5,mU¦‘Õù«»$þRG<ñKì£NX ÆÄù¿¼y5÷vEÊÒt)ûßÌõ—ßÓÎÖG4êÊ{²Åzæa@P@P@P@P@P@P@P@P@yÅ*—l;xoV?‡™eIìÏ_ðMþc…„Ïïˆ?ôù¨S@}Ç@P@P@É$Žäši"E,Îç@ä’{ q‹“QŠ»`8_´·ÆKŸß|Eâ{{†o Ú9Óôh›;RÒ2B¾3Á‘·HßÇa_ÚÜÃ+…²JXF­ZKšoûímé#ò¿Sç15½½G.µO‹?|5ã{_jqøz$šXQu´¸)²LaöùÙÀ$ƒÏc_™g{Äy>}—¨.g§ÉRÖ•­+{]“Ñ륙ÙO F¥/iúiþGÔÞ%Õ/4? kZÍÍœVP5À–ö'– EebJ‚ 9#¯Jý+ˆ1upulUF2„y¯$ÜtÕèœ[ººZ­m¾Ç(©ÍEõ;Kâyô+ Ÿ-Šks"É$:|OC•aÌKNp}på³ÇÔÁÂy—*ªÒmA4•ÖÚ¹;­›¿È¹¨óZ¡eÚQ#­²í^}Rζ˨¯:©hë,¿†¼ê¥š·ü‚æú7þ‚ÕçU)OüzÙÿ×ÿô^uRÎÎϵyÕK;]þ?.=~Ïþ‡-yÕ =ËøkΪZ:Û!Ò¼ú¥#¬²í^uRÑÖZ*¸(À2°Ád^uRÑòÇ‚ü-'…¿i¶ÑÂ˦\xWÂòÚ¹ 潕ÕIÇÓµÙ”èê|¿Rjt2£ýª~K¦ø»UF¹ö_i^"Ö. Œ“42Ù5Ê<)rd¶¸a¨Á¶Öé` ¸š8PÞ‡Ö¡fíµßN–óÓ}Ÿ{Êa§íS¡^xŸO‡OÒ.[ÃM³i%«›gÔ®õk{ý ÊÊÙ"K’-iu¡A|-æ‰ÊÖÙU‰Ÿ­'-šúÞé.ºoÖϽ‡ÊuR~ÒÞ3hvö^ñ-ì×Ö:n°¶ñY¯ü"÷7z´º4I{æ\/™ÿ k¸ ´ûHfwÏ–Ñ<—õ˜édüü®í®½ïµÅcΡý¬./|w¦XÙøJÚÏáÆ¯‰{aâê1iŠú]Õ®¿}>­½|[ý“CFŠÒÚPÎþw”0W?­^vKÝvÕ飿wëÑu·˜ùKÖŸµ‡ŠþhþøM×´;ÿßè—Wz¥Õ­žƒgn×…5Jh¬§–Î!·µ•¼èa[èÚGTBÖ)Nš©uv½7Õèí÷ipåÖÌê|cñßÅžñ•§†®~ÛIasªé–ÂèëÀÏiawªÁ¤­ÕÔ1Ûȼ³Ü‰m!2Ÿ´AovÎöòÛ´§^P—//n½·ü7u}­aXê¿iŸù6ÿÚ þÄwÿH'ªÄÿ~òº>ö¯“7 ( € ( € (¬ˆêUÔ2žÌ2+øz8¨:uà¥Ѥ×ÜÆ›‹º)I¦ÙK’a Ot$cðé_5Œàœ“å)På“ëãoDŸ/þJmMHõ)I¡ÄqåNëë¸ÿ ùlg…˜J–ú®&PïÌ”¿.K~&ñÇI|Q)>…r Ù,l;dOé_3Šð¯5ŒŸ°­NQéw(·òåkñ6XØ=Ó)6“¨.OÙò£ýkæ±ñßÕn—iAýÉJÿ²ÅÑh¦öwk’mfwØkç+ðÞsI7<T—_g+}ö±ª­M½$¾ò£‚§ >†¾zµ9Ón3M>ÏCdï±v®9”†•Ë1Œ5Ë2ˆë–e!‡©®g¸Ç‚µ€2Eé]p$zõ®¨ÇŽ¢º "AÔWL]P,$3Kþ®'÷Tšö0yn7þíBsÿ [ü‘œcñ;ãÓïdámœ¼6ÿ:ú g¸·Ë ×ø—'þ•Êc,E(ï$\‹G½lîTO÷›ü3_Eƒðã=¯iÓÿ“ÿÒ9Œ¥Œ¤¶Ô·†øÌ— ¢®kèðžVqOŠQ}£%÷·ÈÅãWH—£Ò-‚ÛßÙŽé_Q„ðó(þjœõ<œ¬¿òUø˜KR[h]ŽÚÞ,yp¨#¡Ç?}.$˲þ_«PŒZÙÚòÿÀßâc*“žìž½R€ ( € ( € ( € ( € ( € ( € ( € ( € ( €<âp ö…?tøsUŸO2Ê“çŸø'ö9ø\A}âý>jÐqP@P@P@|‘ûn|K†¿³ïŠÞÊàíxˆ®…fÊØeóÃy¬;ä@“`Ž„ŠýÂÌgœKATW§G÷’ÿ·mËÿ“8ü®rcjû:.Û½çÂËb¿±ªŸ< ý£<.ntm#ŶñþúÅþËpÀså9Êì#þÚWà^5džß C8¦½êo’_á–±)iÿo®]RÒtßSÑ|'â±ñ;@øq¡<ÉçµëC®#³eá‡ý5›È?î–®œ³<ÿ[°n»Ê^õoJ-oþ9ò?FÉ/«Êrû¾ä®y%Þ•¦èŸµn•¦iQZXE©Ø”·vª–·‰›ݘŸ©¯Îñ¸J? 4 ªS²[k·÷¶Ù×9an÷³4¾ izv“ûWøF 6Î+hfÖ´‹‡H—åy£gcîX’O½eÄ8jX^6£1QN¥&íÝÉ6ý[ÕŽ“rÃ;ögª~×ÿ¼Ccâü9ÓuK½?D½¶KÛö±fW¹3Æíä…±Ú:–½/³|E‰®ÞÛÏö©a¸‘þØÐ}ƒM¹™»Î`û³¸u­8’ŒrŒEøOvN÷ÕëkoÞ÷׸¨¾tÔ©>=xçà…¼ |Wñ†÷V»‚m>KËoéŠÒ®¢gXˆ’tÞŠV2Pì,zàŠìͱ8?ÜÕÅ6ôºŠë{jöÛÌšjZ¨Ÿ$xëÆw_ÿi/‡š×Âo x£áÞªAau{ámd¤ |¯s,RfÞ9¥Q¢ÚÄ2º± ¤_5Š«õLd%‡ƒ¦½××^×z~¦ÉsEßSèø*_ƒü7gmðËÇÚZ'еî,.¯Ã¹imâEhЮv€ Žr<òk\úœSŒÒÕ…'º>–ø#û x[ÆŸ ?f/Šú¿‰5cñ;Fþ ‹X¸¹šâ?°@°Ë›·˜±E’±Ç½Wvà\ïÉ8a#*tê7ïhþ]ƒ›VÕ;/á§TÖÙuçU,¯©éÐÉq¨j) ¨íí‘å 72o›ž¤ÄÛ'Ö·Ë*rÕpïú hð¾|:K¼ÚmÍõ¯‡uW×ííõ›¹57ºÕü¥†BêæäÉsqq!¢…¤”ª+&˜-Ì>ǰ†žZ÷×¾ºéÓþ¶wø ð­`H¥ðíÍÕЂê©ßj××Wò峕¦{É&iÞáMÓÌW !š±Â!xÄjì)öü]úuù-wVÐ.ÊZ×ìùðß\»ø_-Ö™¶ÇÀ—Ï©éÖ µÄ“^4Ñ\ý¢[Ù¢{Á1¹…'’H®#k‡-öƒ:³)RÃÂ\¿Ýþ·ß=zÜ.Ê1~Íÿ´Ïø{Å—\Ð5#U³Ô¡6Z”—Pˆm ¿·‹OŽ ¿:+k«|‚ T„ ”yf=«ƒêðMJ:5ÿMoe«ÚÁs·¾øQàMGÃÇÂwZUÏü#Rj·zÅÆ™¥w7ÓÝO=ÅÊ]*Jż²ÝN^Ömð0}¦2ªª-Òƒ\¶Ó¿úÛ`¹Äjß³—5 vóÄV:Ï‹´ÍCQñ‰µX ñ ÝÝ®­uiqosËkvóC ,¬×t ‹ºDŽ‘nF‡‡ƒwMï}÷·¯¢ÛÐ.^ý¦äÛÿh/û5ßý žŒOðgèÿ [£ïjù3p € ( € ( € ( € (£p!{ky>ü·ûÊ y¸Œ›-Åÿ Nâ„_æ‹U'›":}‰6p~^|øG‡ê+KGåN òE{z«í?¼„é:ku´ðâ¼úžpÅ_‹•×äÑkY}¦FtM,ÿË ü¿Æ¹'ᇠÏ| ÿÀª/Êe,muö¿!¿Ø:Oüúãíþ5ƒðŸƒÞøü©Wÿ“×±Íø/òì+þ}ñöÿ… ¶ÁåJ¿ü˜}{üß‚ÿ!ÃCÒÇKQÿ}·øÖ±ð»„ã¶ àu?ù1}v¿ó~xÑôÑÒÑƺaáÏ ÓøpQù¹?ÎBxºÏí®›`½-"üW5ßK‚¸zçóŠÈxš¯í2Aef§+i>ÑŠí‡ d´Ÿ40T“ò§úëT{Éýäꈃ¡G°Åz”pôpë–ŒW’Kò!¶÷[( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( €<—âX Ó¡èÞÕ—ó’ÈR`|ñÿáýŽ~Kïü®jÐpÐ@P@P@~9ÁP|`óø›ág€b—YÙ\jóÆß3H!ŒŸ ‚\¼kúWÀlµG ÌZÖR5ÿn®g÷óGî<|Ò~ôaó?1ì»WîµO-õ½ÛÄþÕ´ ¬o­Ú-Ägcò·àØ?…|Þ}–SÎrúø »T‹^£ù;?‘µ)ºsR]kàW«φöšÌºÍÅÆ±*¯™fÎè¨àe•NK3gŽË_ŸpVá:5Þ2Q•jkÚQ[+µvÛ¾׊Ä*írìŠ^=ø/ã C⎓ñ?À÷:d—‘Ko4Özœó" £•*QT„vÎxðx›ƒs ùõ<÷+”“‹q›kXÙtN餓ٚÑÄARt¦3\øñkÄ´ŸŠV𬷶·VW¦É繆0Ð"%ÄNvü€n''$àgÈ̸7;Æg0Î%R“’p•¯4¯ {«Ýzi¾ï{-!ˆ§n™í¿þ\|c°ðÞ±oªÛèþ<Ò¢ &PÒÛÉœ1Œ¶¯’¯·<œ¯ýœ~$üvñWn¾$kþ±ðNƒnÉÐÃÜÞ‡Ød%dP± áŸn?н<Ë&Åæ•éË(¨Cùowß}¯nîÞdB¤i§Ë¹¯ûP~Ë2ø±âoø×á¶£¥[ê%”Z{iÚ“¼1¬qJòDñ¬ Œ œp é\™æOWV°í'k?'uù•N¢Ši™ßÿdÏÚ#ãÄo |C¾×þÁªéZeœRééq}0´w3Éå£y4ŠI-¼í9r»p¡›ÎÇå˜Ì]hדÒZkÑú2ã8ÅXöïÚ·önøõûLè¿4‹9<¤b£Ý]É6«|Û®ä]#Å¡ÌAUsµ‰-•Æe„¯‹Q^ê·›ßîIDû{öxðϼð³Âø‡‡ÓVðÝ®m7‡o'º†æÖÞÚ(’W3CY‘É@¥@Û†9 L!:tÔ'k¥mêô>޲þåªR:Û.¢¼ê¥¢ÅÆ¥¦Ø>­£3 žÎ0"y Á— PyäTaTý§4"ÝšÙ7ù€ÏüöFâ•ÖìXÖ¿ù¿EÿUx‡þ…˜ü[ÿ9=½/ç_zøx?ìÿEJëÿ kÿ‘(ÿU8‡þ…˜ü[ÿoKù×Þƒþû#ÑRºÿÂcZÿäJ?ÕN!ÿ¡f#ÿVÿäÛÒþu÷ ÿ‡ƒþÈßôT®¿ð˜Ö¿ùõSˆèYˆÿÁ¿ùöô¿}è?áàÿ²7ý+¯ü&5¯þD£ýTâúb?ðEoþ@=½/ç_zøx?ìÿEJëÿ kÿ‘(ÿU8‡þ…˜ü[ÿoKù×Þ*øëûs~˾.ø!ñ“žø‘qu¯k^Õ´ûfðâkIc ½¨E˲ÌBŒä9®\w g´0µjÖ˫ƌ›nT’I¶ÛpI$µmè–¬¨Ö¤ä’šûÑú-ÿ iðwþ}¾#á¯ñgÿ+«ó_kOù—Þz¿QÅÏ©à/üƒþÓàïüû|FÿÃ_âÏþWQíiÿ2ûÃê8¯ùõ/üÿÃZ|ÿŸoˆßøküYÿÊê=­?æ_x}Gÿ>¥ÿ€¿òøkOƒ¿óíñÿ ‹?ù]Gµ§üËï¨â¿çÔ¿ðþAÿ iðwþ}¾#á¯ñgÿ+¨ö´ÿ™}áõWüú—þÿÈ?á­>ÿÏ·Äoü5þ,ÿåuÖŸó/¼>£ŠÿŸRÿÀ_ùü5§Áßùöøÿ†¿ÅŸü®£ÚÓþe÷‡Ôq_óê_ø ÿ ÿ†´ø;ÿ>ß¿ð×ø³ÿ•Ô{Z̾ðúŽ+þ}KÿäðÖŸçÛâ7þÿòºkOù—ÞQÅÏ©à/üƒþÓàïüû|FÿÃ_âÏþWQíiÿ2ûÃê8¯ùõ/üÿÃZ|ÿŸoˆßøküYÿÊê=­?æ_x}Gÿ>¥ÿ€¿òøkOƒ¿óíñÿ ‹?ù]Gµ§üËï¨â¿çÔ¿ðþAÿ iðwþ}¾#á¯ñgÿ+¨ö´ÿ™}áõWüú—þÿÈ?á­>ÿÏ·Äoü5þ,ÿåuÖŸó/¼>£ŠÿŸRÿÀ_ùü5§Áßùöøÿ†¿ÅŸü®£ÚÓþe÷‡Ôq_óê_ø ÿ ÿ†´ø;ÿ>ß¿ð×ø³ÿ•Ô{Z̾ðúŽ+þ}KÿäðÖŸçÛâ7þÿòºkOù—ÞQÅÏ©à/üƒþÓàïüû|FÿÃ_âÏþWQíiÿ2ûÃê8¯ùõ/üÿÃZ|ÿŸoˆßøküYÿÊê=­?æ_x}Gÿ>¥ÿ€¿òøkOƒ¿óíñÿ ‹?ù]Gµ§üËï¨â¿çÔ¿ðþAÿ iðwþ}¾#á¯ñgÿ+¨ö´ÿ™}áõWüú—þÿÈ?á­>ÿÏ·Äoü5þ,ÿåuÖŸó/¼>£ŠÿŸRÿÀ_ùü5§Áßùöøÿ†¿ÅŸü®£ÚÓþe÷‡Ôq_óê_ø ÿ ÿ†´ø;ÿ>ß¿ð×ø³ÿ•Ô{Z̾ðúŽ+þ}KÿäðÖŸçÛâ7þÿòºkOù—ÞQÅÏ©à/üƒþÓàïüû|FÿÃ_âÏþWQíiÿ2ûÃê8¯ùõ/üÿÃZ|ÿŸoˆßøküYÿÊê=­?æ_x}Gÿ>¥ÿ€¿òøkOƒ¿óíñÿ ‹?ù]Gµ§üËï¨â¿çÔ¿ðþAÿ iðwþ}¾#á¯ñgÿ+¨ö´ÿ™}áõWüú—þÿÈ?á­>ÿÏ·Äoü5þ,ÿåuÖŸó/¼>£ŠÿŸRÿÀ_ùü5§Áßùöøÿ†¿ÅŸü®£ÚÓþe÷‡Ôq_óê_ø ÿ ÿ†´ø;ÿ>ß¿ð×ø³ÿ•Ô{Z̾ðúŽ+þ}KÿäðÖŸçÛâ7þÿòºkOù—ÞQÅÏ©à/üƒþÓàïüû|FÿÃ_âÏþWQíiÿ2ûÃê8¯ùõ/üÿÃZ|ÿŸoˆßøküYÿÊê=­?æ_x}Gÿ>¥ÿ€¿òøkOƒ¿óíñÿ ‹?ù]Gµ§üËï¨â¿çÔ¿ðþAÿ iðwþ}¾#á¯ñgÿ+¨ö´ÿ™}áõWüú—þÿÈ?á­>ÿÏ·Äoü5þ,ÿåuÖŸó/¼>£ŠÿŸRÿÀ_ùü5§Áßùöøÿ†¿ÅŸü®£ÚÓþe÷‡Ôq_óê_ø ÿ ÿ†´ø;ÿ>ß¿ð×ø³ÿ•Ô{Z̾ðúŽ+þ}KÿäðÖŸçÛâ7þÿòºkOù—ÞQÅÏ©à/üƒþÓàïüû|FÿÃ_âÏþWQíiÿ2ûÃê8¯ùõ/üÿÃZ|ÿŸoˆßøküYÿÊê=­?æ_x}Gÿ>¥ÿ€¿òøkOƒ¿óíñÿ ‹?ù]Gµ§üËï¨â¿çÔ¿ðþAÿ iðwþ}¾#á¯ñgÿ+¨ö´ÿ™}áõWüú—þÿÈ?á­>ÿÏ·Äoü5þ,ÿåuÖŸó/¼>£ŠÿŸRÿÀ_ùü5§Áßùöøÿ†¿ÅŸü®£ÚÓþe÷‡Ôq_óê_ø ÿ ÿ†´ø;ÿ>ß¿ð×ø³ÿ•Ô{Z̾ðúŽ+þ}KÿäðÖŸçÛâ7þÿòºkOù—ÞQÅÏ©à/üƒþÓàïüû|FÿÃ_âÏþWQíiÿ2ûÃê8¯ùõ/üÿÃZ|ÿŸoˆßøküYÿÊê=­?æ_x}Gÿ>¥ÿ€¿òøkOƒ¿óíñÿ ‹?ù]Gµ§üËï¨â¿çÔ¿ðþAÿ iðwþ}¾#á¯ñgÿ+¨ö´ÿ™}áõWüú—þÿÈ?á­>ÿÏ·Äoü5þ,ÿåuÖŸó/¼>£ŠÿŸRÿÀ_ùü5§Áßùöøÿ†¿ÅŸü®£ÚÓþe÷‡Ôq_óê_ø ÿ ÿ†´ø;ÿ>ß¿ð×ø³ÿ•Ô{Z̾ðúŽ+þ}KÿäðÖŸçÛâ7þÿòºkOù—ÞQÅÏ©à/üƒþÓàïüû|FÿÃ_âÏþWQíiÿ2ûÃê8¯ùõ/üÿÃZ|ÿŸoˆßøküYÿÊê=­?æ_x}Gÿ>¥ÿ€¿òøkOƒ¿óíñÿ ‹?ù]Gµ§üËï¨â¿çÔ¿ðþAÿ iðwþ}¾#á¯ñgÿ+¨ö´ÿ™}áõWüú—þÿÈ?á­>ÿÏ·Äoü5þ,ÿåuÖŸó/¼>£ŠÿŸRÿÀ_ùü5§Áßùöøÿ†¿ÅŸü®£ÚÓþe÷‡Ôq_óê_ø ÿ ÿ†´ø;ÿ>ß¿ð×ø³ÿ•Ô{Z̾ðúŽ+þ}KÿäðÖŸçÛâ7þÿòºkOù—ÞQÅÏ©à/üƒþÓàïüû|FÿÃ_âÏþWQíiÿ2ûÃê8¯ùõ/üÿÃZ|ÿŸoˆßøküYÿÊê=­?æ_x}Gÿ>¥ÿ€¿òøkOƒ¿óíñÿ ‹?ù]Gµ§üËï¨â¿çÔ¿ðþAÿ iðwþ}¾#á¯ñgÿ+¨ö´ÿ™}áõWüú—þÿÈ?á­>ÿÏ·Äoü5þ,ÿåuÖŸó/¼>£ŠÿŸRÿÀ_ùÚþÖ.µKyüke>«¨Ziv³êÿ¼K§Û›«©ÒÞÞâ{Š=óKvUËŒ‘MT„“DÏ ˆ¥)Ó’]Úhçü;ûlþÏ~/ÑìüEá=[ƺ߇î÷ýŸSÒ>x¢îÞ}®ÈÛ%O*Øue8<#¨¡Ô„]›A &"¬T¡NMwI³oþÓàïüû|FÿÃ_âÏþWRö´ÿ™}å}Gÿ>¥ÿ€¿ò(MñkÁߟ]ÿ„N/§ög‡u´ÂAá}[BÏ™%®ß/íÖÐù¿êÛ>^í¿.ìn\µ(É{®æUhU¡ok÷M~gÿâÿ“:ø_ÿ_þ!ÿÓæ¡VŒ¸h € ( € ( €?Ÿø(N¬úí5¯Ù³º^›ah£û Â&Çç1?aø7‡TxR”×Ûœåÿ“rÿí§ÏæõÚícä+.Õú=S‘m—ð×T¤u¶UçU-e—U¯:©hël»WŸT³­²í^uR‘ÖÙu_Zóª–Ž²ËøkΪZ<[dzÁ?j7¾-ñ/„î¯üC3´†òmoQÊ]ðŠ' Š’@Qž¯•Æd~*«­Z›r}y¥ë§½§¢ÐÞ5gdÏXðݶ™£èÚm˜ZZZABY^V±ª®çrYŽ,ēԒkgN*Ù+wü^¬[êw¶]«‚¡Gk¢ÇåÇýp‹ÿC–¼ú…£Ð쿆¼ê¥#­³í^uRÑÖY yÕKG[eÚ¼ú¥£Äßò‡þ½×ÿBzô2_ùyòýH«ÐþKþ'i) üIø…¡Æ»cÓµËûEQØGpèé_éEˆx¼« ˆ{Μ%÷Å3ä*®YÉy³‡¯TÌ( € ¡ªÈ3Qÿ®è&¾SŽÿä•Íì¿þ𑾸ôýWæ\õþ]Ð@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@Yñ{þ@~ÿ²àýItºß üUýt<¬ïýƧËÿJGÏÿðOù3Ï„÷ÿÓ¥åŸâ¿ë dŸî4þúS>Ó¬Tˆc¨ðæ @õ>e¶+»ö¾_©ò¼Kÿ.íïÐäÿàœ?òg? ³×íÞ!ÿÓæ¡]èùcî( € ( € ( çcöïG_Ú³âc7ÝuÓY~ŸÙöÃùƒ_Ùþ´ø;oúyÿ§f|î?ýâ_/É1Ùv¯»¨r£ª¶t‰ ’:¤h»™Øà(I5æW”a);$h ð—Çùïþ$ê>Ö.¼?iágºŽTÊcó ÛÍi6À@ÁÏøŽ]âULgUËñR£ ,eQF¥íuù_3Ÿ+æVÙYô=)àùi)ÆüÚhIûLkº®‹§x?ľñ~¯h52É¿JÕ&ŽÞh‚†GUF s¿;‡QŠóüOÆ×ÂRÂãrüTâª_à©%¬šiEÛ[î·V+'(Î+O#ê?‡ž9ð寂¾Câ_é°ë÷º-„¬šž¡Ü\;À„±Û˜±$ç’I¯©Êó|,2Üqxˆª²¥MûÓ\͸­uwm÷êcRœ¹åÊ´»=—Qñ?†¼-oowâoišE¤ÏåÇ6©w²HØ'hg €N¥uc±¸lTñ5cöri_ïh˜ÆRøUÍ;?‰Ÿ?²ÿ·á`xoû NmŽ£ý«oä ‚†1ù›öïÚÊvç8 ÷¯"¦k€t½²ÄC’ö¿4m~×½¯äiìå{YÜôsâ éº=¿ˆµi–ž™Hõ;›¸£·‘nVYI AƒžEs×ÅP§MVœÒƒêÚ¶»k°Ô[v±vÓÅžñn‰wwá_iZͬYW›I½Šé•n FÄ ó£‰¡‰‹• ©/&Ÿä_+[£š¹øƒà/ -¯‰üo i>LGÉÕ58-›”ù]¯7ŒÃÐ|µjF/Í¥ù—·²=+ÃþƒâK4Ô|;­Øjºy;EÖr—“é¹ ®/kN´y©É5äîU­¹ÐÞxïÀþ ºY>µ¤˜¬n¼Q{mu Åœ¸;¥e’6iX€r0@è+ãêÕœ1þÎn7][Ý&t$¹oc÷’Ìt¯N©š:Û>q^uRÑÖÙv¯:©hÀñ7ü„¢ÿ¯uÿО½—þ^|¿R*ô?“?äOñÏヵ»íOë$2”TÙöû…S¹˜÷q‚A' ÅaðG‰0£Ã´)ãð“S¡N7iÑ…?fªT¡ :•kF|Ô¹%Ê3œÛtá(&ãóøœë7-_ïdÞ‰_¯Ý»¹æUµIpdU&^rÛJ¯$ÊrxäŽkïjqîU-\ RÂÓ6êû±‡5UNTéþòP’”ãVœ¹¥ÑŠ—ï*ÁÆJ<« >eñ;éé{½=ŸdG.­['˜î±²o`ƒ²¨?ÞÇÌ9ÛŽÙÏÉãü*Q†YOÛNq¡8sIRŒ£ˆ«Jœš•nUíc'8Е4Ô©¹ª±”Ž_mÙ+߮ɿN›^ýv$7Ҽžd€ óüàœ€»»ŠG¡<ã®|U‰Tñê[ÕÃI%ß{ñ”ÜT¹c‡•o³'Í 5h»{•§ËQÓJ„o{Gé§ão½§Ýmw%óIsoÂÄ$³õ''jà$Ÿ½Ðäg®Š*â³L.žF…zQ¨ªJoW%7ìé¸BtjN1‚”’®›ƒs‚œ`ØJMê­oM]ìÒùo£!²Ôf¹–(æ¶X‹ÆÏ´;B¥r¬¥FÎÿ®¼þãnyŠ£†Æ`ãAÔ§Rvö“•Jr¦è©S«Nt)8JÕ£%¬“¥ÂQ“ªØxÒ‹”e{4¶Vw¾©¦ï±>©ÿ ÍGþ¸Iÿ šõxïþI\×þÁëÿé©…þ=?UùŸÒÿü57Áïùïã/ü ¼GÿÈ5þRÿnå?ôGÿÓÿäÒÿâ&pwý ¨àÈÿ˜ÃS|ÿžþ2ÿ ÄüƒGöîSÿA´ðm?þH?â&pwý ¨àÈÿ™gNý¦¾jú}Ž­¤Çã‹Ý*ö¸¶¼´ø}âIb¸‰Ô2I­‰ ¬¤ÀAWlñxZrph&´iÎ7O³Ôôjq§R›§SMI;4åfšÝ5ܹÿ ðçþ¿?ðÝx›ÿ*~½ƒÿŸðÿÀãþdÿ¯9ÿAôÿð$ðÑ?èñÿ ׉¿ù¯`ÿçü?ð8ÿ˜¯9ÿAôÿð$ðÑ?èñÿ ׉¿ù¯`ÿçü?ð8ÿ˜¯9ÿAôÿð$ðÑ?èñÿ ׉¿ù¯`ÿçü?ð8ÿ˜¯9ÿAôÿð$ðÑ?èñÿ ׉¿ù¯`ÿçü?ð8ÿ˜¯9ÿAôÿð$ðÑ?èñÿ ׉¿ù¯`ÿçü?ð8ÿ˜¯9ÿAôÿð$ðÑ?èñÿ ׉¿ù¯`ÿçü?ð8ÿ˜¯9ÿAôÿð$ðÑ?èñÿ ׉¿ù¯`ÿçü?ð8ÿ˜¯9ÿAôÿð$ðÑ?èñÿ ׉¿ù¯`ÿçü?ð8ÿ˜¯9ÿAôÿð$ðÑ?èñÿ ׉¿ù¯`ÿçü?ð8ÿ˜¯9ÿAôÿð$ðÑ?èñÿ ׉¿ù¯`ÿçü?ð8ÿ˜¯9ÿAôÿð$ðÑ?èñÿ ׉¿ù¯`ÿçü?ð8ÿ˜¯9ÿAôÿð$T¼ý¦>iÑE>¡Žma–xm’K‡Þ$^idX¢ŒcË¼Žˆ«Õ™ÕFI®¬5Yr´òœ^Ú¾½¥Óã>­.JxÚrz»)]è®þä®üoø_~ÿ Äü6¾(ÿä ¿mGþ~Gÿùš­ÙýÃïø_~ÿ Äü6¾(ÿä =µùùü ?æëvGÿApûÃþßÿèñÿ ¯Š?ùmGþ~Gÿù‡úÝ‘ÿÐ\>ðÿ…÷àúüGÿÃkâþ@£ÛQÿŸ‘ÿÀ£þaþ·dô¼?á}øþ€?ÿðÚø£ÿ(öÔçäð(ÿ˜­ÙýÃïø_~ÿ Äü6¾(ÿä =µùùü ?æëvGÿApûÃþßÿèñÿ ¯Š?ùmGþ~Gÿù‡úÝ‘ÿÐ\>ðÿ…÷àúüGÿÃkâþ@£ÛQÿŸ‘ÿÀ£þaþ·dô¼?á}øþ€?ÿðÚø£ÿ(öÔçäð(ÿ˜­ÙýÃïø_~ÿ Äü6¾(ÿä =µùùü ?æëvGÿApûÃþßÿèñÿ ¯Š?ùmGþ~Gÿù‡úÝ‘ÿÐ\>ðÿ…÷àúüGÿÃkâþ@£ÛQÿŸ‘ÿÀ£þaþ·dô¼?á}øþ€?ÿðÚø£ÿ(öÔçäð(ÿ˜­ÙýÃï1uÚ{á6‘yg§jÃÆÖZ…ÜRÏokwðÿÄ‘IŸþƒþ'áÏý~ áºñ7ÿ Qõìüÿ‡þóõã‡?è>Ÿþƒþ'áÏý~ áºñ7ÿ Qõìüÿ‡þóõã‡?è>Ÿþƒþ'áÏý~ áºñ7ÿ Qõìüÿ‡þóõã‡?è>Ÿþƒþ'áÏý~ áºñ7ÿ Qõìüÿ‡þóõã‡?è>Ÿþƒþ'áÏý~ áºñ7ÿ Qõìüÿ‡þóõã‡?è>Ÿþƒþ'áÏý~ áºñ7ÿ Qõìüÿ‡þóõã‡?è>Ÿþƒþ'áÏý~ áºñ7ÿ Qõìüÿ‡þóõã‡?è>Ÿþƒþ'áÏý~ áºñ7ÿ Qõìüÿ‡þóõã‡?è>Ÿþƒþ'áÏý~ áºñ7ÿ Qõìüÿ‡þóõã‡?è>Ÿþƒþ'áÏý~ áºñ7ÿ Qõìüÿ‡þóõã‡?è>Ÿþƒþ'áÏý~ áºñ7ÿ Qõìüÿ‡þóõã‡?è>Ÿþƒþ'áÏý~ áºñ7ÿ Qõìüÿ‡þóõã‡?è>Ÿþ†i¿´oÃmkNÓõÃÇ×ÚEô sk}gðïijCs ¨d’7[¬Œ¤ÀAVò©J ÆU"šþôÌèŸd“Œ±PMhÓeïø_~ÿ Äü6¾(ÿä ^ÚüüþóúÝ‘ÿÐ\>ðÿ…÷àúüGÿÃkâþ@£ÛQÿŸ‘ÿÀ£þaþ·dô¼?á}øþ€?ÿðÚø£ÿ(öÔçäð(ÿ˜­ÙýÃïø_~ÿ Äü6¾(ÿä =µùùü ?æëvGÿApûÃþßÿèñÿ ¯Š?ùmGþ~Gÿù‡úÝ‘ÿÐ\>ðÿ…÷àúüGÿÃkâþ@£ÛQÿŸ‘ÿÀ£þaþ·dô¼?á}øþ€?ÿðÚø£ÿ(öÔçäð(ÿ˜­ÙýÃïø_~ÿ Äü6¾(ÿä =µùùü ?æëvGÿApûÃþßÿèñÿ ¯Š?ùmGþ~Gÿù‡úÝ‘ÿÐ\>ðÿ…÷àúüGÿÃkâþ@£ÛQÿŸ‘ÿÀ£þaþ·dô¼?á}øþ€?ÿðÚø£ÿ(öÔçäð(ÿ˜­ÙýÃïø_~ÿ Äü6¾(ÿä =µùùü ?æëvGÿApûÏ4ø©ñÇÁwz'„V=Çñˆ#i¾3Ѿ xj[è5}Oë³K§É5Ü×q$†+FPÍoso(ÎÙT÷®lÇ3Àa+râ1àÚºRœbÚÚömitÕü™ÅCxw%ÃÓÃf8úTªY»Nj.ÎNÍ]ê´jëªk¡ôïü57Áïùïã/ü ¼GÿÈ5Áý»”ÿÐmüOÿ’4ÿˆ™Áßô6¡ÿƒ#þg¢|:ø§à߉rxàøUõ—]3×fäjÚ£¤ýù!+³ípEæ«lìÎÞ3Ã>ÆSÂc}§ÕkB¥­~IFV½í~Ví{;_{3‹ÄÙ7rÿdâé×öwæä’—/6׶׳·£4ÿàœX?±ßÂò:}¿Ä?ú|Ô+Ú8¸h € ( € ( €?ÿà£:é_´kj%1³¢Y]«c‚TÉüp?Jþ»ðW±/쯭:“ßiíǃ˜ÆÕ¯ÝYtúuC…eš†0HÁ¼ê©4Ó4GÇß -meý£üEm-´Ol·Ú 2 “tâ¿™8j9qî*œ¢œ}¥}-§Å.‡³Y¿ªÅù#Òk´H¼=àXã@‘­ÌáQF€‰€¥{>/ÅG ƒŒU’”¿$g—üR9¿Œ> ðÎû;ü'ñ†‘o¿tÖ~¢yÓ¬¶rHÊïÕ”@ œ(P|çå8 Éð™†]Zx¨)^N*úòû±»önëU®ˆ×RPšQgñNIì?iß…ÿ .4íK_ðg‚FÓtÝ´N÷ñ¤¹Ê¹HšG8V'h!@à Wœ7O<¡€iΕgÇK´’}l›{=¯béëIËfî{ xã ‡í7mñ_Á_ õ øU–ÞÛTµº–Ê%òZ5Šwx¡™”7ŒËœf»^ åcpøw riI>U¥’wI¿_QsEÓåoS¥â§€ÿáyø“ÀßþÃã/ˆzÓÇ­¨ë±ZÛ£Û[*ñÝךÊë9¼½®¶rKåt¿Ì”ô35ïèþÿ‚›èú>ƒe ž˜¾'Ò§[{tˆóZA4›Tpùàz×5xFžgË¥×äŠNð?¡+.ÕëU3G[eü5çU-e—jóª–ŽÅL±ß£»E¶RYŽŸ“^–H›uòýLêô?ïÝYø—ž/ñ¶ëÅñ!ÙIó'yÎré ükýÀð>O‡Ë– Ñkš4ùœgR.ôêʼZ”d¥«TœÓ‹Nîß Š_+,MG>k÷身~JÇ64ûE«Ua‚¡Ø¹ à‚90®ê|!“ÑŒéҢ㠫8©ÔQVjQ”b¥ËÓ劥R)N”!S”!F2ñ›‚þ¬ú­Û{—O‚U#|«'ɉ7—eÚAÝ9Qž9Ç9¬qü€ÆÓqS©Ÿºå©í%RpöS§8ò{okóJ”Ow÷®*U9¤“N8‰Eì­®–¶÷]-ÝÛ·Bci Þ)Ë0‘ƒuȳ:ð8äúס.ÀÊ8…ï§]§9*µTônJ1¨¦§E·ËNŒ#Í$¢”¥xö²Óm<•¾ëY¿7¨ám¼RÁv¢‚v éÂôŒã8ⶆI€§^Ž"ìèÅFœS’§“IÂýœd¢ÜÔTù‡7#hN¬ši½÷îþ{ÿÁÔ†+agF“!6³nÎH$’~b~Už€WŸ€á\[˜G0ÃÎwŒ' J\÷u%MÊrœÔªÎmR§çRJ0„c¤‹•yNŽÛþWÒÛ[WÓqº§üƒ5úá'þ‚k;ÿ’W5ÿ°zÿújCÂÿŸªüÏß:ÿŸsøL(Ò?g¯ù _¿ìOÑ¿ôŠý§8ÿ‘Ž'üsÿÒ™ýŸÈ×ÿ_'ÿ¥3Ø+Î< € ( € ( € ò¯Œ_ò,øcþÇ_êC§W¯‘ÿ¾/ðÔÿÓr=Þÿ‘‚ÿ_ý53êšõl( € ( € ( € øÛö‡ÿ’ÅðsþÅŸéV‡_3Æ¿ò$ÿ¸ÔÿôЧÇx‰ÿ$çýÇ¥ÿ¦ëœe~@~ P@P@P@o~ÏßñûñËþÇ¿ôɤWêxùàÁ/ý=Tý¯+ÿ‘[ÿ^çÿ©¢«Sp € ( € ( € ('ökÿ“tøÿbV‡ÿ¤0WÜæïu¿Å/ÍŸ£æŸïÕÿÇ/ý)žÕ\gP@P@P@xÿÆÿùü+ÿcß‚ÿõ$Ó+Ñʿޣé/ý%ž¶IþûIÿé>lñü—oÚ;þÆkýG´züËÄÿùaÿëÊÿÓ•Çj£W–IüJ5#ò÷eùÇî<¬ÎF#òvÏ ¯èZ‡’Ž¶ËøkΪR<º‚7~>¼ñ÷…¼`ÚeýÔ’ÊðO`·JPww¯RÄŒƒƒë_“×ðþxlî¦w—c=”æäÚpSWù­ïG«mhìw¬Uéªsש§âÏÙêóÆZ…ü4¾=– +FG*÷vêyæv&IO9x9\qަ¼ìó€jf˜\> c§E?ŠÒrm¹7.u¿Em;—O¡'.]YÕø£à¿ão‡Þøy}ñ Ú;Bò±Ñòâ6 õÉ玕–mÁجË+Ãeu1iBµTõ|©Æ?oKEÙïw®›1„ÜÔwóÿ€vð|ñ,¿ÇÁññ ÑlËŽ£ýˆKNE³íÌËy›ºmïYO†q1É¿±¾´­·7³û;ÚÜûß[ßm-Ô~Ù{OiËøÿÀ;ŸÙóষðNÇQÐÿá9·Ö|7w4—eþÈû,©rËoó|÷Ê„‡6õlçŒ|ƒ‡ëpý9PöêtÛnÜœ¯™Ù^üÏK-­óZª«½¬ÍïŠß³v‡ñKľñî—â+¿ |BÑž&¶Öl¡IÕ¼·ß’& 1VèwFäÎøz–e^¸MÓ­ ZI_guuåÿU:® Æ×Gdß üC¨j~ñWÄ߈Ä÷>2M¦XYéqé–Ü4l¦âHÃÈÒH!rÁW$…Ï5‹Ëjδ+c+{G b”yUö»Ww}µ²ìW:³QV<Ù?[Ó>1ÿÂáøyñ-t+‹éî{k­-o <è|à¹p¬¬]ÈÈùIp+ç«püéãÞ7[–í¶š¾ûõëøª·+Fï€c¯xâõÏÅÍãŸR¹½¹¹’ OÃâv–9ÝŒŠò-ÊåXáÏ;GÝ®*y𸧊…k¶ÛÖ=÷ÖûùÛäSªœyl{¿û(Å«ün²øçðÛDzø7Çp*Íu¿LMJÖõd…ɈÉÒÑ­óOÌnLb²ÄñZ£>YuÒéþAéÊÌ¿Ø3Å¿"øóeñìÂ]ôš®©áuºO´G)Î˸‡—•;PUv©,FãæUË%íý¿´×}¿à–§¥¬~¢éI:[Û¥ÔÉ-Ê J‰å«¾9!rv‚yÆN=MmSa#³²þóª–u–]«ÏªZ< ö¥×µo |&ø“­èz^¡¬G Kogo¦ZËu)¸›|1`±ÃȬp:)=³_OÀµ0Î(}zMR烕£)>X»ËH)=´ØÃ¤é¾]ìÏæ#þ—Åú%~7ÿÂkPÿãUý·ÿW…è"øOˆÿåGÍýF¿e÷¯óøV_è•øßÿ ­CÿQÿW…è"øOˆÿåAõý—Þ¿Ì?áY|Qÿ¢Wãü&µþ5GüE^ÿ ‰ÿá>#ÿ•Ôkö_zÿ0ÿ…eñGþ‰_ÿðšÔ?øÕñxWþ‚'ÿ„øþTQ¯Ù}ëüÃþ—Åú%~7ÿÂkPÿãTÄUá_úŸþâ?ùP}F¿e÷¯óøV_è•øßÿ ­CÿQÿW…è"øOˆÿåAõý—Þ¿ÌÊ×~üG²Ðõ›Ûï†Þ0µ²·´šY®n¼?}p¢¡,îíUP%‰“_;Åþ%pÖ?‡³- ós©B¬b é7*rJíÒIj÷m%»iaðu¡ZkD×UßÔýTÿ†ŒøMÿA}gÿ ­[ÿ‘«ü\ÿRóŸù÷üGÿ–Ï_ñ->-ÿÑ9ˆÿÀWù‡ü4gÂoú ë?øMjßüGú—œÿϸàê?ü°?âZ|[ÿ¢sÿ€¯ó;oƒµÁ_ |!øUá}_ÖmuÝÃze…í·ü"úÄžLñZlj¹-J¶XeI+ôìË-¯ˆÆÖ«MÁÆS“OÚSÙ¶×Ú?fͼñ˜b+Òȱ2œÚ~ÎZ§&ÖúìzGü6ìÿÿCV³ÿ„ž·ÿÈ•ÇýŠïüOÿ“<ÿøÞ#ÿЇÿ‚ØÃ`þÏÿô5k?øIëü‰Gö>+¼?ðe?þL?âxÿBGþ aÿ ƒû?ÿÐÕ¬ÿá'­ÿò%Øø®ðÿÁ”ÿù0ÿˆâ?ýqø-‡ü6ìÿÿCV³ÿ„ž·ÿÈ”câ»ÃÿSÿäÃþ wˆÿô!Äà¶ðØ?³ÿý ZÏþzßÿ"QýŠïüOÿ“øÞ#ÿЇÿ‚ØÃ`þÏÿô5k?øIëü‰Gö>+¼?ðe?þL?âxÿBGþ aÿ ƒû?ÿÐÕ¬ÿá'­ÿò%Øø®ðÿÁ”ÿù0ÿˆâ?ýqø-‡ü6ìÿÿCV³ÿ„ž·ÿÈ”câ»ÃÿSÿäÃþ wˆÿô!Äà¶ðØ?³ÿý ZÏþzßÿ"QýŠïüOÿ“øÞ#ÿЇÿ‚ØÃ`þÏÿô5k?øIëü‰Gö>+¼?ðe?þL?âxÿBGþ aÿ ƒû?ÿÐÕ¬ÿá'­ÿò%Øø®ðÿÁ”ÿù0ÿˆâ?ýqø-‡ü6ìÿÿCV³ÿ„ž·ÿÈ”câ»ÃÿSÿäÃþ wˆÿô!Äà¶yÿÄ¯Ú›àŸˆ4- ÏHñ³=Í¿Š<9¨ÊŸð‹k)¶Þ×Y²¹òÖ °Ã+`rváA$èåY}l6%T«(%Ë5üJ{¸I-¥Ý£ÖÉ|ñ ŒUkdx…Z‹øRzÊœ¢¶][H÷ÿømÏÙ³þ‡=gÿ wÿëÑú´¿žø2ü‘êÄ ãßúb?ðT¿È?á·?fÏúõŸü$5ßþC£êÒþxàÈòAÿƒèIˆÿÁRÿ ÿ†Üý›?èsÖð×ù«Kùáÿƒ!ÿÉüB=ÿ¡&#ÿKüƒþsölÿ¡ÏYÿÂC]ÿä:>­/ç‡þ ‡ÿ$ñ8÷þ„˜ü/òømÏÙ³þ‡=gÿ wÿèú´¿žø2üÄ ãßúb?ðT¿È?á·?fÏúõŸü$5ßþC£êÒþxàÈòAÿƒèIˆÿÁRÿ ÿ†Üý›?èsÖð×ù«Kùáÿƒ!ÿÉüB=ÿ¡&#ÿKüƒþsölÿ¡ÏYÿÂC]ÿä:>­/ç‡þ ‡ÿ$ñ8÷þ„˜ü/òømÏÙ³þ‡=gÿ wÿèú´¿žø2üÄ ãßúb?ðT¿È?á·?fÏúõŸü$5ßþC£êÒþxàÈòAÿƒèIˆÿÁRÿ ÿ†Üý›?èsÖð×ù«Kùáÿƒ!ÿÉüB=ÿ¡&#ÿKüƒþsölÿ¡ÏYÿÂC]ÿä:>­/ç‡þ ‡ÿ$ñ8÷þ„˜ü/òømÏÙ³þ‡=gÿ wÿèú´¿žø2üÄ ãßúb?ðT¿Èù£ã/í9ðkžëú»¬ÝiV‡®ÙÝÏÿƱ“5ÅÆ”ð®×¶ w-¬ç 6rFW>e8ŒÇ*ú¶ÂSö•½¥5¢DÝÜ’ÞKÏ_Sæ¸ÏÁ³l—ê˜<‹*žÖœ­ìÚ÷c ©»»-£¥ï¯“9ŸøhÏ„ßôÖðšÕ¿ù¿8ÿRóŸù÷üGÿ–’Ä´ø·ÿDæ#ÿ_æðÑŸ ¿è/¬ÿá5«ò5ê^sÿ>áÿƒ¨ÿòÀÿ‰iñoþ‰ÌGþ¿Ì?á£>Ð_YÿÂkVÿäj?Ô¼çþ}ÃÿQÿåÿÓâßý˜ü˜ÃF|&ÿ ¾³ÿ„Ö­ÿÈÔ©yÏüû‡þ£ÿËþ%§Å¿ú'1ø ÿ0ÿ†ŒøMÿA}gÿ ­[ÿ‘¨ÿRóŸù÷üGÿ–üKO‹ôNb?ðþaÿ ð›þ‚úÏþZ·ÿ#Qþ¥ç?óîø:ÿ,ø–ŸÿèœÄà+üÃþ3á7ýõŸü&µoþF£ýKÎçÜ?ðuþXñ->-ÿÑ9ˆÿÀWù‡ü4gÂoú ë?øMjßüGú—œÿϸàê?ü°?âZ|[ÿ¢sÿ€¯óøhÏ„ßôÖðšÕ¿ùõ/9ÿŸpÿÁÔù`Ä´ø·ÿDæ#ÿ_æðÑŸ ¿è/¬ÿá5«ò5ê^sÿ>áÿƒ¨ÿòÀÿ‰iñoþ‰ÌGþ¿Ì?á£>Ð_YÿÂkVÿäj?Ô¼çþ}ÃÿQÿåÿÓâßý˜ü˜ÃF|&ÿ ¾³ÿ„Ö­ÿÈÔ©yÏüû‡þ£ÿËþ%§Å¿ú'1ø ÿ0ÿ†ŒøMÿA}gÿ ­[ÿ‘¨ÿRóŸù÷üGÿ–üKO‹ôNb?ðþf·ÁïÚWàÿ…®¾+I¯kZͪk$Kû#ÿƯ'Ò´ërÿ-±ÛûÛy— ƒòg Ÿ¾ÂdتYv„ùá )/iOFêÔ’ûvzI=;÷?QÀxâE«†žCˆS§ )/fônµY-v~ì¢ô¾öÞç´Ã`þÏÿô5k?øIëü‰Zcâ»ÃÿSÿäÍâxÿBGþ aÿ ƒû?ÿÐÕ¬ÿá'­ÿò%Øø®ðÿÁ”ÿù0ÿˆâ?ýqø-‡ü6ìÿÿCV³ÿ„ž·ÿÈ”câ»ÃÿSÿäÃþ wˆÿô!Äà¶ðØ?³ÿý ZÏþzßÿ"QýŠïüOÿ“øÞ#ÿЇÿ‚ØÃ`þÏÿô5k?øIëü‰Gö>+¼?ðe?þL?âxÿBGþ aÿ ƒû?ÿÐÕ¬ÿá'­ÿò%Øø®ðÿÁ”ÿù0ÿˆâ?ýqø-‡ü6ìÿÿCV³ÿ„ž·ÿÈ”câ»ÃÿSÿäÃþ wˆÿô!Äà¶ðØ?³ÿý ZÏþzßÿ"QýŠïüOÿ“øÞ#ÿЇÿ‚ØÃ`þÏÿô5k?øIëü‰Gö>+¼?ðe?þL?âxÿBGþ aÿ ƒû?ÿÐÕ¬ÿá'­ÿò%Øø®ðÿÁ”ÿù0ÿˆâ?ýqø-‡ü6ìÿÿCV³ÿ„ž·ÿÈ”câ»ÃÿSÿäÃþ wˆÿô!Äà¶ðØ?³ÿý ZÏþzßÿ"QýŠïüOÿ“øÞ#ÿЇÿ‚ØÃ`þÏÿô5k?øIëü‰Gö>+¼?ðe?þL?âxÿBGþ fwÁÚëà'„> ü!𗈼O¬ÚxƒD𾕧_ZÿÂ)­Iä\Cir&ô´*Øua•$d+ê±”}®"¥HN 96½ølßøµÇøIÇu±ujÃ%Ä8ÊRk÷SÙ¶×CÔ?á·?fÏúõŸü$5ßþC®«Kùáÿƒ!ÿÉŸñ8÷þ„˜ü/òømÏÙ³þ‡=gÿ wÿèú´¿žø2üÄ ãßúb?ðT¿È?á·?fÏúõŸü$5ßþC£êÒþxàÈòAÿƒèIˆÿÁRÿ ÿ†Üý›?èsÖð×ù«Kùáÿƒ!ÿÉüB=ÿ¡&#ÿKüƒþsölÿ¡ÏYÿÂC]ÿä:>­/ç‡þ ‡ÿ$ñ8÷þ„˜ü/òømÏÙ³þ‡=gÿ wÿèú´¿žø2üÄ ãßúb?ðT¿È?á·?fÏúõŸü$5ßþC£êÒþxàÈòAÿƒèIˆÿÁRÿ ÿ†Üý›?èsÖð×ù«Kùáÿƒ!ÿÉüB=ÿ¡&#ÿKüƒþsölÿ¡ÏYÿÂC]ÿä:>­/ç‡þ ‡ÿ$ñ8÷þ„˜ü/òømÏÙ³þ‡=gÿ wÿèú´¿žø2üÄ ãßúb?ðT¿È?á·?fÏúõŸü$5ßþC£êÒþxàÈòAÿƒèIˆÿÁRÿ ÿ†Üý›?èsÖð×ù«Kùáÿƒ!ÿÉüB=ÿ¡&#ÿKü7ø§û_|ñ‡´ ÅÍÅÕ·‹<1©ÊŸðŠki¶ÚÓ[±º¸|µ dJø¸PX€{2új†!N¥H%i}¸u‹Kíw=¯Ân:Ãb£R®KˆQ´¿åÔúÅ¥²îÏñ/íð“Pø³ñ«Ä֚Ƴ&‰¯k–wš}Ïü#:¸ûD)£é¶ÌÛM¶åÄÖÓ.òg Ÿ…㼋œãèÖÀòN1¦¢ßµ¦µç›·½4ökÈüÓÄÏüKâψËr DáJ-û7KÚT•­+=¤ö×Ôƒþ3á7ýõŸü&µoþF¯‰ÿRóŸù÷üGÿ–œÿÄ´ø·ÿDæ#ÿ_æ}kû)üGð§ø°|3y{2Øxy¾ÐnôË»-»ä]»|ø“wÜo»œqœdgõ¯ r\fOõß­Å.ogkNÛžÿ¥mÖö¿M™ú·†>qo‡\ÿZrÚ˜OoìýŸ´Vçäç綯áçýQïÿðN<Ã|0ÇO·ø‡ÿOš…~¸~¬}Á@P@P@á´ŸÃñ{à·Ž|o“X–×íznzý®æDí¸®Â}×ÖpF}þ®gØl| Ÿ,ÿÁ-%÷^þ©bi{jN=OæÒÚ7‰Ú)’Db¬Œ0TŽ ŠþÜ›RW[6Ž®ËµyõJGWeڼꦈ묻WŸT¤u–}EyÕKG[eü5çU-m•yÕJ:Û?á¯:©f†«ÿ ɾ‡ÿAjóê–ei|ÛYÿ×ÿô^mbÑØÙá^uR‘ÚhŸñù?ýp‹ÿC–¼ê¥£Ð쿆¼ú¥£®²+ΪR:Ë/á¯:©hëlº óê–œ¾9xÚÁµ÷ø{kqV -Vö!üI%ÜpÿßMß÷À¯°àZzõžñI/ÿÈçÄ»$¯ÒÎ@ € ( -øåÿ$OãýŠÚ·þ’K^vqÿ"ìOø'ÿ¤²©ükÔüí¯áSýf ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( €?D¿àŸø|y%Að¯ýö¯¹àÏùˆÿ·öãùWé3ÿ2ûÿ¸O¶àœ?òg_ ¿ëûÄ?ú|Ô+îåcî( € ( € ( €?ÿmÿ‚ðÃâµÇ‹t{2žñƒÉ{ ~KkγÅÀÀË1G£>é¯ëO ø©gÙ:ÁW•ëáíÝÃìËä½×æ®÷<,ueS™lϒ쿆¿Dªr"?xóÂÞŠÒj2YÛÜU´žeÈÇ£F yàgœt5ò™ïåÙŒ³ Ž W³åœ—ÍÆ-/+Úý éR__öøS§ØXêoâ9&²¹ÎÙ-ì®f¯Î6eTà6 €A¾_ÇÙ:P®«óF]Tfí«Zûºlôvmj•¬Í–«mX÷ÿ kšGˆô›wD¿ŠóH»O2˜ÊëÈ=yAAæ½zÊúÄᦥNJé¯ëïì÷3qq|¯sžoÿtùï ŸÆQH¶LæâÎÒæê rNù££^xå«åñW“Âr·O—v”¤—¬’qüMÕ ¡éZŸÅŸ‡¾ð­—Ž5O£xJí‚ŪiöóßDIÏ$À´pF[:ñQŒÎp8l4q“©û§´’r_ù*vùún§)>Tµ:|gøuãÝ_ñ„µ›½CFÑ"3^\Ç¥^¦+±«ÄfÄmòƳŒ²ƒæÐÎpY…)ÖÃMÊ0Õ¾Y.û]+í²»ûÑr§(»2 ŸÚá÷ƒ.|Q‹ nÅ‚Ý^é—¶¾}Ã,˜Š%–%i[1¸!`©¼Ùg˜ ÒuÕKFö»Œ•ßet›Ùì_²•íc/Ã_´/ÁÝKXÓ<,ž2ŽÏÄÇEe«Ù]iÍ+…7 $ž'¦kç8*µ=’©i>8þiì䵱߸óãÄRØÇñ_¸ÒVíCC7ö]íÌO’Ø_6|Œv’8Ç5ËŽÌ0ø7jòµü›üRhqƒ–Æ¥Çí7ðOÂ^ð÷5ÿ\[xCÄ6ªúv¨š6¡4s’E;¶@Æ3“À)lƒ6¾a†…8Õr÷e³³ÿ/̵Ý£~xûÂ_<%¤xçÀÚ·öŸ…µ/7ì·¾D°y¾\¯ü’ª¸ÃÆã•ÆFA¹ÕhW‚©MÝ1Ù§fzí—jâªZ:Û/á¯>©HèšúÛM²º¿¼Gkn†GsØüëΫ¡hüÐÕµË~Ñ_õ‹œ†¸ðLJÊ!?êÐ]ëAWðWÜpüÄÿÛŸûqÍŠèxN‡ûKDl|J|Uà=rÇSÑ®®Zã2é–¶°Ùi^XÂò]Íz-Ò@ö‚'F•YåÜЬ‘‚ËôTsõË?mJIÅ»ü róÊ òsåNñ³M¦Þ±N:¬-¬Îúãã·‚bÑ5Û¥õǃtû[I¤×ñ µ³Ot–Ò[ZþþHÝ$’;ÛWó$E¿¼• ¸^ÙguNUÕÝ8¤ù´JòåqŽ­4Ú”]ÚQWÖJÎÓìÝíÔÊÖ¾>hŠ–Ðx7LþÙÔ/­t‹Ëvšd7Qj––иW uå¶Ææe¶xWˆ¸•Z5ήsNÉaãÌÚƒW|©©Ê1O[ÊÞòwPqÞ7æM&©¾¦¬ÿµ„´øŠ°xGÌÖ|5upYçPo·ÛÉ;D’ùIb÷Cý\­¾+i­Ûn#žM³´yEÖ§ïA«/{TÝ“²ƒ—Gª„¢úIÚ\«‘i®å_ |h‡Å¾7µðΓ£AŽÑCæêZ…䥞[ï–G†lîXC#ÿá¬ÿò5ÙXŸîÿàÈòAÿá·ý!ÿ€UÿåaÿoÄ_ú$ŸÿðŠÖùì¬O÷ðd?ù ÿ‰€ðÛþ‡ÿÀ*ÿò°ÿ„7â/ýOˆÿøEk?üGöV'û¿ø2üÄÀxmÿCˆàùY¨éþ$Ò/,ôí[À>6²Ô.â–{{[¿ j±Il?ýÑÿÁÔ¿ù3ƒþ&{Âú(¨}óÿäCÈ×?èIñ—þÚ§ÿ£›ÿA4ðu/þL?âg¼!ÿ¢Š‡ß?þD á«ÿò=RŸóÃÿSÿäƒþ&+ÂÿúÓÿÀjòÿßÿè˜|@ÿÂ;Wÿäz>¥?ç‡þ §ÿÉüLW…ÿô;§ÿ€Ôÿäþ¿ÿÑ0øÿ„v¯ÿÈô}JÏüOÿ’ø˜¯ ÿèwOÿ©ÿÈü#~7ÿ¢añÿí_ÿ‘èú”ÿžø2Ÿÿ$ñ1^ÿÐîŸþSÿøFüoÿDÃâþÚ¿ÿ#Ñõ)ÿ á«ÿò=RŸóÃÿSÿäƒþ&+ÂÿúÓÿÀjòÿßÿè˜|@ÿÂ;Wÿäz>¥?ç‡þ §ÿÉüLW…ÿô;§ÿ€Ôÿäþ¿ÿÑ0øÿ„v¯ÿÈô}JÏüOÿ’ø˜¯ ÿèwOÿ©ÿÈü#~7ÿ¢añÿí_ÿ‘èú”ÿžø2Ÿÿ$ñ1^ÿÐîŸþSÿ¦øÆšÖ§ë?ÃO_iÐ%Í­õŸƒõy¡¹…Ô2I­¹VFR`H ‚+ye¨7(¦¿¿þHèŸÞBN2ÍàšÑ§ ¿ü¬»ÿoÄ_ú$ŸÿðŠÖù—öV'û¿ø2ü¿â`<6ÿ¡Ä?ð ¿ü¬?á ø‹ÿD“â?þZÏÿ#Qý•‰þïþ ‡ÿ$ñ0Ðâø_þVð†üEÿ¢Iñÿ­gÿ‘¨þÊÄÿwÿCÿ’ø˜ ¿èqü¯ÿ+øC~"ÿÑ$øÿ„V³ÿÈÔeb»ÿƒ!ÿÉüL†ßô8‡þWÿ•‡ü!¿è’|GÿÂ+Yÿäj?²±?ÝÿÁÿäƒþ&ÃoúCÿ«ÿÊÃþ߈¿ôI>#ÿá¬ÿò5ÙXŸîÿàÈòAÿá·ý!ÿ€UÿåaÿoÄ_ú$ŸÿðŠÖùì¬O÷ðd?ù ÿ‰€ðÛþ‡ÿÀ*ÿò°ÿ„7â/ýOˆÿøEk?üGöV'û¿ø2üÄÀxmÿCˆàùXÂñþ‰'Äü"µŸþF£û+ýßüþH?â`<6ÿ¡Ä?ð ¿ü¬?á ø‹ÿD“â?þZÏÿ#Qý•‰þïþ ‡ÿ$ñ0Ðâø_þVð†üEÿ¢Iñÿ­gÿ‘¨þÊÄÿwÿCÿ’ø˜ ¿èqü¯ÿ+øC~"ÿÑ$øÿ„V³ÿÈÔeb»ÿƒ!ÿÉüL†ßô8‡þWÿ•™Ú®‹âí Ìê:çÃiÚx–( Õ÷„5h#K"Ånkp7<Žˆ£«3($ O+ÄE97$Ûýä4I]·ïl–­ôB—Ò ÃXÆS–q¢›o’­’Jí¿sD’m¾‰]”|sþ„Ÿá-ªñŠóù°ÿôGÿRÿäÏ+þ&{Âú(¨}óÿäCÈ×?èIñ—þÚ§ÿ£›ÿA4ðu/þL?âg¼!ÿ¢Š‡ß?þD’â¡*”3ÚSŒZM¥Q¤Ýì›PÑ»;w³¶Ì×ÿ„oÆÿôL> á«ÿò=_Ô§üðÿÁ”ÿù#_ø˜¯ ÿèwOÿ©ÿÈü#~7ÿ¢añÿí_ÿ‘èú”ÿžø2Ÿÿ$ñ1^ÿÐîŸþSÿøFüoÿDÃâþÚ¿ÿ#Ñõ)ÿ á«ÿò=RŸóÃÿSÿäƒþ&+ÂÿúÓÿÀjòÿßÿè˜|@ÿÂ;Wÿäz>¥?ç‡þ §ÿÉüLW…ÿô;§ÿ€Ôÿäþ¿ÿÑ0øÿ„v¯ÿÈô}JÏüOÿ’ø˜¯ ÿèwOÿ©ÿÈü#~7ÿ¢añÿí_ÿ‘èú”ÿžø2Ÿÿ$ñ1^ÿÐîŸþSÿøFüoÿDÃâþÚ¿ÿ#Ñõ)ÿþÌü;ÆÏ8oŽã–χq‹©{W&”’\ΚÅÞîZ_X»ŸkÁ9qÿ {ðÇ>ßâý>jö'àçÛôP@P@P@ywÆ?…ZÆok^ñÙÊù¶—Š2öWJ—*ý ŽêÌ;×½Ã\A‰áœÊža†ÕÇI.’‹Þ/×§f“èeZ’­=¾0ð'‰>x·Vðg‹,ÓZÓ¥òÝy+*õY#oâF úÝ+û#-Ͱ¹æž;.jsW]×tû4ôhùùÂT¥Ë-Ñóí)ÿ$¼ÿØBßù=~mâßüˆ?î$S³ü_‘ÆÅimìiq2B‚Y$3c’ÿÚa7}v€>•ñ*”#á»’Z·Ÿ·µþåc¢ïëŸ×cWÀš†±kûxâ]&YEÜSÍ1“”…¥ˆKA弄ýMrå5«Óà\K¢ß2r_öë”y¿ʨ“Å+žû7Ùé’~Ë¿„ÑÆcœj¿j,8µQÏÑ@­¸J'ÂØ«­ý¥ÿðú ß·Ègì=¥Íㇿ<¯¬’øBõ¢·Doº¯4R¬Û=*Â}Ž y¼ JXÜ/ [ZNËæÓR·à^)òÊ2[œ‡ÀOˆþ(ø!}ñ‡à\êïâۙͯ‡£ímUä[U u–H¦ÏM°ŸZñò\¾K,VU/â7hŽü¿sº—¢4©S–}:úWþÑ>8ð·ìÕð·á'…­|%k¯ëvrìgÔIXí¦·„$·oŽZBn3€FLŒr1Ϲžbèä\=ÓS’øo²qZË×_ÄÊœ]Y7{þ×Wõo| ñ?ÛÃKuªé×7ø~ÖxžÞ2–Ži$•÷$\m ß× ×Êq$ñUa‡­‰å¼“k•=>«mßÌÞ*m#éŸÛ^êëQý•¾jr4·SêšTÓJÜ–fÓ®‰b}Éýk·ˆdç—Q“ݸÿé,š_9Š3F¿ðNÏ…êdPd¸°EûÄO~Hüü«ÍÅÈ¢—ªýKñúÿúÿ“LøOÿq?ý9Ý×F]þçŸæÅ?‰ŸwÙö§TÖÙuZóª”øŸã1¨?ü#zdÁ¬alÜȽ%tQì¿Ïé^MiÝÙ$|{cÿ%¿âýŠžÿÒÍj¾÷€æ'þÜÿÛŽ\WA÷? <um®Z¾£¤‰ xÙnî§”*røûªª>ÖYfJqåø¬Ýœ“º“ši§uiI½-¿d‘ÏÏ/ëî „ž³†úÚÏFžÞÊî!–vú…Üp)WGŠHâYG4&(V,¤Ç"E©³ Ôcdú'+nši^É«.Y-b’Qi$‘Ï"®¹ð‹Ã:դѮ¡®Zê§ìgÖ¥-ýÍØç·ž?#ížz&ù--Ú\'ïŒa¤ÞÀ0šÙe±jòR÷lîä×+‹VææJî+›Ozוޠ¦Ñ¼þðÛÃâ8ñª¤úä«-åô:Íôwd+™8®VQ,0«3•†'X×ÌÜ6ÏE©­o=ß4¯½ÒR½ÒZÚ)¤®ìµbæacðóÁz^³g®éš—–‘$VðZ³ÅkH„ "Z©¬Â ó#ÊÝåü´C‡§QT„,ÖÖÙik¨ü7å÷y­~_vöÐ9›V*韴MÅvž)Ó®¯¡û5®¥o—½Ùd¿¼KÛ¹òPÊd’hÓƒ'– aQrjiàiÒ®«Aµe%nžü”¤ö½Û]ìº$7&ÕŒ¿Ž_òDþ0ÿØ­«é$µžqÿ"ìOø'ÿ¤°§ñ¯SôJ¿‹OÇ€ (ãoÚþKÁÏû|Mÿ¥Z|ÏÿÈ“þãSÿÒ*Ÿâ'ü“Ÿ÷—þ›®q•ùø0P@P@P@½û?ÇïÇ/û"ÿÓ&‘_©à?äSÿ¿ôõSö¼¯þDYoý{Ÿþ¤V>Š­M€ ( € ( € (  ŸÙ¯þMÓàý‰ZþÁ_s˜½Öÿ¿6~š¿Wÿ¿ô¦{Uqœ@P@P@ó¯íSÿ$rãþÆo éÿN¬±_îx¯úó[ÿMLÃþáŒÿ¯ÿôÌÏ ¯çóùp( € ( € ( € §àßù/¾ÿ±?Äú[¢×Þð—ü‹±Ÿã£ÿ¤Ö?Nà_ùcÿëåý'}i^Ùô@P@P@P+ð™<]ûU20Ô®yÿ¸‡+õ®ÿr‡øWþœª~åÀŸò/‡øþ¬z/ü‹?ðÇ ó×íþ!ÿÓæ¡_\}É÷ P@P@P@|ÑûI~Κ/Ç_Ç-»Ecã½1û7SaïSØäÆNH=TœŽ¬îx#+ðž)©^Xy¿~?ût¼¿£è×6' «ÇÍ‚_>j×óxâ#kz%Ö›.gÓíZ(Ä­ü.KFû—*ÊpCgž+÷Üß*˸óJqÄÏØ=}Ç›þ÷4dï­¥®î*œç…“V×Ìç-þh2ø~·Š¼H<1çŒ"kmÄolÏ‘÷|Á¿¦rzãŠò§ÁHå_ØËWØ^ö¼/¿5¯É·7½Þým¡§ÖeÏí,¯ýyž•ðÇá>ðëDÕ<7§jZž¥ ßœ½Ž°ÐÍdáBF¹  íÇ9¼£†ðÙ¦Œå:Sû3åi_{Z+~·¾ÈU+J«RjÏÈ«gû5x.ÚË\Ñt?ø«EðƲůt-3PEµ›#aãg€á†@Áâ¼)pn Œ*QÃÕ©N•OŠ’åzoU£×m ~±&Ói6YŠ?þÏ ®n´{ éOOž†iœË4q4Ï“—#xf$“µ:WV>À7F©Â×KW«Jï«ÞïÉ|ƒÞ­=^§œxCÂø¡ûL¯Æ Iý¡ èº¥D[]jº4òؽ£·ûØÈSåwÎ>^ž šgo2Ã>hB*©[½£¿m:›9Jùï_þx;㇅ôí;Å^[]és<öWö«,%“ç\0 «m\Œgå"ºó¬¢†oMBµÓŽ©­×üM:Ž›Ðñ Kö1ðŒ´é~(ñ¿ï¤Ñ-|‹k—Ôa%aelA^UDÙ… Á;‹avøŽÃÖ§U©7ȬÖݶµ—OÆúªÍ=ïúÀ/ ø¯á@øAâÍg\Öt$ ö}FúhEå©Qã‰PlhÊ‚AÎMU|ºL7ÕjIÉtn×]¶Ko@Sj\Èà´¿ØCáî«à´øqâOˆž<Ô|=bñÝiÐÿhCi¤¼Å„1Z?˜³e™I›i]ÍŸY-%IQ”äÒÛ]¿Ohï{`|ø)£üð¨ðW†üYâM[Ãq1kK?Mm(Ó÷I$Ž!1Cü¬ÇvîqŒt¥K $9#&ןO¹ o™ÜúNϵsÕ)oŒ|v¶Í£è³fé²³\¡ÿT;ªŸï{öúôðñX…ð@Ò+«3‚ëàçÅ›Qà¼3ªF&½ð¿m yµ”n’i,Õ#Aœ—v £$5Å™çØ Ø*ôá7yBI{“Z´ú¸Ø¨R’’gÝ¿ð¸4ú~*ÿá­ñ_ÿ+ëùsû 0ÿŸŒÌüãýZÍ?çÏþMóø\ý ?ðÖø¯ÿ•ôafóïñù‡úµšÏŸüš?æð¸4ú~*ÿá­ñ_ÿ+èþÂÌ?çßãóõk4ÿŸ?ù4Ì?áph?ô$üUÿÃ[â¿þWÑý…˜Ï¿Æ?æêÖiÿ>òhÿ™óGÆ_j+ø•ð×_Ð>|UºÒ4­]³»Ÿþ§‰£òf¸¸ÒžÚö!ŽåµœäÎHÊçÂâŽͳ«êØj<Óö•¹¢´Q¨›»’[Éyëê|×ðVy›d¿TÁáùª{Zr·4»UMÝÉ-£¥ï¯“9Ÿ·ëŸôK~*ÿá¶ñ'ÿ!Wçñ øŸþ?òzü™ù'üBN1ÿ ü©Kÿ–ÛõÏú%¿ðÛx“ÿ¨ÿˆoÄÿô ÿ“ÓÿäÃþ!'ÿÐþT¥ÿËíúçýߊ¿øm¼IÿÈTÄ7âúÿÉéÿòaÿ“Œèÿ*Rÿåöýsþ‰oÅ_ü6Þ$ÿä*?âñ?ýäôÿù0ÿˆIÆ?ôÿ•)òÀû~¹ÿD·â¯þoòñ øŸþ?òzü˜Ä$ãúÿÊ”¿ù`}¿\ÿ¢[ñWÿ ·‰?ù ø†üOÿ@Ÿù=?þL?âqýÿåJ_ü°>ß®Ñ-ø«ÿ†ÛÄŸü…GüC~'ÿ OüžŸÿ&ñ 8Çþ€ò¥/þXo×?è–üUÿÃmâOþB£þ!¿ÿÐ'þOOÿ“ø„œcÿ@?ùR—ÿ,·ëŸôK~*ÿá¶ñ'ÿ!Qÿ߉ÿèÿ'§ÿɇüBN1ÿ ü©Kÿ–ÛõÏú%¿ðÛx“ÿ¨ÿˆoÄÿô ÿ“ÓÿäÃþ!'ÿÐþT¥ÿËíúçýߊ¿øm¼IÿÈTÄ7âúÿÉéÿòaÿ“Œèÿ*Rÿåöýsþ‰oÅ_ü6Þ$ÿä*?âñ?ýäôÿù0ÿˆIÆ?ôÿ•)òÀû~¹ÿD·â¯þoòñ øŸþ?òzü˜Ä$ãúÿÊ”¿ùa­ð{YÕ|-uñZM{á‡Å[TÖòhÿ˜ÂàÐèIø«ÿ†·Åü¯£û 0ÿŸŒÌ?Õ¬Óþ|ÿäÑÿ0ÿ…Á ÿГñWÿ oŠÿù_Göaÿ>ÿÿ˜«Y§üùÿÉ£þaÿ ƒAÿ¡'â¯þßÿò¾ì,Ãþ}þ1ÿ0ÿV³Oùóÿ“GüÃþƒÿBOÅ_ü5¾+ÿå}ØY‡üûücþaþ­fŸóçÿ&ù‡ü. þ„ŸŠ¿øk|WÿÊú?°³ù÷øÇüÃýZÍ?çÏþMó<_ãÿÆß fðÿ†>üU½ÕÛ\Ð/ð¬¼Oîmµ{+™›sØ*ü°Ã#c9;p$|ƒ1ž½8ÒÖTêEk\©Ê)oÕ´»w2ÅpÆkS ‰¥>ôéVŠ÷£¬¥JqŠøº¶•Þ‹®‡•}¿\ÿ¢[ñWÿ ·‰?ù ¿ÿˆoÄÿô ÿ“ÓÿäÏÁ?âqýÿåJ_ü°>ß®Ñ-ø«ÿ†ÛÄŸü…GüC~'ÿ OüžŸÿ&ñ 8Çþ€ò¥/þXo×?è–üUÿÃmâOþB£þ!¿ÿÐ'þOOÿ“ø„œcÿ@?ùR—ÿ,·ëŸôK~*ÿá¶ñ'ÿ!Qÿ߉ÿèÿ'§ÿɇüBN1ÿ ü©Kÿ–ÛõÏú%¿ðÛx“ÿ¨ÿˆoÄÿô ÿ“ÓÿäÃþ!'ÿÐþT¥ÿËíúçýߊ¿øm¼IÿÈTÄ7âúÿÉéÿòaÿ“Œèÿ*Rÿåöýsþ‰oÅ_ü6Þ$ÿä*?âñ?ýäôÿù0ÿˆIÆ?ôÿ•)òÀû~¹ÿD·â¯þoòñ øŸþ?òzü˜Ä$ãúÿÊ”¿ù`}¿\ÿ¢[ñWÿ ·‰?ù ø†üOÿ@Ÿù=?þL?âqýÿåJ_ü°>ß®Ñ-ø«ÿ†ÛÄŸü…GüC~'ÿ OüžŸÿ&ñ 8Çþ€ò¥/þXo×?è–üUÿÃmâOþB£þ!¿ÿÐ'þOOÿ“ø„œcÿ@?ùR—ÿ,·ëŸôK~*ÿá¶ñ'ÿ!Qÿ߉ÿèÿ'§ÿɇüBN1ÿ ü©Kÿ–ÛõÏú%¿ðÛx“ÿ¨ÿˆoÄÿô ÿ“ÓÿäÃþ!'ÿÐþT¥ÿË Þ¼×ôÿ‹ÞñEßÂ¿Š±èV¾Ö,&¹ÿ…oâFÙ<÷Z\‘&Ñe¸î[iÎ@ÀÙÉ®~»‡¸/<Àà±4±~YNtÚ\ÐwQUSÚOne¿}:Ÿwžñ&Y—âèb°¼²œè¸®znê1¬¥´ÚVsŽûßM¾‡ÿ…‹iÿDÿâ¯þÿòzŸêžqÿ>?òhòG·þ¤gßôÿ“Ãÿ’øX¶ŸôOþ*ÿá°ñOÿ Qþ©çóãÿ&‡ÿ$êF}ÿ@ÿù?òhòAþ¤gßôÿ“Ãÿ’øX¶ŸôOþ*ÿá°ñOÿ Qþ©çóãÿ&‡ÿ$êF}ÿ@ÿù?òhòAþ¤gßôÿ“Ãÿ’øX¶ŸôOþ*ÿá°ñOÿ Qþ©çóãÿ&‡ÿ$êF}ÿ@ÿù?òhòAþ¤gßôÿ“Ãÿ’øX¶ŸôOþ*ÿá°ñOÿ Qþ©çóãÿ&‡ÿ$êF}ÿ@ÿù?òhòAþ¤gßôÿ“Ãÿ’øX¶ŸôOþ*ÿá°ñOÿ Qþ©çóãÿ&‡ÿ$êF}ÿ@ÿù?òhòAþ¤gßôÿ“Ãÿ’øX¶ŸôOþ*ÿá°ñOÿ Qþ©çóãÿ&‡ÿ$êF}ÿ@ÿù?òhòAþ¤gßôÿ“Ãÿ’/þÎÓß\ø£ö“¼¼ð·ŠôkmR[FÉüOá½KEûe¹ÒtKbñ È"/‰¬î‚ä®Õ,t-ú'àq ,iâ#ÊÔmºzóÔ}é%÷Ÿªðž[ŠË0p¥Š‡,”RÝ=}¥Yto¤“ùúžÿäý>úñþŸ5 ú#êÏ·è € ( € ( € ( øÃð7Á4˜ìüIj`Ö-”‹-fÔ=©=³üižJ7˜<×Óp׿1YÏ +Â_Ã/ò}šùÝhcZ„++Ksòoâìÿñàýä­éæ÷Ã…¶Ã®Ø©kwÉà?xÜÿu»ô-Ö¿¡²0Ëx’ÃÏ–¯XKâó·ó/5óHòjáçEë·sÏ,»W³TÌëlÿ†¼ê¥m•yÕJ:Ë>ÕçU,ÒÕ3ý™6=þ‚kΪZ2tÏø÷³ÿ®1ÿè"¼ê¥£±²ê+ΨR;Mþ?'õò"ÿÐå¯>¡hïc¹·´‹Ï¹•b‰z³W—ˆ©Qr›².*ç!®xÖâéËJ- ±iãÛÐ~¿Jù|^`êÞ4´Fñ…·8*ó Ñøÿ%¿ãýŠžÿÒÍz½œ£íü¿S:®ëÚ3 ( € ñÚgþM¿ö‚ÿ±#]ÿÒ ë Oðgèÿ!­Ñ÷µ|™¸P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@æ>< ^¶îŸðŽjãÿ³¤Àù»þ Éÿ&{ðÇþÂ"ÿÓî¡L·è € ( € ( € ( €!¸·‚î ­® ŽkiT¤‘J¡•Ôõöª„åNJpvkf· Ï•|{û!ü9ñ;Ïáv“Ã:«å¶Y¨’Õ¼$½¾ã(†¿@ʜʶ֬ÄÇ’{|¢¼ÚÍ$Û-â}MÜêQÁóò\þµóؼ×C⨯ÙkùÆœŸ@ðÏĸ5okº›§º =O¿S°ùÄ÷:„[v›M™9Ï;ÇüÆ/ˆy´ÃÃæÿËþ ´iw:Ë›»›Çßs392xAÚ¾zµz˜‰sT•Ù²IlV¬FPÀ¿ù-ÿÿìTð·þ–kÕìåoåú™ÔèOeûb|>Ôllu[øº]´©5íBôAb«£iqiÚF¥=Ý› î‘A®ÙîHYK$Á#}ª_½bàÕÒvߦŠÉß5±<¡áÚ…5X5{%ð&¹â/ÚxûYð$vžK8K»Iu)Ò-×·p馨A<²–ºEŒ³ #ˆŽ&÷V»»Z[¥û¾Ëñ šŸí]ð¾ÃGÔß € ( € ( € ( € ( €$QÌÑ«ÆÜp?QN2qw‹³žŸÁ¾ºb×>ÑæcÔËc Õk¶ž6š´+ÍzIÿ™<‘}›?jxoAø;â ý@Ótû´Iȸ²´Ž\ZÜ@=@?P)Ë5ÇÉ{؉¿ûz_æ‘ì~ShW3]x[ÁSÍ<’¼º—#<ŒX³5œ$’OrI9÷®IÕ©WZ’oÕÜi%±¡YŒë>ÉGñýŠšþœ5Úú€ (  ò[þ1ÿØ©áoý,׫ÙÊ>ßËõ3©ÐôÛOÙÇàÍ…§‰l-<åXëÖ:–™{nºç–lïá³·¹·‰|ÜA‘¦ØÅqlXRÝV!äMa髤·¿ãoò^»6ôß‚¿ ´[x»Nðדâ{éu(îþÙrÛnd“U‘ßa©ËëÚ©ÁiÀŽ ”¨ÁK™-áÿÍ…Øxgà¯Ã/_øQð熾Ç6‡c…„?l¹–6ËiþCÈckµ´U¶û[)¸0(ÈcùhA§·ü7ßm/½´ °ðÏÁ_†^‡ÃöþðרáÐï Ô¬í—2ù0é+£Fÿ<‡vÝ=V 6AÆò Ÿ=£[•mþVü‚ìå´?Ù¿áÖƒc®ø~Þ]rojSé³ Ë©H– -:1ao/d·VòÚÛ[¤Ö÷’\C'– N[3<"šé¦4VùéºwAsÑn>øZïZñˆ§‹RmsZ±m6[ßí{Ñ%•³¢,‰bD¿èü¨™Í¯”]âŽF,èŒ4tâÛ}_›ü;|…sË>;xsEð—ì«ñ×Ãþ³û6—màF‘æ’IÎâI%–W,òÍ$ŽòI,ŒÏ#»;³3r¯ K³ü†·?D«å € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( /ññavåF[þÍ_ÿ¿gIó‡ü“þL÷áýø‡ÿOš…0>ß € ( € ( € ( € ( € (æÚøgà‰ÿžwúIqCòÃ#ð ô/i?úE%°Àë>ÉGñýŠšþœ5Úú€ ( gáïÄÀŸþ)mØx–çíÞðוÿ÷†u]snËÍs>gØ­æò³¼cÌÛ» ·;[¶WQCž÷é²o¿dg5sèOøh/ÿÐâWþ/ÿò¾½ooÏÿ—ù`ÿ†‚ðý>%á²ñOÿ+èöðìÿðX?á ¼ÿ@‰_øl¼SÿÊú=¼;?ü_äøh/ÿÐâWþ/ÿò¾oÏÿ—ùƒþ Àôø•ÿ†ËÅ?ü¯£ÛóÿÀeþA`ÿ†‚ðý>%á²ñOÿ+èöðìÿðXñïÚã—‚õ€?´«]âwW¾Ömã{߇ž$´…]ì¦Pdš[Ž$ÉweU,@ÖXŠñt¦¬öeöôZŸªõóÁ@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@ñKâ—> x]ø™ñ/]þÆðNäý·Rû,÷^O›4pGû¸QälË,kò©ÆìœHô (Ì<|qxIéÿî¬?ò%&ÎðNoù3ï†8éöÿÿéóP¦ÛÔP@P@P@P@P@|Áû_ üñ(õŠãÿI.)0?!¼21àÿOé?úE `6)Ö|0ÿ’âÿû4/ý8k´ôP@?ÿä·ücÿ±SÂßúY¯W³”}¿—êgS¡õÝ{Fa@P@#ûLÿÉ·þÐ_ö$k¿úA=a‰þ ýä5º>ö¯“7 ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € øþ ÿ&'ñÏþà¿úx± ¿è 2ñÙÅø>žÕôe'°7Á9¿äϾØCÄ_ú}Ô)öõP@P@P@P@P@0~×ßòD|Kÿ\®?ô’â“ØÈo çþÿç¯ü#ºOþ‘ABb˜gÃù(þ/ÿ±SBÿÓ†»@@P@£ð/þKÆ?û<-ÿ¥šõ{9GÛù~¦u:ø›ö¡I|kâ†Þ×5ÝB=WÂö•›¥š*mOP[k6ã}Ük§n G%»6`šòѤSHÉß,O»x+íÛ«Û}×n¢mÜ¥'í¹ðvëÃsø£ÂÖ>%ñF ޳©Iÿõ”3ùVÚdvSÜ<’4©Y´Ôm®‘ÔŒµ»ˆîñjO®ÓqæÞûy[ôwü7Ð9Y·¢~Ó¶ž,Ö¼'áŸx R²ñ>¥â–ðýö•⫸-$Óí£M_μG´7qM‰´ N‹zxrÍo®ã‰çj*:ÞÚüõÒý˜¬ðÑš¬? ÿá<½ø}å]éÚçö^·¥ý¦þ?°@ ûKO™¬#–Û´G:¤:tv÷ hn&>°ù9Üzë¿ùiÿoYyÚÍ–Ôê¦ø½âxüwñk à[k{_ iO¨i—zˆºñA[[i™­m¢ÓäÛ¤·&ÞW¶’æhäXÔÁ™£ ~Ö\ò¶Û}–—~Z…ƒà÷ÆK↻âmP𶌺^•§jQK¨×1¸¸Ôm&ŠXšžÝâ¹Ò®— dEm0–Þ2gU´Õ­oÕ~ž½ìô¬^ý¦äÛÿh/û5ßý žŒOðgèÿ [£ïjù3p € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( ?o_…¾;øÓû'|VøgðÓBþÙñ¶³ý™ö-7íPZùÞV¥i<Ÿ¼™Ò5ÄQHß3 íÀÉ ¯è -ø‚vÝg<ÿÂ?ªÿèÛ*O`>rÿ‚rœþÇ¿ ‰ÿ ‡ˆ¿ôû¨Síú( € ( € ( € ( € ( €>]ý°‰|PGQ Ïþ‘ÜÒ{ù áS»Á~'©ðæòF ÀmÓ¬øaÿ%Åÿö*h_úp×hè ( €4~ÿÉoøÇÿb§…¿ô³^¯g(û/ÔΧCÚ,¾ ü2Ó¬4Ý2ÏÃ^]ŽŸc i¶Ñ}²å¼»må®´ÄÉ“'ÉÙòI/œH]x¯UQ‚VK·áª"ì£ÿ á_ön¥£?‡ndÑï4­SB62ê×Ï ®›¨-²ÝYÚÆf+knVÊØ$PHDxˆG¹²½…;ZÚj·{=×–ß.vR¹ýŸü¾$ðÿ‹¼>u-Ä:^¸5Ö»ÓnD¿nÉ«I,3%ÂÊ¢_ÕKya} tÆ:æRZ4ïùÿ› ›ð¦>·†ÿá›NÔ®49o¿´/£»Öõ åÖ¥òü¢º”ï9–þ„,M ÓKEq”)*×±‡//OW¯¯˜\ܸøwák½kÄ~"ž-IµÍjÅ´ÙoµïD–VΈ²%‰ÿ oò¢g6¾QwŠ9³¢0§N-·Õù¿Ã·ÈW0ü ð‹Ã|Iâ躓lØØiÿ`¼–9b´ŠÖK¹·,›òÍ5Æ¡w<Ó\K4²K31~Õ0¥rr]mø_üÛw¸Û¹‰ûLÿÉ·þÐ_ö$k¿úA=N'ø3ô-Ñ÷µ|™¸P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@埘%Éb¹ðê¼úëeJ[ó§ü—þL÷áýø‡ÿOš…0>Þ € ( € ( € ( €Çj³c Í~XþÔ¶WŽþøÚo è>–X#Mþ~Ãí@/·ü_âà'þ)óÆ€úPŸø(¿ÅÎGü#ç®>áô ÁEþ.p?á>Ÿpúf€ÁEþ.?âŸ<ãªJòÏŒŸ·WÄßøTðþ¥¢­.#3l#¡•èÆ†ǺOí â»-ÃÖXf=6ÎÕ+ƒôQB÷ü4_‹‡üÃÏýòh÷‡ÿj/è%ÕuDÒçy®ô›2°ÛÉ.‹é;Tã&åúúPplÿù‚^ÿàÇÿ@ü6‡9ÿ‰%ïþ\ñÃgøÐgþ$·¿øqÿÄPlÿsÿ[Þ?éÂãÿˆ øCöäñ?ƒ¼mâßÉc4W¾•¦Y’Ò`vÛK|àãnzÝ·>ÞÆºpøÈá/v•ÿCJxZØ›û9[{&ÿ#ÔGü³Äÿóîßø ?ÿ]?Ûþe÷šÿeã?çÌÿðþBø)g‰ò ·oüŸÿˆ£ûb̾ðþËÆÏ™ÿà/üƒþYâsôfíÿ.“ÿñlCù—ÞÙXÏùó?üÿ¿ðòÏñþŒÝ¿åÒþ"íˆ2ûÃû/ÿ>gÿ€¿òÁKgÿ€¿òøyg‰ÿçÝ¿ðþ"íˆ2ûÃû/ÿ>gÿ€¿ò8ψÿðPxÓáç<=»uíûLsöi— 4/ä®Þ¦y¬*EÁIk ¥–âé§9Q’K_…ÿ‘ïßðô¯sÿ{®ÿóºÿãuÉì*ÿ#û™Ít'ü=+ǃ?ñ'ºïÿ0ë¯þ7G°«üîatþ •ãÌœh÷|gþa×_ünaWùÜÂèSÿJñßýî½?äuéÿ\èö‘ýÌ.€ÁR¼wÓûïÿ×^ŸõÎaWùÜÂèAÿJñæAþǺÿÁu×ÿ£ØUþG÷0ºøzW?âOwÛþa×_ünaWùÜÂè_øzW0?âOuÛþa×_ünaWùÜÂèü+ǃþ`÷}¿æuëÿ\èö‘ýÌ.„ÿ‡¥xó?ò»ÿÁuׯýs£ØUþG÷0ºÿJñçýîûÿÌ:ë×þ¹Ñì*ÿ#û˜] ÿJñç?ñ'ºïÿ0ë¯þ7G°«üîat'ü=+ǃ?ñ'ºïÿ0ë¯þ7G°«üîatþ •ãÌœh÷|gþa×_ünaWùÜÂèSÿJñßýî½?äuéÿ\èö‘ýÌ.€ÁR¼wÓûïÿ×^ŸõÎaWùÜÂèAÿJñæAþǺÿÁu×ÿ£ØUþG÷0ºøzW?âOwÛþa×_ünaWùÜÂè_øzW0?âOuÛþa×_ünaWùÜÂèü+ǃþ`÷}¿æuëÿ\èö‘ýÌ.„ÿ‡¥xó?ò»ÿÁuׯýs£ØUþG÷0ºÿJñçýîûÿÌ:ë×þ¹Ñì*ÿ#û˜] ÿJñç?ñ'ºïÿ0ë¯þ7G°«üîat'ü=+ǃ?ñ'ºïÿ0ë¯þ7G°«üîatþ •ãÌœh÷|gþa×_ünaWùÜÂèSÿJñßýî½?äuéÿ\èö‘ýÌ.€ÁR¼wÓûïÿ×^ŸõÎaWùÜÂèAÿJñæAþǺÿÁu×ÿ£ØUþG÷0ºøzW?âOwÛþa×_ünaWùÜÂè_øzW0?âOuÛþa×_ünaWùÜÂèü+ǃþ`÷}¿æuëÿ\èö‘ýÌ.„ÿ‡¥xó?ò»ÿÁuׯýs£ØUþG÷0ºÿJñçýîûÿÌ:ë×þ¹Ñì*ÿ#û˜] ÿJñç?ñ'ºïÿ0ë¯þ7G°«üîat'ü=+ǃ?ñ'ºïÿ0ë¯þ7G°«üîatþ •ãÌœh÷|gþa×_ünaWùÜÂèSÿJñßýî½?äuéÿ\èö‘ýÌ.€ÁR¼wÓûïÿ×^ŸõÎaWùÜÂèAÿJñæAþǺÿÁu×ÿ£ØUþG÷0ºøzW?âOwÛþa×_ünaWùÜÂè_øzW0?âOuÛþa×_ünaWùÜÂèü+ǃþ`÷}¿æuëÿ\èö‘ýÌ.„ÿ‡¥xó?ò»ÿÁuׯýs£ØUþG÷0ºÿJñçýîûÿÌ:ë×þ¹Ñì*ÿ#û˜] ÿJñç?ñ'ºïÿ0ë¯þ7G°«üîat'ü=+ǃ?ñ'ºïÿ0ë¯þ7G°«üîatþ •ãÌœh÷|gþa×_ünaWùÜÂèSÿJñßýî½?äuéÿ\èö‘ýÌ.€ÁR¼wÓûïÿ×^ŸõÎaWùÜÂèAÿJñæAþǺÿÁu×ÿ£ØUþG÷0ºøzW?âOwÛþa×_ünaWùÜÂè_øzW0?âOuÛþa×_ünaWùÜÂèü+ǃþ`÷}¿æuëÿ\èö‘ýÌ.„ÿ‡¥xó?ò»ÿÁuׯýs£ØUþG÷0ºÿJñçýîûÿÌ:ë×þ¹Ñì*ÿ#û˜] ÿJñç?ñ'ºïÿ0ë¯þ7G°«üîat'ü=+ǃ?ñ'ºïÿ0ë¯þ7G°«üîatþ •ãÌœh÷|gþa×_ünaWùÜÂèSÿJñßýî½?äuéÿ\èö‘ýÌ.€ÁR¼wÓûïÿ×^ŸõÎaWùÜÂèAÿJñæAþǺÿÁu×ÿ£ØUþG÷0ºøzW?âOwÛþa×_ünaWùÜÂè_øzW0?âOuÛþa×_ünaWùÜÂèü+ǃþ`÷}¿æuëÿ\èö‘ýÌ.„ÿ‡¥xó?ò»ÿÁuׯýs£ØUþG÷0ºÿJñçýîûÿÌ:ë×þ¹Ñì*ÿ#û˜] ÿJñç?ñ'ºïÿ0ë¯þ7G°«üîat'ü=+ǃ?ñ'ºïÿ0ë¯þ7G°«üîatþ •ãÌœh÷|gþa×_ünaWùÜÂèSÿJñßýî½?äuéÿ\èö‘ýÌ.€ÁR¼wÓûïÿ×^ŸõÎaWùÜÂèAÿJñæAþǺÿÁu×ÿ£ØUþG÷0ºøzW?âOwÛþa×_ünaWùÜÂèʾÿ‚üEñ<ÒËm¢ÊL:}Å»ù–²Å…•á$üê3þ¨t¨9A{É¡Þçû7~Û_>|ð¿‚ô]ͦØÜjG&Òrg¿¹¿&•…HsþÏß¶ÿÄ/ˆ>>Ó<1­xrQktH3*'=èõÖ °Å!, â€% € ( € ( € ( 7ñGÂoxÂãíZöƒms?÷äŒ@‘ýœ>Ÿù”¬¿ïРÿ†qøGÿB•—ýúJ÷àÁ=2?QÐ4«Xüµ¹Ùþg2œ`¯'cj8zØ™rQƒ“ì“oð8;ï~ËZs0˜hÒ°íi ¹ñXW,±øho5ò×ò=Ê'b5ŽKüVþ”ÑóïÇŸü ñÃÝ_HðfƒÖ¥IDSIkå & Tdž~ó)éY<ÓÒïäzàLÝüJ1õ—ù&xw‚þøHøwðÏH¸ð~…6¹e¡[Aª]O¥ZÜ}¢éK†u’D,Ë·`ÇÝè),Ògø™O3%¼á÷Ëÿ‘:xþx¾ïƒ<5øèV?üj­f4_sž§f0ëèßê‘óŸÁ¯€wñjþ%Ô|yáû9fº³M’Ba(dþÖÖd*ˆ˜¢Þk0(P0ª>\ cŒ£.§^Ì©oNþÏy“àÇ‚c“Ãp¨õ1q[Ƥ'ð»ž]l#üZn>©ÿ ðým¿ïVsü*ÐÛþýŠÂù€Û߀> ý ¼ á­/ãÚ}–›v£Ã:lÛ@ÚëQR$_ʾ3‹±({fí~oý´þ–ú;äø<×ûSëPRåö6¿Kû[þHòOøEtOùñþù¯ŒþÐÄ1ý-þ¨eóá}Áÿ¦‡ÿ>1ÿß4hb?˜?Õ £þ|/¸?áÑ?çÆ?ûæŸö†#ùƒýPÊ?çÂûƒþ]þ|cÿ¾ihb?˜?Õ £þ|/¸?áÑ?çÆ?ûæí Góú¡”Ï…÷ü"šüøÇÿ|ÓþÐÄ0ªGüø_qÏx¿ÃZ<ñ<ñYƲG§\º:]™n:¼ñ”b壜4|×p¶W‡á¬Îµ:)J8zÍiÕS“Gêçü*/Ðßþøý£ý™†þDœ¼ìOøT^ÿ ¿ýð(þÌÃ"váüÀíÿïGöfùs±áQxþ€vÿ÷À£û3 üˆ9Ø¢ð ÿ˜¿ýð(þÌÃ"v'ü*/uþ÷ÿ¾Ù˜oäAÎÃþ?èoÿ| ?³0ßȃ‹ÿ ‹ÀŸô·ÿ¾Ù˜oäAÎļ?æoÿ| ?³0ßȃ‡ü*/Ðßþøfa¿•;ü"ð!ÿ˜¿ýð(þÌÃ"v𨼠ÿ@;ûàQý™†þDìOøT^ÿ ¿ýð(þÌÃ"váüÀíÿïGöfùs±áQxþ€vÿ÷À£û3 üˆ9Ø¢ð ÿ˜¿ýð(þÌÃ"v'ü*/uþ÷ÿ¾Ù˜oäAÎÃþ?èoÿ| ?³0ßȃ‹ÿ ‹ÀŸô·ÿ¾Ù˜oäAÎļ?æoÿ| ?³0ßȃ‡ü*/Ðßþøfa¿•;ü"ð!ÿ˜¿ýð(þÌÃ"v𨼠ÿ@;ûàQý™†þDìOøT^ÿ ¿ýð(þÌÃ"váüÀíÿïGöfùs±áQxþ€vÿ÷À£û3 üˆ9Ø¢ð ÿ˜¿ýð(þÌÃ"v'ü*/uþ÷ÿ¾Ù˜oäAÎÃþ?èoÿ| ?³0ßȃ‹ÿ ‹ÀŸô·ÿ¾Ù˜oäAÎļ?æoÿ| ?³0ßȃ‡ü*/Ðßþøfa¿•;ü"ð!ÿ˜¿ýð(þÌÃ"v𨼠ÿ@;ûàQý™†þDìOøT^ÿ ¿ýð(þÌÃ"váüÀíÿïGöfùs±áQxþ€vÿ÷À£û3 üˆ9Ø¢ð ÿ˜¿ýð(þÌÃ"v'ü*/uþ÷ÿ¾Ù˜oäAÎÃþ?èoÿ| ?³0ßȃ‹ÿ ‹ÀŸô·ÿ¾Ù˜oäAÎļ?æoÿ| ?³0ßȃ‡ü*/Ðßþøfa¿•;ü"ð!ÿ˜¿ýð(þÌÃ"v𨼠ÿ@;ûàQý™†þDìOøT^ÿ ¿ýð(þÌÃ"váüÀíÿïGöfùs±áQxþ€vÿ÷À£û3 üˆ9Ø¢ð ÿ˜¿ýð(þÌÃ"v'ü*/uþ÷ÿ¾Ù˜oäAÎÃþ?èoÿ| ?³0ßȃ‹ÿ ‹ÀŸô·ÿ¾Ù˜oäAÎļ?æoÿ| ?³0ßȃ‡ü*/Ðßþøfa¿•;ü"ð!ÿ˜¿ýð(þÌÃ"v𨼠ÿ@;ûàQý™†þDìOøT^ÿ ¿ýð(þÌÃ"váüÀíÿïGöfùs±áQxþ€vÿ÷À£û3 üˆ9Ø¢ð ÿ˜¿ýð(þÌÃ"v'ü*/uþ÷ÿ¾Ù˜oäAÎÃþ?èoÿ| ?³0ßȃ‹ÿ ‹ÀŸô·ÿ¾Ù˜oäAÎļ?æoÿ| ?³0ßȃ‡ü*/Ðßþøfa¿•;ü"ð!ÿ˜¿ýð(þÌÃ"v𨼠ÿ@;ûàQý™†þDìOøT^ÿ ¿ýð(þÌÃ"váüÀíÿïGöfùs±áQxþ€vÿ÷À£û3 üˆ9Ø¢ð ÿ˜¿ýð(þÌÃ"v'ü*/uþ÷ÿ¾Ù˜oäAÎÃþ?èoÿ| ?³0ßȃž¯ð£à§Ã»ëŸ¥Ï‡­\E¡O"nŒpÂH€?­|a©á–Ù«_Ÿÿm:°Òn÷:OØà‡Ãþʵ½gÃv—:”÷ÚòÉ4‘‚X&³}þJŠ? øDtŸsøsàÏÃß Þ-þ‹áÛ[{¥èéP© @ @P@P@P@îîí,-¦¼¾ºŠÞÎÝ$ó¸DŒz³úÒ””Uäì)R©^j(¹Iì’»~‰4øÏö§ð.‚òÙxf¼A¨.G™ò­”ÿ×B oø }kÇÄgt){´½çø}çèù?†®9*˜Ö¨C³Öø Ñ|Ú~GÍÞ!ý¢¾&x•¤H5Hô{&锞[cþº¾~„jñêæØšÛ>Uåþ{Ÿ¢à<>É2Ôœ©º²ï7ü•Z?z~§šK}©\­Fö{«¦ë-Ì#©$šãr”ÝäîÏ£ Xx{:0Qd’_r4íÇJÑõÖ¿ä7û­ÿ µhŽ „Z_ü‚´_úõOækXœ’ßµk†¡_ÂÝfÿ®cÿGOZÄá¨z-·jÕ ‡HÓ¯ïí±þ%Oæ+¦§ ™áâ²ì-{óÓWî´—uàs /¦Ýsÿ<§þŒ?»!Š¿ÄœÅdJ:ЗÉÿ™Æßéz†™'—}jñшʷÐô5ÕÆz¦xU¨T ùjFÇæ÷í'ÿ%¾û4¿ý,Ôëâ8Óþaÿíïý´þ£ú3ÌßþàîcåX~ [yÚ¢ÝØæ K§¶?ÙÒ›¹c"è[:0 ÆÎX:(ÞYUñÊ€~zY<¹aÉ-d“÷—*~ç;åwi¤•¤Ý’m_Guûè{\RÄм(Ô•?ÜÉÖœZĬ2ö´Ô#*r©)*”¡RU)Æ£Üe¦¾3ÓÊ¿›c{‡+ n±“s*Êj’’ ”œ•WU0øÓK,^DÆVµ†ád„™L¬‰ |ûšD_1sILƒƒû.µ¯ukµ´´åM¶ýÝ,“|¯ß¶¼º |u—©ª|’rtéÔIJ“rueS„©ïóN¤"«Føe&âë§%FóǦÛ}7Iº¹ÔK[£G1EIröÄI(ÜYce!CgªîPÌ»RÊ$ýêµ¼ôÕ¾X)è´Þ-=Z¶Ò³²~~;Ä*Pµu+Þ’jV„ êb'†j¥EΓ§V‹PG=%KžšœàiÞ5šÿQÐí?²R;}Mcž9~ÒK$2Ã<°–]˜ÞE´Ô.W ù8+eq£J¬ý¥Ü.š·XÊ1–·Ûß\®×zÝFÊæYÇusv õUb”'{FÚ§V•z´[³K¬=EV N4ÛƒJ¼ÒäØñ¯ü‰¾-ÿ°e×þŠjæÊÿߨŽ?úR=®;ÿ’W5ÿ°zÿújGê‡ü, /ú>#ÿá¼ñÿ!Wõÿú÷ßôÇüòçë¸_ùýü?æð°,¿èLøÿ†óÄü…Gú÷ßôÇüƒë¸_ùýü?æð°,¿èLøÿ†óÄü…Gú÷ßôÇüƒë¸_ùýü?æð°,¿èLøÿ†óÄü…Gú÷ßôÇüƒë¸_ùýü?æbê?ü#¤^YéÚ¶•ãk-Bî)g·µ»ð6¿“ÇdtV³• Ñ#€dLãpÎUüBáŒ4=­l|#Úí´®îÒ»[»=<Ÿc Fm—àéûlF&œ!t¯*Jîí+·k´›KÉö!ÿ…×àŸùññ—þ:÷ÿ"WüE. ÿ¡­üàÿZòúÐÿÁÔÿù ÿ…×àŸùññ—þ:÷ÿ"QÿKƒ?èkGÿõ¯ ÿ¡üOÿ’ø]~ ÿŸá¯ò%ñ¸3þ†´ð ÿZòúÐÿÁÔÿù ÿ…×àŸùññ—þ:÷ÿ"QÿKƒ?èkGÿõ¯ ÿ¡üOÿ’ø]~ ÿŸá¯ò%ñ¸3þ†´ð ÿZòúÐÿÁÔÿù ÿ…×àŸùññ—þ:÷ÿ"QÿKƒ?èkGÿõ¯ ÿ¡üOÿ’ø]~ ÿŸá¯ò%ñ¸3þ†´ð ÿZòúÐÿÁÔÿù ÿ…×àŸùññ—þ:÷ÿ"QÿKƒ?èkGÿõ¯ ÿ¡üOÿ’ø]~ ÿŸá¯ò%ñ¸3þ†´ð ÿZòúÐÿÁÔÿù ÿ…×àŸùññ—þ:÷ÿ"QÿKƒ?èkGÿõ¯ ÿ¡üOÿ’ø]~ ÿŸá¯ò%ñ¸3þ†´ð ÿZòúÐÿÁÔÿù ÿ…×àŸùññ—þ:÷ÿ"QÿKƒ?èkGÿõ¯ ÿ¡üOÿ’ø]~ ÿŸá¯ò%ñ¸3þ†´ð ÿZòúÐÿÁÔÿù"M?ã7ƒuf¾]+Mñ­ëYL-îE§õéM¼¥A›lÎÖòäöœ®§¡º£â' N©}7jÝš»WNÚêšõMt;¡œe³§±ÅSq’ºj¤,Òm]>k5tÖS[£Gþv‰ÿBÇÄü ÿ ø}ïüƒû_.ÿ ªø2æð³´Oú> áâþC£þ" ÿÐ|>÷þAý¯—ÐU?üóøYÚ'ý ?ð€ñÿ!Ñÿ…ÿè>{ÿ þ×Ë¿è*Ÿþ ‡ù‡ü,íþ…ˆø@x‡ÿèÿˆ‡Âÿô½ÿkåßôOÿCüÃþv‰ÿBÇÄü ÿ ø}ïüƒû_.ÿ ªø2æð³´Oú> áâþC£þ" ÿÐ|>÷þAý¯—ÐU?üóøYÚ'ý ?ð€ñÿ!Ñÿ…ÿè>{ÿ þ×Ë¿è*Ÿþ ‡ùŒÓ~)hÖ§ë?‡<}}¤_@—6·Ö~ñÐÜÂê$ÖÌ«#)0$A¼¸ç‡ ÜeŒŠkü_ätO†„œeV ­rù—¿á`YЙñÿ çˆÿù —ú÷ßôÇü…õÜ/üþ‡þóøX_ô&|GÿÃyâ?þB£ý{áÏú ãþAõÜ/üþ‡þóøX_ô&|GÿÃyâ?þB£ý{áÏú ãþAõÜ/üþ‡þóøX_ô&|GÿÃyâ?þB£ý{áÏú ãþAõÜ/üþ‡þóøX_ô&|GÿÃyâ?þB£ý{áÏú ãþAõÜ/üþ‡þóøX_ô&|GÿÃyâ?þB£ý{áÏú ãþAõÜ/üþ‡þóøX_ô&|GÿÃyâ?þB£ý{áÏú ãþAõÜ/üþ‡þóøX_ô&|GÿÃyâ?þB£ý{áÏú ãþAõÜ/üþ‡þóøX_ô&|GÿÃyâ?þB£ý{áÏú ãþAõÜ/üþ‡þóøX_ô&|GÿÃyâ?þB£ý{áÏú ãþAõÜ/üþ‡þóøX_ô&|GÿÃyâ?þB£ý{áÏú ãþAõÜ/üþ‡þóøX_ô&|GÿÃyâ?þB£ý{áÏú ãþAõÜ/üþ‡þó3u_‹ЬΣ®h<Ó´ñ,P«ïø‚ĒȱF›šÌ Ï#¢(êÌÊI“ãΊrxØÙ&Þú$®ÛÓdµo¢±ØHÆS•x%Û|ñ²I]·®‰$Û}»(ÿÂëðOüøøËÿ{ÿ‘+Ïÿˆ¥ÁŸô5£ÿWú×ÐÆ‡þ§ÿÉü.¿ÿÏŒ¿ð‰×¿ùøŠ\ÿCZ?ø­yý hàêüÂëðOüøøËÿ{ÿ‘(ÿˆ¥ÁŸô5£ÿú×ÐÆ‡þ§ÿÉü.¿ÿÏŒ¿ð‰×¿ùøŠ\ÿCZ?ø­yý hàêüÂëðOüøøËÿ{ÿ‘(ÿˆ¥ÁŸô5£ÿú×ÐÆ‡þ§ÿÉü.¿ÿÏŒ¿ð‰×¿ùøŠ\ÿCZ?ø­yý hàêüÂëðOüøøËÿ{ÿ‘(ÿˆ¥ÁŸô5£ÿú×ÐÆ‡þ§ÿÉü.¿ÿÏŒ¿ð‰×¿ùøŠ\ÿCZ?ø­yý hàêüÂëðOüøøËÿ{ÿ‘(ÿˆ¥ÁŸô5£ÿú×ÐÆ‡þ§ÿÉü.¿ÿÏŒ¿ð‰×¿ùøŠ\ÿCZ?ø­yý hàêüÂëðOüøøËÿ{ÿ‘(ÿˆ¥ÁŸô5£ÿú×ÐÆ‡þ§ÿÉü.¿ÿÏŒ¿ð‰×¿ùøŠ\ÿCZ?ø­yý hàêüÂëðOüøøËÿ{ÿ‘(ÿˆ¥ÁŸô5£ÿú×ÐÆ‡þ§ÿÉ ÆïÜêé6ö~1—Uš.#³Á:ëK$Q²+Ȩ-2UZX`0 ŠÞè£âG â"çK1§$¬›Né7{'e¥ìíÞϱÕC=ÊqP•JÊSŒZMªi7{&Ô´nÎÝìí³5¿ághŸô,|@ÿÂÄ?ü‡Wÿ…ÿè>{ÿ#_í|»þ‚©ÿàȘÂÎÑ?èXøÿ„ˆùøˆ|/ÿAðûßùö¾]ÿATÿðd?Ì?ághŸô,|@ÿÂÄ?ü‡GüD>ÿ ø}ïüƒû_.ÿ ªø2æð³´Oú> áâþC£þ" ÿÐ|>÷þAý¯—ÐU?üóøYÚ'ý ?ð€ñÿ!Ñÿ…ÿè>{ÿ þ×Ë¿è*Ÿþ ‡ù‡ü,íþ…ˆø@x‡ÿèÿˆ‡Âÿô½ÿkåßôOÿCüÃþv‰ÿBÇÄü ÿ ø}ïüƒû_.ÿ ªø2æð³´Oú> áâþC£þ" ÿÐ|>÷þAý¯—ÐU?üóøYÚ'ý ?ð€ñÿ!Ñÿ…ÿè>{ÿ þ×Ë¿è*Ÿþ ‡ùžñû;øÓBñ•÷ÅK}&f)tKkÔÕôKý-¡™¼¢<]C_Ë’'*2UeŽ¡?-ÅYö]žF„²úÊ¢5í~¶KuÞ-|™ë`+R¯:3ROªi­ÚèßTת}Vÿ‚rÿÉžü2ÇOíé÷P¯“GyöýP@P@P@ó÷ÅïÚÂ? VM."52üº]´ƒç߃ýžXñÀ5åcóZ8/u{ÓíþgÞð—‡ùµ^_ºÃÿ;[ÿuõÙw¾‡ä_í7ûP|WƒF›Æº¦„¾ ðÕ›o¹Ó­µ#až ¢!H|©<ÎXå˜îu#§ÏÒ«<Þ¯³¯W•½•´ü×ê~¿Áa|:À}o,Àª±Š÷æçiî’ûºmê—*]?øñŽïãN…ªø…¼1o£ØZ\ THõ3y#Èç¾T{ -»qéŽsÇ`–jŸ5Û×k~¬íá^&ŸáªbN1|«ßæwÝÝrÆÚ5mï~–;Sãï'ÅTøycà‹ YǨͭl”x-™‚nk üÆO4*ùŸ0‰ŽW¥¡OØ{g;;ÚÖëëÓ¨«æ¸µšÿgCœ9TœùõQnÚÇ“{Ý%ͪ‹wG½ÛvúÖHô*öÝ«DpÔ¬ø•Ëô?ú V¨á¨C¦q¦hÃþ—ùšÖ'C£·íZ£†¡…¾ôÿõÌèéëXœD¶íZ£†¡½mÐV¨à¨o[V¨á¨l‹{{¸Z ˜RX_†IA­bÚÕ}hÆiÆJèø'ö“ý—uOx®çÇþ»j £ÚÙI Ïò™)®¤ ‡øÚml}Þx¯‰0u±ôéÊžðæÓ½íþGë^ q.]ÂX¬e,eã þÏÞÝEÇÚn·³æÝ^ÖÚÛ~j^xj;í¡¦Mm$†æ[K€ñ¼W<–æKómiS{KE#ÃqHnЏ&L"©üåFÒHâ…ª­{;6ÕãkßEu¢Õ¾_…=R¾¡.ËåÏËí"çÆN5ëEË—–Ò“DåRÐŒ]VÝYArJnxkEo4/•âHQŽÝnÑÎ!ÁDoÝíù‘[ª‚Ž®­ïuoe«w¿6žöí{×ѵ³h%ÂÙLùïGGÁ.iZœcËʨ®kP³„%z*žùá«\øOJ–Ö[{_:ÎWû9ûLºLÃ1™o1™˜ÅŽâMi Æ´f¥;I.mÞôyZÒÍ.T’I¤¬­c“ÁÙml4¨aù¨Ê^Ëß‹¼ïF³¯ ?hªFRö²”§)ÆR¨å'7&'¥[ßi×Öžtc•¥X÷#-ãUùeY6F…Qwž(–cZtçNv|Ê×ëºmédÜš\ÒiÉÙj¸;-Ãc0ø¼74=Œœ”S¼_îçN1÷Ô¥ t£R§²¥NP¥95 CÆ¿ò&ø·þÁ—_ú)¨ÊÿߨŽ?úR;ÿ’W5ÿ°zÿújGô•]'øÈP@~ÐÿòX¾سâoý*Ðëæx×þDŸ÷Ÿþ‘Tøï?äœÿ¸ô¿ôÝsŒ¯ÈÁ‚€ ( € ( € (  ïÙûþ?~9Øáþ™4ŠýOÿ"œø%ÿ§ªŸµåò"ËëÜÿõ"±ôUjnP@P@P@dþÍònŸ¿ìJÐÿô† ûœÃýî·ø¥ù³ô|Óýú¿øåÿ¥3Ú«Œà ( € ( € ( jŸù#—ö3x[ÿOúueŠÿsÅךßújfß÷ gýx¯ÿ¦fxm?ŸË@P@P@P?ÿÉ}ðwý‰þ ÿÒݾ÷„¿ä]Œÿý&±úwÿÈ«ÿ_(é8ƒëJöϤ ( € ( € ( €9? ÏâÿÚ•P€ÇV›“ÿ`? ×ë\#þåð¯ý9TýË?Ü!þÿ§k“ÿåý~KÿéóP¯®GÜŸoÐ@P@P@PÃß´gí<<-5ÿ€~]#øAŠÿWBtóÞ8»}ODé÷¾ïÍæÙϱo‡~÷WÛÉyþ^»~×áÚq†mœFÔw„?ŸûÒíËíoðü_œë<×3Kss3Ëq+’YX³;’I<’O9¯’»nïsúÂ4â¡d•’Z$—D;YЬ–8šxYE4–·Iëfßù|c>öµ2\^J¬áRrN2”v¥Bé5{«É_g6bø7Äž1׿bÏøÎÿǾ)ÿ„«GÔn'¶Õ¡Ö®£¸àÄ@ûž0$o¹ÁÆEtT§N„i¨.V¶²<œ/‰áغ˜ŠžÖmKžWè¬ÝîÖ»=aý~&x€þϼ}ãV׿Ð5MBå¦Õoeº—È‚ÆÚo-^BÄ.w:e‰îk<ÆŒV&餮–Þmœ™×y&#‹©*Ž›¼›nÑ„]®ïæ|ñàoŒÚÏÅß üfñ‡ÄÏ7Þñ%¹o èZnº4˜¾TÎÛ†zîXcù·²I ŽÚ¸xД!NŸ2êísæ09Å\Ö–+Æ:sK÷qSäW³{_Þ赿Þ}gû|qñÅÿkG‹ç[¯øVXmÚø F¹¶”9ˆ¸ÁŽU$žrO.;N3Þá\æ¶k†œqó¦Ö½ÓÚþz3è?–SOðgâ6§g­k:V§¢h·úµæ‰©Oa*Ϭ­ç…”²nÁ(ISp+,3µH«^îÇvwðUd¤âãI4ÚwIÛnžGÁ_±Vñã…>-ÅâOŒÞ=…ì´Zt–ZõÄrÃq"LÞa±rªBŸ,0BY‹pG§Šä£(òÅ}ÇÃä+™Q­íkÏK[Þ{ë×–ǵÁ>?hüRÓüqà/ë’ꚦ‡o톳xCNarÈé+ÿÖØC6[æ`IRÅQ6¥¹ye[Ñ­+¸êŸ_™Êx§Æž±øcã;{/Úûâ7ˆ¾‡ë‡Àÿ†^=øMgãO øãâ.µãˆn5©/tM[[½ŸQ½‡Lh¢XฑÔaÖDœŸ!ݸ`±UâÄ®w‘ôÙ4¾ªªª’ní[Fôײ øßû=è_´÷Ô¬`m;Ç6ñâßRîäÄSárW°o¼½²2§Ã̲hãã̬¦¶zkäÿ­Õ8+ĺÜ'YQ«ÍS 'ïFÒ¼½ 4}ÖÒòz¯Èišÿ…5ÍOúç„|O­a3C4káûùpî®°•u=C) ‚$ù 䨏>Y(§þ8òGôNÄžÅSU¨N¬¢ök ‰kïTZ#í×?ô-x£ÿ ÍKÿŒTÿdâ»ÿÃÿ’6ÿˆƒ‘ÿÓïü%ÅòûuÏý ^(ÿÂsRÿãdâ»ÿÃÿ’øˆ9ý>ÿÂ\Wÿ)·\ÿеâü'5/þ1GöN'û¿ø?ù ÿˆƒ‘ÿÓïü%ÅòûuÏý ^(ÿÂsRÿãdâ»ÿÃÿ’øˆ9ý>ÿÂ\Wÿ)9¿^\7„}G*Àᧇ´éÂJKžžÖ«%¯5Ÿ»(½/½·¹íð·|=ÿBŸÄ¯ü6þ&ÿä¿õ/>ÿ W÷ÇüͿԬ÷þÿòxòAÿ wÃßô)üJÿÃoâoþA£ýKÏ¿èýñÿ0ÿR³ßúÿÉáÿÉü-ßЧñ+ÿ ¿‰¿ùõ/>ÿ W÷ÇüÃýJÏèÿ'‡ÿ$ð·|=ÿBŸÄ¯ü6þ&ÿä?Ô¼ûþ_ßóõ+=ÿ üžüÂÝð÷ý ¿ðÛø›ÿhÿRóïú|Ì?Ô¬÷þÿòxòAÿ wÃßô)üJÿÃoâoþA£ýKÏ¿èýñÿ0ÿR³ßúÿÉáÿÉü-ßЧñ+ÿ ¿‰¿ùõ/>ÿ W÷ÇüÃýJÏèÿ'‡ÿ$ð·|=ÿBŸÄ¯ü6þ&ÿä?Ô¼ûþ_ßóõ+=ÿ üžüÂÝð÷ý ¿ðÛø›ÿhÿRóïú|Ì?Ô¬÷þÿòxòAÿ wÃßô)üJÿÃoâoþA£ýKÏ¿èýñÿ0ÿR³ßúÿÉáÿÉü-ßЧñ+ÿ ¿‰¿ùõ/>ÿ W÷ÇüÃýJÏèÿ'‡ÿ$ð·|=ÿBŸÄ¯ü6þ&ÿä?Ô¼ûþ_ßóõ+=ÿ üžüÂÝð÷ý ¿ðÛø›ÿhÿRóïú|Ì?Ô¬÷þÿòxòFwÁŠÚ„> ü!𗈼#ñ*ÓÄ'…ô­:ú×þljdò.!´Š9zX•l:°Ê’2 õxÎÍ*â*T…Ó“km›õ>×f±ujÂã)I¯z;6Úêz‡ü/ÿлñ+ÿ §Š?ù¹¿ÕœÛþßáþg'ú¹™ÿϯüš?üÂøð_ý ¿¿ðÚx£ÿ(ÿVsoú‡ù‡ú¹™ÿϯüš?üÂøð_ý ¿¿ðÚx£ÿ(ÿVsoú‡ù‡ú¹™ÿϯüš?üÂøð_ý ¿¿ðÚx£ÿ(ÿVsoú‡ù‡ú¹™ÿϯüš?üÂøð_ý ¿¿ðÚx£ÿ(ÿVsoú‡ù‡ú¹™ÿϯüš?üÂøð_ý ¿¿ðÚx£ÿ(ÿVsoú‡ù‡ú¹™ÿϯüš?üÂøð_ý ¿¿ðÚx£ÿ(ÿVsoú‡ù‡ú¹™ÿϯüš?üÂøð_ý ¿¿ðÚx£ÿ(ÿVsoú‡ù‡ú¹™ÿϯüš?üÂøð_ý ¿¿ðÚx£ÿ(ÿVsoú‡ù‡ú¹™ÿϯüš?üÂøð_ý ¿¿ðÚx£ÿ(ÿVsoú‡ù‡ú¹™ÿϯüš?üÂøð_ý ¿¿ðÚx£ÿ(ÿVsoú‡ù‡ú¹™ÿϯüš?üÂøð_ý ¿¿ðÚx£ÿ(ÿVsoú‡ù‡ú¹™ÿϯüš?ü‘âÿþ&i^6øk7‡ü1à߉Wº»kšàƒþωbýͶ¯es3n{_–dlg'n$€s¯Âù¼ðÕéÇï*u"¶ÕÊœ¢–ý[K·s,W æ•0˜šQ¥ïN•h¯z:ÊT§¯‹«i]èºèyWü$óЃñ+ÿ ïˆù¿ÿˆ]Å¿ôÿð*ü™ø'üB^0ÿ /ü©Gÿ–ü$óЃñ+ÿ ïˆùø…Ü[ÿ@/ÿ§ÿɇüB^0ÿ /ü©Gÿ–ü$óЃñ+ÿ ïˆùø…Ü[ÿ@/ÿ§ÿɇüB^0ÿ /ü©Gÿ–ü$óЃñ+ÿ ïˆùø…Ü[ÿ@/ÿ§ÿɇüB^0ÿ /ü©Gÿ–ü$óЃñ+ÿ ïˆùø…Ü[ÿ@/ÿ§ÿɇüB^0ÿ /ü©Gÿ–ü$óЃñ+ÿ ïˆùø…Ü[ÿ@/ÿ§ÿɇüB^0ÿ /ü©Gÿ–ü$óЃñ+ÿ ïˆùø…Ü[ÿ@/ÿ§ÿɇüB^0ÿ /ü©Gÿ–ü$óЃñ+ÿ ïˆùø…Ü[ÿ@/ÿ§ÿɇüB^0ÿ /ü©Gÿ–ü$óЃñ+ÿ ïˆùø…Ü[ÿ@/ÿ§ÿɇüB^0ÿ /ü©Gÿ–ü$óЃñ+ÿ ïˆùø…Ü[ÿ@/ÿ§ÿɇüB^0ÿ /ü©Gÿ–ü$óЃñ+ÿ ïˆùø…Ü[ÿ@/ÿ§ÿɇüB^0ÿ /ü©Gÿ–ü$óЃñ+ÿ ïˆùø…Ü[ÿ@/ÿ§ÿɇüB^0ÿ /ü©Gÿ–ü$óЃñ+ÿ ïˆùø…Ü[ÿ@/ÿ§ÿɇüB^0ÿ /ü©Gÿ–¼5â;?â÷†¼QwðÿâTz¯†õ‹ ®á^ø…¶O=Ö—$I´Yî;–Ús06rA+Ÿ®áîâ, K„q”çM¥x»¨ª©í'·2ß¾O»áO¸,Ëñt1XnYNt\W=7uÖRÚm+9Ç}ï¦ÎßCÿÂÝð÷ý ¿ðÛø›ÿkÔÿRóïú|ÌöÿÔ¬÷þÿòxòAÿ wÃßô)üJÿÃoâoþA£ýKÏ¿èýñÿ0ÿR³ßúÿÉáÿÉü-ßЧñ+ÿ ¿‰¿ùõ/>ÿ W÷ÇüÃýJÏèÿ'‡ÿ$ð·|=ÿBŸÄ¯ü6þ&ÿä?Ô¼ûþ_ßóõ+=ÿ üžüÂÝð÷ý ¿ðÛø›ÿhÿRóïú|Ì?Ô¬÷þÿòxòAÿ wÃßô)üJÿÃoâoþA£ýKÏ¿èýñÿ0ÿR³ßúÿÉáÿÉü-ßЧñ+ÿ ¿‰¿ùõ/>ÿ W÷ÇüÃýJÏèÿ'‡ÿ$ð·|=ÿBŸÄ¯ü6þ&ÿä?Ô¼ûþ_ßóõ+=ÿ üžüÂÝð÷ý ¿ðÛø›ÿhÿRóïú|Ì?Ô¬÷þÿòxòAÿ wÃßô)üJÿÃoâoþA£ýKÏ¿èýñÿ0ÿR³ßúÿÉáÿÉü-ßЧñ+ÿ ¿‰¿ùõ/>ÿ W÷ÇüÃýJÏèÿ'‡ÿ$ð·|=ÿBŸÄ¯ü6þ&ÿä?Ô¼ûþ_ßóõ+=ÿ üžüÂÝð÷ý ¿ðÛø›ÿhÿRóïú|Ì?Ô¬÷þÿòxòF¯ìã©I©ø§ö‘¼>ñ.›o¨\É©Y¿ˆ|=¨èÿk·:^‡m¾1w eñ5•Â0+µI:ý Ë1yf4ñtÜ-µ¶üõO)/¼ý[„²ÜN[ƒ…,Tyd¢–éëí*Ë£}$ŸÏÔõ¯ø'7ü™÷Ã/ûx‹ÿOº…}>¬ûz€ ( € ( € ( ‘jŸ2|2Ðáð—…¯|q¬FOœ‡æÓ­ŽA”z;U=0ÍØgÁÎó?©ÃÙR~ü¿ß×±úÇ…ü ¸“ó to…¤öé9ïËþ¼»èº»~PBÏ#™$bÎÄ–f9$ú“_Ïêy¥d´7-‡JÑU ûnÕ¬N ‡Ã¿?fÏxãã‡|_àkS›ª#Ö/Ẋ°taL0fýÎÞ1ÌgÔWÒeÙ•*YRªõW²ïå÷Ÿ‰ñŸã³Lî–;/¡>URI¤âÓ·6­7îÛdÞ¹õÇÅŸ†-ã‚þ$øeᵆÑ䱂 >';cCnñÉdöRaUÏ`s\ẘšT+ºùïn©YÙ÷è}3û-~Ç~1øið»ã,Ôml~ øëFŸG¶ŽÚo5tˆÚUYä^ ™$ väà’HÖÄÆ¤ã˲;2Ì–®UUvœÓ^šEðàoí;ðÏáÇíð¡þ E-ßty¬à×.5«8aR-î"ظf2~ïùÊ‚HÞ¥Js”eͱåá0XÜ5*Ô/‰ouÙÿKñ=çöøWñëövѾ&i>7ø/¨¼š¨MBÎ[=oIužX#`¶ü\’¯!ll ÇÌŠӅFšc˰øŒg”÷×uÓ¦çûþÏÿ´‡ÀÿÚÄücðRøxgĶ·[Ïo®é5n/­¦3Ê‚è³$i ’¨ð‚kIÎ2ŠIœx\5|=g9ÃGæ»úŸ²¯ÿ!9ëÞ/ý Jã«Ðú<¿íü¿SrÛ ¨GECÇ~7ü$‡ÇúšÎ‘l?á/Ó¢&ƒ›ÈÇ&õ=JŸ^:\–b©óÁ{ëñòÿ#ë¸+Šåâ–/öz_î¿æ^_Íå¯Cóy•‘™Jºœ#ùú%4ÕДP@ÅOù&ÿì¨é<•Õ€ÿz¥þ(þhð8³þD‡ýy«ÿ¤Hýͯßá € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € (Ÿ?nÔÂŒ“ _Î[Zñ3¡óý )õ<Ûþ Ïÿ&ðÏ=´,Á©(rÊîšW¦ÜGÂ1÷ýîiN1ö‘½ ¶TÔ­“ª|_µŒ%ž…á»ûílÉg]mofóßI`Ë=‰´wºŠå¸h÷ wM!—7ïTšQ×m[´T´ZnõµºÙÙ>#ÿØPÿÒy*0ïT¿ÅÍYÿ" Ãþ¼ÕÿÒ$~¸ÂêðÏý ¿ðÖx³ÿ•Õûö†ù¿þGðß#ø]^ÿ¡7â¯þÏòºí 7ó~üƒ‘‡ü.¯ ÿЛñWÿ g‹?ù]Gö†ù¿þAÈÃþW†èMø«ÿ†³ÅŸü®£ûC ü߃ÿ äaÿ «Ã?ô&üUÿÃYâÏþWQý¡†þoÁÿr0ÿ…ÕáŸú~*ÿá¬ñgÿ+¨þÐÃ7àÿÈ9ÂêðÏý ¿ðÖx³ÿ•Ôha¿›ðäŒ?áuxgþ„ߊ¿økûÓ×1ÿ£§­bpT=Øt­bpT7­»V¨á¨oÛö­QÃPÞ¶íZ£‚ ×ÿ¤¿õïþ…%E^‡F_öþ_©¯m^XgÉ»~2~öíÙüù¤›ÜÚ¤#k[Kßç{þfå½­¹.JrÝyÐKù$·ŽÖ8Äò„²Š=›ÑCb× -˜ñFÿyXªÊÞ÷[ôÖ÷ßù·k[èÚÙ³ú>Y_.kÒÑÅE+ÊÐQ岦¯jVqŒ¿wÈù£|Q‹Y÷ß|;q§ÜYX­2â_±g(’pÖ·Mw“0‘]üù$wwVg21bÄæª8ÊŠJR´–º=½åÊö¶–I$¶¶‡=~ÁT£*Ty©·ìýè»Êôª:±~úšr甥)I77&äÛÔиðf—6½§ø‚9î ¸¶¿“S’Þ&SÝËZ}Œ<›”°ÛÊ<°cR±3TÝ6“M[ÑssiêûßÈè©’a猧Œ¥º&­)º^Å9]7îÃD¢â¯¬“fÅOù&ÿì¨é<•X÷ª_âæŽ~,ÿ‘aÿ^jÿé?¥Zý,þ! ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( €<ÓǬºŒhä…:«’?륕'°7Á:8ý>úˆø‹ÿOº…0>Ü € ( € ( € ü©ý¿u9%ñÿôbÇʵÑÚéWÐË;©?ù~UñNI5¬yªAJÏ¥ÖÈñ†~ðþ¿û7xëĤ>¯`/®¬§i\}ŒÃÈ<±œ.YN㌜àô÷1¸º”³JtàìŸ*~wvÔü«†8{˜p.3ˆ5H{YAÝûœ‘R\ªöWiß½ìöGðOX“â‡À?ˆ~ñÈ“V‡AYÚ[©¾Õ„É,NÇBFOL‚²Ì)¬>Jï6ÿ}ŸÞz<Œ—pž7š^ª£~VÛ½”y£w{¾Y-/ÒËdp²ý'â3üDÓx¤hÙX„\.pKAÀ®ìë,7³•?‹]m{m}ûŸ-á–GG<úå,[nŠä¼œT›çåmŦÔ}í/k»½ÿW~$øS§|4ýü7â‹Øô†[Ë›è3o%Ò\ÞÏåÄä1;cg pHz†-ÔÆÎ:íoD¿3^0ž+‡©àøg YªvrrZ9)Ô•“Õé¦ö{µ²]·íEáËÙöo…þ/øêÞ/ðMÅÅĽԎ-m­Œ Á%²·î¤Ä+´®F˜“¸Ú”JT%gÔó3 D°™­Yæ”Jm¾[ì•ôk£Óñó>±ý›µk¾ý¡õ?ÙÏÄz’뺆”’é~ÕQ£mõaºyEäud’VFùNÕ#㲜eY|ûž®]SV–&ytÚÒì»;[VµgÅŸ ~)üðHñ…ÿjŸƒ¾$Õüsw}#Ï⋹e}FÙXØRWã*ÁÛz6ã»§÷N•)h|¾‡¡ÍO0¤ÜÛÝÞÿ™öwįŒÏð‡öð„ÿþ#j:üº½ñÑlücp ÜqÉ%ÌòåY™£–5O#$‚8dþ1„9ë>uo#ÑÅb~­–Åáês]Û›¯W÷ô>Zº´ðýÏìÑðßÄß ô¿MûO[ê_Úz‰ô­+W3ÝBïq¼Ñ–êƒìøÃ»ÆI|ô&ùÚ•¹~G(Åáa:Iû[Ý»?>§±þÚ¬¿¿c€ß¼wàó§|cŸU¶Òuëë?²ÝùQè‡]Œ,rIÌ]¿0ÁíJ–“qOB±ÍÕÃB¬Õ¥{?Çþ¡ñ·Ãº çü{à/‰®ôˆ%ñš-m¬õ‹2[E5ÍÙ•ÿ„?—G}ƒÒšoÚù8Áàš÷®­øÜú×ötðw…¼{ÿÊÒtho©ipéýúBÉ2ªÜA¨_ËîL}×U=qÇ=Åe5%ZèïÃÊ”òåNzèú>ìøßþ ðKÃㆃãùõ{¯‡–Ñi/{áÝ2îæÒ=Jåàç{vYbQpBn Z@H;:*¶­cÉÀÆæU/m4Wóì~ãüø/eð_à^ŸðV×SÔ53N‹S†Û‹ bw†êæâuF_›%qsólÎ;G-jn´dŸT{yf2ž_V•H·îI=ŸG~Çåü% ÿB§ÿðŒÖ¿ù¾û7ÙàQÿ3ú§ýtÊ?š§þ¯ÿÊÃþ„ÿ¡SÆÿøFk_ü‹Gön#²ÿÀ£þaþºeÍSÿWÿåaÿ BЩãü#5¯þE£û7ÙàQÿ0ÿ]2æ©ÿ‚+ÿò³‡ø›â4Ÿá·Ä(†|a“C¿O6ëÂz¼&mÜeä{`¨£»1 $€+§€¯ M94¬¤¾Ô{úž/ñvW‰Éq´iºœÒ¥Q+Ѭ•ÜWnšIy¶’êÏÞoøjóáñ+ÿ o‹ù]_¢}Z·ò?¹ŸÈ·]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ãþ»á'üø|JÿÃ[âßþWQõjßÈþæ]Ê:ŸíƒðKDÓu gY?,4{$º»¾½øgâ¸aµ…³É$§DU–$&‡‡«woFEöÔøâoíøG5ê¿ÙWÒé—ÿÙ¿\ɹwFØeÈÈ¥e~X·o&Fçü5wÂOùðø•ÿ†·Å¿ü®§õjßÈþæ]ÆZüWðÄýKSÿ„ZßıÿføPÿÂCám_AÏ™%®Ï/íÖÐù¿êÛw—»oË»—1RœéüqkÕÓ<Ûþ Ñÿ&ðÓþÂ>"ÿÓî¡P3íÊ( € ( € ( ÉÏÛæÎDø£áò•6€ƒêRârô`¯†âˆÿµB_Ýý_ùŸÕ>ÕRȱ4ºªÍýð‚ÿÛYùmûFÉñŸÒÏÿJà®<‡ýþŸÏÿIgÑø³ÿ$–7þáÿéØ1ðKÃ?¼Mð3_ðï„ïô4Ó5««‹iŸU3G%ª²¢É³b°pËØ…Á'“ž=Ìξ†a•”¯ž–³ÞÛØü³‚2Ìï3áø,ºtÕ:Òœ_?2qºJVåRN뽬ï½ôúKÁµ‡? µßxZæÃPñF®²›ÍIä·žE¶ +°TOº0ry8Ïe|Â8Ì\kUMF;%«Ó_-Ù÷WÕáέ–àe׫~iI¸Æò\¯e&”c¶š½í}1f¿‚_¾ júâëøf÷CÖüŸ´ËgyrgƒÉY¶lFU·4 °ÀŒž+¯3Ì0øøÅÙ8Þ×JÚÛÏÈùþá ß„ëUX‡Jtêòó8Ê|Ë•JÖN ;¹kv¬»ìzOǯÙêÛãD6©¦k ¤xÇHm¯$ŒÉÑ“»ËFÃ8ËpsÆYv`ðWŒ•âÎî3àøq*§Z•Og^žÎ×MogèõMm®Žæ>|Oøë©ø./ŠÚç†ô¿ è;ÚX|0×Í~ï³y̨‚<ˆÀ{nOÞíÕ‡ÆÐÁÆ^Á6ß{i÷qÂù§Õ ³Z”áNî©ó7&í‰$¶Ó{k¹Ýü|ý—4¯Œ:O…ßÃz¤~ñ7‡ º|Æ2ð½¸ÆØ\¹B‘•aœe¸9á`s aœ¹ÕÔ·/Š8F–uN“ÃËÙÔ¤­ܽë§GÓ]èv~øëãðŽŸñÄ~Ñô]&ò ëù<syöm¢åbvuŒC 7.«¼°A…SO™ÓM·µí§ù°–7Æ{(cªBƒMû7+ÎÝÒåMî•ï±Ä~П²þ¥ãOxwãgïÙi>=Òž–ÛTÚÖøÀwFÌÉ–S´l#2÷H$ôaqŠ7F¢¼_cÆÏxnxÌm<Ë5±¶’½¶Û_'Ýv=CþøÁâ-_ÀZÏŽüE¤èÞÐâ7 ¢x>îí¿µå!•~×,‹b\–… ¶7ŒTóÑŒZ‚m¾®Úzý_0¯Z1SŒc y`åï?ï7mko¹–¾ ý¡ôÄø…¡ØÞx Åž×µKëë¼a=òɧÁq#:Û:,R,± *åqÈ ¼gEò½SImcË©…Ì©ûZi¤%)5Ìå¢omši|6ý›dMságƒþ-A'Ž#=ñf….•i¨i‚XâÒ ‰ÑeWÊ»8#îHÛÇ<×ElZ­(é¢<|»‡ç—ѪOÞN-&¯eçßC¬øð'ö“ø¹ð¢Ïá7‰eø]*#ÀdñcϨ5é1º¹–8Œc•öáÈ“3€ÿ²*,rJ…ÎÂeTî%:s—6§,>/KØ'-ž·û¿àžƒñûöK¸ø½û8èÿt¿Þ]x³@k[½?Ä(ºšé¯.¡Gćs(‘e—%AÚJðBU òËšÆ8¼+«AROUÕþ§ËšìkûXøóöpðïìó­ëÿ´«O ]AsdËuz﨧™tWÏ™a`<÷V2[IM§~ޤ#.cŽ,EjÒµ»ùŸ]|øûAü/ý“õŸ€0ü<¼ñ½•柤ßŬjÚâ+Ùî$¸{–6a£hÖà„®¯ÌW­C”e>c¦ ÔpújúüŽ/öý¾?þɾ%ñ”~)½ø}«ø?Åßdþйҵ[ö¼²û,w~W“Ù¢I¾K• ºEÚªHÉàë9©ìpáðÕ0íóZÏúì~­ÜL¶öÓÎç eÉö5›vW:!Rj «±ù½_&DåŸÿä‰|bÿ±WVÿÒIk|/ñéú¯Ìò³ßùbÿëÜÿô–~—×ì‡ó P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@PˆþÓ?òmÿ´ý‰ïþOXbƒ?Gù ný‰¿æî?ì·ø§ÿmkü½ÿý.‡ÛµÚI ·SÔ[fïøj/¯ï-kÅÍþÇÏô4§Ôóø'GüšÃOûø‹ÿOº…xƇ۔P@P@P@ŸŸ·ß…$¼ð¿¼gD2ò[ÙGDC!>Á¡#êþõòÜQAÊ•:Ë£·ßÿ ~÷àFj¨ã±™lßñ"¦½`Úz•þGä牼áZ[ØxªÂkË(²D y=º6JŸ˜Dê•R7gqŠùl..¶óQv~‰þiØýß?áÜ»ˆ©ÆŽeMÎ ¢œâµ¶ê6Ê×½ºXÙð'ÃÏü>‚ö×Â:d–6×L­,-yq:¹ÁQ#°SóíÆxÎp1¶#[Ó®î×’_’GŸ“ðÞYÃp<²›„ek®yÉi}”¥+o­­}/{#Ôí»VHî¨o[t¤N†ýµlކõ·jÑ ëoáúV±8*Öõª8jk?ò ›ÿú ­QÃP‡LÏöfÿ^ËüÍjŽ ‡EmÚµGB }éÿë˜ÿÑÓÖ±8j‰mÐV¨á¨o[v­ÁPÞ¶íZ£†¡¿oÚµG BõŸü….¿ë„?ú´O a¾×ÈÒ´ÖtÂH¾HÜÇû–óy°n\pI9œ€}9¨ÄÆu–·[|úØé­uHqóE*·ER÷Œ!QƒÔ3眂G5¢‹8ªU]¿­¿=ãOÄ#á÷Ã/x‹Q[ƒö <î‚…Á“j ±`ˆÌRÒÈË.çwTGeŒB~ÉÛ®Ÿõëäudò„±ÔÜÓj™¯(ë®¶Kk¶ÔUîÚIµù¤ßü(·Ú 溗J²Ôà†;‹{¦»–m EÁ3o–êÅÌ{¬Ã³)¸/ÏýVv½úµ×¥ïÓËo‹Èý‹ûwÍËÊîã-a¯;ŠŠ^ö·rK^•ôu.°5¿Ú ÆájºŸ‰Z]: m¯ŠÙÚiòÝj’éL—Wj%Uh®íä„k)~/21$‘Ôpë9$µónË›E¦éùyÙÙ>züCîaéJS¼OÝŒ\ª:V”—5œg”¯¼y£Í(êÙ|Yñ ž7Ð|ªx 4Ô5±Ou¬.Oi,n¯`†UH|³t#³c<+)X–âÙÒIÖ\ªxxò9©l»oªO®Úèí­žŠÆ°ÍëÒÿ…ÕáŸú~*ÿá¬ñgÿ+«õí 7ó~üænFðº¼3ÿBoÅ_ü5ž,ÿåuÚoæüù#ø]^ÿ¡7â¯þÏòºí 7ó~üƒ‘‡ü.¯ ÿЛñWÿ g‹?ù]Gö†ù¿þAÈÃþW†èMø«ÿ†³ÅŸü®£ûC ü߃ÿ äaÿ «Ã?ô&üUÿÃYâÏþWQý¡†þoÁÿr0ÿ…ÕáŸú~*ÿá¬ñgÿ+¨þÐÃ7àÿÈ9ÂêðÏý ¿ðÖx³ÿ•Ôha¿›ðäŒ?áuxgþ„ߊ¿øk9üG³ñÁ?Œ>ðç€>*Þx‡\ð¶­¦ØZ°ñL^}ÌÖ’Ço{«¹ÙFX€3’@沯ŽÃΔ£jÓèûz EÜòÏÙsÄ—¿¿á¢¿á2øiñWOÿ„Ÿâž¿â=+þ-§‰§ûVsäy3~îŶnØß#íqŽTqYá±”)óóKy7³Ø%ì}Mÿ «Ã?ô&üUÿÃYâÏþWWOö†ù¿þBägQàïéž.Ô¼BÚv⫱x~ô¿ü$þÕ´3t–øò¾Ýo›‡w—»nWv7.|ÌËN¿/³wµÿBàšÜÀÿ‚tsû |4>º‡ˆ¿ôû¨W˜YöåP@P@PŸüSð-¯Ä¯‡þ(ð]ÑUmFÙ– \q 뇉þ‚ER}FGzåÆá–3:/ªüz~'½ÃåNÍðù?ùw-Wx½$¾qnÞzŸ‚÷Zmö¨ß饫ÛjVS=½Å¼£ ˆÅYO¸ ŠüÂP•98IY­îŠXšXÊ0ÄP—4&”¢ÖÍ5tþhз«F ë߈^Ð/¥Ó5ßxNÔ¢ d´¿Ôà‚TÈeÇC]”ðµêÇšÛ]Òlù¬v}•`jº¬]8MZñ”㯪ºm=V§Gcã¿ϨÛèÐøËC“W˜)ŠÅ5 Ò]±†Ür#œÖ‹YG™ÁÛ½ŽYg9tê¬çÀUQÉÀv§ÃÉâ§0Ñ[eä»ð¦sJ9®c‰JrçÖ¤ÕݪIo'w¦‡ÔŸŒüá:ËXñ'Šôm'I»*–÷ºü6ÐÎÅKŽì‰PHÁè3\´éT›åŒ[~‡¿ŒÇáp´ÕZõc½›’IõÑ·g¡@ø‘ðï_±Öu=ǾÔ´Ý/?Q»°Õ-çŠÂ-¬Ûæur#\Fç,@Â1ìkgF¤R‹Mí¦ç›Ë‰„êQ¯ F òjI¤µÕ´ôÙïÙŽ“âWÃoÃz®±¢øÿÃz†‘`BÝÞÙj¶óClY[h‘ÕÊ¡8ã$f´ö5"ù\ZoÈâþÑÁÖ„ªÓ­ F;µ$ÒõwЯá_‰¿ ¼C¦è|5©ê>B§ÙtýZÚâMÙ?.ÄrsíZº5!¬¢×ÈáYŽ.Z5£'ÙI?ÉŸ0~ÔZç.¼sà;‡´_„|ý(:Æ“©ø– 6hŠH’Ï lÍŒƒå°ÁlŽü$b Üé·}´¹ò§¤ÝGwo>Ödm’ÆJ¶YNHê+KYÙœ’œf¹¢îŒ9~0|$Ò<_sá[â„l¼Hc†¥]ëv‘\ù›¤ù|¦>îGÏ"œã&“±8zÔâåI'§SÚ-­­ÌKÏÝïóq“÷·oÏýõÍLYu"­oŸãsnÞÆÔ™ÅËõäü¼ä•þéÈ#€zÖɳ‚¥8ë¡óíú_ˆ£·ð+]j1Û*$ׯ¦jwV2ïʘǛˆá€Q– ’­´œ•˜âZ’§šìŸæ}ïä©F¦2µ×?»JQvM6ïž­%{ßF¶gË|/ð,¿l¡þîkXl¡‰ngXôØbòŒkböÙmh-ß6Â3æAç|hÃÍöõ;ÿÁõï×{îÑöï+Â;Þ¤–®ÑJÖäW´,Ô_¹Ë¬b÷I¬­Oàÿ„nô›½7J7Ú-ÔÿÙ¤êº|â[ö7Ï„Ü,©$†æY¤’IžV•Ë–'"£ˆšwz離³ÚÝ>î†Ur|4éºtïù=äîýɹÅûÜɾfÛm7&ß3l«¤|ðŸ‡õŸjÚ&§â;x4BçU]2ëY¸Ô-înæŠâ&•ÅÓJèØ¼ºcå<{Þ]Òy…Wk–&s‹RKUm’ÓNÖì·ùG$ÃáêÓ©JSJr³›’rjI·ÎäÓ÷äýÖ®Ýå{+Zøçÿ$KãýŠº·þ’KK üz~«ó/=ÿ‘V/þ½ÏÿIgí½}‰üØP@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@yÇŒÀ:¬A€#þýW ÿ×K:Lš¿àòh? ?ì#â/ý>êÀûr€ ( € ( € ( ÎÛ+à„©tß¼1fÏcÖíá_õd %Îc¿¡ {±#Äk¿Öé/ñŸùŸÑñ¬\?ÕÜt¬ÕÝ&úõpýcó]>¶í_/÷j‡ÂŸ·1#|1•bE–Oíî±ö\d÷Å}o 6ÕUþÔþyñºRÀI-_µ¿þS'ý¤<'áíö}ø=ªiZeµ¶¥ÖP­ÔªHë%¤’9f’^5bO~kLªµJ˜êÑ“º×ðv8ø÷-Â`ø_.­B 3N é$ß57'wÖí&üõ:¿Zî§âoØÛÀzæµ+˪\ËaçM!ËLÊ$]íêX(b}é`iÆ–g8Cerø£[Á\F!Þrp»êíu®qËð÷Âö“Ç3hV²ø´L%‹V–0ÓÀ?µ~Ï备•ac°»˜¶2s]~Þ§öŸ²¿»Ûþݹàÿe`ÿÔo¯:iÖ½Ôº¯ßrÙ=ÒµôÚí½Ï£ÿe ZüWý”¯¼âfÙK=þm,Ëæ5˜?2:g¡G°úc¥rãæðøÕRL÷¸K ã†^ª¼â¼º¦½ºxN…ü]§IÓ¥Ec{~d†ÓŸ¾ Ï Ï +c®Ümˆ•:Ðz=ý7¿Ü|· æÒÉèã2êñýäoÊ»Êüœ¾zµ§k³ÕiÿÙËÇ6ÿ>è´õÖÂþ|ÚÞŸm´I©Ý:ÆÍtc8óq'Ú8借‚qžVr¨í}¼¼¿®Çwpþ*8 -yýù’ÞMÛÞ·]oç©çþý þø£Æ_ |%ñŸà³ø/ÅÕ¬®,5µhgWýÚÏ‘[vb»€fèéšÙá§JTgÌšëýnypÎðØœM9†ÙT„¢ÓеŸDÓWQï«2?रAįË(’Í¢³Hê ™€,{ðç°­2ÏáËÔäãt–.“_ËúšŸ·Æ±©êþxæêdð³Ù%ãÀ¬Uio®!f#»*F=·¶:š0 *rŸQqmYÏJƒ~í“ù¶×äŸø)¼#ᯂw^ðþŸ¥5Õ®¥i,Z}º@­×ÊTÇšàO¥^R’•ÙÍÅ4)Q•N)hÖžV·æz·íצiÖß±Àk‹m>Ú)×PÑIJ¬´Ë·a:;ˆîNzцw«/Ÿæ<ê1X -.±ÿÒYË|a·µø&Á{© ‰®£½µHæeЮ·=@;F@ô­aüvqbäYMÿ]Ojøqão|;ÿ‚P'‹<#u5·ˆ-ìu x.­ÉY-ÅÆ»5»È„r¬©3°aÈ Ô4k2a7O/RŽúþgË|ª|GýŒþ(x¿³÷ˆ¼YãojÂâÛÆ0iï­ÄRBÊ­4“¬é„W ù­×sV“ÒiÜåîl,à Û}téøŸ¯¿°^Ÿñ£ÂŸ´¿üuðÞ±¦øŸÃ÷óØX%ú‰fÓ‚Æð’ñ—S$‘('!bÅcQ'+Äô0•e *¯uùVxïâ.ð÷Ã7^!¼ÑõûçE¦“ êŒÒÊÙÇî­áwÚ1’Ûp|‘˜Ÿ4"ÚZú£§ ©bkÆ$Ô/«Q“²ôI¿O3óþÿâ„:íÖ¡{á?‰ÝÜHÒHíð÷Ä|±9?òå^°•æÜ¥k¿5þgêô8‡)ÃRR’ŒU—îêtÿ· ¿ð°´ÿú¾#á½ñÿ!TýJ·e÷¯ó5ÿZ2Ïç—þ ©ÿÈü,-?þ„ïˆßøo|EÿÈT}J·e÷¯óõ£,þyຟü€ÂÂÓÿèNøÿ†÷Ä_ü…GÔ«v_zÿ0ÿZ2Ïç—þ ©ÿÈgñ§ÇV7Ÿ>,Ú'…<} ÏáR1-çuëhc&ÖQºId´Tr]Ø*Œ’@ÖØ|%XÖ„šVMu]ýO;8â<º¾]‰¥ ËšPš_»¨µqijãeêô>üÿ‡™þÄßôX®¿ð“׿ù ¿RÿQ8§þ…XüWÿ‘?úÕùø¾ôðó?Ø›þ‹×þz÷ÿ!Qþ¢qOý ±ø"¯ÿ"Z¡ÿ?ÞƒþgûÑbºÿÂO^ÿä*?ÔN)ÿ¡V#ÿUÿäCëT?çâûÐÃÌÿboú,W_øIëßü…Gú‰Å?ô*ÄàŠ¿üˆ}j‡üü_zøyŸìMÿEŠëÿ ={ÿ¨ÿQ8§þ…XüWÿ‘­PÿŸ‹ïAÿ3ý‰¿è±]á'¯òê'ÿЫÿ‚*ÿò!õªóñ}è?áæ±7ý+¯ü$õïþB£ýDâŸúb?ðE_þD>µCþ~/½ü<Ïö&ÿ¢Åuÿ„ž½ÿÈT¨œSÿB¬Gþ«ÿȇ֨ÏÅ÷ ÿ‡™þÄßôX®¿ð“׿ù õŠèUˆÿÁùúÕùø¾ôðó?Ø›þ‹×þz÷ÿ!Qþ¢qOý ±ø"¯ÿ"Z¡ÿ?ÞƒþgûÑbºÿÂO^ÿä*?ÔN)ÿ¡V#ÿUÿäCëT?çâûÐÃÌÿboú,W_øIëßü…Gú‰Å?ô*ÄàŠ¿üˆ}j‡üü_zøyŸìMÿEŠëÿ ={ÿ¨ÿQ8§þ…XüWÿ‘­PÿŸ‹ïAÿ3ý‰¿è±]á'¯òê'ÿЫÿ‚*ÿò!õªóñ}è?áæ±7ý+¯ü$õïþB£ýDâŸúb?ðE_þD>µCþ~/½ü<Ïö&ÿ¢Åuÿ„ž½ÿÈT¨œSÿB¬Gþ«ÿȇ֨ÏÅ÷ ÿ‡™þÄßôX®¿ð“׿ù õŠèUˆÿÁùúÕùø¾ôðó?Ø›þ‹×þz÷ÿ!Qþ¢qOý ±ø"¯ÿ"Z¡ÿ?ÞƒþgûÑbºÿÂO^ÿä*?ÔN)ÿ¡V#ÿUÿäCëT?çâûÐÃÌÿboú,W_øIëßü…Gú‰Å?ô*ÄàŠ¿üˆ}j‡üü_zøyŸìMÿEŠëÿ ={ÿ¨ÿQ8§þ…XüWÿ‘­PÿŸ‹ïAÿ3ý‰¿è±]á'¯òê'ÿЫÿ‚*ÿò!õªóñ}è?áæ±7ý+¯ü$õïþB£ýDâŸúb?ðE_þD>µCþ~/½ü<Ïö&ÿ¢Åuÿ„ž½ÿÈT¨œSÿB¬Gþ«ÿȇ֨ÏÅ÷ ÿ‡™þÄßôX®¿ð“׿ù õŠèUˆÿÁùúÕùø¾ôðó?Ø›þ‹×þz÷ÿ!Qþ¢qOý ±ø"¯ÿ"Z¡ÿ?ÞƒþgûÑbºÿÂO^ÿä*?ÔN)ÿ¡V#ÿUÿäCëT?çâûÐÃÌÿboú,W_øIëßü…Gú‰Å?ô*ÄàŠ¿üˆ}j‡üü_zøyŸìMÿEŠëÿ ={ÿ¨ÿQ8§þ…XüWÿ‘­PÿŸ‹ïAÿ3ý‰¿è±]á'¯òê'ÿЫÿ‚*ÿò!õªóñ}è?áæ±7ý+¯ü$õïþB£ýDâŸúb?ðE_þD>µCþ~/½ü<Ïö&ÿ¢Åuÿ„ž½ÿÈT¨œSÿB¬Gþ«ÿȇ֨ÏÅ÷ ÿ‡™þÄßôX®¿ð“׿ù õŠèUˆÿÁùúÕùø¾ôðó?Ø›þ‹×þz÷ÿ!Qþ¢qOý ±ø"¯ÿ"Z¡ÿ?ÞƒþgûÑbºÿÂO^ÿä*?ÔN)ÿ¡V#ÿUÿäCëT?çâûÐÃÌÿboú,W_øIëßü…Gú‰Å?ô*ÄàŠ¿üˆ}j‡üü_zøyŸìMÿEŠëÿ ={ÿ¨ÿQ8§þ…XüWÿ‘­PÿŸ‹ïAÿ3ý‰¿è±]á'¯òê'ÿЫÿ‚*ÿò!õªóñ}è?áæ±7ý+¯ü$õïþB£ýDâŸúb?ðE_þD>µCþ~/½ü<Ïö&ÿ¢Åuÿ„ž½ÿÈT¨œSÿB¬Gþ«ÿȇ֨ÏÅ÷ ÿ‡™þÄßôX®¿ð“׿ù õŠèUˆÿÁùúÕùø¾ôðó?Ø›þ‹×þz÷ÿ!Qþ¢qOý ±ø"¯ÿ"Z¡ÿ?ÞƒþgûÑbºÿÂO^ÿä*?ÔN)ÿ¡V#ÿUÿäCëT?çâûÐÃÌÿboú,W_øIëßü…Gú‰Å?ô*ÄàŠ¿üˆ}j‡üü_zøyŸìMÿEŠëÿ ={ÿ¨ÿQ8§þ…XüWÿ‘­PÿŸ‹ïAÿ3ý‰¿è±]á'¯òê'ÿЫÿ‚*ÿò!õªóñ}è?áæ±7ý+¯ü$õïþB£ýDâŸúb?ðE_þD>µCþ~/½ü<Ïö&ÿ¢Åuÿ„ž½ÿÈT¨œSÿB¬Gþ«ÿȇ֨ÏÅ÷ ÿ‡™þÄßôX®¿ð“׿ù õŠèUˆÿÁùúÕùø¾ôðó?Ø›þ‹×þz÷ÿ!Qþ¢qOý ±ø"¯ÿ"Z¡ÿ?ÞƒþgûÑbºÿÂO^ÿä*?ÔN)ÿ¡V#ÿUÿäCëT?çâûÐÃÌÿboú,W_øIëßü…Gú‰Å?ô*ÄàŠ¿üˆ}j‡üü_zøyŸìMÿEŠëÿ ={ÿ¨ÿQ8§þ…XüWÿ‘­PÿŸ‹ïAÿ3ý‰¿è±]á'¯òê'ÿЫÿ‚*ÿò!õªóñ}è?áæ±7ý+¯ü$õïþB£ýDâŸúb?ðE_þD>µCþ~/½ü<Ïö&ÿ¢Åuÿ„ž½ÿÈT¨œSÿB¬Gþ«ÿȇ֨ÏÅ÷ ÿ‡™þÄßôX®¿ð“׿ù õŠèUˆÿÁùúÕùø¾ôðó?Ø›þ‹×þz÷ÿ!Qþ¢qOý ±ø"¯ÿ"Z¡ÿ?ÞƒþgûÑbºÿÂO^ÿä*?ÔN)ÿ¡V#ÿUÿäCëT?çâûÐÃÌÿboú,W_øIëßü…Gú‰Å?ô*ÄàŠ¿üˆ}j‡üü_zøyŸìMÿEŠëÿ ={ÿ¨ÿQ8§þ…XüWÿ‘­PÿŸ‹ïAÿ3ý‰¿è±]á'¯òê'ÿЫÿ‚*ÿò!õªóñ}è?áæ±7ý+¯ü$õïþB£ýDâŸúb?ðE_þD>µCþ~/½ü<Ïö&ÿ¢Åuÿ„ž½ÿÈT¨œSÿB¬Gþ«ÿȇ֨ÏÅ÷ ÿ‡™þÄßôX®¿ð“׿ù õŠèUˆÿÁùúÕùø¾ôðó?Ø›þ‹×þz÷ÿ!Qþ¢qOý ±ø"¯ÿ"Z¡ÿ?ÞƒþgûÑbºÿÂO^ÿä*?ÔN)ÿ¡V#ÿUÿäCëT?çâûÐÃÌÿboú,W_øIëßü…Gú‰Å?ô*ÄàŠ¿üˆ}j‡üü_zøyŸìMÿEŠëÿ ={ÿ¨ÿQ8§þ…XüWÿ‘­PÿŸ‹ïAÿ3ý‰¿è±]á'¯òê'ÿЫÿ‚*ÿò!õªóñ}èŽ_ø)ÇìE 4³|fž8׫¿…5àâlë—ÂyþYBX¬n_Z•(Úò)Æ*í%y8¤®ÚJïVÒ*5éMòÆi¿TÁN?b)‘e‡ã4òFÝ<)¯gF„óü΄qX,¾µZR½¥ S”]›NÒQiÙ¦ž4¯J–SIú¢OøyŸìMÿEŠëÿ ={ÿ««ýDâŸúb?ðE_þDŸ­PÿŸ‹ïG]àÚ_àí©ø‰>øÊmutÞHɤßéÿgóä·ò±ö¨c߻ȗînÆÞq‘Ÿ+4ȳ\““ûO R‡=ù}¤%kZöæJöº½¶ºî\*§Á$ýÌ_ø'@ÇìðÐzj>"ÿÓî¡^Q¡öåP@P@P@Ü[ÛÝÛÏiwsZÌÊ¡ÒD#X A¤Ò’³Øºu'Jj¥6Ô“ºkFšÙ§Ñ£òŸö„ý›ïþ_Ýø·Â²\ø wÞñ¦]ô¦'î¿sNûp­Î |Fk”K 'Vн7øÀó?¨øÄJ\EJ9~c%ZVOeQ.«ûÝã×u¥ÒüZý¸çßá” 24ñhù‘«ÉŸ²ã#¨Ïjô8i4ª¿ðþ§ÈxÛ8ÊX¦®½­×kû=ÏdO€7ß¼ðÒÇÄ®fð6›go4:]µ„Bf>R®Ö¹‚Tn@|¼œää×2ÌVµW ^ûo[é¿oø'±> «Ä9v ž+Þ‹QQ\ß Vs¾¶WKÝ¿{½O`ø¯ð._‰~Ð~è^'¶ðß…4ß,}˜i†ñ˜D¡b Þrm »á³‘ÈÇ8à±ßW«*Ó4Ÿ·ß£=N%ág`)e¸zÊ[NNo‡HÙóFÖWïs?ÙŸÄÒ| _câ ÐÁs{ÿñ2|ñr#ÇÚ¾÷“¿?tíÇzéYŒ'ë^Ï__+vìx’àìTr?ì?­¯g}ýž¶æç·Ç¿6·í¥ºçÂ_YþÊßu¸|cñ ßPðdWËÑÒZѬäžU„ù„K.õgxFp¡$’A^³Ìj§Z^·Ûäƒ*Ë£ÁØ ÇˆR¤šwä峓K_zWMµÚß— mðƒÂ1ý³ãøƒ ßZ_é:>“±ª%£,±ÅªÐÛ©eà3" ±œæ,Ÿ¼3Ô±§‚örVmÙzuÿ#ÀžQ†Æq?×(ÉJ0Š”­ªSÕGæÒæù_©ôÏÅÿ†ÇŒµOøËÃ^8¸ð߈ü.—ÑÁ"Y%ä7Q],BD–6eÈÄ ŒŒç¨sЬ©ÆP”n¼¶=¬×-©‹­KB³§:|ÖÑ4Ô­tÖÙ.OüAð—Å‹_ŸÄw:eµ°´Òôí!4È8¤y#Ï›#:ïfcÈ'v2uÇìéºt£kùÜùÚü4ñxÈã1ÕùÜmd£Ê´w]_R×íûjß´/Œ­|M}ñR O±¶[K:=í pϾ_´¦òd.Ãå\œdé…Ŭ<9Toóÿ€qçœ=<Úº­*Ü©+%ËÇ™__#©ø“û,ißü/áÛ_xµí¾ hQ7‘â&ÀB¾y‹+Z™äùTædÀ ¡ˆö2|«GМÏ&Y(*Óýä~ÒVü.ÿ3â?ø(w‡->;dì…XÀŽäI!‘‹1l«µTžüO›•Y'Ä”êSt½­NykÑ.Ý5Üý7ñ7Á/þÒ_²÷|­ ÚN™wc«ZªÜ K¨­ÕÈ0Ò#.Aù Œ×<&éTlõëáaŽÁ›vÑYùØñÙ`oˆ^(ø%¢|ñwíÃ: è»Ñíì¼8†;rZRÆbfY&?¾ Þ‡ùvî«®neÊžWQÐT'WE¶ŸðOª¾~Í|9ø%©|ñ¼mðúk{‹8-×F:d‘Cq,Òβ8¸”»›*ÃaM£<Ïš\ËFð¾Æ—±›æ^–ýN_àìñà,ž/ð·ÁŸÚ2}#Àz¬©|tÍoÂÖú¥Å¤Ž7ÅpfCíFZ&S€JõÍÊjZ´sQÃN2§;/KŸj|%øká?>²ð~ƒsysoóÞ]êZ”¢[½Vög2Mq3€HîÄœÀ*%Q/zFôp®v¥Oúóe­ORŸT¹3Ìpƒ„ŒWææîϤÃa¡†‡,wêû™Õ@P@x·í%ÿ&ëñóþÄ­sÿHf«¥üHú£“þëWü2ü™üÈWúÚ?…P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@ax—þ@—¿ðý kò¯ä„Ì?îþž¦we¿ïPùþL<5ÿ K/øþ†Ôx%ÿ$&_ÿqôõ@̿ާòü‘»_ªœ'ëçügÚ¿´Nèiÿ£&¯å_¤×üÊ?î?þá=Ì›þ^|¿SôÇþ Óÿ&ƒð×þÂ>"ÿÓî¡_ÊǸ}·@P@P@P@M 70ËoqKo*”’)2º‘‚<GjM&¬Ê„åNJpvkTÖé÷GæçÇØÀþ¥ãøú†¥?Ïw¤êz}¼Ò>‘+©8#cÀSŒ-|þ3,¯Ms`¦Òþ[´¾_ä~½Ã|q•cf¨ñFI»%YÓŒ¤ì¬½¥ÓnËNeåu»>HÓü1oàØÿá¶ðüzV Éý•¨´[f,Y‡” K1'ޤžõóG7íoÍÖûþ'î˜8`ᆂËÔUãÉe=tåÓWw§S¤¶íMPÞ¶þÕ5 ½+LÖì.4­kMµ¿Ó.Ym/aY¢” Œ<€y«hIÁÞ.Ìóq4i׃§V*Q{¦®ŸÉš>𿆼'dtß x{LÑ´æs!µÒ­#µŒ¹ÆXª3Àæ¶u%QÞnïÌóiáha!ìðôÔ#Ú)%÷#YÿdßFÿÐMR9êéƒþ%š7ýz¯ó5ª8j¿jÕ5<-÷¦ÿ®cÿGOZÄà¨7Xø=ð“ź¤úøCZÖî‰u WC´ºžP *†’D,p “ÀWD*N*ɳÈÄ`ðõdçRœ[îÒlôÏ øwÃþÒlô hZ~ Úîò4Ý*Ö;X!ÜÅÛdh®Y™Ž%‰êjîäîÎwN£É’]ˆíí»Vˆã¨o[Ž˜­QÁP­¥ø¿B_x‹Ãö×ñO¯XXXÜÜÙFrÐG4—K1è74 uù(©.D›' Kë”böµÿå(?kÝ:óUñÇü$¾ó4ÝZŸE?ðˆ^¾½yfé­Ç£Æ5 $…Ö[‰&IíàC;Í WrÑ“9Ó”¬ïút¾‡] e:<ÑåÑ;hùŸÅËï++7ºZÝ^ÛkÕÁûGøI£¸ûw†|Gavþdu¥ÌVŒúÍìWöúeÍœ;‡D–JîÚÍžvŠy|Èä’i×?dûÿ[þGRÇC¬Zí¶®ê--wRikeÕ6µ ßÚ_áÖ™¬xÃÂÚŒz•¿Œü/¢Å­jžan÷jÉnϬ²˜¢ò…õ™’âIÐ ™…Ã%½Ó@{)4ŸGý]xúQ” ïÍv´òó¶—Wmò뾎Ã~Ò^[¨¬F›©=ìÚ.¬[[Åu¦È÷¯5µ½¥µº­Ñ3ù“^[Ä/"ݧ‡fSv r=“þ¿¯Ã úõ;ÚÏdúk{$–ºÝ´®½ßïns"ý©´èZWƒ<­k/iô«i­5&[ .kÍf}ã¼¾A2£Á}k4L°¤ÆN6%–X©QêÞŸð.g<Á/vœ–›è•äã«×f­¥ïÒêímXüvÖçø¡¦|;¼ð-µ½µ×ˆntFÔ›R¹†dŒYêV· iqg’$ƒJºV‘I¶ÉO"âè¬ët×/5ÿ¯éÿñ’u•'­^ï³iÙ¥¿+òìå­ºÚKþM×ãçý‰ZçþÍSKø‘õF˜ï÷Z¿á—äÏæûþçÄú&ž2ÿÂvÿÿW÷çüLŸ…?ô>£÷Oÿ?šÖ ›þƒèàê_ü˜¼øÿDÓÆ_øNßÿñª?âdü)ÿ¡õºü€¬7ýÐÿÁÔ¿ù2ÎðÃ➯§ØêÚOŸ^éW°¥Åµå§†µ b¸‰Ô2I¬$2²CA]³ú@ømNNÎ šÑ§ ·O³÷F¦# JnJôÔ“³N¤MnšæÜ¹ÿ ãý¿ˆøJê_üf§þ&ÃOúÃÿ«ÿÈõÌ'ýSÿÁÿäƒþÿÆ?ú#?ð•Ô¿øÍñ0žÐæø _þ@>¹„ÿ Šø2üŸøÇÿDoâþº—ÿ£þ&ÃOúÃÿ«ÿÈ×0ŸôOÿCÿ’øSÿÿèü@ÿÂWRÿã4ÄÂxiÿC˜à5ùúæþ‚)ÿàÈòAÿ ãý¿ˆøJê_üfø˜O ?èsü¯ÿ \ÂÐE?üþH?áOücÿ¢7ñÿ ]KÿŒÑÿ á§ýaÿ€Õÿäë˜Oú§ÿƒ!ÿÉü)ÿŒôFþ á+©ñš?âa<4ÿ¡Ì?ð¿ü€}s ÿAÿðd?ù ÿ…?ñþˆßÄü%u/þ3GüL'†Ÿô9‡þWÿ®a?è"Ÿþ ‡ÿ$ð§þ1ÿÑøÿ„®¥ÿÆhÿ‰„ðÓþ‡0ÿÀjÿòõÌ'ýSÿÁÿäƒþÿÆ?ú#?ð•Ô¿øÍñ0žÐæø _þ@>¹„ÿ Šø2üŸøÇÿDoâþº—ÿ£þ&ÃOúÃÿ«ÿÈ×0ŸôOÿCÿ’øSÿÿèü@ÿÂWRÿã4ÄÂxiÿC˜à5ùúæþ‚)ÿàÈòEKÏ…ßt袟PøQã›Xežd’ãÃ:„jóK"Å`˜yw‘Ñz³:¨É UÃéáµYrÃ7ƒ~PªöÕÿ˾‹Ré×ÃÖ—%:ÔäõvU ÞŠïítJïÈÕÿ…!ñÃþˆÄü$uOþ1WÿóßúGÿ«ÿÊÍ9©ÿÏØàpÿäƒþ‡Çú!ÿÿð‘Õ?øÅñ<9ÿ¡´ð ¿ü¬9©ÿÏØàpÿäƒþ‡Çú!ÿÿð‘Õ?øÅñ<9ÿ¡´ð ¿ü¬9©ÿÏØàpÿäƒþ‡Çú!ÿÿð‘Õ?øÅñ<9ÿ¡´ð ¿ü¬9©ÿÏØàpÿäƒþ‡Çú!ÿÿð‘Õ?øÅñ<9ÿ¡´ð ¿ü¬9©ÿÏØàpÿäƒþ‡Çú!ÿÿð‘Õ?øÅñ<9ÿ¡´ð ¿ü¬9©ÿÏØàpÿäƒþ‡Çú!ÿÿð‘Õ?øÅñ<9ÿ¡´ð ¿ü¬9©ÿÏØàpÿäƒþ‡Çú!ÿÿð‘Õ?øÅñ<9ÿ¡´ð ¿ü¬9©ÿÏØàpÿäƒþ‡Çú!ÿÿð‘Õ?øÅñ<9ÿ¡´ð ¿ü¬9©ÿÏØàpÿäƒþ‡Çú!ÿÿð‘Õ?øÅñ<9ÿ¡´ð ¿ü¬9©ÿÏØàpÿäƒþ‡Çú!ÿÿð‘Õ?øÅñ<9ÿ¡´ð ¿ü¬9©ÿÏØàpÿäƒþ‡Çú!ÿÿð‘Õ?øÅñ<9ÿ¡´ð ¿ü¬9©ÿÏØàpÿäƒþ‡Çú!ÿÿð‘Õ?øÅñ<9ÿ¡´ð ¿ü¬9©ÿÏØàpÿäŒmGáŸÅ "òÏNÕ¾xÚËP»ŠYíínü7¨E$ñÆcY¢• Ñ#€dLãpÎUþ~a¡íkgŒok¸UJîí+¸nìôò}Œ1¼.Ÿ¶Äb)ÂJò©®îÒ»•®Òm/'؇þçÄú&ž2ÿÂvÿÿWüLŸ…?ô>£÷Oÿ8?Ö ›þƒèàê_ü˜¼øÿDÓÆ_øNßÿñª?âdü)ÿ¡õºü€¬7ýÐÿÁÔ¿ù0ÿ…yñþ‰§Œ¿ð¿ÿãTÄÉøSÿCê?tÿùÿX2oú¡ÿƒ©òaÿ óâ?ýOá;ÿƨÿ‰“ð§þ‡Ô~éÿòþ°dßôCÿRÿäÃþçÄú&ž2ÿÂvÿÿQÿ'áOý¨ýÓÿäý`É¿è>‡þ¥ÿɇü+ψÿôM£÷Oÿõƒ&ÿ úø:—ÿ&ð¯>#ÿÑ4ñ—þ·ÿüjø™? è}GîŸÿ ëMÿAô?ðu/þL?á^|Gÿ¢iã/ü'oÿøÕñ2~ÿÐúÝ?þ@?Ö ›þƒèàê_ü˜¼øÿDÓÆ_øNßÿñª?âdü)ÿ¡õºü€¬7ýÐÿÁÔ¿ù0ÿ…yñþ‰§Œ¿ð¿ÿãTÄÉøSÿCê?tÿùÿX2oú¡ÿƒ©òaÿ óâ?ýOá;ÿƨÿ‰“ð§þ‡Ô~éÿòþ°dßôCÿRÿäÃþçÄú&ž2ÿÂvÿÿQÿ'áOý¨ýÓÿäý`É¿è>‡þ¥ÿÉ’iÿ þ&jÍ|ºWÂÿÞµ”ÂÞäZxrþSo)DG&ØŽÖòäöœ®§¡º£ô…ðÎpHç4Üeª|µlÕÚº|šêšõMt;¡ÁΜjÇMÆJ骳Iµtù¬ÕÓZuMnøSÿÿèü@ÿÂWRÿã4ÿâa<4ÿ¡Ì?ð¿ü€þ¹„ÿ Šø2üŸøÇÿDoâþº—ÿ£þ&ÃOúÃÿ«ÿÈ×0ŸôOÿCÿ’øSÿÿèü@ÿÂWRÿã4ÄÂxiÿC˜à5ùúæþ‚)ÿàÈòAÿ ãý¿ˆøJê_üfø˜O ?èsü¯ÿ \ÂÐE?üþH?áOücÿ¢7ñÿ ]KÿŒÑÿ á§ýaÿ€Õÿäë˜Oú§ÿƒ!ÿÉü)ÿŒôFþ á+©ñš?âa<4ÿ¡Ì?ð¿ü€}s ÿAÿðd?ù ÿ…?ñþˆßÄü%u/þ3GüL'†Ÿô9‡þWÿ®a?è"Ÿþ ‡ÿ$ð§þ1ÿÑøÿ„®¥ÿÆhÿ‰„ðÓþ‡0ÿÀjÿòõÌ'ýSÿÁÿäƒþÿÆ?ú#?ð•Ô¿øÍñ0žÐæø _þ@>¹„ÿ Šø2üŸøÇÿDoâþº—ÿ£þ&ÃOúÃÿ«ÿÈ×0ŸôOÿCÿ’øSÿÿèü@ÿÂWRÿã4ÄÂxiÿC˜à5ùúæþ‚)ÿàÈòAÿ ãý¿ˆøJê_üfø˜O ?èsü¯ÿ \ÂÐE?üþH?áOücÿ¢7ñÿ ]KÿŒÑÿ á§ýaÿ€Õÿäë˜Oú§ÿƒ!ÿÉ Ó~ü_Ö´í?XÑþxúûH¾.mo¬ü-©M Ì.¡’HÝa*ÈÊA Eo/¼;ƒq–k×ý;«ÿÊΉ¨BN2©Ö9ÇüË¿ð¤>8Ñøÿ„Ž©ÿÆ)Ä|ðçþ†ÑÿÀ*ÿò±sSÿŸ°ÿÀáÿÉü)ŽôCþ#ÿá#ªñŠ?â>xsÿChÿàùXsSÿŸ°ÿÀáÿÉü)ŽôCþ#ÿá#ªñŠ?â>xsÿChÿàùXsSÿŸ°ÿÀáÿÉü)ŽôCþ#ÿá#ªñŠ?â>xsÿChÿàùXsSÿŸ°ÿÀáÿÉü)ŽôCþ#ÿá#ªñŠ?â>xsÿChÿàùXsSÿŸ°ÿÀáÿÉü)ŽôCþ#ÿá#ªñŠ?â>xsÿChÿàùXsSÿŸ°ÿÀáÿÉü)ŽôCþ#ÿá#ªñŠ?â>xsÿChÿàùXsSÿŸ°ÿÀáÿÉü)ŽôCþ#ÿá#ªñŠ?â>xsÿChÿàùXsSÿŸ°ÿÀáÿÉü)ŽôCþ#ÿá#ªñŠ?â>xsÿChÿàùXsSÿŸ°ÿÀáÿÉü)ŽôCþ#ÿá#ªñŠ?â>xsÿChÿàùXsSÿŸ°ÿÀáÿÉü)ŽôCþ#ÿá#ªñŠ?â>xsÿChÿàùXsSÿŸ°ÿÀáÿÉü)ŽôCþ#ÿá#ªñŠ?â>xsÿChÿàùXsSÿŸ°ÿÀáÿÉú—À?ŽZªiú_œûn€ ( € ( € ( € (Ï|uð·Á?mü¯hÑÉv«¶-BÝÜCþ샨ÿe²=«“‚£‹V«{õ=ü‰ó>Ÿ6«Q{Åëê¿Ugæ|qãÙCÅZ3ËuàÝB-jÀr-§" •œüõÊŸjð1ZzÑ|Ëîä~¿”x§€Æ%O2ƒ¥>ëÞÿ$¾çêx¡ k~ºû½¤]é÷c?º¼…¢'Üdr=ÇåÊ”é>Z‰§æ}Ý ~0‡µÂÕŒãÞ-?ȱmÚš3¨oÛv­bpÔ¬ÿÈ2_£è-Z#‚¡B ¥²Ð´»™˜%ª|«Õ‰büÈ­QÁPétÖ»–Þ)î­ ¹“î©}Ù­QÃP<-Öoúæ?ôtõ¬N‡¢[絉ÁPÝ· “€:“Z£‚£¶¬ŽçÅz6œ¤>aÿ,íþoÌôýkªg.–<,Vg‡£uÍÌüµÿ€qZ·ŽumAZCö;cÁ‡»†+®cõ>{™U¯¤}Õýu8ƒÄŸŽ‰9'¾äÿ׿½\Øß³óýc†¿å÷ý»úžãÿ ïÁߨ_ðcÿÄ—ûkþ/³}¢oùhÿjyÛ·nÿßÞìÎÏáÛ³å®.g{ÿ]¥öùy-¥ïó¿7ç¯üãà×Ãk«¯^Ïá½×Îã)ûeÈnÓ%ÃËb¢LXÊ÷1ÅròÚˆî"Žvc*+‡í%¦¤<-&Ûqß××NÎúÝ[]w ~ø*O·´Oâ;Io¬ ±»ŸNñN¯g-Ø‡É <²Er­%ÞËxck¶&áâAHÑåIÎÿ¤á©ë¾ªÚJKkk£ßE®öÒö ~ |6›íêþýÔöPiÐ@·—+‘o’bM61&Ý;kÛZÈ  „ù¶ÐÉŸ2$e=¤»ÿ^}þ`ð´ýޖ륭·òì¶¶©=Ò1u€¾¾Ð¯tê^½¹þÈ'ZÒ®×aôÝFMNÚV7K2K)¼šye–Tw™§s#9 †ªI;½àèD°tÜ\cu¶«uó-ï­îÛ{ßRì¿ü*Þ8ð÷`Ôu¨µ}/T¹ÕäŠkÓx·óÉmsmI%À’híàKëÓ ´Ems#Îê=£³‰O hª¦î›{Þú5ÖîÊîÉ4•Þ…/ÚKþM×ãçý‰ZçþÍE/âGÕŽÿu«þ~LùÒ¿ŽOòh(Ò?g¯ù _¿ìOÑ¿ôŠý§8ÿ‘Ž'üsÿÒ™ýŸÈ×ÿ_'ÿ¥3Ø+Î< € ( € ( € ò¯Œ_ò,øcþÇ_êC§W¯‘ÿ¾/ðÔÿÓr=Þÿ‘‚ÿ_ý53êšõl( € ( € ( € øÛö‡ÿ’ÅðsþÅŸéV‡_3Æ¿ò$ÿ¸ÔÿôЧÇx‰ÿ$çýÇ¥ÿ¦ëœe~@~ P@P@P@o~ÏßñûñËþÇ¿ôɤWêxùàÁ/ý=Tý¯+ÿ‘[ÿ^çÿ©¢«Sp € ( € ( € ('ökÿ“tøÿbV‡ÿ¤0WÜæïu¿Å/ÍŸ£æŸïÕÿÇ/ý)žÕ\gP@P@P@yWÆùø'þÊ‚?õ&Òë×È¿äaOçÿ¤³Ýá¯ùQÿ·¿ô–~p|ÿ‘Zúðð·þ¢Z ~ÅÿïküXŸýMÅøíÿ%úñý9T÷Šù3ñcèŸÙ×Úž>' Ð&?ù:ý¿Á¿ùÿ¸_ûþŽú?ÌÏþàÿîSп౼_²ÃTq†þÐñÇ×\Ô ~âGŸlÐ@P@P@P@|Qû\~о$ø#¤X\xE–ò[‡ØYžçùÎßðQ‹œãÃÌ:ÿõ  —ßðP‰Ú•´–š„¡»µl–†â1r¤S(ÆjÒWF´kÕÃMT£7.©´þôyž¥ûUjz‹É(øx–²œÖ[â‚ýßÒ¸ç—a§¯-½¤Ãqžu‡\¾ÝÉy'øïøœìŸ´§‹T·Ù´‹´8&þÞÀVO*£Ñž‚ãÜÅüqOÒëüÌþÔž<µÒ§ì·Ú22c#øÒþ˦ºƒãœ\·‰ÎÙþÖ~:}#DߣîíP€PžäÔUg@Éñž%ý“[þâ#”/¦€ÊªY|;˜Ë‹±ìœ>‹ûl|A Ál.býÖÑ ióûûób6ÇOlóéV°0]L'Å8™mhj?¶ÅKؼ»=[Ä:kcýmž•7þEµqúV‘ÂSG^ ÆÔÚIz/ó¹ÊÏûV|`¹âãâ'Žœu´« ~_Ùõ´a|(òëb«b?‹6þe_øiÿŠ¿ô=øÛÿü¯«0øiÿŠ¿ô=øÛÿü¯  7íMñkAñgˆu­7Çþ/·¾Ô4ëYç]&Á¤• –í£VV° *›‰  ’í’Øp¯*1·¶iv»±¥<ÒYmùj¨sw¶¶õõ;?ømOŽ£þjðI¦òº¹ý¦ ùãÿÁ5ÿZ'ÿA1ûàöÔøëÏü]ñÿPM3ÿ•Ô{LóÇÿÿ‚ëDÿè&?|þSã¯ýÿà“LÿåmÓüñÿÀ¿à‡úÑ?ú ßÿ†ÔøëÿEGÆ¿ø$Ó?ù]G´Á<ð/ø!þ´Oþ‚c÷À?áµ>:ÿÑQñ¯þ 4ÏþWQí0_Ïü þ­ÿ ˜ýðømOާñt|kÿ‚M3ÿ•Ô{LóÇÿÿ‚ëDÿè&?|gÆ¿µ×Æoø7žÕ>#øºçLÕtË«+›k#NŽ9¢–&GGe°VU*Ĭ¤Áš¨Oä¹gô×þ¥Äs®'ˆ‹æÒ׎·ÒÇR?jˆ_ô*êßø,¹ÿâ+òø…ôû~+üÏçøƒ4{?½˜ŸðÔ?¿èUÕ¿ðYsÿÄQÿ¾ŸoŘģÛñ_æt>ý®¾"xCÀÞ ð’xWV ¢i6špΗtx†$ŒtOökì1\+Ez•¿šMýîçÞãx*¼UZïíÉ˧VÙÕÿÃnüFçþ)]W¿üÂî¿øÝsÿ©ðþ¬rÿ¨Pþ¬ðÛŸ†â–Õ{ÿÌ.ëÿÑþ§Ãú°ÿÔ(Vûn|FçÕxÿ¨]×ÿ£ýO‡õ`ÿP¡ýXí¹ñþ…]WÓþAw_ünõ>Õ…þ¡Cú°Ûsâ7OøEµ_üÝz×:?ÔøVõ Õ€~ÛŸ¸ÿŠ[UÿÁ]×ÿ£ýO‡õaÿ¨Pþ¬ðÛŸŽ?â–Õ{Ì.ëÿÑþ§Ãú°¨Pþ¬ðÛ¿°?â•Õ{Ì.ëÿÑþ§Ãú°¿Ô(Vûn|Fÿ¡[UÿÁ]×ÿ£ýO‡õaÿ¨Pþ¬ðÛŸ¿èVÕðWuÿÆèÿSáýX?Ô(VûnüFÿ¡WUÿÁ]×ÿ§þ§Ãú°¨Pþ¬ðÛ¿¹ÿŠWUïÿ0»¯þ7KýO‡õa¨Pþ¬s-ý¯¾"xNÓ¬›ÂÚ®-µ+SÒî‡6—ö÷Cø=`®¬ Ç [Ú.Ò_|ZýNÜ¿ƒ!ƒ®ª®Ò]>Ô\SÓOíõñ''þ)}WŒÿÌ*ïÿ×Wú¿·ýVˆÛïâOý ú§§ü‚®ý?ëêüCýVˆÛëâOOøEõ_ü]ú×:?Õø‡ú­·×Äžü"ú¯þ ®ÿøÝêüCýVˆÃ}|I8ÿŠ_Uíÿ0«¿þ7Gú¿ÿU¢ðßp?â—Õ;Ì*ïÿÑþ¯Ä?Õh€ý¾¾$ÿЯªÿàªïÿÑþ¯Ä?Õh‡ü7×ÄŸúõ_ü]úÿ×:?Õø‡ú¯?·ßÄŸúõ_ü]ÿñº?Õø‡ú­ÿ†ûø“ƒÿ¾«ßþaWünõ~!þ«D?á¾¾$ŒÿÅ/ª÷ÿ˜Ußÿ£ý_ˆªÑû}|IÉÿŠ_Uã?ó »ÿãt«ñõZ o¿‰?ô+ꞟò »ôÿ®t«ñõZ'’øóö³ø‰ãxKÄrx[V/¤iڈƗt8¹’ÉÏTÿ§A^nqÂ1Ìð_UÏt褿öãÈϸÆ_õ7üñŸO³¯ý¸ÇµÄ/úuoü\ÿñò¿ñ évüWùŸÿjg÷¯óøjˆGñJêÝ¿æsÿÄQÿ¾ŸoŘģÛñ_æ/ü5Ä/úunßó ¹ÿâ)Ä/§ý5þaÿfg÷¯óûPüBÿ¡WVÿÁeÏÿOþ!}>ߊÿ0ÿˆ3G³û×ù‰ÿ Cñ þ…][ÿ—?üEñ éöüWù‡üAª=¿þ`jˆ_ô*êßø,¹ÿâ(ÿˆ_OúküÃþ ÍÏï_æ/ü5Ä.â•Õ»ÿÌ2çÿˆ£þ!}>ߊÿ0ÿˆ3G·â¿ÌOøjˆC?ñJêßø,¹ÿâ(ÿˆ_K·â¿Ì?â ÑìþõþbŸÚ‡âOüRº·õ ¹ÿâ(ÿˆ_O·â¿Ì?â Ñìþõþ`jˆ_ô*êßø,¹ÿâ)Ä/§Ûñ_æñhözÿ0µÄ.ü"º·þ .øŠñ éöüWù‡üAš=¿þbÚ‡âý º·þ .øŠ?âÒíø¯óøƒT{?½˜ÃPüB8ÿŠWVíÿ0ËŸþ"ø…ôû~+üÃþ Íߊÿ2÷jψ~›Ær§…uoøêɨœé—G‘gkmÙ=-…}5 …-?üûMtë9Kÿn>à Àè`°øUÿ.¢ãÓ¬ç?ý¸ï‡í¹ñþ…mWÿw_ün«ýO‡õcOõ Õƒþsâ7ý Ú¯þ î¿øÝê|?«ú…êÀm߈ßô*ê¿ø+ºÿãtÿÔøVõ Õƒþwâ7?ñJê½ÿæuÿÆé©ðþ¬/õ Õƒþsâ0ÏüRÚ¯ù…Ýñº?ÔøVú…êÀmψÜãÂÚ¯õ ºÿãt©ðþ¬ê?«ý·>#ЫªúÈ.ëÿÑþ§Ãú°¿Ô(Vûn|Féÿ¶«ÿ‚»¯OúçGúŸêÁþ¡Cú°Ûsâ7ñKj¿ø+ºÿãt©ðþ¬?õ Õƒþsâ1ÇüRÚ¯où…Ýñº?ÔøVõ Õƒþwâ6üRº¯où…Ýñº?ÔøVú…êÀ?mψßô+j¿ø+ºÿãt©ðþ¬?õ Õƒþsâ7ý Ú¯þ î¿øÝê|?«ú…êÅ_‡¿¶¯ÄoøÀÞ ÂÚ¨AÑìôÅKº'B‘DìW³_#UªÎ§vßÞÏÃq¯Zu™·÷»‡ü7ßÄœø¥õ^ÿó »ÿãu—ú¿õZ!ÿ õñ$gþ)}W¿ü®ÿøÝêüCýVˆÛëâNOüRú¯ÿ˜Ußÿ£ý_ˆªÑû}üIÿ¡_TôÿUß§ýs£ý_ˆªÑû}|Iéÿ¾«ÿ‚«¿OúçGú¿ÿU¢öúø“Áÿ„_UÿÁUßÿ£ý_ˆªÑøo¯‰'ñK꽿æwÿÆèÿWâê´CþïâNüRú§où…]ÿñº?Õø‡ú­·×ÄŸúõ_ü]ÿñº?Õø‡ú­ÿ†úø“ÿB¾«ÿ‚«¿_úçGú¿ÿUâöûø“ÿB¾«ÿ‚«¿þ7Gú¿ÿU¢ðßpâ—Õ{ÿÌ*ïÿÑþ¯Ä?Õhœß‰ÿm‰>'¶Ñ,?áÔ÷ZëÚ6ª»´Û”¬µk±–d ÛŽ¦º°Y:Â×eÒÿŠhìËòà±0®º_ñM>xã·ü#¦½„~ÕÀ0i±`é·'þ=t»+Ñ=,Å|nkáý<ƪ¨ûÔ{¯·Z­_ýÈ|¯øOгc$¾(îºJRÿÛŽØþÔ?¿èUÕ¿ðYsÿÄW•ÿ¾ŸoÅ™òñhözÿ3Ò>~Øÿ<3y¯I‡.ÐÞiïlÂêÒXr¤©8Þ£=qê=kìøK…ãÃ~ß—þ^rÿä¼ßæ~À¼úÏ'ü½äíöy»ˆég_ÛwâWÄ~ðn£´ë+BD©93_\Nß“HGá_f~€}áø(oÅKíoMµºðÌ’C4¨Œ±¡Î Å~Óø/\ŸÄ~Òõ{ˆ S\D®ÈÃ(ª € ( € ( € ( SÅ ðߌmůˆ4Ènâ¨y±ýœ~œçÂV_÷èPÿ áðþ…/ûô(?áœ>óÿ•—ýúÙÃáÿ™JËþý ùãö¢ø ðÃEøI­_éþ´†åÄ:F¶œÿ0(`|“á„~Ÿá'À»ù4+f¹½ð¥ÄÎPeÜË8$þP€Ðÿ…Aà,çûÛþýŠù ö]ø{á]jãÄcQÒ¡”G¦Dë¹AÁþÞñú 1ø ¯áPx þ€6ß÷À | ðÿ˜ ·ýð(ÿ…?à/úÛ߀ðƒÀGþ`6ß÷ìPˆ]ü1ðjübñ†ž4h>ˆtI•6 {­X1üDiùWãž-cñ¨û ZþÒÿ/gþgà>9f˜¬·û;êÓqæö·ù{+~gQÿ «Á?ô·ÿ¾~7ý¿ÿŸŒüýhÌÿçëûÃþW‚è oÿ| ?·ñÿóñ‡úÑ™ÿÏ×÷‡ü*¿ÿÐßþøoãÿçãõ£3ÿŸ¯ïøU~ ó·ÿ¾ÛøÿùøÃýhÌÿçëûÃþW‚è oÿ| ?·ñÿóñ‡úÑ™ÿÏ×÷‡ü*¯ÿÐßþøoãÿçãõ£3ÿŸ¯ï<÷âçÃ_X|(ø}m¤@—6þÔeÂU–ÚBæ+ÙáÜïW8ÁSFÓ«M?G4{ü'Äy|ÿ/¥:­ÆU©'èçÏÈßì]/þ|aÿ¾¸¿ñ øSþ…Ô¿ð\?Èþ¯úíçxbéóãýð(ÿˆgŸô.¥ÿ‚áþAõÚÿÎþóú·ý˜þ|.Öf¿ÙëWÔý­¿gÿ„éñgàŽ/ƒ4»6çþ(¹’ÞæÕ%C,W:£m`FBÍ ý£ë_UÂ:8Ütéׂ’PnÍ_^hÿ™…y8Æèðÿøf¯ÿôLü9ÿ‚È?øšýû.ÿŸÿÀQÉígÜ?áš¾ÿÑ3ðçþ ÿâhþÀË¿çÄðÖ}Ãþ«àý?à²þ&ì »þ|GÿAígÜ?áš¾ÿÑ3ðçþ ÿâhþÀË¿çÄðÖ}Ãþ§àý?à²þ&ì »þ|GÿAígÜ?áš¾ÿÑ3ðçþ ÿâhþÀË¿çÄðÖ}Ãþ«àý?à²þ&ì »þ|GÿAígÜ?áš~ÿÑ3ðçþ ÿâhþÀË¿çÄðÖ}Ãþ«àý?à²þ&ì »þ|GÿAígÜ?áš¾ÿÑ3ðçþ ÿâhþÀË¿çÄðÖ}Ãþ«àý?à²þ&ì »þ|GÿAígÜ?áš¾ÿÑ3ðçþ ÿâhþÀË¿çÄðÖ}Ãþ«àý?à²þ&ì »þ|GÿAígÜú{ö2øðªóIøéhþÓ£´Ó¼p-­ †Ý!Œèz<¤*€ Ë#}Xšü¯‰0ôð¹ZTb£Ëd´_ guåÙöWü3‡Â<çþ+/ûô+Ã4û8|#ÿ¡JËþý _øg„ô(Ùߥ ³‡Â1ÿ2•—ýúÃ8|#ÿ¡JËþý ìáðŒÿÌ¥eÿ~…/ü3‡Â?úl¿ïРÿ†pøGÏüRV_÷èPg„gþe+/ûô(áœ~ÿÐ¥eÿ~…~/Á\~x'Á7ÿ³¬^Ðí­Rú´á#y´½¤ý<ÆüëöŸ²,¿ˆ8о2£´Õ I)%%uR’½õ³jþg™Õ**Pvwýøïý‹¥ÿÏŒ?÷À¯êïø†|)ÿBê_ø.äx_]¯üïïì]/þ|aÿ¾ñ øSþ…Ô¿ð\?È>»_ùßÞغ_üøÃÿ| ?âð§ý ©à¸}v¿ó¿¼?±t¿ùñ‡þøÄ3áOúRÿÁpÿ úíçxbéóãýð(ÿˆgŸô.¥ÿ‚áþAõÚÿÎþðþÅÒÿçÆûàQÿÏ…?è]KÿÃüƒëµÿýáý‹¥ÿÏŒ?÷À£þ!Ÿ к—þ ‡ù×kÿ;ûÃûKÿŸïGüC>ÿ¡u/üò®×þw÷‡ö.—ÿ>0ÿßø†|)ÿBê_ø.ä]¯üïïì]/þ|aÿ¾ñ øSþ…Ô¿ð\?È>»_ùßÞغ_üøÃÿ| ?âð§ý ©à¸}v¿ó¿¼?±t¿ùñ‡þøÄ3áOúRÿÁpÿ úíçxbéóãýð(ÿˆgŸô.¥ÿ‚áþAõÚÿÎþó÷»þ GðÀ3øñ Qñ‡ín®­üsumÉ;cnšàmÎÇñ¯âïrÌ&OÆÜš§JÎÑŠI+ҦݒÓVÛõgÑà'*˜xÊNï_ÍŸ§CöpøF?æR²ÿ¿B¿9:Ϙl?€? 4¿€úµÍ¯…,CÉâ/ Ú¸hT‡ŠmNŠE ðC$Œ¤ šîË)Æ®:…9«§8¦¼œ‘3v‹gÆ¿ðÍ_ÿè™øsÿñ5ûö]ÿ>#ÿ€£Ïö³îðÍ_ÿè™øsÿñ4`eßóâ?ø k>áÿ Õð?þ‰Ÿ‡?ðYÿGö]ÿ>#ÿ€ ö³îðÍ_ÿè™øsÿñ4`eßóâ?ø k>áÿ Õð?þ‰Ÿ‡?ðYÿGö]ÿ>#ÿ€ ö³îðÍ_ÿè™øsÿñ4`eßóâ?ø k>áÿ Õð?þ‰Ÿ‡?ðYÿGö]ÿ>#ÿ€ ö³îðÍ?ÿè™øsÿñ4`eßóâ?ø k>áÿ Õð?þ‰Ÿ‡?ðYÿGö]ÿ>#ÿ€ ö³îðÍ_ÿè™øsÿñ4`eßóâ?ø k>áÿ Óð?þ‰Ÿ‡?ðYÿGö]ÿ>#ÿ€ ö³îðÍ_ÿè™øsÿñ4`eßóâ?ø k>áÿ Õð?þ‰Ÿ‡?ðYÿGö]ÿ>#ÿ€ ö³îzì÷û?ü$·ý¥4 "ÏÁE­…×üAs4V¶‘Ä%’+ý P¶Ð3´M&3Óqõ¯‡ã<õ«ÁG›šöImËþgNNW»?IOìáðŒÿÌ¥eÿ~…|9Ò/ü3Â?ú¬¿ïР³‡Â1ÿ2•—ýúÃ8|#Îá²ÿ¿B€û8|#ÿ¡JËþý _øg„ô(Ùߥ ³‡Â1ÿ2•—ýúÃ8|#ÿ¡JËþý ìáðŒÿÌ¥eÿ~…/ü3‡Â?úl¿ïРÿ†pøGÏüRV_÷èPó-û}x/Þý°~6hzV—:mœÚRà  ÂÒ,ãþìþ®ð+ƒòN áÚøœË µyE9F2vTé;]§¥Ûvó<,ÏR•eI¥oÕŸ béóãýð+öŸø†|)ÿBê_ø.äyß]¯üïï?Và—? ¼âÝ[ãÚëº-µÂYèvÒC¾0v1y†Jþsñÿ†ržþÌþË×´öÜܱQ¿/²µì•íwoVzùUiÖççwµ¿Sô[öøðÛÄŸ³€5­cÃv·Œ÷Úâ¼²F !5‹ä_ÉUGá_·®}‹cû?|+Ó®b»µð­šMXD84ìVÖÐYÁ½¼a!A…UÀ  è € ( € ( € ( € ( ˜ÿk’à·ˆô 9ÿÉKŠx îø+û<·¯‚¬þEž„­|Uû$ÇÏŠ?ìþ¤>& µh € ð+ßù-þ6ÿ±S@ÿÒÍf¿ñ›þ`?î/þã?œ>?ó,ÿ¸ßûˆëkðóùÄ( € (Í>4Éø±ÿbΩÿ¤²×¹Ãò;Àÿ×êú\O£àßù(òßúÿGÿNDüf¯ú?°‚€?°ŸÙ;þMcöiÿ²áïý7[×ùX}Áïôùóû]Élø ÿb·‹ô¯ÃÕö| ÿ#ŸàúTN|OÀ½O¯ÕN  € ( € ( € (èÿØŸþ<hû( ÿ¨ö‡_ŒñgüŽ+ÿÛ¿úDOB‡ðÑöÍ|é¨P@P@Páoü{þB³'ýpñ7þ…¤WïÿGù*±?ö?ý;Dò³à/_ÑŸ‰5ý¨|àP@P@P@ýÿÁäÜþ%ÿÙ@»ÿÓ^•_À>6ÿÉw˜Ü/ý3Lú¬·ýÖ?ÍŸ¬5ùQÜ|§ûjÉ¿ê_ö4øCÿRM.½ŸþF8oñÃÿJDTø¡ò~îy¡@P@P@Pkû?ÿÉÓøSþÉÿ‰ôãáúüï¿æþßÿÛN¬/Sôο;:€ ( € ( € þR¿à¢ßò{?¿ë¾ÿ¦]:¿µ>Ž?òJâì"új‰ó™¿ñ×§êÏ‹+÷óÊ?`à’h_Xý¢c'Ãö½ßš¿•~“_ó(ÿ¸ÿû„÷2_ùyòýOÓø'Ãý’þÓûCÄÿ+z…+áö…P@P@P@P@P@3þÖ¬Wàֺèü•¸ Œ|ž þϬà |fHÿ¶ÓЀҠŠ¿døùñGý‚bÿÔ‡ÄÔö­P@{ÿ%¿Æßö*húY¬×áþ3ÌýÅÿÜgó‡ÒþeŸ÷ÿqd¿¾j‡¡‹Kñ´±É§¥µÕÅÅÔvs½¤VóJ‹mäÆÞeô+*¼ê©‘å¼ìÁ+óÇÂêON•Vç†MJê1‹œUIN1n§<—-985寣7ΕÓk¤»·ø”åùÏb(f8xV‚¡&£R1šOÚRWJI«Ùµ}ìßsòŸþ¯ÿÐ¥£à?üM|ö¦;þÏÿ—ùŸ×?ê' Ыÿ‚)ò!ÿWƒèRÑ¿ðþ&íLwüÿŸþ/óõ…¿èU‡ÿÁ¿ùÿ„+Á¿ô)hßøÿGö¦;þÏÿ—ù‡ú‰Âßô*ÃÿàŠ_üˆÂàßú´oü‡ÿ‰£ûSÿ?çÿKüÃýDáoúaÿðE/þD?á ðoý Z7þCÿÄÑý©ŽÿŸóÿÀ¥þaþ¢p·ý °ÿø"—ÿ"ð…x7þ…-ÿ!ÿâhþÔÇÏùÿàRÿ0ÿQ8[þ…XüKÿ‘øB¼ÿB–ÿ€ÿñ4jc¿çüÿð)˜¨œ-ÿB¬?þ¥ÿȇü!^ ÿ¡KFÿÀøš?µ1ßóþø¿Ì?ÔNÿ¡VÿRÿäCþ¯ÿÐ¥£à?üMÚ˜ïùÿ?ü _æê' Ыÿ‚)ò!ÿWƒèRÑ¿ðþ&íLwüÿŸþ/óõ…¿èU‡ÿÁ¿ùÿ„+Á¿ô)hßøÿGö¦;þÏÿ—ù‡ú‰Âßô*ÃÿàŠ_üˆÂàßú´oü‡ÿ‰£ûSÿ?çÿKüÃýDáoúaÿðE/þD?á ðoý Z7þCÿÄÑý©ŽÿŸóÿÀ¥þaþ¢p·ý °ÿø"—ÿ"~ÛÁ*l¬ôï‚ß,ôûHmlãø>È-ã¢gGÒ ÂŽI'ñ¯Òø~­JÙu)Õ“”Ÿ6­ÝüO«?ˆ|_ÀarÎ3ÇapT£J”}£¨Å^6í’Wm·e«mŸ§•쟚…P@P@|-ûLø#Á~=øóð+Gñׄ4_éøGÅ×1Øëº|7ÐÇ0½ðê‰%VPá]À`3†#¹®\\œ`œ]µ=¼†•:Ø™F¤T—+Ý_ª8ÿøfßÙ×þˆßü%´ÿþ5^µ©üÏï>·ê8_ùõüÃ6þοô@þÿá-§ÿñª=­Oæx}G ÿ>£ÿ€¯òøfßÙ×þˆßü%´ÿþ5Gµ©üÏï¨áçÔðþAÿ Ûû:ÿÑøsÿ„¶Ÿÿƨöµ?™ýáõ/üúþ¿È?á›g_ú ð–ÓÿøÕÖ§ó?¼>£…ÿŸQÿÀWùü3oìëÿDáÏþÚÿ£ÚÔþg÷‡Ôp¿óê?ø ÿ ÿ†mýèü9ÿÂ[OÿãT{ZŸÌþðúŽþ}Gÿ_äðÍ¿³¯ý?‡?øKiÿüjkSùŸÞQÂÿϨÿà+üƒþ·öuÿ¢ðçÿ m?ÿQíj3ûÃê8_ùõüÃ6þοô@þÿá-§ÿñª=­Oæx}G ÿ>£ÿ€¯òøfßÙ×þˆßü%´ÿþ5Gµ©üÏï¨áçÔðþAÿ Ûû:ÿÑøsÿ„¶Ÿÿƨöµ?™ýáõ/üúþ¿È?á›g_ú ð–ÓÿøÕÖ§ó?¼>£…ÿŸQÿÀWù§û økþ“ö‘ðï„ô 7Dðý§Ä¾Ï¦i±Ú[Á»Ãš¶È£W.ÌÇ’Äõ5êaÛ•4ßõ©ñ9½8RÆÔŒKMö5ly§Ä?ðQ˜!¹ýþ&[\Â’Û˨øu$ŠE ®§]ÓÁ#ŒWc9CZQvji¯F}/P¥ŠâL²…x)Âuè©E¤ÓN¤SM=kFžÏ_ü!^ ÿ¡KFÿÀøšü£ûSÿ?çÿKüÏôýDáoúaÿðE/þD?á ðoý Z7þCÿÄÑý©ŽÿŸóÿÀ¥þaþ¢p·ý °ÿø"—ÿ"ð…x7þ…-ÿ!ÿâhþÔÇÏùÿàRÿ0ÿQ8[þ…XüKÿ‘øB¼ÿB–ÿ€ÿñ4jc¿çüÿð)˜¨œ-ÿB¬?þ¥ÿȇü!^ ÿ¡KFÿÀøš?µ1ßóþø¿Ì?ÔNÿ¡VÿRÿäCþ¯ÿÐ¥£à?üMÚ˜ïùÿ?ü _æê' Ыÿ‚)ò!ÿWƒèRÑ¿ðþ&íLwüÿŸþ/óõ…¿èU‡ÿÁ¿ùÿ„+Á¿ô)hßøÿGö¦;þÏÿ—ù‡ú‰Âßô*ÃÿàŠ_üˆÂàßú´oü‡ÿ‰£ûSÿ?çÿKüÃýDáoúaÿðE/þD?á ðoý Z7þCÿÄÑý©ŽÿŸóÿÀ¥þaþ¢p·ý °ÿø"—ÿ"ð…x7þ…-ÿ!ÿâhþÔÇÏùÿàRÿ0ÿQ8[þ…XüKÿ‘øB¼ÿB–ÿ€ÿñ4jc¿çüÿð)˜¨œ-ÿB¬?þ¥ÿȇü!^ ÿ¡KFÿÀøš?µ1ßóþø¿Ì?ÔNÿ¡VÿRÿäO¾¿à™º.£þÔú§öF“ecç|?Õüϲ@‘y˜Ôt|nÚq“Œúšû.ÅWÄûmQÊܶ»nßsù¯é ‘eY'ö_öfmÍìás[ÙZü©^×v¾×}Ïߊû#ù¬( € ( € ( Í Ká'Ÿüsý¨5|1ðŸˆõx|]§ÛG}®è¶·ÓGðÖ†Â5yQ˜ gre‰îkÏÅÎQšQvÐú܇ F¶R©'Ì÷IôF·ü3oìëÿDáÏþÚÿ®_kSùŸÞ{QÂÿϨÿà+üIø[ð×á×ÃÝgÄßð€øÞû‡ï ßü#úU½‡Ú¼·‡g™å"ïÛ½ñœãsc©®Ü$å.ng}›â¨û/eól’íØOø'·üšWßûx‡ÿOš…vŸ6}£@P@P@P@P@PÌßµ±àκX| OŸü¸ Œ¼C|ýŸt> ³#þÿOBJ€>*ý’?ãçÅö ‹ÿRPÚ´P@xïü–ÿØ© éf³_‡øÍÿ0÷ÿqŸÎHù–ÜoýÄ6_‡ÞšY§›Á“Í-ÔòHúl¤’éw.į-2²˨²+òçŒRŒq5J){òÑAÞ } õŠû/Ucðxçù´"¡]D’‚KÚKEMóSK]©ËX/²õ™kþ¿Ч£È3ûþ;ÿ~©òÿÒQõ]nyGÄßðQ/ù4_ˆßöðßþŸ´êáÍ?Ükÿ‚_úK>«?äªÊ¿ì"‡þ‰ø_éHP@P@P@÷?ü{þNžûþÉþ³ÿ§¾ë‚ÿæ#þÝÿÛå_¤ÏüÊ?î?þá?ykîOå` € ( € ( €>Ñ?ä±~Ôßö:Øÿê1 ×›Œþ"ô>Ó‡?Ýeþ'ù#½®Cß5¼8@Öulôÿ„PÿÐíë»ö¾GÊñ/ü¹ÿ·¿Cˆÿ‚{gþ+áÆè!âý=êÞ|±öP@P@P@P@PbIíI´µbm%v|ÉûRË­ð§YÒô¹¢»Ô¤µÕݳm:”õ ~5ÇS1ÂRÒub¾hà«›`(iR¼Sÿ¿Ýsä¿hZ¼_ >ésXƒä£Ëëýý9ô+þ‹ökÿ£zøiÿ„žÿÆkñõèm‰ÿÁõù#ý+ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äuþøað×áÆ±¯¼ø{០hø~ûíŸðŽé6ÚÚ¼·ƒËó<”]û|ÇÛœã{c©¯é_£Æ}šçÚŸÚxº•ù=/´œ§Ëk{s7kÙ^ÛÙv<|Ú”)òrE-öVìaÿÁ=NdŸ‡þ¢!ÿÓæ¡_ÒÇŒ}¥@P@P@P@PrͼÓʑƒ,ò0P£Ô“S9Æœ\¦ì—VEJ¥:$·oDyŽ·ñoÃ:axtòú•Êñû–0ß=~ ù\wà0­ÆêKËE÷ÿ’gÅf\{–`›†õ¥ýÝ#ÿ?Ñ3ÌuŠþ'ÔK-£Ca àscÝ›? òØž.Ì1:Sµ5ä®þ÷ÂÇÅã8ï4ÅÝQjœ|•ßÞïø$rW®¥¨¶ûýBâàŸùí+?ó¯¦/‰w­QËÕ¶xqجc¾"¬§êÛüÌmsþA“gÐÿè-NS3,ä£ÿת3]0; jÅÚº`uÀÊð×Þ›þ¹ý=tÀì¦vñtÓ²gÑ4›ð~×§A!?ÄPüÇ5èÐÅV¥ðM£ÕÃã1‡6¾z}Ç5}ð×L¹´ë©mdìûÄÿÔׯC6¨¿ˆ“üsÖZUŠ—àÿÈà5kú8ie´óíGü·¶ùÀã¨üF+Ö£Œ¥[DìüÏs˜PÄhŸf|â|q7Æÿÿ¢hz†<)¡}§ûkWŸNòÿÓ5›<»Y÷ççÎvã²qòÿ^þ«þÕì}?Øç¿?'÷ãkrùÞý,k}‹ãý >ÿº÷ÿ•uðÿñê?ÿ)÷Cóø—ïú™ÿåþêbøßÿBO¿ð®½ÿå]ñê?ÿ)÷@ÿ‰~ÿ©ŸþQÿî¡ö/ÿô$øÿ ëßþUÑÿgþ£ÿò—ÿtø—ïú™ÿåþêbøßÿBO¿ð®½ÿå]ñê?ÿ)÷@ÿ‰~ÿ©ŸþQÿî¡ö/ÿô$øÿ ëßþUÑÿgþ£ÿò—ÿtø—ïú™ÿåþêbøßÿBO¿ð®½ÿå]ñê?ÿ)÷@ÿ‰~ÿ©ŸþQÿî§|`´øÂ¿ >)6§áæjFâk_^M,q}šMÌ‘¶šØ.HRê à°ê;²Ï ¿³qÔ1Ÿ]æösŒíìí~Y'kûGkÛ{?CÒɼþÉÌpÙ‡ö7±© ÛÙZü’Rµý«µíkÙÛ³>Àÿ†¤ø¯ÿDÿ$üyÿÌ•0ÿ¨97ý ÿòl¿ÿžgõ?Öª'þ—ÿÈü5'Åú ÿù'ãÏþd¨ÿProúÿäÙÿ<ÃëU?“ÿKÿäþ“â¿ýü“ñçÿ2T¨97ý ÿòl¿ÿžaõªŸÉÿ¥ÿòÿ Iñ_þˆ?þIøóÿ™*?Ô›þ†ù6_ÿÏ0úÕOäÿÒÿùÿ†¤ø¯ÿDÿ$üyÿÌ•êMÿC?ü›/ÿç˜}j§òéü€ÃR|Wÿ¢ÿ’~<ÿæJõ&ÿ¡ŸþM—ÿóÌ>µSù?ô¿þ@?á©>+ÿÑÿÉ?ó%Gúƒ“ÐÏÿ&ËÿùæZ©üŸú_ÿ ðÔŸÿèƒÿäŸ?ù’£ýAÉ¿ègÿ“eÿüó­TþOý/ÿøjOŠÿôAÿòOÇŸüÉQþ äßô3ÿɲÿþy‡Öª'þ—ÿÈü5'Åú ÿù'ãÏþd¨ÿProúÿäÙÿ<ÃëU?“ÿKÿäþ“â¿ýü“ñçÿ2T¨97ý ÿòl¿ÿžaõªŸÉÿ¥ÿòÿ Iñ_þˆ?þIøóÿ™*?Ô›þ†ù6_ÿÏ0úÕOäÿÒÿùÿ†¤ø¯ÿDÿ$üyÿÌ•êMÿC?ü›/ÿç˜}j§òéü€ÃR|Wÿ¢ÿ’~<ÿæJõ&ÿ¡ŸþM—ÿóÌ>µSù?ô¿þ@?á©>+ÿÑÿÉ?ó%Gúƒ“ÐÏÿ&ËÿùæZ©üŸú_ÿ ðÔŸÿèƒÿäŸ?ù’£ýAÉ¿ègÿ“eÿüó­TþOý/ÿøjOŠÿôAÿòOÇŸüÉQþ äßô3ÿɲÿþy‡Öª'þ—ÿÈü5'Åú ÿù'ãÏþd¨ÿProúÿäÙÿ<ÃëU?“ÿKÿäþ“â¿ýü“ñçÿ2T¨97ý ÿòl¿ÿžaõªŸÉÿ¥ÿòÿ Iñ_þˆ?þIøóÿ™*?Ô›þ†ù6_ÿÏ0úÕOäÿÒÿùÿ†¤ø¯ÿDÿ$üyÿÌ•êMÿC?ü›/ÿç˜}j§òéü€ÃR|Wÿ¢ÿ’~<ÿæJõ&ÿ¡ŸþM—ÿóÌ>µSù?ô¿þ@?á©>+ÿÑÿÉ?ó%Gúƒ“ÐÏÿ&ËÿùæZ©üŸú_ÿ ðÔŸÿèƒÿäŸ?ù’£ýAÉ¿ègÿ“eÿüó­TþOý/ÿøjOŠÿôAÿòOÇŸüÉQþ äßô3ÿɲÿþy‡Öª'þ—ÿÈü5'Åú ÿù'ãÏþd¨ÿProúÿäÙÿ<ÃëU?“ÿKÿäþ“â¿ýü“ñçÿ2T¨97ý ÿòl¿ÿžaõªŸÉÿ¥ÿòÿ Iñ_þˆ?þIøóÿ™*?Ô›þ†ù6_ÿÏ0úÕOäÿÒÿùÿ†¤ø¯ÿDÿ$üyÿÌ•êMÿC?ü›/ÿç˜}j§òéü€ÃR|Wÿ¢ÿ’~<ÿæJõ&ÿ¡ŸþM—ÿóÌ>µSù?ô¿þ@?á©>+ÿÑÿÉ?ó%Gúƒ“ÐÏÿ&ËÿùæZ©üŸú_ÿ ðÔŸÿèƒÿäŸ?ù’£ýAÉ¿ègÿ“eÿüó­TþOý/ÿøjOŠÿôAÿòOÇŸüÉQþ äßô3ÿɲÿþy‡Öª'þ—ÿÈü5'Åú ÿù'ãÏþd¨ÿProúÿäÙÿ<ÃëU?“ÿKÿäþ“â¿ýü“ñçÿ2T¨97ý ÿòl¿ÿžaõªŸÉÿ¥ÿòÿ Iñ_þˆ?þIøóÿ™*?Ô›þ†ù6_ÿÏ0úÕOäÿÒÿùÿ†¤ø¯ÿDÿ$üyÿÌ•êMÿC?ü›/ÿç˜}j§òéü€ÃR|Wÿ¢ÿ’~<ÿæJõ&ÿ¡ŸþM—ÿóÌ>µSù?ô¿þ@?á©>+ÿÑÿÉ?ó%Gúƒ“ÐÏÿ&ËÿùæZ©üŸú_ÿ ðÔŸÿèƒÿäŸ?ù’£ýAÉ¿ègÿ“eÿüó­TþOý/ÿøjOŠÿôAÿòOÇŸüÉQþ äßô3ÿɲÿþy‡Öª'þ—ÿÈü5'Åú ÿù'ãÏþd¨ÿProúÿäÙÿ<ÃëU?“ÿKÿäþ“â¿ýü“ñçÿ2T¨97ý ÿòl¿ÿžaõªŸÉÿ¥ÿòÿ Iñ_þˆ?þIøóÿ™*?Ô›þ†ù6_ÿÏ0úÕOäÿÒÿùÿ†¤ø¯ÿDÿ$üyÿÌ•êMÿC?ü›/ÿç˜}j§òéü€ÃR|Wÿ¢ÿ’~<ÿæJõ&ÿ¡ŸþM—ÿóÌ>µSù?ô¿þ@?á©>+ÿÑÿÉ?ó%Gúƒ“ÐÏÿ&ËÿùæZ©üŸú_ÿ ðÔŸÿèƒÿäŸ?ù’£ýAÉ¿ègÿ“eÿüó­TþOý/ÿøjOŠÿôAÿòOÇŸüÉQþ äßô3ÿɲÿþy‡Öª'þ—ÿÈü5'Åú ÿù'ãÏþd¨ÿProúÿäÙÿ<ÃëU?“ÿKÿäþ“â¿ýü“ñçÿ2T¨97ý ÿòl¿ÿžaõªŸÉÿ¥ÿòÿ Iñ_þˆ?þIøóÿ™*?Ô›þ†ù6_ÿÏ0úÕOäÿÒÿùÿ†¤ø¯ÿDÿ$üyÿÌ•êMÿC?ü›/ÿç˜}j§òéü€ÃR|Wÿ¢ÿ’~<ÿæJõ&ÿ¡ŸþM—ÿóÌ>µSù?ô¿þ@?á©>+ÿÑÿÉ?ó%Gúƒ“ÐÏÿ&ËÿùæZ©üŸú_ÿ ðÔŸÿèƒÿäŸ?ù’£ýAÉ¿ègÿ“eÿüó­TþOý/ÿøjOŠÿôAÿòOÇŸüÉQþ äßô3ÿɲÿþy‡Öª'þ—ÿÈü5'Åú ÿù'ãÏþd¨ÿProúÿäÙÿ<ÃëU?“ÿKÿäþ“â¿ýü“ñçÿ2T¨97ý ÿòl¿ÿžaõªŸÉÿ¥ÿòÿ Iñ_þˆ?þIøóÿ™*?Ô›þ†ù6_ÿÏ0úÕOäÿÒÿùÿ†¤ø¯ÿDÿ$üyÿÌ•êMÿC?ü›/ÿç˜}j§òéü€ÃR|Wÿ¢ÿ’~<ÿæJõ&ÿ¡ŸþM—ÿóÌ>µSù?ô¿þ@?á©>+ÿÑÿÉ?ó%Gúƒ“ÐÏÿ&ËÿùæZ©üŸú_ÿ ðÔŸÿèƒÿäŸ?ù’£ýAÉ¿ègÿ“eÿüó­TþOý/ÿøjOŠÿôAÿòOÇŸüÉQþ äßô3ÿɲÿþy‡Öª'þ—ÿÈü5'Åú ÿù'ãÏþd¨ÿProúÿäÙÿ<ÃëU?“ÿKÿäþ“â¿ýü“ñçÿ2T¨97ý ÿòl¿ÿžaõªŸÉÿ¥ÿòÿ Iñ_þˆ?þIøóÿ™*?Ô›þ†ù6_ÿÏ0úÕOäÿÒÿùÿ†¤ø¯ÿDÿ$üyÿÌ•êMÿC?ü›/ÿç˜}j§òéü€ÃR|Wÿ¢ÿ’~<ÿæJõ&ÿ¡ŸþM—ÿóÌ>µSù?ô¿þ@?á©>+ÿÑÿÉ?ó%Gúƒ“ÐÏÿ&ËÿùæZ©üŸú_ÿ ðÔŸÿèƒÿäŸ?ù’£ýAÉ¿ègÿ“eÿüó­TþOý/ÿøjOŠÿôAÿòOÇŸüÉQþ äßô3ÿɲÿþy‡Öª'þ—ÿÈËðW⟊¾$êÞ0>(ðü#CMðýɃ÷:ôió$‹wü„ô?;|µÿUæýï›Ëù7ÿ@x`ò?íªb½·?±¾¸wk{[ˆÞïãäÛÝæ×—ÊÌêʯ'4m¿.ñGAÿöPŸ²WÃ…ôñÿÊÞ¡_Д}£@P@P@P@å^3ø­¢xa¥°²Æ¡­/ÛÂÛo_öG>¸¯’Îø» •7F—ï*ö[/Wú-{Øøn#ã¬H凡ûÚë¢zGüO¿’×½›5ßøƒÅ35köhAÊ[GòDŸEþ§'Þ¿0Ì3¬nm+âguÑ-"¾_«»?Í8‡0Ï'Í‹©uÒ+H¯Eú»¿3&:ãÃF.ÕÓ®”]«ª\ ºçüƒeüô®˜”ÌËùéõê¿Ì×LÈ‘v®˜p2¼5÷¦ÿ®cÿGO]P;)¼]tÄì¦hÅ]; hÅ]P:àiG]0:àxÿ‹?gŸƒ_ ÿå]ñ.<-ÿA8ü—ÿ)ízý—ãþaÿ —Æ_ôøiÿ†§Á¿ü«£þ%Ç…¿è'ÿÒÿå!ý¯_²üÌ?árøËþ€ ?ðÔø7ÿ•tĸð·ýâ?ð:_ü¤?µëö_ù‡ü._Ðá§þŸÿò®ø—ÿ œGþKÿ”‡ö½~Ëñÿ0ÿ…Ëã/úü4ÿÃSàßþUÑÿãÂßôˆÿÀéòþׯÙ~?æð¹|eÿ@?†Ÿøj|ÿʺ?â\x[þ‚qø/þRÚõû/ÇüÃþ/Œ¿èðÓÿ OƒùWGüK ÐN#ÿ¥ÿÊCû^¿eøÿ˜Âåñ—ýþá©ðoÿ*èÿ‰qáoú Äàt¿ùHk×ì¿óø\¾2ÿ ÃOü5> ÿå]ñ.<-ÿA8ü—ÿ)ízý—ãþaÿ —Æ_ôøiÿ†§Á¿ü«£þ%Ç…¿è'ÿÒÿå!ý¯_²üÌôß‚_uŸülø/á_øOáÿ‡uÏhš^¡bÿ |#¹µ¸¿‚cß𮻣‘†å`Ã9ø¯<È8K†±YÎ ½iU¥Ée9AÇÞ©;¥N/i;Y­mètá3*¸ŠÑ§$¬ïß·©ý4Ã'~Ëôm? ¿ðÒÿøÍ0ÐÃ'~Ëôm? ¿ðÒÿøÍ~aüHø/àk¿¿ôà ð߆¼7­XéÚv“¤|9ðt±EèÚmÛ’÷ZLÒ³4×s—  û^á¼.q…•zò’jMhÕ­dú§Üç­ZTåds_ð |1ÿ=tü6žÿå}ú—ÏÉýñÿäL¾³>È?á@øcþzè?øm<ÿÊ:?Ôl»þ~Oïÿ"YŸdð |1ÿ=tü6žÿåê6]ÿ?'÷Çÿ‘¬Ï²øP>ÿžºþOÿòŽõ.ÿŸ“ûãÿȇÖgÙü( Ï]ÿ §€ÿùGGú—ÏÉýñÿäCë3ìƒþ†?箃ÿ†ÓÀü££ýFË¿çäþøÿò!õ™öAÿ Ãó×AÿÃià?þQÑþ£eßóò|ùúÌû ÿ…áùë ÿá´ðÿ(èÿQ²ïùù?¾?üˆ}f}ÂðÇüõÐðÚxÿ”t¨ÙwüüŸßþD>³>È?á@øcþzè?øm<ÿÊ:?Ôl»þ~Oïÿ"YŸdð |1ÿ=tü6žÿåê6]ÿ?'÷Çÿ‘¬Ï²øP>ÿžºþOÿòŽõ.ÿŸ“ûãÿȇÖgÙü( Ï]ÿ §€ÿùGGú—ÏÉýñÿäCë3ìÐÙëöwý¼sð à|Sû;ü*½ñ?ˆ<£jšïü!D_hºžÊe“b[ª.çv;UBŒà8¯ÊŽÓØ?á“¿eú6Ÿ…_øFéüf€ødïÙcþ§áWþº_ÿ þ;öXÿ£iøUÿ„n—ÿÆhÿ†Ný–?èÚ~á¥ÿñš?á“¿eú6Ÿ…_øFéüf€ødïÙcþ§áWþº_ÿ þ;öXÿ£iøUÿ„n—ÿÆhÿ†Ný–?èÚ~á¥ÿñš?á“¿eú6Ÿ…_øFéüf€ødïÙcþ§áWþº_ÿ ç»ö×ñ2ü+ý©~-ü;øwàO†/ƒ4ItÔ±Ócøeá[‘—K³¸“÷“éòHÙ–iæcØ þ„ð›Âl—ŽòZÙŽcZ¬' ²¦•9A+(S•ß59;ÞO­­m'©…¨¡­këóó>[ÿ…Ëã/úü4ÿÃSàßþU×êñ.<-ÿA8ü—ÿ)8¿µëö_ù‡ü._Ðá§þŸÿò®ø—ÿ œGþKÿ”‡ö½~Ëñÿ0ÿ…Ëã/úü4ÿÃSàßþUÑÿãÂßôˆÿÀéòþׯÙ~?æð¹|eÿ@?†Ÿøj|ÿʺ?â\x[þ‚qø/þRÚõû/ÇüÃþ/Œ¿èðÓÿ OƒùWGüK ÐN#ÿ¥ÿÊCû^¿eøÿ˜Âåñ—ýþá©ðoÿ*èÿ‰qáoú Äàt¿ùHk×ì¿óø\¾2ÿ ÃOü5> ÿå]ñ.<-ÿA8ü—ÿ)ízý—ãþaÿ —Æ_ôøiÿ†§Á¿ü«£þ%Ç…¿è'ÿÒÿå!ý¯_²üÌ?árøËþ€ ?ðÔø7ÿ•tĸð·ýâ?ð:_ü¤?µëö_ù‡ü._Ðá§þŸÿò®ø—ÿ œGþKÿ”‡ö½~Ëñÿ0ÿ…Ëã/úü4ÿÃSàßþUÑÿãÂßôˆÿÀéòþׯÙ~?æð¹|eÿ@?†Ÿøj|ÿʺ?â\x[þ‚qø/þRÚõû/ÇüÃþ/Œ¿èðÓÿ OƒùWGüK ÐN#ÿ¥ÿÊCû^¿eøÿ™ý*þÏ_³¿ìí㟀_ükâŸÙßáUï‰üAàýTÔoáÒ"ûEÔöPË,›ÝQw;±ÚªgÅŸF{ü2wì±ÿFÓð«ÿÝ/ÿŒÐõwÀ¯„Þø‡ð{Â^øcðÿÂ:n¯¢ø‡Q¿“Høá›™n¥µŸHŽMîŸ8UQ{qÂ$°É8ô7•QÎ1R¡]´”[Ò×½ÒêŸs*Ótãtxü( Ï]ÿ §€ÿùG_kþ£eßóò|ùŸë3ìƒþ†?箃ÿ†ÓÀü££ýFË¿çäþøÿò!õ™öAÿ Ãó×AÿÃià?þQÑþ£eßóò|ùúÌû ÿ…áùë ÿá´ðÿ(èÿQ²ïùù?¾?üˆ}f}ÂðÇüõÐðÚxÿ”t¨ÙwüüŸßþD>³>È?á@øcþzè?øm<ÿÊ:?Ôl»þ~Oïÿ"YŸdð |1ÿ=tü6žÿåê6]ÿ?'÷Çÿ‘¬Ï²øP>ÿžºþOÿòŽõ.ÿŸ“ûãÿȇÖgÙü( Ï]ÿ §€ÿùGGú—ÏÉýñÿäCë3ìƒþ†?箃ÿ†ÓÀü££ýFË¿çäþøÿò!õ™öAÿ Ãó×AÿÃià?þQÑþ£eßóò|ùúÌû ÿ…áùë ÿá´ðÿ(èÿQ²ïùù?¾?üˆ}f}ÂðÇüõÐðÚxÿ”t¨ÙwüüŸßþD>³>Èúö>ðæ“áû_–¶šN…톣¨i_ÚzW†ô}k»UÓ4¸ãtë[håò忺*Ì›€”Œ×çùÞž[©…¤ÛŒmkï¬Sè—~ÇU99ÅIžßÿõ$þÉ É?òÿâý=êå}¥@P@P@P@ ’D‰Y]R$™Øà(I>”¥%å'd‰œã¹IÙ-[gÊÿ~1Ϩ½Æ‡á)š-;”—QNQ÷Wß©ö%â^5ž%Ë –»Cg>¯ü=—žïÉoøwx‡<\¥Ê%ËOg5¼¼£ÙyîúYoáQóÉë_òø.ügý°<ð Äh><ðü» ÆËU°³³’Öü*¡s5ʱÚdU!•N}F ú¼£†ñ½/k†« 7MÊë{_Ýk[w>ß"áV{EÖÂV§¦é¹sG{_Ük[]Y³éo‡Þ/‡ÇÞмcm¢êZUž­Ú`³Õ„"q'c·•$‰‡]®¸sò°Î@óñg„¯*JN.Í«ÚýwIé³ÓsÊÅá<4¦¤âìÜokõÝ'£Ñé¹Ì|)øÍÅ-KÄúm¯ÃÏèØ7 gwuâ,Òµ(BÐ#As).«"“Æ#9W£‹Ëž0“«s+®[ÞÚë¬Vš¾;*yt)ÎU¡>ut¢å{k®±ŽšñjÂ$ šïüƒ&úý«¢'d ËùhÿõêŸÌ×Tȱv®˜p2¼5÷¦ÿ®cÿGO]P; vñv®˜”Í(«¢'\ »WTÈQ×Lºe?þB—ßõïþ…-F#ìüÈÅ}ŸŸètmoÔR[ÜD²Bã Ž2¬eNbá5tÎyR…x:uâ÷Lò/ø2]%_PÓƒK§uu<´?_U÷üýkãslŽX4ëPÖŸ^ëþŸÞ|yòÀ'ˆÃkOªëó^s‚¯ž>T( €<ö…ÿ’ñÇþÄýgÿH¦¯G'ÿ‘ŽüpÿÒ‘ëd?ò5Â×ÈéHý\¯ÝÏéP á£Kÿfÿ\#ÿÐE¥ ÿ$®Uÿ`ô?ôÔOŽÅ§«üËõõf@P@P@ì_³ŸüœgìíÿeÃút¶¯Ê¼mÿ’0ÿ¸_úz™Ý–ÿ½Cçù3û&¯àê‚€?'ügÿ'ûMÿØÓ§ê7¢Wê¼ ÿ"êŸãúLN,Oƽ õög8P@P@P@÷Oìÿ&±û4ÿÙ?ð÷þ›­ëùÜõO € ( € ( €?”¯ø(·üžÏǯúï£ÿé—N¯íO£ü’¸ŸûŸþš¢|æoüuéú³âÊýüò‚€ ( € ( € ( ì'öNÿ“XýšìŸø{ÿMÖõþVp{ý~|þ×_ò[>ÿØ­âßý+ðõ}ŸÈƧøþ•Ÿð/SÇkõSˆ( € ( € ( € ô/Ù‡¿hlœøH5.îájüg‹?äo_þÝÿÒ"z?†Qÿ‚yÉ£|5ÿ¯ÿéïP¯5>Õ € ( € ( € ( ~/üQ“Zº¹ð®pWF¶\ÜFßñö㪂?€Ìûc?ŒñŸ¼uIeØ9~ê.Òkí>Ëû«ñ~V¿ó÷ˆo,ʬò¬¾_¹‹´ä¾Û]÷WþLü­ ‹µ| Ì hÅÚº uÓ>6ý½~ÿÂÅø¬k6VÞf½àé³Q–hm¹\úyDÈ}áZû.Ì>¥˜ÆœŸ»SÝ~¿gñÓæ~À§övmS~å_uúýŸÇO™ç¿±Ÿígoû)xšç]Ýk? ¢’ØZç2]ÂൌcÝÜ›uôÌW­ÄY4žqOHÖÖýšø¾åï?SÜâÌ‚O>¦©iC½ú&¾7ò^óõ<«ö•ñ¿ÇßÙŸm|ñVâßQñdZö¹e&“¦ÜÆš˜6ó\È’ÉHÞd÷s™ŽP0+ÔÉpø ú­wVÔ9T]ä½ÝRVM-[#Ùáü.YÄÕ±2¯A5O•EóM>_yE4¤–‘ŠÙw¹é¶ÇŽ¿ ¾| ñÿ>'Üióø«K…/ôöÒtÙâiżr¼á¤˜3™pT€(ÀÖY]‚ÆW¯Bµ+ò7gym{[GåêaÃ9N_˜bqXlEû9;>i'kµm´·©ô'įÚ;Sø]û|:øÅ®Ç³ãhZ8ˆL‹ wzÕ˜•ä‘c F%ª.Ñ·9Xl®8ÌΦì#)|’vëòGŸƒÉ¡Î*à©û´ã)ü£[Kü–¾ºŸ&kÿi?þÎ_ ¿i>'麫k€‚çÁW%¢ZAhd¸XÂÊ€N[÷œ¿üµÿgæ÷)eø¸Ú˜M®U¤®ï}:m×·CèèåYm|®Z©5Ê´Ÿ3½ô¾N½º§_¾#éŸ>ø7â>“Ag®Ù­Á¶fÜm失îï²EuÎvæ¼,FXJò£-âÏšÅá%ÄO=\_ü3û‹ÿmωÿ¾ xÿþüE»Ñ&¹Õ ÑgÒÿ³tû¸%5ŒÛ§Ü?îQp.3Æy¯g$¡CRT«Bú^÷k²¶ŒúÃañµeF½;Ù7{´÷JÚ4ºœ.¯ñƒö«Òÿcß ~Óéñ†Ôê±eøÉªØ|6Ñï ( ý¡ä|qÿ±?YÿÒ)«ÑÉÿäc†ÿ?ô¤zÙüpŸõòúR?W+÷súT(ùêø=ÿêø=ㄟ |i©øãÇÐjZÿ‡4ÝRâ ;½9aŠYí£•–0ÖlÁ931À$ó_uƒñ«²¬=<£J”T"½•'hÅrÅ]Á·d–­¶úŸCC„rìM(ÖŸ74’o^­]ô=þ‡ðCþŠÄoü Ó?ùº?â<ñ÷ý þ £ÿÊÍÔ¬¯´¿ð/øÿÃø!ÿEâ7þéŸüƒGüGž>ÿ¡‚ÿÁTùX©Y_ià_ðþ‡ðCþŠÄoü Ó?ùø<}ÿCÿ‚¨ÿò°ÿR²¾ÒÿÀ¿àü;à‡ýˆßø¦ò ñxûþ† ÿQÿåaþ¥e}¥ÿÀøvÁú(¿ð7Lÿä?â<ñ÷ý þ £ÿÊÃýJÊûKÿÿ€ðì?‚ôP>#àn™ÿÈ4Äyãïú/üGÿ•‡ú••ö—þÿ?áØ?è |FÿÀÝ3ÿhÿˆóÇßô0_ø*ÿ+õ++í/ü þðþÑ@øÿºgÿ Ñÿç¿è`¿ðUþVêVWÚ_øüÿ‡aüÿ¢ñÿtÏþA£þ#ÏÐÁàª?ü¬?Ô¬¯´¿ð/øÿÃø!ÿEâ7þéŸüƒGüGž>ÿ¡‚ÿÁTùX©Y_ià_ðþ‡ðCþŠÄoü Ó?ùø<}ÿCÿ‚¨ÿò°ÿR²¾ÒÿÀ¿àü;à‡ýˆßø¦ò ñxûþ† ÿQÿåaþ¥e}¥ÿÀ)ŸØKágÁ¯|(ø“á¿xÖûZÑþ xCɵÕî¬ÞO7_Óàmâ;HÜáeb0ã3‘|üמ/â|ò¬Ó§B¥¹£ìéFü­Ik&­(§£òØåÆpÆ.¡,MnhÚ×}Ý»vgîÝ|iá…<µ—~ xsö²ý¢,|)ã­CEÓŸVÒ¥{[K; •ä:” –žÞFÉ £€ùGÉ>>aÇ9Ç ÕXL¾QP’æwŠz¶×å@øSáGÇÙ5\Ë3«V5!VTÒ§(%Ê¡ j¥ ;ÞO­­mÿ…©ñŸþŠî³ÿ‚Íÿë‡þ"çÏÈàý7þ%«„¿è#ÿÓÿåAÿ Sã?ýÝgÿš?ÿ!Ñÿs‰¿çä?ðñ-\%ÿAüŸÿ*øZŸÿè®ë?ø,Ñÿùø‹œMÿ?!ÿ€ ÿ‰já/úÄàtÿùPÂÔøÏÿEwYÿÁfÿÈtÄ\âoùùüüKW ÐF#ÿ§ÿʃþ§Æú+ºÏþ 4þC£þ"çÏÈà?âZ¸Kþ‚1ø?þTðµ>3ÿÑ]ÖðY£ÿòñ8›þ~CÿAÿÕÂ_ôˆÿÀéÿò ÿ…©ñŸþŠî³ÿ‚Íÿèÿˆ¹Äßóòøø–®ÿ ŒGþOÿ•ü-OŒÿôWuŸühÿü‡GüEÎ&ÿŸÿÀĵp—ýb?ð:ü¨?áj|gÿ¢»¬ÿà³Gÿä:?â.q7üü‡þƒþ%«„¿è#ÿÓÿåAÿ Sã?ýÝgÿš?ÿ!Ñÿs‰¿çä?ðñ-\%ÿAüŸÿ*øZŸÿè®ë?ø,Ñÿùø‹œMÿ?!ÿ€ ÿ‰já/úÄàtÿùPÂÔøÏÿEwYÿÁfÿÈtÄ\âoùùüüKW ÐF#ÿ§ÿʃþ§Æú+ºÏþ 4þC£þ"çÏÈà?âZ¸Kþ‚1ø?þTC_²wüšÇìÓÿdÿÃßún·¯¦?ŒO € ( € ( €?¾/~Ç?¿hOÚGö•ñ§‹üQâÍ7R²ñ›¥¤Åœp´IáÝPÌ&¶•·î!€Àg$ýNGâgðfX —ì©JNmrS—¼Ò‹wœdöŠÒöÓÔö2þÁæÔlEù“¶ŽÚY?ÔäáØ?è |FÿÀÝ3ÿkÙÿˆóÇßô0_ø*ÿ+;¿Ô¬¯´¿ð/øÿÃø!ÿEâ7þéŸüƒGüGž>ÿ¡‚ÿÁTùX©Y_ià_ðþ‡ðCþŠÄoü Ó?ùø<}ÿCÿ‚¨ÿò°ÿR²¾ÒÿÀ¿àü;à‡ýˆßø¦ò ñxûþ† ÿQÿåaþ¥e}¥ÿÀøvÁú(¿ð7Lÿä?â<ñ÷ý þ £ÿÊÃýJÊûKÿÿ€ðì?‚ôP>#àn™ÿÈ4Äyãïú/üGÿ•‡ú••ö—þÿ?áØ?è |FÿÀÝ3ÿhÿˆóÇßô0_ø*ÿ+õ++í/ü þðþÑ@øÿºgÿ Ñÿç¿è`¿ðUþVêVWÚ_øüÿ‡aüÿ¢ñÿtÏþA£þ#ÏÐÁàª?ü¬?Ô¬¯´¿ð/øÿÃø!ÿEâ7þéŸüƒGüGž>ÿ¡‚ÿÁTùX©Y_ià_ðþ‡ðCþŠÄoü Ó?ùø<}ÿCÿ‚¨ÿò°ÿR²¾ÒÿÀ¿àü;à‡ýˆßø¦ò ñxûþ† ÿQÿåaþ¥e}¥ÿÀøvÁú(¿ð7Lÿä?â<ñ÷ý þ £ÿÊÃýJÊûKÿÿ€~¨~Éßòk³Oý“ÿéºÞ¿=>d÷úü†ÿ‚xƒÄþñ×ìå}áOÝhº‹é>)‰î­ ¶™ž36ˆJž)ªœ…åã ðæEŽášK—´§'ÊMþqGé¾ð>]ÇÙÍ\·3œãN¥Q:n)ó)Â:¹FJÖ“é{ÛSóþ§Æú+ºÏþ 4þC¯þ"çÏÈàþÿ‰já/úÄàtÿùPÂÔøÏÿEwYÿÁfÿÈtÄ\âoùùüüKW ÐF#ÿ§ÿʃþ§Æú+ºÏþ 4þC£þ"çÏÈà?âZ¸Kþ‚1ø?þTðµ>3ÿÑ]ÖðY£ÿòñ8›þ~CÿAÿÕÂ_ôˆÿÀéÿò ÿ…©ñŸþŠî³ÿ‚Íÿèÿˆ¹Äßóòøø–®ÿ ŒGþOÿ•ü-OŒÿôWuŸühÿü‡GüEÎ&ÿŸÿÀĵp—ýb?ð:ü¨?áj|gÿ¢»¬ÿà³Gÿä:?â.q7üü‡þƒþ%«„¿è#ÿÓÿåAÿ Sã?ýÝgÿš?ÿ!Ñÿs‰¿çä?ðñ-\%ÿAüŸÿ*øZŸÿè®ë?ø,Ñÿùø‹œMÿ?!ÿ€ ÿ‰já/úÄàtÿùPÂÔøÏÿEwYÿÁfÿÈtÄ\âoùùüüKW ÐF#ÿ§ÿʃþ§Æú+ºÏþ 4þC£þ"çÏÈà?âZ¸Kþ‚1ø?þTðµ>3ÿÑ]ÖðY£ÿòñ8›þ~CÿAÿÕÂ_ôˆÿÀéÿò ÿ…©ñŸþŠî³ÿ‚Íÿèÿˆ¹Äßóòøø–®ÿ ŒGþOÿ•£Ÿ°n³®jß ¾6ëö±6§­I®ëf[ûˆ¡åÛ¤ømW+" (QÂŽ99'ÜÁæøœö„s cN¤÷²²Ñò­=?™|Bá¬'ñ&+%ÀÊR¥K’Îm9{Ôá7v”VòvÑioSêø'~ãû!ü1.rÆ÷_$ÿÜjþº‹>Ö € ( € ( € (Â>8xý¼7¤'‡4Éöë:šî‡ oBÃз*=ƒ{WçüyÄ/,ÂýGÿ{UkÞ1ïêö_?#òï8©äø5–áejÕ–­ol߬µKÊï{E_‰Àþv£jéÙF.ÕÓ®™b{;]BÒêÂúžÊæ6†hdY ¤w+®”œ$¥fŽê3•9)ÅÙ­S?ÿgÙsâOƒÿjoøKSÑuËoƒºEñÔ¥Ônm$K-r;Y–m=DÌ»$q+C!U$.@zýO6Ïp¸œ¦¡(ºòVµÕâä­-7J×_4~Óžq.’SÄBQx‰.[&¹¢ä­=7J×WóG¾ÿÁK>øëâ„þxŸÁ^¾Ö—ÃWÑ^Ùi5ÄéÊÀD¢5™TÛaˆÁxbïÁß<#áíCAÐ4]NÚÔ=Þ•áh >ÒyÉ*@ŒÌvïv䓸äñœW…ˆ¨«V”âÛWѽÚésæ±u•|DêFNI½µml®~ÁL?äÞü)ÿc}Ÿþ“êÕïpçûÌ¿Âÿ4}7 ¾Oüó‰æ-¯xÿÆßðO¿|ð¯Áÿêþ)×ÞoôÍ)î4ö´P7+1ºL¢ªT*åX6âFÜ1ô”)ÓÌe^SI/=oklzê*9´ñ3©Ýë{ZÖ;¿‰³ÆÿÁ>4/…þ°¼Ô|hšÜzç‰t}7Kù¥ EL™|¶6…‚ä0ÈŠ8ÊUqά´¬›þ½C¡_2u¤íY7ùüõ>zñ—ƒ¼eâÿØá7Ã~Í>:Oè~$ûN¹©Cá‰CܹŽûk!U3L¬²¦çÛ²2Š„‚PÚsŒ1Sœª+5¦¾‡£J¤!IÕVkM}>Húù$ñSÁ7døH>|Gÿ…„ºzè_Ø¿ðˆj^q¸3›á<¬˜v. ¸Ø…ÎH’åúß?2¶û£Ëõïi̹wÝzÇü«KñoÃßxóá§~xÏÃ~$¸Õå×b}Ã×¶6Ïlaµ€q,j†Bêø;Š£0¦¹ókNQœZkmÎló–¤áRMZÛ£õYt;g6§˜‹\ùä>Pùvòçå(¸'ž ä+ŽZ¿™çÓ­%}7ßúó5m´ˆ"„AÓ¶Æ6åOÎB¿O¼6/wŽ•Ñ»µýv:£U·v¿§ÓñõóóÂzn§¦¶“u$¯d͘ÝbEAaÐÊcWSŽäãZ2…H¦¤š{ìï~¾gTœq•:±N2M5®Î÷Z>·ûñ&‡7‡µ[>\´CçŠB?Ö!è˜>à×乞yn&Te¶é÷]?ÉùŸ†çdòœ\°òÕnŸuÑþÍUçžXPþпò@¾8ÿØŸ¬ÿéÕèäÿò1ÃŽúR=l‡þF¸Oúùý)«•û¹ý*ùÍû6ÿɺüÿ±+CÿÒkÅ«üIz³ôŒû­/ðÇòG´Ôa@P@P@埿äàû(ÿÔ—K­ðßÅ_×CÊÎÿÜj|¿ô¤~׬|PóûdÉÝ~пöÒ¿ôÃ¥×æüaþýð/ý*Gö§ÑÇþI\Oý„OÿMQ>r¯”? ( € ( € ( €?¤ßÙ;þMcöiÿ²áïý7[×îgùX{ýP@P@ð–‰ÿ%‹ö¦ÿ±ÖÇÿQ¼Ügñ¡öœ9þë/ñ?ÉírøP@P@P@ØþÉßòk³Oý“ÿéºÞ½ÓòÃßèñÏþ Ÿÿ#—ìßÿ`ÏèݾSŒ?Üaþ5ÿ¤Èýÿèãÿ%V'þÁçÿ§hŸ—õù¹ý¨P@P@P@~¡ÿÁ?? >2ƒŒ{\ÿØ/Ãuú· È®ý½ÿ¥3øÆßù.óû…ÿ¦iŸYÁ;³ÿ ‡ðË?óû¯ÿéîþ½Óò£íz( € ( € ( .® ²µ¹½ºGmoK$ÑUFI?@+:ÕaBœªÔvŒSmöKVe^½<5)Öªí¦Ûì’»qù±â¿]x·Äz¦¿tX™IŽ6?ê£"þ ã“Þ¿˜s|ΦqŽ«Œ©öž‹²è¾KüÏãŒ÷9«ŸæU³ ¿mè»EiòVùÝ™qW,1v®˜4bí]0:éš1WLNÊfŒuÓ²Œ]«¦\ »WT¸ußùÍô?ú WLNÈ–ò ÑÿëÕ?™®˜5b®¨p>4ý¡ÿfŸþÓz&“á%ø™kᯠióŨµ¯ö ¿šk´{ØÃùßi‹jys°Ù´òÏjö²Ìt0säæ“Ó{i§K>ÇÑdù”2É:žÏšOOŠÊÚt³íÜú öxøU­|øa¢ü5ÕücoâH4vxìo Òÿ³ŒvÇ #tó¥ÞÁ̇~áÀmr^+UWV1µ÷Öÿ¢+ŠŽ6»¯òßu{ë÷#ß"¥£u@ë¥tÀë¦YÓÿä)}ÿ^ðÿèRÔb>ÏÏô#ö~¡ÔEÖ¢&p4bí]0:àhÅ]P;`pÿt1©hÚ1&nì2ùZ3÷‡áÁü xO€Xœ'·Š÷©ëòëþ#æ8Ç,XÌÖ`½úZÿÛ½~íþLùÚ¿5?" ñÿÚþHÇûõŸý"š½ŸþF8oñÃÿJG­ÿÈ× ÿ_!ÿ¥#éOøBþ,ÑÕ|KÿÁ_„¿ùK_ÿÄÇñWýa¿ð ¿ü¸þ¸þÈ¡Ýþäð…üXÿ£ªø—ÿ‚¿ ò–ø˜þ*ÿ l7þWÿ—öEïðÿ#Î|5û8êþðîá?þÑ_í¢«ˆÁá¥$­ðÖZoÒºî}¯qf}ÂXY`²lc¥JRsk’”½æ’nó§'´Rµí¦Ûœçü;›á—ýŸ‰÷ÿEÿåurÄjÍ¿è ÷WÿåçÐÄUãOú?üCÿ•ü;›á—ýŸ‰÷ÿEÿåuñ³oúÃ}ÕÿùxÄUãOú?üCÿ•ü;›á—ýŸ‰÷ÿEÿåuñ³oúÃ}ÕÿùxÄUãOú?üCÿ•ü;›á—ýŸ‰÷ÿEÿåuñ³oúÃ}ÕÿùxÄUãOú?üCÿ•ü;›á—ýŸ‰÷ÿEÿåuñ³oúÃ}ÕÿùxÄUãOú?üCÿ•ü;›á—ýŸ‰÷ÿEÿåuñ³oúÃ}ÕÿùxÄUãOú?üCÿ•ü;›á—ýŸ‰÷ÿEÿåuñ³oúÃ}ÕÿùxÄUãOú?üCÿ•ü;›á—ýŸ‰÷ÿEÿåuñ³oúÃ}ÕÿùxÄUãOú?üCÿ•ü;›á—ýŸ‰÷ÿEÿåuñ³oúÃ}ÕÿùxÄUãOú?üCÿ•ü;›á—ýŸ‰÷ÿEÿåuñ³oúÃ}ÕÿùxÄUãOú?üCÿ•ü;›á—ýŸ‰÷ÿEÿåuñ³oúÃ}ÕÿùxÄUãOú?üCÿ•ü;›á—ýŸ‰÷ÿEÿåuñ³oúÃ}ÕÿùxÄUãOú?üCÿ•ü;›á—ýŸ‰÷ÿEÿåuñ³oúÃ}ÕÿùxÄUãOú?üCÿ•IøOáŽü á_ x+Âß´ßÄ»/ xO·Òôë/°xV_³ÚÁÅ{ßGgm¨Š738É$ó^ïüLÐ6ÿ«ÿËÊ¿²(w‡ùü!?èê¾%ÿà¯Â_ü¥£þ&?Š¿è ÿ€UÿåÁý‘C»ü?È?á ø±ÿGUñ/ÿ~ÿå-ñ1üUÿ@Øoü¯ÿ.ìŠßáþAÿ_Åú:¯‰ø+ð—ÿ)hÿ‰â¯úÃàùpdPîÿòøBþ,ÑÕ|KÿÁ_„¿ùKGüLÐ6ÿ«ÿ˃û"‡wøÂñcþŽ«â_þ ü%ÿÊZ?âcø«þ°ßø_þ\Ù;¿Ãüƒþ¿‹ôu_ÿðWá/þRÑÿÅ_ô †ÿÀ*ÿòàþÈ¡Ýþäð…üXÿ£ªø—ÿ‚¿ ò–ø˜þ*ÿ l7þWÿ—öEïðÿ ÿ„/âÇýWÄ¿üøKÿ”´ÄÇñWýa¿ð ¿ü¸?²(w‡ùü!?èê¾%ÿà¯Â_ü¥£þ&?Š¿è ÿ€UÿåÁý‘C»ü?È?á ø±ÿGUñ/ÿ~ÿå-ñ1üUÿ@Øoü¯ÿ.ìŠßáþG ìÿâmcÅZü?´ĵÕüI{£©ÏöO ´Ü%­½¢¾Ó¤mLAin˜PÉœn,NSúDñ=Gyapßø_þ\vá¨K  5W¿ÙœKÿð¤ü_ÿG-ñ/ÿ¼-ÿÊŠø˜n%ÿ \7þWÿ—õÿçëû£ÿȇü)?ÿÑË|KÿÀ/ ò¢ø˜n%ÿ \7þWÿ—=ùúþèÿò!ÿ OÅÿôrßÿð Âßü¨£þ&‰è ÿ€ÕÿåÁÏ_þ~¿º?üˆ“ñý·Ä¿üð·ÿ*(ÿ‰†â_úÃà5ùps×ÿŸ¯îÿ"ð¤ü_ÿG-ñ/ÿ¼-ÿÊŠ?âa¸—þpßø _þ\õÿçëû£ÿȇü)?ÿÑË|KÿÀ/ ò¢ø˜n%ÿ \7þWÿ—=ùúþèÿò!ÿ OÅÿôrßÿð Âßü¨£þ&‰è ÿ€ÕÿåÁÏ_þ~¿º?üˆ“ñý·Ä¿üð·ÿ*(ÿ‰†â_úÃà5ùps×ÿŸ¯îÿ"ð¤ü_ÿG-ñ/ÿ¼-ÿÊŠ?âa¸—þpßø _þ\õÿçëû£ÿȇü)?ÿÑË|KÿÀ/ ò¢ø˜n%ÿ \7þWÿ—=ùúþèÿò!ÿ OÅÿôrßÿð Âßü¨£þ&‰è ÿ€ÕÿåÁÏ_þ~¿º?üˆ“ñý·Ä¿üð·ÿ*(ÿ‰†â_úÃà5ùps×ÿŸ¯îÿ"ð¤ü_ÿG-ñ/ÿ¼-ÿÊŠ?âa¸—þpßø _þ\õÿçëû£ÿÈ—<'ð‹Ç~𯆼áoÚoâ]—†µ£kZn£ªËˆZÅþÏu²Æ’&·¶…¾xííÕ•‹(òT¨RÎ_úÁ^>Ì8Ö–6Ž6:qÃû>UMMÔr¿<æÞ±VÛwåo˸¯‹Î1òÌó ®¥z¶æ“QWåŒb´Œch¤´];oüÀû"|3 9ûv¿ÿ§»úýÈùƒíj( € ( € ( øó¯6à»XŸmÆ©*Z u Ë?áµvÿÀ«áüAÌ&•8¿z«Qùnÿo™ùÏŠ9£Ë² Òƒ´«5–òüŸ©ðœ]«ðÌÍ(»WTÈ1v®˜p4bí]0:àhÅ]1;)Ÿ7|_ý­þ|ñÿ‡¾x»Iñλ¬ZAyo.•k°*K4(vy‘Ý…<Éé_M•ðþ+3ÃËFQQ‹iÝ»è“èŸsëònÆgIã0òŠŒ[Ní§¢O¢}s´ý¥<ãï…_ w’:ŠnÏš®âêbÃ@|=ÿŸÿáâ/þB¨ÿTóùñÿ“Cÿ’3ÿR3ïúÿÉáÿÉYñÏã‡uo‚t«;?-Ýï…µkxׂuëhƒ½¤ª7Ë%š¤k’2îÁTrHšíËxg5ÃãhÕ©FÑŒâÛæŽÉ¦þÑèe<a³ =z´-Î ¾hh”“{JûjÿÃBø þ€ÿðØø«ÿ•õü[þ¦æ?ó÷ ÿ…˜Oþ^PýbŸþ/òøh_Ðâ_þò¾õ71ÿŸ¸oü,ÂòðúÄ;?ü_äðоÿ Ä¿ü6>*ÿå}êncÿ?pßøY„ÿåáõˆvø ¿È?á¡|ÿ@‰øl|UÿÊú?ÔÜÇþ~á¿ð³ ÿËÃëìÿðÃBø þ€ÿðØø«ÿ•ô©¹üýÃáfÿ—‡Ö!Ùÿà2ÿ ÿ†…ðý>%ÿá±ñWÿ+èÿSsùû†ÿÂÌ'ÿ/¬C³ÿÀeþAÿ à/ú|KÿÃcâ¯þWÑþ¦æ?ó÷ ÿ…˜Oþ^X‡gÿ€ËüƒþÀ_ôø—ÿ†ÇÅ_ü¯£ýMÌçîÿ 0Ÿü¼>±Ïÿ—ùü4/€¿èñ/ÿ Š¿ù_Gú›˜ÿÏÜ7þa?ùx}bŸþ/òøh_Ðâ_þò¾õ71ÿŸ¸oü,ÂòðúÄ;?ü_äðоÿ Ä¿ü6>*ÿå}êncÿ?pßøY„ÿåáõˆvø ¿È?á¡|ÿ@‰øl|UÿÊú?ÔÜÇþ~á¿ð³ ÿËÃëìÿðÃBø þ€ÿðØø«ÿ•ô©¹üýÃáfÿ—‡Ö!Ùÿà2ÿ ÿ†…ðý>%ÿá±ñWÿ+èÿSsùû†ÿÂÌ'ÿ/¬C³ÿÀeþAÿ à/ú|KÿÃcâ¯þWÑþ¦æ?ó÷ ÿ…˜Oþ^X‡gÿ€ËüƒþÀ_ôø—ÿ†ÇÅ_ü¯£ýMÌçîÿ 0Ÿü¼>±Ïÿ—ùü4/€¿èñ/ÿ Š¿ù_Gú›˜ÿÏÜ7þa?ùx}bŸþ/òøh_Ðâ_þò¾õ71ÿŸ¸oü,ÂòðúÄ;?ü_äðоÿ Ä¿ü6>*ÿå}êncÿ?pßøY„ÿåáõˆvø ¿È?á¡|ÿ@‰øl|UÿÊú?ÔÜÇþ~á¿ð³ ÿËÃëìÿðÃBø þ€ÿðØø«ÿ•ô©¹üýÃáfÿ—‡Ö!Ùÿà2ÿ ÿ†…ðý>%ÿá±ñWÿ+èÿSsùû†ÿÂÌ'ÿ/¬C³ÿÀeþAÿ à/ú|KÿÃcâ¯þWÑþ¦æ?ó÷ ÿ…˜Oþ^X‡gÿ€ËüƒþÀ_ôø—ÿ†ÇÅ_ü¯£ýMÌçîÿ 0Ÿü¼>±Ïÿ—ùü4/€¿èñ/ÿ Š¿ù_Gú›˜ÿÏÜ7þa?ùx}bŸþ/òøh_Ðâ_þò¾õ71ÿŸ¸oü,ÂòðúÄ;?ü_äðоÿ Ä¿ü6>*ÿå}êncÿ?pßøY„ÿåáõˆvø ¿È?á¡|ÿ@‰øl|UÿÊú?ÔÜÇþ~á¿ð³ ÿËÃëìÿðÃBø þ€ÿðØø«ÿ•ô©¹üýÃáfÿ—‡Ö!Ùÿà2ÿ ÿ†…ðý>%ÿá±ñWÿ+èÿSsùû†ÿÂÌ'ÿ/¬C³ÿÀeþAÿ à/ú|KÿÃcâ¯þWÑþ¦æ?ó÷ ÿ…˜Oþ^X‡gÿ€ËüƒþÀ_ôø—ÿ†ÇÅ_ü¯£ýMÌçîÿ 0Ÿü¼>±Ïÿ—ùü4/€¿èñ/ÿ Š¿ù_Gú›˜ÿÏÜ7þa?ùx}bŸþ/òøh_Ðâ_þò¾õ71ÿŸ¸oü,ÂòðúÄ;?ü_äðоÿ Ä¿ü6>*ÿå}êncÿ?pßøY„ÿåáõˆvø ¿È?á¡|ÿ@‰øl|UÿÊú?ÔÜÇþ~á¿ð³ ÿËÃëìÿðÃBø þ€ÿðØø«ÿ•ô©¹üýÃáfÿ—‡Ö!Ùÿà2ÿ ÿ†…ðý>%ÿá±ñWÿ+èÿSsùû†ÿÂÌ'ÿ/¬C³ÿÀeþAÿ à/ú|KÿÃcâ¯þWÑþ¦æ?ó÷ ÿ…˜Oþ^X‡gÿ€ËüƒþÀ_ôø—ÿ†ÇÅ_ü¯£ýMÌçîÿ 0Ÿü¼>±Ïÿ—ùü4/€¿èñ/ÿ Š¿ù_Gú›˜ÿÏÜ7þa?ùx}bŸþ/òøh_Ðâ_þò¾õ71ÿŸ¸oü,ÂòðúÄ;?ü_äðоÿ Ä¿ü6>*ÿå}êncÿ?pßøY„ÿåáõˆvø ¿È?á¡|ÿ@‰øl|UÿÊú?ÔÜÇþ~á¿ð³ ÿËÃëìÿðÃBø þ€ÿðØø«ÿ•ô©¹üýÃáfÿ—‡Ö!Ùÿà2ÿ ÿ†…ðý>%ÿá±ñWÿ+èÿSsùû†ÿÂÌ'ÿ/¬C³ÿÀeþAÿ à/ú|KÿÃcâ¯þWÑþ¦æ?ó÷ ÿ…˜Oþ^X‡gÿ€ËüƒþÀ_ôø—ÿ†ÇÅ_ü¯£ýMÌçîÿ 0Ÿü¼>±Ïÿ—ùü4/€¿èñ/ÿ Š¿ù_Gú›˜ÿÏÜ7þa?ùx}bŸþ/òøh_Ðâ_þò¾õ71ÿŸ¸oü,ÂòðúÄ;?ü_äðоÿ Ä¿ü6>*ÿå}êncÿ?pßøY„ÿåáõˆvø ¿È?á¡|ÿ@‰øl|UÿÊú?ÔÜÇþ~á¿ð³ ÿËÃëìÿðÃBø þ€ÿðØø«ÿ•ô©¹üýÃáfÿ—‡Ö!Ùÿà2ÿ ÿ†…ðý>%ÿá±ñWÿ+èÿSsùû†ÿÂÌ'ÿ/¬C³ÿÀeþAÿ à/ú|KÿÃcâ¯þWÑþ¦æ?ó÷ ÿ…˜Oþ^X‡gÿ€ËüƒþÀ_ôø—ÿ†ÇÅ_ü¯£ýMÌçîÿ 0Ÿü¼>±Ïÿ—ùü4/€¿èñ/ÿ Š¿ù_Gú›˜ÿÏÜ7þa?ùx}bŸþ/òøh_Ðâ_þò¾õ71ÿŸ¸oü,ÂòðúÄ;?ü_äðоÿ Ä¿ü6>*ÿå}êncÿ?pßøY„ÿåáõˆvø ¿È?á¡|ÿ@‰øl|UÿÊú?ÔÜÇþ~á¿ð³ ÿËÃëìÿðÃBø þ€ÿðØø«ÿ•ô©¹üýÃáfÿ—‡Ö!Ùÿà2ÿ ÿ†…ðý>%ÿá±ñWÿ+èÿSsùû†ÿÂÌ'ÿ/¬C³ÿÀeþAÿ à/ú|KÿÃcâ¯þWÑþ¦æ?ó÷ ÿ…˜Oþ^X‡gÿ€ËüƒþÀ_ôø—ÿ†ÇÅ_ü¯£ýMÌçîÿ 0Ÿü¼>±Ïÿ—ùü4/€¿èñ/ÿ Š¿ù_Gú›˜ÿÏÜ7þa?ùx}bŸþ/òøh_Ðâ_þò¾õ71ÿŸ¸oü,ÂòðúÄ;?ü_äðоÿ Ä¿ü6>*ÿå}êncÿ?pßøY„ÿåáõˆvø ¿È?á¡|ÿ@‰øl|UÿÊú?ÔÜÇþ~á¿ð³ ÿËÃëìÿðÃBø þ€ÿðØø«ÿ•ô©¹üýÃáfÿ—‡Ö!Ùÿà2ÿ ÿ†…ðý>%ÿá±ñWÿ+èÿSsùû†ÿÂÌ'ÿ/¬C³ÿÀeþAÿ à/ú|KÿÃcâ¯þWÑþ¦æ?ó÷ ÿ…˜Oþ^X‡gÿ€ËüƒþÀ_ôø—ÿ†ÇÅ_ü¯£ýMÌçîÿ 0Ÿü¼>±Ïÿ—ùü4/€¿èñ/ÿ Š¿ù_Gú›˜ÿÏÜ7þa?ùx}bŸþ/ò:? üAÐ<}yâeÐôÿÛ}÷Ë'ü$~Õt=ÞcÛ…òþÛo›‡w—»nWv7.¥¾6'(þÔúÄéË›ØÛÙÖ£Wok¿²œùwÓš×Ö׳·›TU9-~»¦»wHËÿ‚xß²'Ã3ÿOÞ –·_Ò§Œ}­@P@P@ò?í3¨3_xWJ …Ž)®z–*£ÿ@oοñKÝl.l”¥÷´—äÏÀügÅ·_…OD¥/½¤¿'÷Ÿ1ÅÚ¿,øµ3J*ê×F.ÕÓ²Œ]«¦\ «¦e3ðßþ  [Ù~ÕDÔ59­¤é×2‹ée6ů®c+nXþå@B&ff,M~¹Âœ²Šš/vR[-}ؽ{¿7ÓC÷N®ç‘U¼W»)-W÷bõîõÝëk.‡èÏí-à«/~Èÿô‹ sÄ:¬3Z‹“qâMbçUI–Ú²ÎìÊŸ !À%Ž2M|¾K‰–+6¡9F1ÖÞìTVÏ¢¶¾gÆpö.XÌï RPŒlíhÅElú$•üÏ€?eÿxïXýŽ~9øÃÃßDý‘üEñËâŸÆÿü2—㯎 ðÌZUêÝÝO¬MyqikÔ ÓÏ/S–(žnÂU$“^ækK „ÂBº£k«h’»O{j×[w±ô™Ý O°ð溲åI6ÓÞÖmuµ÷H÷ÏÚâ'Æ_Øçá4ž ´ø™©øÄþ2ñ=üú'ŠuÛÉ5í;FŠÞÐ¥]¢5Ï* ìˆo——/¡†Í«ûWMF0ŠºJÉÊï·KYV žb}³¤£EsE+'&Þºt·Ïõñ_|{ñÁ-àW>~ч‹üQ{fžÔüB5‹y&ùd*Öå›ìêKJ˜]¤pA ’{ðØ8â¥Vj*1OÝi[¿^½O €Ž6uèâ0êOÝj<®ÚõëÑŸ¢ÿ> ø/SÑ> üIñ‡í¨ü8øW¬iRjsèú-ä¶ºŽºÓÖá3lˆ3oòÇñ¨ÈÈ5æá(Î2©J¹æ®öV½÷ÓSÈÀЩ U£NŠœÓµÚºV½÷Ó^—>ñGí?â/‚ß´§€àøMñoÇ>.ø=®Ça=æ‘ãá¨JÅ&â• køÒm»dIS#scse¯f–5ðòu`£5}­úh}q8Y{jqŒÕõºziò>ƒÿ‚ŒþÒ_¼ âï‡?~x–ëÃwºõ¬z†¡¬iíåܲK;ÛÃrš0)YŠÇå å–a¡R«Q^Æ9>HJµE{h—â|ãÿ?øoðÚ/€Zc|@ñO‰´ymµQñf¢ÚÄW ö!4‚wñ h~BJ©Œí ¸ç·.©í9Ý’Ûo™èe5U^wÊ“Óm;Ÿ¹ìÚïáÇÜ]ÍÏ hÿêBÙ€õܧӵyµæá7nìò1:ŽÝÙí1hïÿA{ßÊþ7N5äUÆÆÇVÁ8`pFø^!ÅW¯N”£I¥³êíÜéÁñV3‰¥FP…¥$“êíüÇ€“oú$žÿÀ¯ó _uÿQÐM_ü-ÆÿòÃï¿´|—þòøRmÿD“Â_øàïþahÿˆ(¿è&¯þãù`hù/ü?äð¤Ûþ‰'„¿ð+ÁßüÂÑÿQÐM_ü-ÆÿòÀþÑò_ø È?áI·ýO àWƒ¿ù…£þ ¢ÿ š¿ø[ÿåý£ä¿ðÿ‘蟿güDø§oðÏÆ> Ó|=ö¿êí¶¥£iÞÕ÷}’æÆ‰ã“ÂÛwh+ ßêÈ#kÆÍü0Ãd¼ŸX¯]óÞܸÌcÚÛÞ²îiO*—²_ø Èûþ³ð[þƒ÷_øBøÿ™úñÔÜ»þ~âð³ÿËÍ>±>Ëÿùü;gà·ýî¿ð…ðÿ3ô©¹wüýÄÿáf/ÿ—‡Ö'Ùà1ÿ ÿ‡lüÿ ý×þ¾ÿæ~õ7.ÿŸ¸Ÿü,ÅÿòðúÄû/ü?äðퟂßôºÿÂÀ?üÏÑþ¦åßó÷ÿ…˜¿þ^XŸeÿ€Çüƒþ³ð[þƒ÷_øBøÿ™ú?ÔÜ»þ~âð³ÿËÃëì¿ðÿö~ Ð~ëÿ_ÿó?Gú›—ÏÜOþbÿùx}b}—þòøvÏÁoúÝá àþgèÿSrïùû‰ÿÂÌ_ÿ/¬O²ÿÀcþAÿÙø-ÿAû¯ü!|ÿÌýên]ÿ?q?øY‹ÿåáõ‰ö_ø È?áÛ?¿è?uÿ„/€ùŸ£ýMË¿çî'ÿ 1ü¼>±>Ëÿùü;gà·ýî¿ð…ðÿ3ô©¹wüýÄÿáf/ÿ—‡Ö'Ùà1ÿ#Á?iÏÙàÇìçðCÆÒÚãÄO ½Š ¼'àrnomí9›þ¹6mûFÿ¸ÙÛŽ3‘èe>àóœÃ—P­]N´ãN-ã1–NrQMÚ³v»ÖÉ»tdTÅÊœÚVJÿ Èü§ÿ…ñð£þˆéà?þcköÿø“üãþƒ¿òÿ0ÿ3ÍÿX)ÿ/þKÿ…ñð£þˆéà?þchÿ‰?Î?è;ÿ/óóõ‚Ÿòÿä°ø_ ?èþžÿæ6ø“üãþƒ¿òÿ0ÿ0ÿX)ÿ/þKÿ…ñð£þˆéà?þchÿ‰?Î?è;ÿ/óóõ‚Ÿòÿä°ø_ ?èþžÿæ6ø“üãþƒ¿òÿ0ÿ0ÿX)ÿ/þKÿ…ñð£þˆéà?þchÿ‰?Î?è;ÿ/óóõ‚Ÿòÿä°ø_ ?èþžÿæ6ø“üãþƒ¿òÿ0ÿ0ÿX)ÿ/þKÿ…ñð£þˆéà?þchÿ‰?Î?è;ÿ/óóõ‚Ÿòÿä°ø_ ?èþžÿæ6ø“üãþƒ¿òÿ0ÿ0ÿX)ÿ/þKÿ…ñð£þˆéà?þchÿ‰?Î?è;ÿ/óóõ‚Ÿòÿä°ø_ ?èþžÿæ6ø“üãþƒ¿òÿ0ÿ0ÿX)ÿ/þKÿ…ñð£þˆéà?þchÿ‰?Î?è;ÿ/óóõ‚Ÿòÿä°ø_ ?èþžÿæ6ø“üãþƒ¿òÿ0ÿ0ÿX)ÿ/þKêŸØ÷Aø?ûUüSÖ>Üü<—Ÿaðýƺº”zG€µ?3ʹµƒÊ1Ÿ CŒý¯víÇîcä|x ?þ­ý§‰©?oÏËìñ¸×nN[ßš¤?Z×ë·^¬.h±wäŠÓ¼cþGéWü;gà·ýî¿ð…ðÿ3õùÿú›—ÏÜOþbÿùy×õ‰ö_ø È?áÛ?¿è?uÿ„/€ùŸ£ýMË¿çî'ÿ 1ü¼>±>Ëÿù›>økiã øoźgÁÿ Ŧëvú¼wW YR)£Y8_‘žæ¾· àÜ1Ta^ŠÖšM_½š¾¿½0yƒ‹jËÿùÿð¤Ûþ‰'„¿ð+ÁßüÂÖßñýÕÿÂÜoÿ,ö’ÿÀcþAÿ M¿è’xKÿ¼ÿÌ-ñýÕÿÂÜoÿ,í%ÿ€Çüƒþ›Ñ$ð—þx;ÿ˜Z?â /ú «ÿ…¸ßþXÚ>Kÿùü)6ÿ¢Iá/ü ðwÿ0´Ä_ôWÿ q¿ü°?´|—þòøRmÿD“Â_øàïþahÿˆ(¿è&¯þãù`hù/ü?äð¤Ûþ‰'„¿ð+ÁßüÂÑÿQÐM_ü-ÆÿòÀþÑò_ø È?áI·ýO àWƒ¿ù…£þ ¢ÿ š¿ø[ÿåý£ä¿ðÿ“oú$žÿÀ¯ó GüAEÿA5ð·ÿËûGÉà1ÿ ÿ…&ßôI<%ÿ^ÿæø‚‹þ‚jÿán7ÿ–ö’ÿÀcþAÿ M¿è’xKÿ¼ÿÌ-ñýÕÿÂÜoÿ,í%ÿ€Çüƒþ›Ñ$ð—þx;ÿ˜Z?â /ú «ÿ…¸ßþXÚ>Kÿùü)6ÿ¢Iá/ü ðwÿ0´Ä_ôWÿ q¿ü°?´|—þòmð{F·Ö¼!gâ?…޵ѵŸiךoü!wsZý¾þ %•aIJlk…b¦DÈR2+0ðŠ–[†–*®"³Œm{cq·Õ¥ÖªïܨcÜß*Kÿù ¿ðퟂßôºÿÂÀ?üÏ×Ì©¹wüýÄÿáf/ÿ—›}b}—þòøvÏÁoúÝá àþgèÿSrïùû‰ÿÂÌ_ÿ/¬O²ÿÀcþAÿÙø-ÿAû¯ü!|ÿÌýên]ÿ?q?øY‹ÿåáõ‰ö_ø È?áÛ?¿è?uÿ„/€ùŸ£ýMË¿çî'ÿ 1ü¼>±>Ëÿùü;gà·ýî¿ð…ðÿ3ô©¹wüýÄÿáf/ÿ—‡Ö'Ùà1ÿ ÿ‡lüÿ ý×þ¾ÿæ~õ7.ÿŸ¸Ÿü,ÅÿòðúÄû/ü?äðퟂßôºÿÂÀ?üÏÑþ¦åßó÷ÿ…˜¿þ^XŸeÿ€Çüƒþ³ð[þƒ÷_øBøÿ™ú?ÔÜ»þ~âð³ÿËÃëì¿ðÿö~ Ð~ëÿ_ÿó?Gú›—ÏÜOþbÿùx}b}—þòøvÏÁoúÝá àþgèÿSrïùû‰ÿÂÌ_ÿ/¬O²ÿÀcþAÿÙø-ÿAû¯ü!|ÿÌýên]ÿ?q?øY‹ÿåáõ‰ö_ø Èü'·øýðšânà *‡€òçþ(Úý¿)ú(æyÎ_‡ÌhcZ…hF¤SÇcî”⤓´š½ž¶m_«<Ú™ì)ÍÁÇTíðÄ—þÇÂú §€ÿù¯Cþ$ÿ8ÿ ïü¿Ì?Ìõ‚Ÿòÿä°ø_ ?èþžÿæ6ø“üãþƒ¿òÿ0ÿ0ÿX)ÿ/þKÿ…ñð£þˆéà?þchÿ‰?Î?è;ÿ/óóõ‚Ÿòÿä°ø_ ?èþžÿæ6ø“üãþƒ¿òÿ0ÿ0ÿX)ÿ/þKÿ…ñð£þˆéà?þchÿ‰?Î?è;ÿ/óóõ‚Ÿòÿä°ø_ ?èþžÿæ6ø“üãþƒ¿òÿ0ÿ0ÿX)ÿ/þKÿ…ñð£þˆéà?þchÿ‰?Î?è;ÿ/óóõ‚Ÿòÿä°ø_ ?èþžÿæ6ø“üãþƒ¿òÿ0ÿ0ÿX)ÿ/þKÿ…ñð£þˆéà?þchÿ‰?Î?è;ÿ/óóõ‚Ÿòÿä°ø_ ?èþžÿæ6ø“üãþƒ¿òÿ0ÿ0ÿX)ÿ/þKÿ…ñð£þˆéà?þchÿ‰?Î?è;ÿ/óóõ‚Ÿòÿä°ø_ ?èþžÿæ6ø“üãþƒ¿òÿ0ÿ0ÿX)ÿ/þKµøiñ+á'ĉ?~ÍðU´èüUâ 7B:Š[øàÙý®ê+7Ê>Mû<ÝÛw.qŒŽµàqOÑ‹ÂYMl猔©R庆;åïJ0VNQ[É^íiCZÔq8ÇWýØŸ³ßðퟂßôºÿÂÀ?üÏ×ãÿên]ÿ?q?øY‹ÿåç¡õ‰ö_ø È?áÛ?¿è?uÿ„/€ùŸ£ýMË¿çî'ÿ 1ü¼>±>ËÿùÇÀO‡Þø[ñsöœð„t¥Oðîšú£ØèVjR=•ñ& 3J²¨º‚ 2ÉpI TCó =Ì·‡èdÔ]z©%QµûÊÕª´à“ÓÚÎ|¿Ùµí®ÈÎu]Gf–’_’=þ âsû"ü5ÇüÿøƒÿOz…w}«@P@P@ñGí$Ì|k¤/ð.2>¾tßà+ðÏÛþÕ¤¿éÚÿÒ¦7xÆßöÝÓØÇÿK™àQv¯Ï ~WJ*êÙF.ÕÓ®Œ]«¦\ «¦e3ó[öÖý™>-|Rø§àŠ? ´Kmq4­> 1¯¡´•Z™gV 3*a1{#oNkôÎðx%\&*\¼Í´ìÚÕ%Òï¡úq-ÀÖÀãfáÌÛNÍ­b—K½-ØõÏ‹úgí)ñ?áÆ?Üü.Lø¥­4ÿøfßTÓÅΑ (yî/.ZeŠ@ò¨ ‘³2‚:ŒšÃ-ž[‚ÅЩßÜ¥iY¾Š*×V[·¹Ë”Ï(ËñØj‘¯ü;¹Ë–V“z%k«-ÛI3ɾ|øýðÏöRøñðs\ø5'‹óºrÀýbUý³œo•)'¯K»$¼Ï+ý»ÿeïükð¯Ç ´/øK¬4-" *ïNómíÜK ï/šÑˆVQ R#:ŠïÊ1´)S:•·ëÐõ2,ÇB•JUŸ+néëÕ~žg#ûQ|ý«~=üdø{ñcOø–z~¤X@ÚT^$ÓdšØÃu<Í­$±©“26nM¬Ÿ6íʽXN FT½¥õ}c³.Åàð”%EÕ»mëgÙ/3ÞmÙSâíÃ?ŒŸtôωú%¢Û^øOX½·–S4J³£´Häy27í`ü0+†Œ*~jSw‹êF[§…ç£7x¾«ú¹ç?¶ßÁ?Ú×ö§‹á.§£ü M)4kèît™>ÿØ•®é õÙ—ÿ½Ñÿ4wåïÔ?Çý)S_Úçéá@ÚþÏÿòtþÿ²â_ý8ø~¿;ãïù†ÿ·ÿöÓ« Ôý3¯Îΰ € ( € ( ƒÿà¦òd߿뾅ÿ§« ú®ÿ’«*ÿ°Šúv&¯àTô‘ü³×úR|pP@P@P@ú‰ÿ‰ÿ“§ñgý“ýKÿN:U*ý&æQÿqÿ÷ îdßòóåúŸÒ%+àPâ/Àßù"¿ìVÒô’*ýß'ÿ‘vüÿÒQæTøß©êUè’P@P@P@׈ÿãûáŸý”ÿêC§WÎñgü‰ëÿÛ¿ú\Mh±µøÉèP@P@ü4iò Ó¿ë„ú¯ô£?ä•Ê¿ì‡þš‰ñدãÔõ™~¾¬À( € ( € ( €=‹ösÿ“Œý¿ì xoÿN–ÕùW¿òBf÷ ÿOS;²ß÷¨|ÿ&dÕü}PPÀž $~ÑŸ¶±S†ÀAô?ðøèÕÿ‘uñÔÿÒi¾7òýN›þ âý‘~cþµÿÏûnþ¼âµh € ( € ( €>:ý¥ìÙ5ï ê|³Z< û£çÿj üWÅ.8Ì5oæ‹_ø ¿þÜ=x͇qÇá1%üWÿÛœ"í_™Àü~”UÕ²™£jè×F.ÕÕ®™£tÄì¦hÇ]0; hÅÚº`uÀÒ‹µu@ëS\?ñ,”ýô®˜”Î:×ýE¯ýrÿAÓ²¤UÕ²Ιÿ·õïþ‡-tÀëÔEÚºbv@ÑŠº uÀÑ‹µu@ì¥tÀ룤ÈSPÿ¯x?ô)iÕèUn‡_8Ž™vÎhî!†âÝ ª[dGZꊶŒí‚³³.Gyh¬È÷޲ˆpçn\¨`£=It®¨&vS‹±°: ÕžAãIDšã ?êâEþ¿Ö¾7<Ÿ6-®É/×õ??â9óãšì’ýS“¯ðOý¥?äÝ>>ÿØ•®é õÙ—ÿ½Ñÿ4wåïÔ?Çý)š?ðÕž2ÿ¢Q£áS7ÿ Wíñ°?ô?ü ?älÄ´qOýaÿð*¿ü¨?á«/ÿ‚ƒxgQñ§ì£ãÏhò[G«ëº¿†tËY/’š}N‰ ŒªÌ3Œ¬@Îé^¦Išÿafx\ÑߨT…N[Û›’JV½¯k^Îݘ,;Å~â.Î~ïß¡ø“ÿÒý¢¿èaøsÿƒ}Cÿ+ú+þ&šŸý ßþÿî%ÿ¨x¯ùý¹‡ü;KöŠÿ¡‡áÏþ õþ@£þ&šŸý ßþÿî!þ¡â¿çô~æðí/Ú+þ†‡?ø7Ô?ùøšjô'ø?ÿ¸‡ú‡ŠÿŸÑû˜ô¿h¯ú~ÿàßPÿä ?âi©ÿÐÿàÿþâê+þGîaÿÒý¢¿èaøsÿƒ}Cÿ(ÿ‰¦§ÿBwÿƒÿûˆ¨x¯ùý¹‡ü;KöŠÿ¡‡áÏþ õþ@£þ&šŸý ßþÿî!þ¡â¿çô~æðí/Ú+þ†‡?ø7Ô?ùøšjô'ø?ÿ¸‡ú‡ŠÿŸÑû˜ô¿h¯ú~ÿàßPÿä ?âi©ÿÐÿàÿþâê+þGîaÿÒý¢¿èaøsÿƒ}Cÿ(ÿ‰¦§ÿBwÿƒÿûˆ¨x¯ùý¹‡ü;KöŠÿ¡‡áÏþ õþ@£þ&šŸý ßþÿî!þ¡â¿çô~æðí/Ú+þ†‡?ø7Ô?ùøšjô'ø?ÿ¸‡ú‡ŠÿŸÑû˜ô¿h¯ú~ÿàßPÿä ?âi©ÿÐÿàÿþâê+þGîaÿÒý¢¿èaøsÿƒ}Cÿ(ÿ‰¦§ÿBwÿƒÿûˆ¨x¯ùý¹ŸbÁ?¿fŸˆ¿³¿íNÿðŸjºÿ„ƒáþ·öOøGï..6yŽ‹¿Ìó`‹óÓÝœ6qŸÌ%ýS—õ«óý¾~oiÉýÈZÜžw¿KjžCW$þ,Ô¹û_§¯©û…_˜üÃü2ý¥¼W ü6ø}¡Û|3Òn­ôíÂÒ;™i(+'N+y+Ý­/èFæ”P@P@ü¥ü>ÿ‚||yñ§€¼ã]ð zF»¤Yêv±Þj—É2Ã<)* l™C…q€9Á=kú/$úHÃ"Ë0¹[Êœý…8SæöÖæäŠíì¯kÚîÝÙk‚±8¯ßƬRŸ½×®§]ÿÒý¢¿èaøsÿƒ}Cÿ+Óÿ‰¦§ÿBwÿƒÿûˆ¨x¯ùý¹‡ü;KöŠÿ¡‡áÏþ õþ@£þ&šŸý ßþÿî!þ¡â¿çô~æðí/Ú+þ†‡?ø7Ô?ùøšjô'ø?ÿ¸‡ú‡ŠÿŸÑû˜ô¿h¯ú~ÿàßPÿä ?âi©ÿÐÿàÿþâê+þGîaÿÒý¢¿èaøsÿƒ}Cÿ(ÿ‰¦§ÿBwÿƒÿûˆ¨x¯ùý¹‡ü;KöŠÿ¡‡áÏþ õþ@£þ&šŸý ßþÿî!þ¡â¿çô~æðí/Ú+þ†‡?ø7Ô?ùøšjô'ø?ÿ¸‡ú‡ŠÿŸÑû˜ô¿h¯ú~ÿàßPÿä ?âi©ÿÐÿàÿþâê+þGîaÿÒý¢¿èaøsÿƒ}Cÿ(ÿ‰¦§ÿBwÿƒÿûˆ¨x¯ùý¹‡ü;KöŠÿ¡‡áÏþ õþ@£þ&šŸý ßþÿî!þ¡â¿çô~æðí/Ú+þ†‡?ø7Ô?ùøšjô'ø?ÿ¸‡ú‡ŠÿŸÑû˜ô¿h¯ú~ÿàßPÿä ?âi©ÿÐÿàÿþâê+þGîgEàoØwã?ÁÿŠþ"ø³YðTþÒ> xSíi•ä× æëVP®Ä’Ò5?<ªN\q“ÉàüÇøù5É1Ë]/mËïû^krÎ3ø}œo~[n­{ù ð–#,_ZHµŠýtýOé’¿$(ó«Àz´ÒþÕÿ·fˆÖˆ¶öpi×ir%%¤i´-! Û… RqݼŒ.ÐZÞ:5 °J:Á¹ß¿=’_/fþó¾¦YV––fÚä©9ÓK[ÞœiÊMék5V6Õ»§t´¿ ÿÁ<ŽïÙá¡ÿ§íÿOwõö¥P@P@PÏß´^ˆ×þ²ÕâLɦ]çv9Óÿyuù׉XˆÊቊ֔µô–ñå?(ñw-x¬šž2+Z3Wÿ ½×ÿ“rŸEÚ¿üãJ*ê×F.ÕÓ²Œ]«¦]3ã½{öÄ‹Ãÿ´Õ·ìä~¼òMeeÿ ö¨@>Ñoû¾Ï䟻æíÇ™ÎÜägöXnu²Ÿí_kmååìÚÞþ]Ð0œëäo:ööÒO——ùdã¿7[_cÜh­Gã&•ð£\¼øb—_’HD(cŠYÿ¼h£“äw `xÎ8Ç’CSãÝ©ëß~—¶¶88vž_SænÔµî•ú]­Rô<âŒ?h þÆÉñÄ>">øÕ¢Y­þ¢l¬¬®ã÷­Å,rÇ$hZ9"‘öC©‘^Ö—ÖÎ>¯J<ôdì®Ú¶—ºi§½Ò¿Cè0\®¾|ð´aí0òvÜ•´½ÓM7fšWé®ãÿaŒ_>3üñÇ‹|e®C¯xÞË]½°Ó¥¹µ‚Î<%¬‘Fë"íóer[°Ýxéâ /ÇS¥F<°qMêßÚiîßDuñFY‚Êót0ñä¦â›Õ¿µ$Þ­ôGKû0kŸµ&·áˆ/ûMi gs ò.ŒÏomo+¦É|åÛÊbR"Øç%·?ÌÀ Y½<ºœ¡ýžî­®ïÓ~»Ü3ÚYU)Óþ˕սí[^[õÞëÐúB×ýE¯ýrÿAç@ò`jE]P; léŸñûqÿ^ñèr×LN¸Çï‹Éðá‹~+É mt?²çL[¯²™üë¨mÿÖì}¸ó·}Ó¸ã9Ž õªÑ¥{^ÿ•Ï[.Âýr¼h^×¾»ì›(~Ë¿#ý¤>/Äxü*ÞS¨Oaýž×¿lÿTïó<´ë¿¦Þ1Ô×^+ õJ¾Î÷;±˜?¨Öö\×Ò÷µ¥â¥@ÒŽº`uÀÑÒ?ä)¨×¼ú´êô*·Ù%F¾_ìÿ([$–ÌÌó)ÃÜ7Éó3l$ÚÁ°ˆd¶0v„Ö·7§8ë~¿‡õÐÓ³Ñn¡·Ž7ï:%¹Y‹ÊcòÏ”>^˜ÉÎx-÷O~˜Í6uÆ¢oï4­4k¸´×±-‘Ìcx‘‚ ¤d•Æ•'c|¬:×Lfœ¯ýnvF¢r¿õ¹Û‚¬£Áuk±}©ß]•’C´ÿ³Ð~€Wç¸ÊÞÞ¼ê-›ü:—cëýgRªÙ½=:~usgŠþÒŸònŸìJ×?ô†zìËÿÞèÿŠ?š;ò¿÷êãþ”ÄZù³ý· ( ¹ÿà›ßòt÷ßöOõŸý8èÕ÷\ÿ1öïþÜ*ý&æQÿqÿ÷ ûË_r+P@P@|ÕûZÿɶÿ±×Á_ú“éU_áËÑX÷ª_âæŒJñÒB€ ( € ( € ( cÂ_òtÿ ÿìŸø³ÿN>®ìÚù~§Êñ/ü¹ÿ·¿Cízï>X(ù ðWü‰¾ÿ°e¯þŠZüo4ÿ~¯þ9éLÿJ8þI\«þÁèé¨5pVP@P@u  K}Z¼ÇÙ4‹ÙóÓÉ·wÏä+ â¨Søê%êÑÍS†£üJ±^­/Ôôo†> ñš|Xø)xÞÖ…¥·Ž¼3q4æÂ`‘Dš½£;³mÀUU,IàIé^çYm Ê”ªâiÅ.mçö_v~Mã6g‚ÄðN>…ð”ß²´T“nÕ©·dö×Ðþ™þßcÿ?°ßÅÿý)ñ^@·Ì(ÿàØòG🰫üîb‹ë#ÒòÿmüiÇŠ²)|8ú/þâÃÿ’aWù_ÜÉæÝ¾ìñŸ£]”³œ¶¿ð±4åé8¿É’éÍoJ<ƒ‘^„e«ÅÝ-PP@ùÍû6ÿɺüÿ±+CÿÒkÅ«üIz³ôŒû­/ðÇòG´Ôa@P@P@埿äàû(ÿÔ—K­ðßÅ_×CÊÎÿÜj|¿ô¤~׬|Pæ×ðûe~ÞÂO¸ltlÿà—M® ïÕÁý*¡õXÏù%°?öŠÿÓX3Óÿàžòh¿ ?ëÿÄú{Ô+¼ùSíj( € ( € (  G¶ñ‰ªh—ñï{ÂÇÛ‘Ãpp ãÌpTó%\%_†i¯¿¯ËsÏÍrúY¶ ¶·ÃR.>—Z?“Õš7ÚuÞ¨ßiWñùw–’´2¯£)Áǵ.â0µ0U燬­(6Ÿª?ŒñX:Ù~&¦º´àÜZóNßðÆF»á½ ź5÷‡|M¥[jZèU¸±»@ñÌ—¾Aü+£ ˆ«„©Ô$ã5³[£«Н­FnŽÍh×Cñ÷þ Á¤išÿ¾+hzÕŒ7ºEÿ‡~Íuip»’xžeVFÁƒ_³xVt0øj´Ý¥Ý5ѤÏèkTÃa0•¨Ë–Q©tÖé¤ìÍ/ø'¼6¿´ïÄÛ[h–;x|?¨Çh0F¡fÀ |o',ž„žîqÿÒ$Wˆ²sÈ0Ò–­ÎúDÎ{â|ÿðQüÞ±>½×t¿´i&!äMçYÛË.åï¾Gv>¥u`1uÿÕ¬s¾uYõÒM/¹+™f;þ¦ýkÚ?h¡;Jú«NI}É$¯?à  üáOÙ£ÃÐxsšn¬Ç––°„1ܳÉ:ÇýÑ#ª³z+Áá n#šMÕ›|ñÖýmd¯è¶>k€ó V+9œ«Trsåw»’¿¢Ñ>ÿ”TÝÿØ7QÿÓÌÕÝ[þJ¯œô„z8ù-?íèÿé´Qýˆ´ Äß°ÏÇí#Äe½þ˜Ú¾«;[\¦ô2E§XÍcÕdzÓŸÔ,ç8;>Xþ2’×ŧCˆ0³¦ìùb´óœ“ûÓ±æ_ðN¡âføeû^/‚Î<`t8iG ¦}ŸTòzñþ³o^=k»‰ýŸ·Â{o‚îþ—ÿÒãeõœ·ø9¥Íéx_ð<[áGÄÿ„>MÂÿµ7Áßj¾7¼¼y%ñ=Ü’¶¡o*¨]’¼oÖ ÛѲwtãžüV_–¦]Y(%ð«[ðºg§Ábñ<µrªñ4¾n_Á4ý?E…ïÁûOØ·JƒZøÝ¬Ýü6ˆÞ,¶Y¢Ôo@¾3}ŒG¸È$ Ï p£ Gó6ãE)ÿ/E¥¯ÛÌù¨Ç,ÞN4©üºY{¶¿kuõó>ý¢µÿ…¯ðÛÁ??gŸ…~6ð‰¬Gemã-©§Á¨¦Ë¢Á^;§•äßírŸòÊP[8ÞÀBº­:ª‘ž—åÝ­¼­×ò>›,§‰X‰á±µcSKòîÖÞI[]¯ÛCìšÇü-ïø&¶™ñ;ÆÖV×þ4·Óô»ˆµ)câ¹:½¬³&8V‘7†ÆÎG¸ðpú¶féSÒ7u›80ú¦pèRvÞžVm/‘¿ÿÃø_ðòóàî›ñ>ëÁú\¿¬u½B o<ÝC‰#*¯Ô ’H¿F5®mZ¢¬é§îÙhožWª±Š“åiiÐù/àgÅo ~Ñ¿´ÄÏ~Ó¶Þ!ñ/„Æ8Ñ|7c¦jZ¥¾”^tTÙofŽbÙå@Ë1bKà×£ZŒ°ÔcO«Ñ_ï=Zô%ƒ¡a¬ŸWt¯÷ŸIÁ?¿ádx•¾)~Îÿüâ]càü¶oÒá6Òî’±\ƦiÐ|®)DyùLL@jŒ_$yjÓk›­ŒñÞÎ<µ¨´¥ÖÇ‹ÿÁ#4Å?~8xoÄZl†ƒªxKì—–I¾;˜^áÑ׺•$ïZfrqŒÞæ¹Äœ! Eꙫÿ¤µ·²ý²¾1ÙY±ZAámZ(¢A…D]VÀ  ¼v´cê¿&^b}×äÏ>ýª>i^ÿ‚‘øCÁÿ Áð½Ö¯âOÝ[ÞÚ³JÖšÝÄ.×Kæù„Ïæ`ü¹Æ8­(MËyk¹¶nX^ië£?rþ~Æ_~|l¼øÇðóSÕmÛSðÔú­¦j·—:”šÔ—Vóý½îg™˜I‹r¬vùpCcíe8ò³ŸÛʤyeÜú»ÄºˆÓ´‹†VÄó*?©êšàÌñ?VÃI­Þ‹æy™Î/ê˜I4ýéh¾ä¯…?6 ñ_ÚSþMÓãïý‰ZçþÏ]™ûÝñGóG~WþýCüqÿÒ‘ðü0wí)ÿ=þáG¨ÿò²¿ÿˆ·Â½±?ø*—ÿ4éüLú¯ü(ü ?ჿiOùïðÓÿ =Gÿ•”Ä[á^ØŸüKÿšþ& ¿ý Wþ?þPðÁß´§ü÷øiÿ…£ÿÊÊ?â-ð¯lOþ ¥ÿÍÿ_þ…+ÿ ÿ(ø`ïÚSþ{ü4ÿÂQÿåeñøW¶'ÿRÿæ€ÿ‰‚¯ÿB•ÿ…ÿ”çû7~Îÿ´§ìùñN‰ŸØ? 5ÿ3Ã÷šöoü%úž<û›9üß3û&O»ö-»vóæg#n¹’øë¹?´ýÖ&\Öÿ—t•­ú~ûŸ•ø›ÆµüFúŸû*¡ì=§ü¼sæçäÿ§pµ¹<ï~–×ï?øZŸ´§ýO†ŸøruþP×»ÿ¿ô ‰ÿÀ)òãò¯ìŠý×ãþAÿ Sö”ÿ¢)ðÓÿN£ÿÊ?âcøWþ±?ø/þ\Ùû¯Çüƒþ§í)ÿDSá§þGÿ”4ÄÇð¯ýbð _ü¸?²+÷_ùü-OÚSþˆ§ÃOü9:ÿ(hÿ‰á_úÄÿà¿ùpdWî¿òøZŸ´§ýO†ŸøruþPÑÿ¿ô ‰ÿÀ)òàþȯÝ~?äðµ?iOú"Ÿ ?ðäê?ü¡£þ&?…èÿ€RÿåÁý‘_ºüÈ?áj~ÒŸôE>áÉÔùCGüL ÿÐ6'ÿ¥ÿ˃û"¿uøÿÂÔý¥?èŠ|4ÿÓ¨ÿò†ø˜þÿ lOþKÿ—öE~ëñÿ ÿ…©ûJÑøiÿ‡'Qÿå ñ1ü+ÿ@ØŸü—ÿ.ìŠý×ãþAÿ Sö”ÿ¢)ðÓÿN£ÿÊ?âcøWþ±?ø/þ\Ùû¯Çü4øµ¨~ÒŸ¼„ÿáV|4Ó6kZ&±ö¯øX:Ƴõ;]CËÙý†¿ë>ÉåîÏË¿vLÏ鲋ձ:ÿr—ÿ.5¡–W¡VnŸ+OwÑß±KÌý¥?è˜|4ÿÂÿQÿåqÄÁp¯üøÄÿà¿ùqôŸ^¯ÿ>×þÿùó?iOú& ?ð¿ÔùGGüL ÿÏŒOþKÿ—׫ÿϵÿ?þD<ÏÚSþ‰‡ÃOü/õþQÑÿ¿óãÿ€RÿåÁõêÿóíàOÿ‘3ö”ÿ¢aðÓÿ ýGÿ”tÄÁp¯üøÄÿà¿ùp}z¿üû_øÿäCÌý¥?è˜|4ÿÂÿQÿåñ0\+ÿ>1?ø/þ\^¯ÿ>×þÿùó?iOú& ?ð¿ÔùGGüL ÿÏŒOþKÿ—׫ÿϵÿ?þD<ÏÚSþ‰‡ÃOü/õþQÑÿ¿óãÿ€RÿåÁõêÿóíàOÿ‘3ö”ÿ¢aðÓÿ ýGÿ”tÄÁp¯üøÄÿà¿ùp}z¿üû_øÿäCÌý¥?è˜|4ÿÂÿQÿåñ0\+ÿ>1?ø/þ\^¯ÿ>×þÿùó?iOú& ?ð¿ÔùGGüL ÿÏŒOþKÿ—׫ÿϵÿ?þD<ÏÚSþ‰‡ÃOü/õþQÑÿ¿óãÿ€RÿåÁõêÿóíàOÿ‘3ö”ÿ¢aðÓÿ ýGÿ”tÄÁp¯üøÄÿà¿ùp}z¿üû_øÿäCÌý¥?è˜|4ÿÂÿQÿåñ0\+ÿ>1?ø/þ\^¯ÿ>×þÿù/I±ý¥4¿Š~ø™ÿ Û᤿Ù>Õ´/ìßøOuó¾Ûs¦ÏæùŸØ‡nÏìÝ»vÞvr»pÝ>‘+Fÿìø—îRÿåÇ—™Ò¯˜òh£Ë~­ïoî®Ç¶ÂÔý¥?èŠ|4ÿÓ¨ÿò†·ÿ‰á_úÄÿà¿ùqådWî¿òøZŸ´§ýO†ŸøruþPÑÿ¿ô ‰ÿÀ)òàþȯÝ~?ä~Ch¿ðOßÚSGÑ´#í¿ &û¬VÞoü$:Šù›.ìfœgÆM|n+ÆÄש[—¹›vöT´»¿üÿ?¥2/ëä™V,þÌSöáO›ÛµÍÉÛØ»^׵ݻ³Oþ;ö”ÿžÿ ?ð£ÔùYXÄ[á^ØŸüKÿšWþ& ¿ý Wþ?þPðÁß´§ü÷øiÿ…£ÿÊÊ?â-ð¯lOþ ¥ÿÍÿ_þ…+ÿ ÿ(ø`ïÚSþ{ü4ÿÂQÿåeñøW¶'ÿRÿæ€ÿ‰‚¯ÿB•ÿ…ÿ”ü0wí)ÿ=þáG¨ÿò²ø‹|+Ûÿ‚©ó@ÄÁWÿ¡Jÿ‡ÿÊþ;ö”ÿžÿ ?ð£ÔùYGüE¾í‰ÿÁT¿ù ?â`«ÿÐ¥áCÿåÿ ûJφŸøQê?ü¬£þ"ß öÄÿàª_üÐñ0UÿèR¿ð¡ÿò€ÿ†ý¥?ç¿ÃOü(õþVQÿo…{bðU/þhø˜*ÿô)_øPÿùAÖèß°/ŇDx‡ÂQIüPé÷÷RÁÞÕôó±>/dɵ†¥U®òŒàª?Ì%ô®ãîåi?úüÚÿÓ(ô}3ö»³Á¼H¾=þѬܨÿÇ-V¼Jþ+¯ðÜãéN­FysšßÃÃB’¿þ•z›û'ɦ…xWÁdŽ5ÄÓø½¹5ã×ñ WÞ½o’Šü¦¿‹YÆ#ãæ^•Zü ŽïOøâ4geá›p;[ÜJ˜ü­Åy5¸¯ _ã•Gê“ÿÛÏ¿âq?ŤåëQ¿Î'AÂϦ76‹ø^MÿÆkŽ\A€Ïÿ€Çÿ“8¥Å²—üïüÿµ6tÿ‡¾,²½Ó¯û!¾Ës ÆÁw(ß庾3äñ¸Ï½D3ü9©¥?¹òG›˜ç’Ì0òÃû.^kkÍ}šÊ»Î5_óhš`újRý·«Ÿa%´e÷/ó>iQá©kçïi:xú_ÈösO>ÃKhËî_æ5JBÿhkƒ¦•bO½óý£YÇ;ç¬e÷/ó²b WÄ©ÌzFŸû H?ö…váø¢–óSç‹ò²ü¤K Þö'_xÚ,yZfŸC«Íý'¯¤Âx£˜`íì±uÒ]9›_s¿`¡-â‹)ã_ˆÿÌ Ez>­/ôµ¯ªÁxù›amÏRUiBšq‰„²ºréo›$—âÄ$†C‚ü;5À">¿q±÷"Ɉü}n é'B:cp.^pj?ƒ”¿4a,ý™¿ÿhñ#ˆ~ |6hùYþ#ê*H÷A8üÍ}~‘ü,ÒæÃb/þü´Çû¿ó/Çü†ÂÔý¥?èŠ|4ÿÓ¨ÿò†ŸüL ÿÐ6'ÿ¥ÿ˃û"¿uøÿÂÔý¥?èŠ|4ÿÓ¨ÿò†ø˜þÿ lOþKÿ—öE~ëñÿ ÿ…©ûJÑøiÿ‡'Qÿå ñ1ü+ÿ@ØŸü—ÿ.ìŠý×ãþGÎ_ ¼'ûJ|=øuàÿÂðÓPÿ„kE±Ñþßÿ Ö£Ú¾ÏCæyØ­³vÍÛwg=kŠH>”œ½†'_îRÿåÇÒPÄסJ¹åI|O¢·ò¯™ûJÑ0øiÿ…þ£ÿÊ:Ÿø˜.ÿŸŸü—ÿ.5úõùö¿ð'ÿȇ™ûJÑ0øiÿ…þ£ÿÊ:?â`¸Wþ|bð _ü¸>½_þ}¯ü ÿò!æ~ÒŸôL>á¨ÿòŽø˜.ÿŸŸü—ÿ.¯WÿŸkÿüˆyŸ´§ý†Ÿø_ê?ü££þ& …çÆ'ÿ¥ÿ˃ëÕÿçÚÿÀŸÿ"gí)ÿDÃá§þúÿ(èÿ‰‚á_ùñ‰ÿÀ)òàúõùö¿ð'ÿȇ™ûJÑ0øiÿ…þ£ÿÊ:?â`¸Wþ|bð _ü¸>½_þ}¯ü ÿò!æ~ÒŸôL>á¨ÿòŽø˜.ÿŸŸü—ÿ.¯WÿŸkÿüˆyŸ´§ý†Ÿø_ê?ü££þ& …çÆ'ÿ¥ÿ˃ëÕÿçÚÿÀŸÿ"gí)ÿDÃá§þúÿ(èÿ‰‚á_ùñ‰ÿÀ)òàúõùö¿ð'ÿȇ™ûJÑ0øiÿ…þ£ÿÊ:?â`¸Wþ|bð _ü¸>½_þ}¯ü ÿò!æ~ÒŸôL>á¨ÿòŽø˜.ÿŸŸü—ÿ.¯WÿŸkÿüˆyŸ´§ý†Ÿø_ê?ü££þ& …çÆ'ÿ¥ÿ˃ëÕÿçÚÿÀŸÿ"r¾/ðïí)â«ËþïÃK_ìïhšîÿøNõ<ÏìýNÖÿÊÇö(Ç™ö_/w;wîÃciÒ—Ò…iÍKØbð _ü¸åÆÕ¯Œ¡*‰^Úó7³OùO ¿áj~ÒŸôE>áÉÔùC]ñ1ü+ÿ@ØŸü—ÿ.<ìŠý×ãþAÿ Sö”ÿ¢)ðÓÿN£ÿÊ?âcøWþ±?ø/þ\Ùû¯Çüøeà‰Z_ÆÚkâ¯Ä-3ÃZaøƒ£Asg¦xwY¹Õ~Çö;;K7K-¶wyHêUOß`q´ûŽñ*ãúøºÙd*CÙ*JJ¤b¾'Q«rÎwÙÞö¶›ßN¼~"t²¬6Y8¯r¥ZœÉïí#F6µ•­ì¯{»ól­¯}ÿóÿ“Føgùý×ÿôõ_¤>}©@P@P@PÊüË4~8Ó`%,:‚ û§¢H~¼)ú/©¯ÈüDáö¤³z Ge?ÉKô#ð¿¸]©¬÷ £RßteóÒ/þÝîÏšb¯Ëà~3ó“áì¯ñÏà'Åë_ õ_Ýø;Z†[8®µ¹. ¶ví*ÈŒ`EåM¸Æý­Ü®xý;3â|¯=ÀR§ŒŒÕH4íY»YêÞ‰ú]yõý8㛉2Ê4±ð¨«A¦ÔylݬõoDý.»>º?³7ì—ñ³à/ÅÝCÇwš¿ƒ5T¶—M»Æ¡x·)o%Ä34¨¿e Òâò– –?0­3î&˳¬ pÑŒã(µ%¤mtš·Å{k½¾F¼MÆ9Oå±ÂB!8µ%îÆ×QjÏß½µÞÍù‡ÅÙ#â.·ûJé´GÃ}Ãos ÍíÆâ9.-ÔÉoC…’(äʲD½@ “Ö£+â<-,¦Y^*µ¤“ž·³kfÌòn-ÁÑÉ%“ca;ZIJ6zI·³kfÍÿ³¿í ñoáx÷Æ>Ôuí[Ä3ë×÷z•ÕÕ½¾‘À·²² ´‘*™2Òmlã®N+*Î2Ü7ë§%ÅE$“rï)j¬Þ›\¼—>ÊrÌÃëP¥8Â0PI(·'ö¥+É$Þš+ Ñ¿gšwì}û6ðêNïk«ý­åYnfº•Ø}"U‘âEP •,K=Íð3e™.{okGt”WÚÚ×oÌëž{–UÏl½¥··,ot”RøöµÛ{ÞÊÅÏÙóöoøÿðWàwÅO„r7ÃýFçÄMssa|ºµúªÍq½´‹0ûUÔ¨b_j,7Ìslc¥Š\ë–É«GdÛV÷»»z¶w–æ¹… jö‰BÉ®Xì›’·½Õ»=´×Èâ?g¯Øÿã×À üiðÖ£â?‹éÍu­R¾7šMÌv׉±!¶Œ7ÏtŸ1JìÈÉ®ÌÏ:Áf£R1•é»Ù¥f®®ž¯¢ìwçC—æµ0õc Þ”¯f£i&ãtýçÑv6¾(|ý¤þ0ü'Ó>øž_…ò¢GhÅo5û^â-„H‘ ¤®"LÎñ8,vˆxŠ\ëwKkç}—M Ëó,³Šxº>Ñoîû¶×¥ïª]4ì7űÍ×ì­¤ü ðÇ‹a—Åf¬5õÔµhmï.ÊÈŽ„.æŽ=’å=N:(gKëï8û­ZËt¿¤uaø…iËRë\¶[¥ø]èyÖ³û~Ó¿?gÏ|Õu߇Ú|~¿ŠîÙL÷…®¡ÿM¥™b`®†á”"¡ ­’ÊW ÝO3ÁÒÅÏ'̼¼º_Èô©g8 8éâá¾ug¶›l¯åÜú—@ý™>!벯û2|@Ôü7a}¤Vºn± \ÜÞG'•p·Hó¬°ÄW÷¨…ÝòóœñX-~ξ ð•׆‰£Éâh,müDÖ±6¡›3ÍmÎÁæ¬2:£ÿ×÷ˆ?ô÷_Õg†}­@P@P@PkË;]BÒæÆöšÎá rÅ Èu#ʽxšr£V<Ñ’³Oªf8Œ=,])Я(I4ÓÙ§º> ø‹ðþóÀºËÆŠòhw,ZÎäóÇ÷ÿx~£ŸP?Ÿ¸—‡j䧯F_ ýšüV¾ŸËœ]•¸câ“t&ï y+þòüV¾K‰‹µxP>jŒ]«¦]3FéÙLÑŽº`v@Ñ‹µtÀë¥jêצ»ÿ ɾ‡ÿAjè‰Ù´ÿ{Oúãþ‚+®d H«¦d ­3þ?n?ëÞ/ýZé‰×¨‹µtDë£tÄì£jêÙJ*é×L‰4Ù5 Rçe•Ç—9û[cnZNŸ#z{tº•ލÉDÚ‹ÃsñÿMþþþ5]š:¡Q1xn~ŸØš?ýü?üjºa4u¢<£ã†¾#jžox Á~ÔcÔVH5Aâb{2ãËAŸpx,0Pî8§¥IÚWe¼ÂrÉ6ü¿áψ?á|UÿFÑû<àÚ_þPÓþÓ£Ùþæ?ízŸáþaÿ kâ¯ú6ÙãÿÒÿò†í:=Ÿáþaý¯C³ü?Ì?á|UÿFÑû<àÚ_þPÑý§G³ü?Ì?µèv‡ùžgñ§öOñ/‡>|Yñ ÿ³ßÀ: /Ã:¥ëêF§#ÝÚ,v²¹–:,y•BîQæ&X™zІcJrQIëéþeÓÍhÔš‚NíÛ§ùžŸÿøø¡ÿB/¯ü ð¿ÿ0uùÏúƒœÿÐÏÿ&Ì?ùæ}Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈü;ãâ‡ý¿ ¿ð'ÂÿüÁÑþ ç?ô3ÿɳþy‡Ö©ÿ'þ‘ÿÈ oø'ïĸÊùžøV<í¸ð¹ }?á®gæX%ïæ—}”³ ÿę̂â!-¡ÿ¤òQ¦þÁþ"ÓÈwð/ÃiçVܳI†U“ècðrWÍbrꦟÚ-.Êxë~8ölªÓ_cÿIÿä Þ+ýœµïxsSñ_ˆü5àôÑtäW´ûm/P˜ÁFØ-ü"ò¹Ë ž€šò£Áù¥iªqÇjûË¿±§Ö µåÿÒùåM#ãWìå«ßÜiz?Šü1}©À¬ÒÚYxZI¥ˆ) Å‘|G]u|5â.ibR_ãÄ~¸â~¹K·à¿ùÔ| ¯|0ñ÷<9ðóÃ7^ëÆuÓ¬uÿg £ /<¡e¸ð„q‚±Fí˘›Šðÿ<ÃQ•z˜•Ë]©×v»²Ñc[Ý–±t›²à¿ùêdýš|\˜Ï‡¼øK¤ó:+ÀŸc—üÅþ8Ÿþk5öÑþ_Ëÿ‘.Çû:øª3΃á!ô—Jÿæ|Wø¿æ+ñÄóQ^Ö?Ëùò%Øþø™:è~I4ÏþQ äžCŒ_óøâ?ù¤¥V?Ëù‘v?¾#LgFð×á&ÿÊQ\sÉ1kþb?ÿüÐR©ß—ù£ø3¯¡Ò|=ø>ŸÿÊ\sÉñKþb?ßü¼j¤{~_äyOÇ=cBýœ¾ê~!i–'B´š+e·Ò£°šâæi jtÄ\ðNY”aO5Û’ðvgÄØàp•×;»»u’Inßï›û“dÔÄB”y¤¿/ò8mWão„ô¯ÙßDý§4¯j:ÿÃkñ¾TÑmô¯µéñ‡’)$ž9­"P©4F&Øìw2í ¤°è¥áîiW:žCS uã·4«rÉÙ4“U$îâù•ÒÒ÷³Ð_[‚§íT[_/ò;?٣⇆¿jj¿<á»?FÓõitya×âÓ¡™¦Žf,« ¬‹³mÂKÜt'Ëâ¾̸O6¼e)EM8:­Y¹/µ4ïx¾µ.†&âåù‘ôŒ~ÔS­žš>oÿÈB¾Bx*«þ^éü°èR]¿/ò%o߸À´Óÿ·ÿä:Î8:­ÿÿKÿåƒæ]¿/ò)IàMÁÅŽ—øµ·ÿ šë†³ÿ—¿úsÿ–λ~_äR“ᶬý4ýýZÓÿ•ƺá—Wò÷ñ©ÿËIç]¿/ò)Ið«Z|ãLÐÏÕì¿ùVk²^!ÿËïÆ¯ÿ.'vü¿È¥'Áíuó'@?W°ÿåI®¸e—ÿ/ÿßü¼Ÿiß—ù¤ø%â飸sñ“Nÿå1®Èd¸§ÿ1þh'ÚG·åþE>x•Ï'†ÖM7ÿ”f»!‘bßüÄþ5ÿù¤—V=¿/ò)Iû=x¡ó ŸŒš_ÿ(Muà Æ?ùŠüqüÒ'V?Ëùò'˜iþ𿈱ðkÀÚßĉ½#ÁšA€^j ¾»1¦ŽÀŠ<ºYc_•N7dàF´<:ϱUaB†bç9´£óÛnÉ$³+¶Þ‰-[ÅÒŠ»†Ÿöçÿ `üý›£ý ¼3¨øÇá™ð³\ð토ú]ÅÓÁ¡X˜î’(¥hü»Ÿ‡Ñ¹ÄsÄÛ‚í;¸9 qÞqY^X\n:TªÆ×Œÿ´c%tš¼^dšºi«­SLQÆÑšæŒn¿íÏþ@õÏøwÇÅú~àO…ÿùƒ®_õ9ÿ¡ŸþM˜ó̯­SþOý#ÿ=÷à'ì÷â_‰t/ éÃ[ðåÁ‡þ‰4·ó|‡w›ö-JÆ<åÛ¿ÏêÛ|¯›Ìú®È1™¶úÞ+ÛsòÛ\Cµ¯ãâqÝ|›{ÜÚráZ¬jÛ–6û¿H£Ò¿àžXÿ†Eøgùý×ÿôõ_V`}©@P@P@P@懦xL¹Ò5{ešÎaÈ<=™Ofqãð|Ï,6&<Ñ—áæ»4pfyf8ÂÏŒ‡4%÷§Ñ§Ñ®Œø£Çõ^“"µÎ‹#~âùWƒþËÿu¿CÛ¾? ϸk‘UÕsR{Kô}ŸçÓËù·‰¸GÃUýåÏA¿v¤»Kð}<¸Ø»W‹ç`hÅ]1;)š1×LÈQv®˜tÍ»WT¸5ÏùKô?ú WDNÊgkþ¢×þ¸Çÿ ŠêÙR*êÙgLÿÛú÷‹ÿC–ºbuÀê"í]; hÅ]1:àhÅ]P; iG]0:àlh?òÔÿëÞßÿBšµ} ßC·Šµ‰´žóËR‘¹êÞ”êVåVŽã©ˆä\°ÜÉ$““ָΠ€ ð¯Ú‹þM›öŠÿ±_ÿÓ|õ®øÐõ_™¾øôýWæ}“_P}ˆP@P@P@P@P@P@P@P@^Y¶ü©×Ö¼l~eì¯NŽýûBÜ Ä’Iä×ÉÖ“›r“»7D-Ò¼ú…¢&í^}B‘üÂÁ:~"i ÿlŒúö¯¡x›V¶ŸCÕíßšæµp¬Ú¥›†hm£wXñÈÚ Qœ°ÏÝqXœ¶”#$µ‹÷šŠø_Wcš“´ÙûKðÆOí;®x—âw‹<&öz¿Âë'„š{[í*êÖÚM:Õï-f|™Ù/&B´„V?šQ–UáéÎê¬"åªi¾g³]4[?™Õí5}ñÆÿÛãö‘ø1ûZ音ððŸ€þÓ“|øÏð‹ÂZ„×’ÛÚé°xòäÍ%ÅÜjÖiçܲ’Hâv1E·,À¡[“ýQÀf_ö†¼•®ß:V´~-#ªÑ6µ}‡íçòIšWíçñ³Áµþ“û3|{ð‚­lµ›ë=>×Pð}ÅÜ­m%â¡¶c,ä ”¼‰~ê" b2 Á_„°¼’Y®]VmÅ6ÔÒ×—âÑm³kVZ¯(Ôäš6?oßÛ ãçì‘â/Ëá /jþñp¼û®±¤ßµÝ‘µK_3Íš;ÄI½É+¶5Ú¸ó\<ÂùgRª±¤gN×q”lù¹­dàÚ²ZêïäV"¼èÚÖ³1~2þÚ´×À¯‡_~9xÇÀ¯þøÝm~Ó¡iÍ}£§¼ÖÿhEûKÈbÜѬ‡QWn_Îɳ¼^+,ÃÖ©Ô¯i>WgÊýÔ¯£·Ú×}6ëԥͥftŸ·'ǹÿá”<ñÁ~ð?‹~x´ÚÝÇzUÍÙne·hü›ˆ„RDÑÉ¿;Ží»Jí9óx/"Oˆ*åØš•)W¥ÍiS’VåÒW¼eu+«m¥ï{—ˆ«û¥4“O¹Áêþ:“âOü_]ñ„žÐ<9ö­êÑ|/jö¶6‰¬öè"ÝØeaVb\’ÌǾ*éà[â-<2©*–œ_4ÚrnT”ÚInì´ÚÈ9¹ðÚßðçÿÉøáÏ„_±/Ɖ^-–Hü=áïj— $˜Óôб $îåQA na’:Óñ[+¯qf/¯~¥(%}¾:—oÉ-_’ Õ:œ¶OôGA¥þÜ¿´—‹þü@ý©|1à‡ö ¼3«­ü#:‹_Oª]Á¾’UºI%Ún¬\ísŽo;áïàó¬? âqž&¬9¹ãÈ ¤ÒåiÉß•ý®«»µGVTÝh¥Êºu=ÇÅ?µÿˆ¼QûÏûR|µÐ-®ôµ2jÚ‹-§½²8Š[th&„‡ñºÈr d€·Ëó8¡‚âÏõo9sjéµÝ]IóFZY4Öê]ZZí,K•mOñ>^ðwíÿûWø×öiøƒñßGøgðàÁà½`[jw—ú(¦·u¶ ½¨™™åFžGy‘B=ü0øKá;h|*ZøªoÞ\Ë · ".Í:г…Žhes,«·ÌÚ¢B¥«?ø‡YF]ŸC'Çâ¦Ýez|Š)¥g­Fî•ÚirÅÞ×|·°þ·RT½¤"´ßþögì¡ûTiŸ´/À¯Œ¾!Ó­ü=6‡5ݦ½r3ÛÚÉmÍ$‘“óyf#|•ÉldüÇð¬øw8Ye:Šj.Ú“i'Ò÷Myï¦ÆÔ+ª´ùÞ–>Vð/íËñïãþñçâÀ¿ø'LøwðÖÌÞ­¿ŒVòæÿ\P“K± Ç.c·c†:.[%‡Ùâ¸++Èj`ð™Z’­]ÚðåQ†©kÌ›jïÊé7e±ÍLê©J Yw=¯áí«þÑ_³'¾*ü3Óô]⇃ᕵ-Ä1M¨YÄÐÇç’¢)!‘’X•ÂÊUÁ0\·c°ÈsŠXd¥:5-Ë(Ú2ÕÛª’º{éªÚ×Ò¡]Õ¦åÑóoìµûj~Øßµ¦ñOJðg…¾éZÿ†í­.aÕ®­µ·ŒËç‡Ï¼’—kîUA›ƒ–P¿Qžð®GÓ¡:ó«(͵kÆú[[ò«%}U›wVµ™*õk^É¿ÿûý·üqûUYüDð—Žt}Ã⇭c½³Ô4ØeKkÈd,Ÿ½„ÈHd&v¸ ¯ÀR¹8q_ áò R­‡“tæìÓµÓZèíÕyin£¡YÕº{Ÿ™ÿ³]·Å™?à¥?íü1­xFßâp×üV.¯õM.î}-æÜ} Çl— *£Û˜•n-ƒŸ»Í^påR2ö\´ì“\Ö²µÝšõÓî9¡Íí·Ôþ™´ÖãÑtxüKqc?ˆÖÖ!¨O¦BðÛKs°y­ nîÉ}ÅUˆ‰æ¿-÷ß³¿-ô¾öé}µùºõ6—¥vÓ%šV׌˜Y dõî+ír^"©…µKr‡~«ü×—ÝØæ«IKU¹¬`9½~…N¤jÅNéìÎF­£¬€ ( € ( ƒÿà¦òd߿뾅ÿ§« ú®ÿ’«*ÿ°Šúv&¯àTô‘áßðGŸù7?‰öP.ÿô×¥WÕøÛÿ%Þaÿp¿ôÍ3 ·ýÖ?ÍŸ¬5ùQÜyoÄ& q3ÞÕÏ×糤Àùóþ áÏì‰ðÈÿÓî¿ÿ§«ú`}«@P@P@P@V¼³µÔ-g²¾·Ž{I—l‘J¡•Ç¡•j4ñåJ¬T¢ôiìÌqzXºR£^*P–=S>kñ—ÁK‹W—Qð3ÚýæÓ¤ož?÷ýáìyú׿ßN“uòÏz?È÷^¯£×Ôüoˆ¼7©AË“ûÑþGºÿ {¯'¯›Ïoÿ¡MZËD¤ícªiÛSëRê=‘.£µ‘ffP@xWíEÿ&ÍûE؉¯ÿé¾z×ühz¯Ìß üz~«ó>ɯ¨>Ä( € ( € ( € ( € cȉ˰ZæÄc(aUëM/Q¨¹lGö˜ü´_ιu€{V_y~Ê}‰C£t`ì§Š£U^OæC‹C«tÓØAL€ ( € ( € ‚WÀÚ¿yxüSŠtá¿RáêÊÖ¾r¡²!=ë‚¡H‰ºWŸT´rÞ0ñ‡…üáÍSÅþ4×lôo i¨²]êwòá·RÁf=fQõ"¹=”ëÍS¦¯'Ы¥«?™ø'GÆ…¿ ¿k?‹¾6øã];B𦥠j¶¶šã7•<²jvr¢©PyhãvÊkî8ˆÅåÔ©Pƒ””“kþÝhå¥%¶ÏÙ ~×_³tŸ¼ðãà>¡áÏêßiB¥—WÌ­ëФ—¶OÐgíUñÀ—ðSßxÖÛÅzt¾Ð|Oá…ÔõT˜lM¥ÌäHßÃåßw¦ÓXäØ:ë…êÐp|ò…K.¯™;[Öú¤—¶Ný‹ŸµÏ<)iÿDðŠ.µû(¼= ø‹Â’jZƒÈVK¶Ï1‘¿„"‚O ®|ƒ Z|%ZŠƒæœ*ÙuwM+zŽ«Jº~‡®Áeu½'ĺ/ìŸâ=P‚ÿBÕmuÛÛ+ëfßÔ¦–ñÈÝYYH>†¼ éN…\}*ªÒ‹‚iîšö‰¯‘¦5¦ ×Ÿèc~Ú´Œß²ïì»ð7áõ¦¥«ü\it›ÛÏ Zé÷öÄÁ¦ÉnQã)ŸšK°Œ‡Uܤ® G e•rœï™âÚŽÓJm®Wy©hïÑ-{=¡^j¥(B;Çí±áØ> ÿÁ:þüñn¯iÄå°ìÃ(gšHUžìG¾±=Ê)aÇ̧½y\ˆ–sÆ8¼ÏèÚZÛkÙFýœ”[ûËÄ/g‡Œç5áŠ?!ÿ‚Djž—Æ:ZxžÞ+Í&]1§tw—µÕÔ0þûÛÇ$ª;ª“K•ceâD1*”½›q•í§,iÆ-ú)4Ÿ›g©µ}àœgìqáˆ>5ÿÁ?ÿiOÙ÷š͜ŸïõɵËMÌ©<Ð×$g€’KjÑ$ Ç’k^8ż‡2Üï°Ñ‚ƒ•´NNª8©s[{ k†5¾ÿ‘WöFÒg;_„ž3øEûRø“ÆÞñ•ž­?Ú|y­kZl³,L»tøX$²yˆà¨B䪜ŠÏëçòÌèæœ7J•jN ÕT)MÆWwýä•â¬ÕÒÕù ©r8Vm>בôÄ]/á×Â/ø'OÅ]3Oðßà ÞM.áêÓ^^ÞÈÒB"v¨h¥–ÞÐJmùØÉ'u|žS[žqö¥LBÅÊ‚Ju!Å%+¥ÊÚ”c)òóéwÒÖ7¨¡K $—-ú3ãÿ€Ÿ< ¢ÿÁ3iÏjÞ)Ó­%¹×]4Ç—÷ðÙ\i–6bè ç˾ÝÞ£ãx•ù`³‡Mº4Õ=z9F¤çË~öW4ÁÚt¥Nú»þGþÇøið§YøÇðö¼Öüeðã\à–«¯jš%–¯YcÛ:Åp1”'pus´‘šúN+Åã3Jx\LJã ðW»ä„å£OÞMÇ­ö³Z˜ÐŒ`å ·_y÷ÇÂï| ø1û>~Õ8ðW€5‡ µ»I´­7\ñN­w#øÞh­î’ÚåC[G$÷M`’Ò€6Šù~#2ͳLYV­¥(Â1÷.Óqæ‹´šQ»è¶îtEB›Š²üÏ¿à¿|ðø~ÒÏãoiº*µ–¨ƒ¨L#Í­¹¾ËÏð!¸„1íæ/­}‡‰N1àþ¯MËY­;¾[/½|”y®ÎKþãâ]GøñãÍTÕ­­u}{@û>™i3…{éc”O"F?ˆ¬QÈçÙI®ÿ(Ô©€¥R¼c+·ÚêÊÿ7bp)4Zøa¬iß³ÿüâŠ~1K'…ü9{®øžòßQÔ ‘bž¶žkwBî+®Ý¹É`:ñWŠ„³N£K ïÉFšiw“û„Ÿ%fåæ~ÿüøƒsñWá¿…~!ÝxCUð»ë5ÊhšÚ…º·‹Ìe¤¦ôU¡\gšüû…X,Dè)©òéu·ŸÝ±Ö¥Ì“±éëÒµ¤&H: î¦C/ÛNbm­þ¬þ•õY&k, ýGzoðó_©Xs+­Ínµú jJëc)€P@P@|7ÿ%Óµ-Sö*øÕ—§]ÞÏnšUì±Y@ó¼vöú­œóÊUA;#†)$vƘàkè8OC,Ïòün*\´©V¥9;7hÆqrvI·d›²M¾ˆÊ¼\éN1ݧù/ÿÐ5ýöuø‚ž Ð5=*[Ÿj- Z­”¶(ŠÎÂÚR«"©!.-î!n8’üÊÀ{þ(ç˜$âÌfg–Tö”*{>YZQ¿-(Eé$žé­WšÐÏF¦Š¥UZJ÷]µgêe|ÒyOÄõ—ö-êøúﳤÀùûþ ÜAý¾ÿ?ºÿþž¯éö½P@P@P@P@׈P£­i|—ùœïÀ=WRÕ~9ük—Q½šáÇ…¼,G˜Ä…&ï_ÎAÐtôžeÓPQVßô3ͩ’§+-C‹¼ñÏížðíý”ž1“Ç“A¨Í©i¯áDòmü\Ø›=Ù>’Y5mK{!Oøš&A~u \Íim:ôÖï‹m?òS•B;NÖÓ¯ÙÖòßâÛOü”á|EãŸÛDÔþ-ßéxÇSµšC¢i³xRÚHt×Fñy±–ÔÇh²Jàh¾T<É Õ>esqnRã E;t¾¿á¿_7÷y2ã 4”S²Úúÿ‚÷×Î]¶òa¯øçöÀð·„~#Ea'ŒuÛ}^k-fã–Ó_Ý#éú|Q[ÛÚ"N‚âÃÂ÷DÅ8ûsË#}‘ÀŒŒ(JJöW·_ð·×ÎKåÜ# 4¥Ù^Ýtû-õó’ߥ·;­KTøÿ&¡¦Ûj–Úïˆ4msÆw3Ée«xfÒX|;g§xëKµ²û6ËU!%Òg¹ºó® ²bÑna’/-ÜÂT­¦–]÷¼]ú÷ÓNöd%FÚY4»ïx6ú÷ÓNöe>)þÐz?ü)kµÒ>Ó®¼6ñiº•ý™öûD‡Jio!†õleŽðyïlè'Ô\Çl糤ù¶·Mu{Ùï§Ké§e¸ý•ϪK¦º½ìÞº_Ké§hîpŸ4Ÿ µ/ˆV—wÞ;‹ÂwÚìÏ©xÊ×ÁöWzÝ•“ëÞ0“Ì²Ž 9ß:èò´fÞåbWžh’¤Y"¹ºuÚöÚúmõÓ¯U·Rê:UZµíµÝ¶†úéת½’wgÔ?o<]¨~Å¿¯þ ivºg.~êskzm‹†Îý´™ ÄQî ,¥ÔïÀ3u<ô”V"*;s+}ç5‰ŠƒºæVô¹÷­}1õÁ@P@P@P@‘ªê±iñ’N\ôù×qî„0ÎRw¨öG^ ,D¼ŽkÝKU—î Ûü©˜q/ñæ+“ Ì£}-{ä(ѯxé:¸îoλ%Àhž0ðÇÂïøgǰèÑø¯GÓ¢ÓîFs5Í£G—G$±Dä´i0(0Å€ÈçYÍl>#Z¶Ë’MµÌ’zêî“kG{k±×M5¥¹è§½xMQ v® …¢#Ö¼ú…"#Þ¸*–†¯zÊ’Ž•ßL†J;Wu2I—½zÈ%+¾™$£µzÈd«Ö»é’É—¥wÓ!’Ž‚½ D²Uë]ôˆdËÒ½ d²AÐWu20ê+ЦK4í$ܦ3ÔtúWÝdÇR›ÃÍë½?àÕcgrå}ˆP@P@xícÿ&±ûKÙ?ñþ›®(Ÿ³,qÅðÛÄDŠ‘'¼tªˆ0êØv%må'6å'vÏ ¨åŸ×|Ó®qŸ kÿÀ¬é=€ùëþ Ûÿ&ƒðÇþ¿uÿý=ßÓíŠ( € ( € ( € ( € (®‰"²H‘¸*à ҔT•¤®…(©®Y+£˜½ðW…¯Éi´[usüPÿÇq^U|/Äk:)?-?+&'†ò¬V³¡ü½ßý&ÇÎÿ´‰§xáÞ«â}9dº·‘oq&èÛl83ÕëКójp¦ ë J?4ÿOÔòjpF_-iÊQù¦¿ÄøGCøáys¡xkP¹ðì>mî•cxéÁP-¼rSÀ-°ÿTáök?»þ Îø"šøk¿œoú£q~9x`gþ¿û]\x^ßòûÿ%ÿíŠ[þb?ò_þØÚð‡Æ{ÝoźöŠºGg¢i·ë)™œ±žëRˆ©±ƒŸöÏ¥tC‡)Çâ¨ßËþê§ÂT£ñUoä—ùž‹/õ·ˆÁºG“ú“]”òL,7»õåcХØ:{Þ^¯ü¬b]kšÅè"çQÐõ@åTþŠô)a(Qø ‘éÑÀᨚ_ŸÞeWAÖÕþÎò[þ6Ø©á_ý,×ëÈÍ~ÇÏô<<çþ]üÿCíZòO ( € (¿j/ù6oÚ+þÄMÿMóÖ¸ãCÕ~fø_ãÓõ_™ÝÿÃU|'ÿ oÄ¿ü5ž-ÿåuGú÷¿ô6Ãàú_ü‘÷U¯ÿ>ßÜÃþ«á?ý~%ÿá¬ñoÿ+¨ÿ^øWþ†ØoüKÿ’ª×ÿŸoîg°'Ž|5"«¥ÝË# †[‚õ%x³ñk‚á'f0MhÓSÿäN÷’cbìâ¯þ8òC¿á7ðçüüÝàÏÿSÿw‚¿èeºüˆ¿±q¿Ê¿ð8òAÿ ¿‡?çæëÿ.øŠ?â.ðWý ¡÷Oÿ‘ì\oò¯üüÂoáÏùùºÿÀ Ÿþ"ø‹¼ÿC(}ÓÿäCûü«ÿ‡ÿ$ð›øsþ~n¿ðçÿˆ£þ"ïÐÊtÿùþÅÆÿ*ÿÀáÿÉü&þÿŸ›¯ü¹ÿâ(ÿˆ»Á_ô2‡Ý?þD?±q¿Ê¿ð8òAÿ ¿‡?çæëÿ.øŠ?â.ðWý ¡÷Oÿ‘ì\oò¯üüÂoáÏùùºÿÀ Ÿþ"ø‹¼ÿC(}ÓÿäCûü«ÿ‡ÿ$ð›øsþ~n¿ðçÿˆ£þ"ïÐÊtÿùþÅÆÿ*ÿÀáÿÉü&þÿŸ›¯ü¹ÿâ(ÿˆ»Á_ô2‡Ý?þD?±q¿Ê¿ð8òAÿ ¿‡?çæëÿ.øŠ?â.ðWý ¡÷Oÿ‘ì\oò¯üüÂoáÏùùºÿÀ Ÿþ"ø‹¼ÿC(}ÓÿäCûü«ÿ‡ÿ$ð›øsþ~n¿ðçÿˆ£þ"ïÐÊtÿùþÅÆÿ*ÿÀáÿÉü&þÿŸ›¯ü¹ÿâ)?x*ÚfPû§ÿȇö.3ùWþþHäu]V×QºE#›aÝ¢u?‘þ•ü¥âG`x—>Œè×S纽¿zØ\,ðôùd½ïTÿìoXøŸÃQ*y·A×7õ _½ðø}`iÓXÚjv×Ý–ÿø Ã_-ÇV“vVÿ?ù"ÿü&ÞÿŸ‹¯ü¹ÿãuö?ñ¸#þ†0û§ÿÈœÿظßå_ø?ù >1ðÛ#9’è  þϹÀ'8êýåJ^%pEz2®ñtâÔ\¹'d䛊o–ɵ4·j2¶Ì?²1©ÚÊÿã‡ÿ$S—Äþ˜aä¸ÿÀ Ÿþ7_7˜qo†y”kbéÿà2ÿäM¡–fÙ/üü‘@êþ 'ýeÏþ\ÿñºù9Ä(“¿×a÷Oÿ‘:>©™v_ø?ù"…Ýÿ…%Sä\Ý+×Ïÿ_'Ä9O‡Êmà3(F~“ÿäM©PÇÅûñ_ø?ù"®ªm¥ i<?ǧþ„~e‚â,W ãTòìb©M>þ¦õp¾Ò6©Tÿ&vxÏHŽ5²Î’÷ k4Ÿª©¯ê~ñ§†ñ˜(¼Ï©Têš—è™ãO'ÄJW¦“_âŠüÚ%ÿ„ßßóóuÿ€?üE}/üEÞ ÿ¡”>éÿò$ÿbã•àpÿäƒþÏÍ×þ\ÿñÄ]à¯úCîŸÿ"ظßå_ø?ù ÿ„ßßóóuÿ€?üEñx+þ†Pû§ÿȇö.7ùWþþH?á7ðçüüÝàÏÿGüEÞ ÿ¡”>éÿò!ý‹þUÿÃÿ’9|eð7ƒ¬`¿ÕψgŠiD)‰á}[W›8'&Kid6à¹P •‚ÊfÄîÇÉÆ–gI[w)r/Ni¨«¾Š÷i6•“¶u²¬]sÊW¶KÿIo±ÂÃU|'ÿ oÄ¿ü5ž-ÿåuzëß ÿÐÛ ÿƒéòG/ÕkÿÏ·÷1Ãö¢øY0ÊißñþßïóÓ«‡Ç\16”sL?þ§ÿÉ-oäsþ[á‹4ÿˆÃoý°¯*§pÓÛ3Ãÿàêü‘¢ÃVþG÷1á£þ±âÃÇÿïý°®*œeÃlʇþ§ÿɰõ¿‘ýÌQûCü9lâÇÇŸÃßý±®*œ_ÃÏlƇþ §ÿɰõ‘ýÌ_ø_ÿX Xøçñðˆ‡þÙW N,ÈÙ…üþH¥B¯ò?¹Ÿ=~Ò¶Ì?üþ?ðŸÂÍsÅšM‹(ÕX±Ö|4-åŠ(ŠK>šñ>ç—3Ç£‹]y6e’çØÈàpøún¬ïÊ£(M»''¢•ôI¾¤Ô…JQæqv&ý™ÿmß ~Ð Gõox‡ÃWgPžËû7MÓ5OE¶0„?Ú­ì‚dîå1‘Žz×/brÞÆ}KŒ§Ù;JQƒ³òr¿MÊ¥Ö4bÏ ÇÆŸ°âÓÅ߃5Áÿ¶•òÕ8“%{ciàÈ™¿±©ü¯îþƒ[µñ_ãá hí­qTâ,ÿÌe/üó+ØÔþW÷|"Ç‹oþ>ÖþÛW Lÿ)óOÿGüÊöU?•ýÀ>(øU‡Þ$ü|/«ý·®*™æVöÅSÿÀãþe*SþW÷?þÑß¶‡Ã/ÙÏÀðø³\Ò|C©jW·dÓ´uÒî¬ò]¥Že¸Q@˸ŒŒ)Í{\1–GŒ1rÂà+Áò«É©)Y^Û'»{mêgZW4ÑÁ|ý²¼uñ+Tøvþ#ýœõÁ¾/¶–æi·÷:Êéê-¾Óº‰,£ÙçFÑ”*Ì1"“ŒÖyî_’åQÄÆ9œ%VƒJP’Pmór>VæïË$ԴѦ:S©>_sF}ƒÿ Ö‚ÙÄ:×ã¡êÿh×ÀÔÍpjðÿÀ£þgR§.Ì_øL´VÆ"Õ¿ôí*á©™`žÕ¡ÿ/ó)B]…+ÒXñ§øéWcÿi× L~íV?øÿ2”%ØpñšÙÄz‡ã§\ý§\U1˜gµXýèµØ?á!Ó—¬wÿ†ŸröJÊÌ:ÿ—‘ûÐr¾Ãá(Ò”s¥øiwgÿi×uÇÿ„ÿÃÊ9ƒ\ü4 Dÿíù y¶^¿æ"øÌèösìÄÿ…á¥ÆmõÿÃú™ÿÚÛO9Ë—üÄÓÿÀãþdû9öbÂÎð²žmüGøxgU?ûo]´ó¼±ÌU?ü?æO²Ÿò¿¸OøZÞQÍ·‰¿ êçÿm«ºž}•-ñtÿð8ÿ™.•OåpÓñ{ÁËÖ×Å_‡„u“ÿ¶µÛOˆ2…¾2—þ ‡ù’éTþW÷ü._©æÓÅ¿‡ƒµ³ÿ¶µÝOˆòe¾6—þ ‡ù’èÔþW÷ ÿ…Ûàe6~0ü<®Ÿý´®Ú|M’-ñÔ¿ðd?ù"ŸÊþáÇ_¨æËÆŸ‡µóÿ¶uÛOŠ2%¾>þ ‡ÿ$K¡Wù_ÜÄ?>©æËÆÿ‡€¼BöÊ»©ñ^@·Ì(ÿàØòDº‘ýÌUý¢>[“#Øøójòv|>ñ#{c“^Æ[Æœ?‡ÄBo1 •õýí=žíÏ U«r?¹•ÿ᪾ÿÐ7â_þÏÿòº¾ãý{á_úa¿ð}/þHæú­ùöþæðÕ_ ÿèñ/ÿ g‹ù]Gú÷¿ô6Ãàú_ü}V¿üûsøj¯„ÿô ø—ÿ†³Å¿ü®£ý{á_úa¿ð}/þH>«_þ}¿¹‡ü5WÂúüKÿÃYâßþWQþ½ð¯ý °ßø>—ÿ$U¯ÿ>ßÜÃþ«á?ý~%ÿá¬ñoÿ+¨ÿ^øWþ†ØoüKÿ’ª×ÿŸoîaÿ UðŸþ¿ÿðÖx·ÿ•Ô¯|+ÿCl7þ¥ÿÉÕkÿÏ·÷0ÿ†ªøOÿ@߉øk<[ÿÊê?×¾ÿ¡¶ÿÒÿäƒêµÿçÛû˜ÃU|'ÿ oÄ¿ü5ž-ÿåuëß ÿÐÛ ÿƒéòAõZÿóíýÌñÚWö•øeâ/Ùëão…4Í?âöï‰<-©è:\ üQh—z…í»ÚZ[‰e°TW–âxb]ÌigšÚpÖ&Ns:i7eZ›vŠr“Ò[F)ɽ’M½ž²ÕÁýÌ?gïÚWá–àMzÎ÷Oø„ÓIãÝ©´øo⋤òçñ&§2ñX2‡Ù"îBwÆÛ‘º²‚·pÖJ³:m'gZšv’R‹Ö[J-I=ši­,5gªƒû™íßðÕ_ ÿèñ/ÿ g‹ù]Xÿ¯|+ÿCl7þ¥ÿÉêµÿçÛû™F_Š~øŸ&¾®[žåYÚŸöf.~Ks{9Æ|·½¯ÊݯgkïgmŒêR?Ž-z£†ÿ‚xdO†%NGÛuïý=_׬Aö­P@P@P@P@P@1þ×_òE|CŽ»'ÿÒKŠO`?!¼;ŸøDüž¿ðé_úE `5iÖ|0ÿ’âÿû4/ý8k´ôP@_ìçÿ%¿ãgýŠžÿÒÍ~¼Œ×ì|ÿCÃÎåßÏô>Õ¯$ð€ ( €<+ö¢ÿ“fý¢¿ìD×ÿôß=k‡þ4=Wæo…þ=?UùŸ’ð«êÿæ7ÿñk_ÏŸÛÿõ0ÿË¿ÿŸ¦û/îä¿ýÈ?áVÿÕÿÌoÿâÖíÿú˜åßÿ‡ÃÙsÿ%ÿîG±Âmû@ÐOâþ×ÿüîkÃú¶GÞþ‡ÿ?Nï¯c¿çìÿòoþVð›~Ðôøƒÿ„õÿÿ;š>­‘÷£ÿƒ¡ÿÏÐúö;þ~Ïÿ&ÿåaÿ ·íÿA?ˆ?øO_ÿó¹£êÙz?ø:üý¯c¿çìÿòoþVð›~Ðôøƒÿ„õÿÿ;š>­‘÷£ÿƒ¡ÿÏÐúö;þ~Ïÿ&ÿåaÿ ·íÿA?ˆ?øO_ÿó¹£êÙz?ø:üý¯c¿çìÿòoþVð›~Ðôøƒÿ„õÿÿ;š>­‘÷£ÿƒ¡ÿÏÐúö;þ~Ïÿ&ÿåaÿ ·íÿA?ˆ?øO_ÿó¹£êÙz?ø:üý¯c¿çìÿòoþVð›~Ðôøƒÿ„õÿÿ;š>­‘÷£ÿƒ¡ÿÏÐúö;þ~Ïÿ&ÿåaÿ ·íÿA?ˆ?øO_ÿó¹£êÙz?ø:üý¯c¿çìÿòoþVð›~Ðôøƒÿ„õÿÿ;š>­‘÷£ÿƒ¡ÿÏÐúö;þ~Ïÿ&ÿåaÿ ·íÿA?ˆ?øO_ÿó¹£êÙz?ø:üý¯c¿çìÿòoþVð›~Ðôøƒÿ„õÿÿ;š>­‘÷£ÿƒ¡ÿÏÐúö;þ~Ïÿ&ÿåaÿ ·íÿA?ˆ?øO_ÿó¹£êÙz?ø:üý¯c¿çìÿòoþVð›þÐôøƒÿ„õÿÿ;š>­‘÷£ÿƒ¡ÿÏÐúö;þ~Oÿ&ÿågÚŸlø“«|rð÷‰omtÍwÆsX—>Y°Ò¥¹@>°xíò3}kïr9äø¼$eUSRþõNW÷O8¢ÿòDeSƒ´jJÞ¯ô¦Ï>ÿ„Ûö€ÿ ŸÄü'¯ÿùÜ׳õl½üþ~‘õìwüýŸþMÿÊÎ ãwíñ÷àçÁh>"[ëzèÕ¬< Â,¼S¦\ÁiªZ¾Ÿ­4ö³Å'‡t_:1ÄX)‘’7F·‘cwý_Ã\¯(Ìp¹– F¥QSSQ¨¥§ï-¬qø×·‹N“M^.M^v7‹S§QÔ—4ofÛÓkÚñŽýw/x ö€ñÇÅŸ Zx¿á¯¼a©X’°_èþMþ§¢ÝÑž;¸4ß^$q3™>Ï9-ÂFÄ’9àƒæ8¯°\5WÚΜVOÝ“œâ“nMSr­›Ð暊»q‚Mj’Õ.š¶.²²«+úþ:Aéó:ÿøM¿hú üAÿÂzÿÿÍ|Õ²>ôðt?ùút}{ÿ?gÿ“ò°ÿ„Ûö€ÿ ŸÄü'¯ÿùÜÑõl½üþ~‡×±ßóöù7ÿ+;߇^>øÕ‰l]¸ñ½Îšî¥æ…©"cܯm?Y—ë^.{—äÕ°’öR¤¥åV›Žq[ÿHcŽ/7j““^wÿåhú#ãÆ¹ã-O¸ðœÚüîoì2âåÿàAtLÆ%¯‹àúXW‰œq.¿Þ©¯Ç…_ù;7©^µ%û©5éþEŸÂmû@ÐOâþ×ÿüîkôï«d}èÿàèóôçúö;þ~Ïÿ&ÿåaÿ ·íÿA?ˆ?øO_ÿó¹£êÙz?ø:üý¯c¿çìÿòoþVð›~Ðôøƒÿ„õÿÿ;š>­‘÷£ÿƒ¡ÿÏÐúö;þ~Ïÿ&ÿåaÿ ·íÿA?ˆ?øO_ÿó¹£êÙz?ø:üý¯c¿çìÿòoþVy‡aøÇãÏøbׯ:Œ¼Cá+[ ùÛYðåå¤WfKA ¤ðÏ7ËûHGû4¬ÊÖáš;Ÿo/Åev³Â×¥N´¥NÎ8ˆÆN)TæÕgWå¿%×µ‚o•ºuR¥Ï^¾'ÔkJRŽ»Ý«éÞžûôù®¹Ÿð«êÿæ7ÿñkOûþ¦ùwÿáóeýÏü—ÿ¹6? ¶D£þ&Þ¼»ÛßþÉÊÿ*嫞Þ_ïÿùuÿáÖR¥ýßü—ÿ¹pü7Æ?âÕcþéþ?÷žŠå–wÿQßùuÿᱪÝÿÉû‘«ìcþ-~?îCÇþè°–uÿQ¿ùsÿá¡û?îþýÌÔ‡áö?æ™ãþälîˆ+žYÇýFåÏÿ†JöÝü?û™ä?´ˆ`ø'ðÒûÅßð¯lbÕ',4ó¨øFÎ~Ó"³)asá+DpŠ •ˆSŽä}`¥Å9¬p_[“‚NRå¯6ùU“·³Ìë5vÒ»ƒJú˜â%ì!Í˯¢ý`¿3åŸ[|ZñWì‰}ñ?ć@m'U’ g‹Oø}™ä[}µ#˽ƒHŠ5c"¡,/Her›K§ïò‰äÙÇ)ÂûNzjI9b¥Ròöm»Óž*Rk•»'Bé®kÛS–¢©<7´•¬ÿ»n½ùS¾ý™µÝ'áÿìŸâo‰Zß…QÓô{û§2¾‘¢W&$Ž?´Ï¡]F»Ñp÷joº¹çÈã¬%l㌨åT+òJ¤c§<•—¼Ûä†2Œ’oJ-é»éxi*xw6¶òÿí_æcè?¾8xà/~<ÚßxBÑ4}CʃGáÖ$´JûæSG»÷¼r„l9\²×N/"áüá¸vq«/i¹ýjª—3RjÑúÊ•½Þ”¥¾ú1F­YQu´Óû«ü¿S¹ñ7í;|?eíã…<£Gâ›­Y6^xïÀÿg¶Ö¯ô{hu N=2Ú)|¦r’G/•jûðLeX€y`Iã?ãGåœ- 6a•'N5Œ£Ï&®•Ó\Õ´½ÕÚÚÉk}rìLë¹BzÛúìTøgûGübý«ÿhøágˆôÿü,ðå¼×_o·ðíž©{¨D’¤(KIk"£Hϼ~èU înN™ïä~ðÝ Ã7£,N2³K•Õ8E¸¹=#R-¨¥gï6Ûº²,M\]g o–+É7ùXx?Ã_´ xƒâŸ‚üo®Ewáøìì¥ðÇì¼)mmq¾_8N’Eö"‘â)X•HpyÎóÌËÃO ‚Çåôœj9MV¢ëÊQ´yyZ—¶Œ’•ßÛoKik¾¸Fµå½:;À?!àœÞñGо!|@µð·Œ.ü?uŠ’K=ž‘k©™—ÏA´¤öwAFyÈU=³Ú¿£üjÌ0™~Y…ž3«'Q¤IÓ³åzÞi7èÛ^]O#-„§9r»iÚÿ£=óöõøÇñwàŸÄß ØøG_Ó`ѵ;©[ØjžÒ.M„¨ÞQ1Is¦G'% gæÁb>CÂ>É8§)­SJN¤%Èåõ£Ìšæ÷”1Ž—·M¯kêo­R…D¢ô~KõG®~Ùÿ´†·ðGPð—ÃÏxkKgš†*{4÷Qc+Nœc:oGä¿X£Ì~1øÃö‡ð7Á/ƒÿ®¼[¡£xˆYFÚd^³·€ùö¯q…äÓR ,LX,Ž RkÞ᜷†slÿÃС?Üó¾g‰›—»5­òœlä’¼bô÷Ù•iÖ…(VmkýÕÛÐõ_Š?µÿ þË^øÍ¡øIOx•­m Ýφ¬d³µ™’S,_FŽ&R`pª·NAuÎý­_?pžÅø¬‹‰“¥GšVUª)´œyUÖ*RNÒM·J)Ùü7Fµk¸áãUGWä¿ùÔâ´?ˆ.ñǃt;Ÿ†?þø£â¬ÐÁ5ǃ€ôæžvm¾l1B4DÚɸå¼çS°àœƒ^¦/'ÁeXê°Í°è`Ó’U¾³W•%~YJ_[•Ô»rE«ê•™©*‘^ÎIË·*ÿäSï9¼âÏýÊ9ÿÝ<×äqÍ?ê+ÿ+ÿøPïpþïáÿÚSx?óOsÿrv÷L5Ñ×þ¢ÿò¿ÿ…Déÿwðÿîf\ÞÎâÜçþä¬ÿîkxæßõÿ—þ§ýßÃÿ¹™Sü? †y¨ÿ„9ÿË×L3‹Ìgþ\ÿø`—Oû¿‡ÿsËûŸù/ÿr ?bø¯án§ÿ ßû+ÉñÏ…¿Óÿá þÍò³­Y/ü|¦lÎvÿÇô9ÎßÞgÊr®oõ¬6—×9ï†Äû¿Xç¿û=Wðkâ¯mÿ;oîÛž"§Ë(¾[k–ê¿éÜ4~©þÏ_ò!kÿö<øÓÿR]R¿ŸøËþF4¿ìÿ¨”Wð?YéL÷ùSs÷v·Ÿúu_ý Ú¿ª~ŒÛfÿ÷ÿsuÿ.þ¡æðNÒìƒðÇ>Û¯ÿéîþ¿«áŸlP@P@P@P@P@ó'ísÿ$[Äé²ý$¸¤öòÃÿò*x#?áÒ¿ôŠÀjS¬øaÿ%Åÿö*h_úp×hè ( €<"ãÄ6о7øãþï|EÑüÿ hiÿ„ÁãÄ^v/5Ÿhÿ‰m¶Ïõ{÷?ßÛòáZ•*¶ö½<ìsb(Q­ol¶Û[Ÿü'ÿ?è§þÑ_øhÿ3•‡Õ0½—ÞÿÌçú– ²ûßù‡ü'ÿ?è§þÑ_øhÿ3”}S Ù}ïüÃêX.ËïæðŸülÿ¢ŸûEá üÎQõL/e÷¿ó©`»/½ÿ˜Âñ³þŠíÿ†€ó9GÕ0½—ÞÿÌ>¥‚ì¾÷þaÿ ÿÆÏú)ÿ´WþÿÌåTÂö_{ÿ0ú– ²ûßù‡ü'ÿ?è§þÑ_øhÿ3”}S Ù}ïüÃêX.Ëïæy—Ưü_»ø7ñj×Sø‹ñæçM›Ã:¤wÚÇÂÁei4FÖPËqqý“‡“Íj’ÛÓ…G †Œ“Š×Õÿ™PÁá#%(¥u¶¯üÏ:ÿ…3©ÿѺÿÃbßüí+ð¿ì>*ÿŸ8ŸüWÿŸ§Ò{Z×Ü¿ùP™Ôÿè‡]á±oþv”añWüùÄÿàÊ¿üýkCºû—ÿ*øS:Ÿýë¯ü6-ÿÎÒì>*ÿŸ8ŸüWÿŸ¡íhw_rÿåAÿ gSÿ¢uÿ†Å¿ùÚQý‡Å_óçÿƒ*ÿóô=­ëî_ü¨?áLêôC®¿ðØ·ÿ;J?°ø«þ|âðe_þ~‡µ¡Ý}Ëÿ•ü)Oþˆu×þÿçiGöÏœOþ «ÿÏÐö´;¯¹ò ÿ…3©ÿѺÿÃbßüí(þÃâ¯ùó‰ÿÁ•ùúÖ‡u÷/þTð¦u?ú!×_øl[ÿ¥Ø|Uÿ>q?ø2¯ÿ?CÚÐî¾åÿʃþΧÿD:ëÿ ‹ó´£ûŠ¿çÎ'ÿUÿçè{Z×Ü¿ùP™Ôÿè‡]á±oþv”añWüùÄÿàÊ¿üýkCºû—ÿ*øS:Ÿýë¯ü6-ÿÎÒì>*ÿŸ8ŸüWÿŸ¡íhw_rÿåAÿ gSÿ¢uÿ†Å¿ùÚQý‡Å_óçÿƒ*ÿóô=­ëî_ü¨?áLêôC®¿ðØ·ÿ;J?°ø«þ|âðe_þ~‡µ¡Ý}Ëÿ•ü)Oþˆu×þÿçiGöÏœOþ «ÿÏÐö´;¯¹ò ÿ…3©ÿѺÿÃbßüí(þÃâ¯ùó‰ÿÁ•ùúÖ‡u÷/þTð¦u?ú!×_øl[ÿ¥Ø|Uÿ>q?ø2¯ÿ?CÚÐî¾åÿÊkø1a⿆zú\Ùü$Öí-%8Yx S´ãßìž³'ñ”WËqGñy†q©†­&¿š\ßús6¬¿òSzª4å£_×¥4}…ñáG„¾0ø|^ê> µ]WfWûoÃV¢@qé©i“0ÿ¿?…~+„Æg|Œú¾#ÚSWÛž¤ôÕzkÿ'ùžŒ£K«?’ýS?=üEû=j%ôöñ|$³¼…Xáì| gvúÛü;•&5ûvMÍ3ºQžU¥~ÕkíÙÜ_à6¤aMûÖû—ÿ+)ÇðšÒ÷÷ñwìÓ¨kþŸW³Ö¦Òâðç‰|<—Ö×Öñ,Òhþ²–HÂê2¾ò8ðÁL©/ßdßëfSÞË VniYÏ–ªM=íW8©§+’j ·6Ô9_-OaR×’Vù~T×ê[Õ¼ãýwEð÷†µŸ†Zí熴?û'G¸øw3Úi^{‡ŸìІ»!ó}Š70Ëdó\8ì¿‹³ òÄÖ¡YJVºƒ•8è’Òó¸Ám­¢®îÝÛl¨Ïd×çùÓ9¿øS:Ÿýë¯ü6-ÿÎÒ¹?°ø«þ|âðe_þ~•íhw_rÿåEý7à…ýåõµ´¿d†7p “ü7X•G»IðÝ~,>µÇËø—‡•zÔñŠ[º•LñþL¨ÎŒ“_rÿåGØÚ¯ìÙà] áòÝÙ|>Ò¥ñ u]?ÁºLò†ÿvÈãÿ3í_e|EŸçyÇÕ0ó«5{rªµÿ'þùž„èÒ§O™Ûî_üè|­x ÆZÐX5/…ÅÜp‹sðöâ`£Ø?Ãvð¯Øð¼)Ä8oz–¼[í)¯Ë;GŸ*ô¥¼—áÿÊÎoþΧÿD:ëÿ ‹ó´®ïì>*ÿŸ8ŸüWÿŸ¤ûZ×Ü¿ùP™Ôÿè‡]á±oþv”añWüùÄÿàÊ¿üýkCºû—ÿ*øS:Ÿýë¯ü6-ÿÎÒì>*ÿŸ8ŸüWÿŸ¡íhw_rÿåAÿ gSÿ¢uÿ†Å¿ùÚQý‡Å_óçÿƒ*ÿóô=­ëî_ü¨?áLêôC®¿ðØ·ÿ;J?°ø«þ|âðe_þ~‡µ¡Ý}Ëÿ•ü)Oþˆu×þÿçiGöÏœOþ «ÿÏÐö´;¯¹ò£^Ãᦑ•?î“¿ÃW_ýç \˜ŒŠ"ï*8üSÿŸl¥V‡u÷/þVnCð—Qÿ‹7r?î0ÿÞz+†y7õ¥ˆÿÁ•?ùòR©Gºû—ÿ+5"øU¨?âÐ\û§Ì?÷@Í<ŸˆúÒ¯ÿÔÿçÀÕJ=×Ü¿ùY©Âëñÿ4–àÜ‚Ãÿt1\³Êx‡­*ÿøOþ{”ªRî¾åÿÊÏý£¿g/üEø_{¥xKᦥˆ¬.#Ô-a²ðuå¼—lŠêa …lI,²6αäÀGÒðTó\“7lm®”ÓŒœ¤ÚÚ|Öža_fµå¦åkÛ­ñĪu)Ú-_úþâüÏžoþün»ý–ᄲ·ÄdñÄ´×ð„…Ä—ba*È4qpÀ¨T8½gûÄŸ-},®T¸½æòÅ/«´Ú\õ-w4ñ [½h%µŸ6§;ðþÏ—_—Kþ'eðsörøâ?ٯƟ ¼Qð“Å~ñuäòÜ[Ýë¾ Ô" ‡ŠH±*hSÌWtX!nÓ‚F$7•ÄØœ^аùÎ:Ôb’jO¤”½×Š„/g£t^½[µ®ŠŒ¨:rÑùÿû/ó3>|ñ/‚¼+­økâßì}ãíSÄv·’Ok¨/ƒÒÞÄÊ D’É£ÝÁ•Ž^TL8à`š×Œc™æxÊx¼›0TéJ)J<ó‹‹MûÍ,E-,ÖД´{è~HEƤ.ýù3Ý&ø{ñ;Âÿ ü:gý—F¨uŸ™5ßh>ˆÜÙi2G.dѼ¿µFc¶Ý4r¸'…ˆgz|ŒpUqÙÍ[c+Söt­N´êTå•TãÛÍìåyÚ‚vø¦ö{ó(Ó^êÕê’[}ÛŸ!|fý’üQ®ø¯ÃþÏß³—Å)&ÞÚη¤êBÖ '–cilmÌ{x[‡ÝÛŒEáž!Æàðu¥Ä¸ªSµ¹yš³½ÔjÔNúZö{ó•©FR^Æ-zÿÃ#öCÃÞÕ´ýH±Ô¼+%Ö£okWCÃ.¢ygù¼8O$É'žIë_ÌØÜ.aV½J”©TŒ[m.ih›Ñi¶‹²^‡³A$›_×ýº| ÿø]ñ'Æö?|?ðû࿌õ›Ë g¼ºŸ@ð…Ûĉ"„Ui"Ò­Fì¡;IlyýwÁùdÔÅâs:ѧ¨Å*•wNí¥,E]5ÞË®®ÇaûÅEÿé£ü Öþ0þÉ¿ï<â øš iºTâ ]ؼwÖÐÀá²4+ÇçD2ÌÄß3rOÈâ±X¾ãIgPýõ'Z¤×³ššpœ¦­þóÊ¥Ë+¤à­§ººoƶÙìì–«¯ÜxÁMã/ÁÏÙóâ§Á¿~Í¿ïR6á³_[Å8Lñ. <Âcéǽ›¨¥7G’NOÜö‘»kEhK]ô0¡)Q£*R‹¾¶Ó¿Èì¿gÙ·ÇßgOŒ:¯¼ ®ÝxçÆVFðî•¢\ê7v¨"–(¢ÙMó—¸vc€*ã$qåq¿ËøŸ/£€—. +ûIÉB2|Ñ”ÝXih¤¹¢Ûw²³W¼5‡£7-ßMÿCŽÿ‚wø;â7ÁŸø]Mñ/à—ÄM7íöºuݘ¹ðeû›nn„‰ë)s'úDxA´°ÏÞÛÇ¡ã<°üMýœ²¬])òJ¤ejÐVçäånÕaeî»·t´ÚúÎ]z<üñ}:zùßðMï†?~üZñJ|Cø3ãÍÏ\ÒM¥­þ¯áKèm’Tq1K%«¬yT Œ± HÑãvaÏ2j/-ÅÒ©*Sæ”cVVk—Hª‘oW­¯ew²[ R¨ùâÕ×oøMð/à—ÅOØßöŠñµÎ«ð—ž,øM¯YÍga®øSD—T0!™%…¦„@ò)UVÇ–â ’£ž+Ï0&pÆ4qP¡¥%)B¬ýß+Œ”eÏ»¶¥{m™T)KYÞ-ÅõZŸ¡ µO‰þ7ñu¿|8¹ðßÄ0[ø{OÖt©vÁIžæp,ÜGb8Ùð `2+ñÌï(Âexl6 YÖÅ>gVP›t£¯»Þ¤o$µ”“qÙ.§¡J¤¦Û’´zwüÊÙ_á¯ÇÙ§Ç_Ä_³¿5F}[-ì|75ÕõâL¦ gkicXßÞvás’úñ9_åø…ÇÓ§QJ¥çË8ÁÅó{ªq“’í­ßN§“…SÂÎ\ÑoM4ûuü/øãñCÆŸ§ðÿÀoÞjz_‡á‡Xm—³YÅy&&xáš+(–ES!]Ã*Fî)øM‰Ë²,.8Œd# ÕnŸ=H©¸/u9FU&âݯowG{9N¬£hìµ²ÿ€z¯í‘û8üKø¹?ÃÏŽ? ¾ø‚ëSÓm–ÖïÃè6w¾Ts¼±Éä6Ÿn¹ ÒVÜä2`œx^ç´øv8¾ÍåhMóF¢’”.â¢×2«Q앚´SNöf¸ÊN·-Z}:I¿´ÿÃÏ‹¿µ ÿ¯ x àŽ|;ghó\jº¿ˆü-&Ÿ‹J#P¬bÓáy<°®[`”™æºø 48ž;˜â£ZR²„)ÍÎR建æ«4¹®­Ìámyºо)Æ0»Ý[ôFoí§ð;âï‚þ|6øiðsÆúûøZÕbš÷Eð•ìÈÑ,) o™4»rÏû¢Hgò ë“Óá~2tñù†kšÕ/o+¨Îi;¹9;Eר’÷´´b¾ë)ÆÅ8ÂW·—üf||øgñCÅŸ²ÏÀÏøgà'Ä üe¦4ê¶Þ¼Y­þÍc-¼¢V]&æFR7\K¸sóýñÕž_ÅùžaŠÄEPŸ´ån¢ióÔŒãÊž"káNö§ mîü-b>ŠÕ[§—¢üÎû¾ø› ~Íß t+Ù—Å:íݦ¤ºg‰¼;}à`oÚĤò<Ð૵¾$óæ9 ÿy8ü²¦3Šq¸ˆc(ÊtjF¤ù9ï£.LNÍ)^>Î fßI\f£B)Æý¶¶ù¯ÕŸ-üfý“Ý£ÛûÂÛCƒ•ÛŒAáŒó0Ãa+>"ÄÓ›VäPQæjÎ÷å«Q;ék¸½ù·Ó–µ89/bšþ½ú£¦|4Ö,´}.ËPð ·wööÑE=Êø2LM"¨ à7„¹ žY<“Ö¿¯€Î+WJTkF-¶—<´Mè´Ì’ÓÉ%äQJšI6¿¯ûplßoOüÓÏýÉL÷K5pË3Þ”ëàsÿç 9Òî¿þ@Ì›á¥ñÿšY9ÿ¹þ麡•gý)ÖÿÀçÿÏR\éw_rÿä -Kអ–—OÂK©!Ú©àrN=€Üÿã§èk¿ ’qj±„)Wmÿ~ü÷_šõ&U(¥{¯¹ò³É¿áLêôC®¿ðØ·ÿ;Jú¯ì>*ÿŸ8ŸüWÿŸ¦Ö‡u÷/þTð¦u?ú!×_øl[ÿ¥Ø|Uÿ>q?ø2¯ÿ?CÚÐî¾åÿʃþΧÿD:ëÿ ‹ó´£ûŠ¿çÎ'ÿUÿçè{Z×Ü¿ùP™Ôÿè‡]á±oþv”añWüùÄÿàÊ¿üýkCºû—ÿ*øS:Ÿýë¯ü6-ÿÎÒì>*ÿŸ8ŸüWÿŸ¡íhw_rÿåAÿ gSÿ¢uÿ†Å¿ùÚQý‡Å_óçÿƒ*ÿóô=­ëî_ü¨?áLêôC®¿ðØ·ÿ;J?°ø«þ|âðe_þ~‡µ¡Ý}Ëÿ•ü)Oþˆu×þÿçiGöÏœOþ «ÿÏÐö´;¯¹ò¢þ—ð·Äº&¥§kZ/ÁíNÃX°ž;«Kë/†òC5¬ÈÁ’Hä_†¡‘Õ€`À‚VUøo‰qT§B¾¼á4Ô¢çQ¦š³M<òÍ5£OF†«Q‹ºjþ‹ÿ•àæ½qwªê:Â-wRÕ5+ë­JóPÖ<ussss;Ï3¼Ó|7wlÉ+ aFBªªVCÄð„)RÃV„!Â1„§¨Â*1J1ÎÔU¢•Ý®ÝÛnM¶½­¶äÿ¯ùôð¦u?ú!×_øl[ÿ¥Ø|Uÿ>q?ø2¯ÿ?CÚÐî¾åÿʰÿdoÝxNŒ qài|:o<3.Ñ'†‡ö­Û>Ñ<Ý»‡üüíÝÿ,w~÷ïøšà–'ûN#~N_i)KnkÛ›¶êöö]>?±ÉŠ”%nFºíÿìÇõùHÿÁ;ÎïÙá‰ÿ§Ý|åjþ¿AG)öµP@P@P@P@P@3~ÖË¿àκŸÞÎÖâ“ØÈmvx_ÁiýÝKù' `4©Ö|0ÿ’âÿû4/ý8k´ôP@ƒû0Éoøçÿb§„ÿô³ÄÉŠèqc>ÏÌû®¹N € ( ýª¿ä×ÿiû¼Aÿ¦ëŠªõ4¥ñÇÕQW¦zá@P@P@P@P>§¤C~‡ ;üߎ<=ÀñmåT[3³ ‹•äqizžŸ!0–*U¯åüÃx§„qx7'úÔqT1 ÞšÖ©l@=Åm…ñ7Šòi¨âbÚóB– …O„¿Šæ\ b¯¬Àøû¦Ôq4L%•Åü,¿Šàaó¡¾³ãæ_V?¿¦Ó0–W5³2õ_ý®?&ÜZø^?ñû õ,¹YKFtárÿe.išÓ0n¥ž™¯­ðS‚*áͱkYmsŸ1Ä©~î'g_ÒçŽP@PeN:Öš~ÒÛ¡§fUn•óÕMQ u® …¢#Þ¼ú…"&é\ DMÖ¼ú¥"#Ô×RÈOJà¨Qu¯>¡dG©® …ž•ÁP¤DÝ«‚¡Hˆõ5çÕ-õÁP¤BݫϨZ"=MpT)õÁT´5{ÖP%+¾™ ”v®úd“/zô)J:W}"IGjï¦C&^µßL–J½+¾‘ ”tèS%“/Zô)ÉW¥wÓ%’Ž‚»éÉGQ]ôÉf•¤dfCß_kÃøF“ÄÉy/ÕþŸyÍV_d»_NbP@P@P˜ø÷þ>¦>žÖOäÖ†”¶|íÿïÇü2Ã,Ïî¿ÿ§»úhµè € ( € ( € ( € ( € ù›ö¶8ø3®Ÿi¹ôÿE¸¤öòB9ð¿‚ÎsKçþÜᦀҠ³á‡ü”ÿØ©¡éÃ]  ( € ôÙƒþKÇ?û<'ÿ¥ž ®LWC‹ö~gÝuÊp…P@x/íUÿ&¿ûHØ…âý7\USø×©¥/Ž>¨úн3× ( € ( € ( € ( € BªÝ@5J4ê«N7mlU’ÆÚ_¿ŸÂ¼a†q½HmÔÒ¡Qº×TÕõçÔ)7Jóꈛ­pU)¦¸*–BzWBˆ›­yõ "=MpT,ø»öiý¹>þÕ^#ñ…þèž+²Ôt[Ô.ÄvÐFÑ™xCòÙaÁc½zÜA¸܂”+be¤ì¹[}/Õ#:UãUÚ'ØÍÚ¾*¡ÒˆS\JDG½pU)·jóêˆS\ DG½pT-.|qñwÇYücà…¿ô#g¨jŽu {ÇšÖ™%Æ—¡éÈv˜Ð©5ÜŒ~X•·¹`ªÛ×ê¸k’Ç ˆÌ³ªœÑ‡»N”d•IÍëw»ŒÞMY·¥Ú³Â´ªs(S^¯¢_æ}?i°ÚÛC=Ë\Oj¯pêªÒ°,B€'œÒþICM©@gÃù(þ/ÿ±SBÿÓ†»@@P@è?³ü–ÿŽö*xOÿK¨úн3× ( € ( € ( € ( € ( € ( € ( € ( †¯£¤°‘ó'#Ò¾–É^¥Woò5„ú2‘ï_1TÙ7Jóꈛ­pU)¦¸*–BzWBˆ›­yõ 9ßèþ)Ðuo]j½ü-Þh×ÒØ]BñEñ¿¾éßüyi§þÜ¿-|eñ¾‘áýkk}3Ã>ÖçÐí"y¼×;¼‚¬â5î$±bXœsèqö-àL>–àéNsRrX*’|¶_jé]·{$•´Hœ+ž)ÊS“²è´>·ñ‰þ+þɳßíãøºëÇøRy|y®Ì³Ü+m¬wnŠ…Ê\Ìû‰9erø8,³³Ü»‚¢¨{H¥YEYsGšSpM»^ [¢}í¯S”ðÔ§);ÛcóÃßüQâÏÙ{âgÆï~×úþ›ûHÚën‰á[_%Œ-hn cHV q%Áf>EÇ·~·‰á¬6‰0Ù6'„²÷ N£¤äùš–¾Õ¦Õ­½_•¸g*2©*žÿEÐúŠ_ø(GŽìƘ¢³ÿ…ÄÚ÷ü!-~`_!oü£?ÚüœmÝöPf6y‡îíùkæ!á® q«Ênþ«Éí­}yoËË}þ=/¿/[êmõÉ}[Ú}«Øù‡ÄŸv·áK%ì+hïpgHf)A¹'ËÇÎÙà®ß³ÂpþÄœ¦¾SàT- ªn/™(ëíww¼ºô^wç•WJ¢©ïv¿è{ŸíiûgüeÕ?eÏÙâ‡Ã{ÍCÂúO~Öž(Ö4²[[«fHM´0&$‹vÊrˆ@ÎgÉá ËhçÙ†•IPåöq–ÍJï™®¶\©ô×m‹¯ˆ›¥ GKîwß þ,ü!ø›ãO„ û?~×ÿ¬+x‚úåuý86g·ˆN²Dn˜a–)æ9Vc–áñ?ÚÙm'MÂ\³£®Ito–Ï•ur]¼Ç Ân>Îný™û";Wæ”ÎÂeë^…2Y*ô®úd2QÚ½ d²eë]ôÈd«Ò»é’ËÖöÏ6 â?__¥}NM’ÖÌZ›÷i÷ïä¿«/ÀÂ¥ESeQB¨ÀúVO MR¤¬‘ÆÛ“»[ˆ( € ( € (Ž™s%î›§ÞJK<ÊÁ8²‚qíÍL%Í'ÔÛMQ­:qÚ-¯¹—ªŒO/ñù"âá‡UðβߓZO`{;Á;1ÿ ƒðÇ î¾ò·MöÍP@P@P@P@P@1þ×2$5Æ‘w!2©Îsm8þ´žÀ~DèEO†<Pa?°t¼˜c†šJ€:φòQü_ÿb¦…ÿ§ v€>€ € (Ðfù-ÿÿìTðŸþ–x‚¹1],gÙùŸO^|ø7¨ÜiWš‡Â_\ÝézAðýŒ÷ œe¥˜¤„ØÄÆ<¥±Ši£0®d®¸Ãy¹¥Üãç—sBãáoûÛxôø7K‡ÆßŪ6·i·¹º¹ŽÊæÂ'¸’=­q²Ööæ$YKª,‡h)3µƒ™Ú×ÐÞðÇ…ÈcUEÜîìpY‰<“I¶õbmÉÝ›ô( ýª¿ä×ÿiû¼Aÿ¦ëŠªõ4¥ñÇÕQW¦zá@P@P@P@P@P@P@P@P@KÉ’8oZò±ÙM,eåv]ûú¢ã76Xž?¼8õ+â±ø ø'ûØéÝmýz0’–Åfë^SDBzšàªYt® …7ZóêDzšóê~ þËÿ²Çíƒû!üAøÅqá…6']wDŸGÐ|K¿§Ãioqæ«Auq ²,Æ!Ì‚=ÇG\Òx‡>É8‹ ‡jî’R”ydÛVÕ&•¯ÙÞÇ*U(·eq?oÙsö·ý¢|mðêëÃß ?¶f𿇠ÒõA¬i6VÚÅéYæ¶‚[•–8¼Çu "©ù{Œ—ñG‘áë*ØŽ_i7%Y·²M¨´Ý»1â(ÕªÕ–ËÈýrñ‡‹~-üñ¦ƒ¨øzóÀÞ/ñN…©éK§êWv÷2éRÍÐE#Ëk$‘ž J61 0 ’B¥ ¯3¥V3U©Óœ%tšRI¦Õ¤“îµ_ßg85³gã?ìÕû:þ׿~~ÕæýŸ¡š÷Çúö6þ"¹×ì`ZÜÃ完¦A?îþ꫟Þ2),¿¨ñ/pîk˳?®ÙPšn*o⋾ÊÖ·½»káMÙ>4ªÂ‡.ç·ÿÁ?ÿfŸ ü)ñ—áÇO„ºg…|}lÑM¬C­iw1GÙäád†áäÜë1ÁT`äŽ+æ¼Dâl¯6Äa3,§¥Rƒº%Dï̤嬭®·ìm„£8)B¤t~„ÿ²×À/Ú[ö$ñwÄïi? øŸð×įÖz®‰®Xé·Ï #K Ü‘à²K‡ [ÒÜ×'qAÇx\5j¸—…ÄRºq”'$Ô­{8'³Z^×¾©‡¥W )$¹“þºŸWß|ø™ñ«àWÆü{ñ½¾±ãÛ‰ç°ÒôÝ—6þ·VG³·YB!¹hä‰$‘ÎUHðKˆ2þΰxì’“qä¥)]:¯U9Zï•I6¢º-^º^ÊuiÊ5ÿ‡cåïÙGá_í#û/ø;Äß Í©I¹Ê:^Z¶”œ—7*j+emË©‡•Z<“~öçŸ~ÏÞý¨þüÓ~ j?³‡}ã ;›-+Æ× ÒΚë$ŽñMqZçù˜*±êƒî’qïgø¾Î3if´óF”Úr¦¡SŸD“QzC[nä¬ßS*Q«NŸ#†«­Ñîž7ðÏíám#àn—£è7ÅÙi÷ö´+¥Ó4…×g•mÌÛÅ$k ùr-Éü «Ù'zù¹v'%ÅTÆT©9ag)EÑ’çŸ"\×M¦äî¹uÖÏm4w5R*){Ýö??ðY^IS _ñ•䤓å’I5d›šM¥«oW­Ž9a¥:ŠJ<«úì~ðÕù3¼™zסL–J½+¾™ ”v¯B™,±o#mKjõð8:øÚžË)y~½½Yœä£«6môð¸iˆcýÑÒ¿JÊ8F-Wù¥ü«eêúúmêŽ:•ï¤M0+í££dŽ`¦@P@P@dèòÑëÒýVt¿‡Duc¿ÞªÿŠ_›5«C”òŸ‰¯ÛÊ’ð¶¶r>¶”žÀ|ùÿìÁý>cþ5ïý=_Ó@}³@P@P@P@P@PËÿµðSð[ZØ]íÎqÿ.óR{ù¡ãþŸ`ä`éx?öç 4uŸ ?䣸¿þÅM ÿNí}@P þÌò[þ9ÿØ©á?ý,ñrbºXϳó>ë®S„( € (Áj¯ù5ÿÚCþÄ/éºâªŸÆ½M)|qõGžÃ1~Íôo_ ?ð“Ó¿øÍœÿëßÐÛÿƒêÿòGéU¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷"H¿fÙ hgï†Ñʇ*éáM8> ˆ©KŽx¦iÆY®!§ÿOªòAõjȾäo‚?×îü"ðPúhün¹g¯|}oü?þH¯aKùW܉WàÇÁåû¿ <>š ÿÚu/‰óǾ:·þ Ÿÿ$Æ—ò¯¹ƒÿ Wîü.ðˆúh–ŸüEKâLéï«ÿƒ'þcö4ÿ•}Ä£á7µû¿ ü(>š5¯ÿRø‹8{ã*ÿàÉÿ˜{ʾâUø[ðÉ~ïï ¦‘mÿÄT¼ÿ6{âêàrÿ0öTÿ•}Ä£á§Ã•û¾ðØúiVÿüEKÏ3G¾*§þ/ó²‡ò¯¸”|;ø~¿wÀÞM2ßÿ‰©yÖd÷ÄÔÿÀåþaìáü¨™|àeû¾ ЇÓN€ìµ/7Ìø‰ÿàrÿ0öpì‰WÁ^ _»á-},!ÿâj^iŽ{ןþ/ó${øM~ï†4‘ô²‹ÿ‰©y–1ÿËéÿàOüÃ’=‰WÃ_»áí0}-#ÿ —ŽêËÿæ‘ìJ¾ÐWîèšxú[Gþ/‰{Ô—ÞÇÊ» t ¾ö‹`~¶Éþ}s¿åä¾ö«±ðׇïxM?[Hÿ©c±Kj²ÿÀŸù‹–=ˆ›Â~o½á(ýl¢ÿâj–cŒ[V—þÿÌ9#؈ø3Áí÷¼'£­„?üMRÌñËjóÿÀ¥þaÉÄMà_7Þðn†~ºtüMRͳ¶"ø¿Ì^Α|=ð }ïø|ýtÈþËMg9ŠÛSÿ—ù‡³‡dD~|;o½à®•oÿÄU,ï3[bªàrÿ0öPþU÷…ÿ ï|;ðÉúéßüERϳU¶.§þ/ó²§ü«î"o… [ï|5ð©úèÖ¿üERâÝmŒ«ÿƒ'þaì©ÿ*ûŽwSýž¾kS‹­gàwÃûû»D×¾°™€ôËDN+¶‡q<”3*ð]•j‰~%áèËx/¹ßðÌ_³_ý×ÃOü$ôïþ3[¯|UÿClOþ«ÿÉ ê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîAÿ Åû5ÿѽ|4ÿÂONÿã4¯|UÿClOþ«ÿÉÕhϵ÷ ÿ†býšÿèÞ¾á'§ñš?×¾*ÿ¡¶'ÿÕÿäƒê´?çÚûÃ1~Íôo_ ?ð“Ó¿øÍëßÐÛÿƒêÿòAõZóí}È?ᘿf¿ú7¯†ŸøIéßüfõèm‰ÿÁõù ú­ùö¾äðÌ_³_ý×ÃOü$ôïþ3Gú÷Å_ô6Äÿàú¿ü}V‡üû_røf/Ù¯þëá§þzwÿ£ý{â¯úbð}_þH>«Cþ}¯¹ü3ì×ÿFõðÓÿ =;ÿŒÑþ½ñWý ±?ø>¯ÿ$U¡ÿ>×܃þ‹ökÿ£zøiÿ„žÿÆhÿ^ø«þ†ØŸüWÿ’ªÐÿŸkîFï‡þü5ønNH¥{ì½ ïø'Xö?ø\ãíš÷þž¯ëúXñ϶h € ( € ( € ( € ( € ùwöÀ1¯Á]hʤ§˜Ãþ¸MÖ“Ø„>ü/ð5ïÂß„šî½â=vÚûWðÍ…È·Óì š8‘SÈs̤“äÓ½4å—Œ/q§øãÄ—Vé,°4¶úuœŠ²ÄíˆH¹Æä‘u ¤Ex7Á/é^-ñߎõ­Úî ûÂÒÕoŠ™ž+}gÄVë$~Ug( -·sãqébøãc‡|â]KÃóÃcâ?ÍâÉÞu•¬ÄgOAfTM¹ÔFéäh£b/!DÜèVoÚWá¤{ëVÞÓL¼›OÓcPRö[8Ð*Û¼žnÏí&-ôJD ;G* ºX\Mycewqa=Äñ$etcim˜€LncfBÊNÆeÈà‘ƒ@è‹ðWÅ|7øßñ7þßh~#þÑð§†þÓýµâô³ywšæÍž]•Ï™»Ì|çfÝ£·¹U¥í-©…j>ÖÚÚǺÿÃOüoÿ¢àoü8W¿ü¥¬~«æcõ?ï~ÿ ?ñ¿þˆg¿ðá^ÿò–ªù‡Ôÿ½øü4ÿÆÿú!žÿÃ…{ÿÊZ>«æSþ÷àðÓÿÿè†xÿïÿ)hú¯˜}Oû߀ÃOüoÿ¢àoü8W¿ü¥£ê¾aõ?ï~ÿ ?ñ¿þˆg¿ðá^ÿò–ªù‡Ôÿ½øEû@þÑuÏ€¿´]Oà߃l´ÝCÂÅ­Å寎¯.e·‰ì¦V‘"m"1#*’B@Ä`²ç"£‡åiÜqÂrÉ>m¼¿+ü³?D ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( €0µ_»âOû5ý·¯ê¯£/üÍÿîþæ<<çþ]üÿCÍà?ògß ëó^ÿÓÕýUžöÝP@P@P@P@P@/~×á[স€ ?'±û<øýi0?2¾+|Yƒà·ìðƒÆ+"nÙXé1Hóo¥–äGÁá‚Ò°î±0ëL‡àžŸ']oÄ ü*ø_ñ7ãÅÿøY? ü-âÏìß x_ì_ð’èöÚÙ<ËÍ{Ìò¼äm›¼¸÷mÆv.z æÄIÆÖg.R-·>®ÿ†Uý—ÿèÛþÿá¦ñšåö“îÎOk?æxÃ*þËÿômÿ ðÓ?øÍÒ}Ø{Yÿ3ûÃþWö_ÿ£oø[ÿ„~™ÿÆhö“îÃÚÏùŸÞðÊ¿²ÿýÂßü#ôÏþ3G´ŸvÖÌþðÿ†Uý—ÿèÛþÿá¦ñš=¤û°ö³þg÷‡ü2¯ì¿ÿFßð·ÿý3ÿŒÑí'݇µŸó?¼ñ?ÚWöjýœô/ÙÏãö¹¡üøq§kZw‚uË»=BǺtÚOŒï±H±GV•”‚ÕÂrrZ—N¤ÜÒmî}ÿ û,Ñ´ü*ÿÂ7Kÿã5è Ã'~Ëôm? ¿ðÒÿøÍðÉß²ÇýO¯ü#t¿þ3@ü2wì±ÿFÓð«ÿÝ/ÿŒÐÿ û,Ñ´ü*ÿÂ7Kÿã4Ã'~Ëôm? ¿ðÒÿøÍðÉß²ÇýO¯ü#t¿þ3@ü2wì±ÿFÓð«ÿÝ/ÿŒÐÿ û,Ñ´ü*ÿÂ7Kÿã4Ã'~Ëôm? ¿ðÒÿøÍðÉß²ÇýO¯ü#t¿þ3@ü2wì±ÿFÓð«ÿÝ/ÿŒÐÿ û,Ñ´ü*ÿÂ7Kÿã4Ã'~Ëôm? ¿ðÒÿøÍðÉß²ÇýO¯ü#t¿þ3@ü2wì±ÿFÓð«ÿÝ/ÿŒÐÿ û,Ñ´ü*ÿÂ7Kÿã4Ã'~Ëôm? ¿ðÒÿøÍðÉß²ÇýO¯ü#t¿þ3@ü2wì±ÿFÓð«ÿÝ/ÿŒÐÿ û,Ñ´ü*ÿÂ7Kÿã4Ã'~Ëôm? ¿ðÒÿøÍðÉß²ÇýO¯ü#t¿þ3@ü2wì±ÿFÓð«ÿÝ/ÿŒÐÿ û,Ñ´ü*ÿÂ7Kÿã4Ã'~Ëôm? ¿ðÒÿøÍðÉß²ÇýO¯ü#t¿þ3@ü2wì±ÿFÓð«ÿÝ/ÿŒÐÿ û,Ñ´ü*ÿÂ7Kÿã4Ã'~Ëôm? ¿ðÒÿøÍðÉß²ÇýO¯ü#t¿þ3@ü2wì±ÿFÓð«ÿÝ/ÿŒÐÿ û,Ñ´ü*ÿÂ7Kÿã4Ã'~Ëôm? ¿ðÒÿøÍðÉß²ÇýO¯ü#t¿þ3@ü2wì±ÿFÓð«ÿÝ/ÿŒÐÿ û,Ñ´ü*ÿÂ7Kÿã4Ã'~Ëôm? ¿ðÒÿøÍðÉß²ÇýO¯ü#t¿þ3@ü2wì±ÿFÓð«ÿÝ/ÿŒÐÿ û,Ñ´ü*ÿÂ7Kÿã4Ã'~Ëôm? ¿ðÒÿøÍ9?eÙn6WökøV®§!—ÁÚ` ÿßšM&¬Àëôï‚_4pIøGà»%¦g?ï˜Åyµò\·ül59zÂ/óEª“[Iš¿ð¬~vð‡‡ûºlù-yux/‡ë|X(|•¿+±WÚbÿ²øx:x'EK(Çô¯>~pÅO‹¿ð)¯ÊE¬]eö¿!Ãá¿€Wîø?JKdҹ߅Ü'-ðùR¯ÿ&?®×þoÁ‘2ü?ðB}ß i£én´—…¼"¿æàuþÞ]¯üß‘/ü ¾ ïám,ÿ½j‡ùŠë£á× Pø0ùÝþm‰âë¿´Ê—¿ >êqy—€<9wüóºÒ­å“!¯b‡ dx]hàiEùS…þû\Í׫-äþó€¼ý—?fmBcqû:ü1¹¸=e¸ðŽ›#ÄÚöiR§F<´â¢»%c6ÛÜ«ÿ û,Ñ´ü*ÿÂ7Kÿã5 ƒþ;öXÿ£iøUÿ„n—ÿÆhÿ†Ný–?èÚ~á¥ÿñš?á“¿eú6Ÿ…_øFéüf€ødïÙcþ§áWþº_ÿ þ;öXÿ£iøUÿ„n—ÿÆhÿ†Ný–?èÚ~á¥ÿñš?á“¿eú6Ÿ…_øFéüf€ødïÙcþ§áWþº_ÿ þ;öXÿ£iøUÿ„n—ÿÆhÿ†Ný–?èÚ~á¥ÿñš?á“¿eú6Ÿ…_øFéüf€ødïÙcþ§áWþº_ÿ þ;öXÿ£iøUÿ„n—ÿÆhÿ†Ný–?èÚ~á¥ÿñš?á“¿eú6Ÿ…_øFéüf€ødïÙcþ§áWþº_ÿ þ;öXÿ£iøUÿ„n—ÿÆhÿ†Ný–?èÚ~á¥ÿñš?á“¿eú6Ÿ…_øFéüf€ødïÙcþ§áWþº_ÿ þ;öXÿ£iøUÿ„n—ÿÆhQøMð³ázxŸþ§Ã_ xGûOšÇÛO†tk]7íž_Ùü¿7ÉEß·Ì“nìã{c©¤Àóßø'P#ö>øZüýëßúz¿¦ÛTP@P@P@P@P@|·ûaäüÕÀ™±ùÃ5&禅à/Œ^"økð^ÿGøùàïøy|%aŸ¤^øJïQ¹òÇ™¾I§YJ³ŒØÚ¨ 3@Mÿ “ãýÏÿð½ÿâèÁ?gø—P×¼kaðÛâ—†!Ñôm )ouÿx^úXµø©ÕÖÞÊÒÐÄÊϨ+o4ìXÕÿÕ¾í¿.à¯þo‹ô_¾á®ÿòeršÅ—Å +Å¿ |Ư‡‡ˆ|oª¶“§Aeà}\,N¶òÎÒÌòê0"Ûòî}Ò.Ì ‡à=ãÃÏx¯ÅÚ/ǯ„³j^ Óôý6æ+ßkÏEg%ä‘ÂÞ© ZþmÄ’TÀ%³©MTµÌªÑ[_¡·ñö‡øéðÏÃöÚþ­ñoá øºÔl´»{/áþ¼ÓO=Ìé cÍÕ#@«¼»qò£csmVÏêÐî̾©ìäá«¿hOú¾á¨òö«C»ªC»øjïÚþ†o‡ŸøAêü½£êÐîÃêîÃþ»ö„ÿ¡›áçþz‡ÿ/hú´;°ú¤;°ÿ†®ý¡?èføyÿ„¡ÿËÚ>­ì>©ì?á«¿hOú¾á¨òö«C»ªC»9ˆþ8|Gð¾kž.ð4/Š4‹Íò{^¤ñÁs Ã#DÍ­²‡ !*YXgqMaã˜ã…„Zi³½ÿ†¿ý¢ÿèdøqÿ„¡ÿËÚÜéøkÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€økÿÚ/þ†O‡øAêü½ þÿö‹ÿ¡“áÇþz‡ÿ/hÿ†¿ý¢ÿèdøqÿ„¡ÿËÚ?á¯ÿh¿ú>á¨òö€=áWʼn?4ÿ‰7ž?Ôü5wŸámN;!áýçI(Ya2y¾mõט#Û·f0ÙÝ‘µ0:ïø'Y'ö>øXO_µk¿úy¿¦€ûf€ ( € ( € ( € ( € ( ˜?kÙc‡àƱ$¨Y­Àò`˜×˜™¾[üký‘>xF8Óûkþ«;ý"Y0<«Øå¹1òxPà´L{,¬i >ÿ‚z|µ¿ü_ñŸ$GJy4}&+ˆÊ²Ü‘‹™ppADaì|ÉAåhëŸØ›þ<~1ÿØ©mÿ©~·@~×_?k}*{í;]Ò$ðŸÃ‰Åç„æyà»Rp×À,€œ‘±–ìg­}Ÿû1ÿÉOø ÿfÿ}ÿ¤ö”ù÷¡|Cý¤t?Ú;âöðE5-nÛþÝUçðüñ›9C^ÍóK¸…· zÈ2pnÔúu¤Üøšïãçì?sã.ÇNñ<ž%½7–ZmÓ]A ÿgÏÂÈÈ„ñ‚F0 3€€5õO…Þ3ø©ñŸÃzn¡ñQðÁý7Jû]ÅΓ¨/o¼×º0vQ’U:Íׇí_¤^ð|VË5ŠxçCXfœòF/k0Ä`œ3@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@P@^~ÍD/‡~+±è<;©Ÿü‡ iÿ‚tþÇ¿ ý=ëßúz¿ ¶è € ( € ( € ( € ( € ùwö¿%ø1ªFî¨àÌÁF|©q’x8ëIùÁ¦Ýür¼ðÂÿx >¶Ÿ ø^ÆÅ†»ã¤[Ù$¤‘¤‚(ØEµæ1íÜçäÜH-±K€Û?~Ôl/o§é?­`ye¢·ñ›F­,®ÒHä€Üò;»¥˜“’I¢àsÿþünøC¤xâÃHƒá¦¡¯ëš%•€º¿ñµ¼V·öæ­©K±‘Zi#¹µL4q)2³>YV.Iq£~Ô×PMku§üšÚd1ɾ5vYŒ`bÁhº?Á_>:øgÇÇâ ºwÁxn4ÏjÑôM#Æ©¢}¥ TgýÆcŽ(ÒBݵlº—]?ôƎ—Qé:ìÿeÕÄ—s­ŸŒ!4ò6é%p°ÎÌIf<’rI¢àK¤ø/öƒŸâ¯ÂOˆÞ*‹àû[øPºÕa±Ò¼q±¯å{9¡H™¤„ìS#Ç™b«¸„s…¢àZûíX:Û| ÿÂÚOþ5EÀãÿÂŽËÿ‹¢èþLjÿèbð‡þv_ür‹€¿ð¥¼KŒÿÂCá ØÇeÿÇ(¸ÿ…)âoú|ÿ…—ÿ¢èþ§‰¿èaðãâK/þ9EÐü)OÿÐÇàßü)løåÿ…)â_úüÿ…-ÿ¢àð¥|8Ñ?²<¤yßcÓ¾Ó=Ï“æÌóÉûÉälÉ,ó1Æì ï( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ( € ÿÙ endstream endobj 195 0 obj << /Length 422 /Filter /FlateDecode >> stream xÚmSÁNÃ0 ½ï+r#94$N›6â†Hœ{Û@ m“FWÖÁßc'e¬‡&–c¿¼÷œ*öÊ{X©Å~[®®ï 椳`Y¹e:³Òi`¹²RƒceÍÖ¤x*OMl¤Îñмnpiä|À€2ƒÇ7 ŒHsàH U¼q7ŽwG¬8`œóŠ:ûžÖñ8¾ (ø7å 郎&€=õQs²ø]QÉ>ž¨!‚ ãì~Í›}¨Äà–– †©ñkÁVójŒ"Š •©IätoM¬¢hô‡i9K´–.Ë¢uþ¹HŒÊøs„$»(‹ØÆîÇàF€Ç`KoÉ^Okµ¤DU?Æ`lãN°oMR|ÁÛ`:zþM~D!Z$Úfüf>×ä¤ “¦€¨Àü;|ô±^Â(Bk@a¦ U0diwjÒàWÓSŒŠ»›mœNvÃmP_MP;4"t5CÜOHÊÎÇ÷9hxÌét×ï|uñ`ÎØø¶¿­Æñ+ªA%ñ툯ÿýíÂ9 UŠ(Yn¥qE„Ñé¬ê®\ýá¬ÙÈ endstream endobj 201 0 obj << /Length 1097 /Filter /FlateDecode >> stream xÚ…VKã6 ¾Ï¯ðml Qõ²l÷ØE[ èa¹uw 7QމãAûïKR”I{°-KâGŠäGJ&ÇD&¿½Hþþ¼}ùñWW%Z çtžl‰ÒV”R'Î(ae•l÷ÉŸé§S¦Òú¯æ¯«Ï6Æè4ϾnVe¡@&[‰R™ ú9ÓEêQžá’m´£ßÝ­÷{¦KúT™T¢rÚ‘%VTÖ&›\A. ýšµJ/ˆÖñ]ŸÏ>ÕBÚ9a¬kHîÿ…­ÿ ž „6t4ÿ >—B•Eð7T,Ó5âP§£<¾Zêý„'ú"µÎl¡ého#¼ž™X”¢‚ ÖQq6÷Á,cE#"ÿõú Ô•N¿½7> ÇYƒ™yÁã‘÷ðŒ»“ÂÒWÔ—l´×E²QJTyTqèôL( ÆXÂãaÛÜ-…Óø‹Tv‡VŸÚ‡€]ï¹@ð§IÆ"ä´áèY:x‡†H;Ûñ1š¾ èüÞ0øÿÅ27«¦$• ¾g÷þì<%À”>à ýaÖÚggþÀ°}}@Ÿ9‹ãu!ƒ¶)÷±mÄšó*µ£NÊt† ‡æ>ùX$m¾®lù·fØâ‰„=†vh˜Ë°r¨wðÖGÎÔ'nÁ:­ab…R<;aGàÓëìé–Ý¢ZÄ¡§CÏ©Úw!»pϺԇ1ʾ†uúGÂö#5ЩÀ„•wDÂ屎Å’–) %í,ÙRÉh¢cÀáürÉ~UŠ<ŸêÆç¬,ÓúŸP‘œ(¬ˆRa•ÜA¤“šÿf±äŸ´Fޏ¡ÆAqBÊò¾Ê¡éÖÀù#_Z>5\z.Û8C®b†Œw‘án¶F®ã¸¾\bÞEV4Sx`CðjÏÙ»Ñ*¿kˆýc)¦×\ºðKõj2>Þkîb(_Oê~䨒0\éC˯˾ [T¥šXæÖDÊ ˆtá,دê-ÆÑˆßX?ç[Šá¾tØÑ=ÌoÜ|Xnúm£¹až ™Ëó«È.Yõ„ÕTeáÂ9P¶œ–D2Æ,™òȃ «Íwhà>¦û%ˆOÄù E–Nõ¬Žµgï»LíïJõ÷úBbaª5”Ä€†n3+=§û~âàžn€¥n÷El©*_múeûò?h¹à endstream endobj 207 0 obj << /Length 824 /Filter /FlateDecode >> stream xÚ­TKoÓ@¾÷WXâ²–ÈdÞ7ª¶¨J#z(Lê4-IœÄ…ßÎÌîÚy4¡TBÑÚãìÌ~³ßÌ|<»Ëxöæ„§÷éð¤a|& °ÎŠl8ÎÚŽËÌH…tÙð6»a§÷¹`_qMɨï|– |Lè»Ê¿ ßvgö/\æÁc<dzžVÀ•ŠÝ »ø²ïÏ·„†ÂIÜ þg¹ô¬Ä ùCE˜s ÝE(0w.Ú€Ï\stüø@[ä=©«V)nI P¢CºÎ…0%5„5¿§góPPÆí~Ì]Á ‡Ök¸‚½Œ¡BŠmP ÒÚM°Tp£[—÷Ä@ð+¬dÕ(°@¬/gDý’.X°ÛP†`®BÖè5¢üÓ~èfTŽº(Åø²¬^·÷ÌzÂj°R¡!ÀkS B7©è³µðšÍréØzŠÿè}zOȱ*ow_bCH Ú«-:Š|ƒV‰T¿]H fsÆÁ¯.Ÿ" hí6Çà &9׺`²†š2šêMë·‹çÁÈ®Õ&é¾´ˆ¢W¸úiÅzÄÿi¿Gx¡9®1 .jRb¯LÓÕ$!ù4á´X/w‹ò;¡”é̇„Ø~÷úºÜtö(ù´«“ÿ2á¶·š¥˜¸Î¶Î½N6C¯qÎq]þE„w lWGØqÍzR(pÚâ5(œÿN-ä3Ôb8iu çXRgËV$Ãjo‚éqt{ŠÛ#’Á¡Ð]à Wœ­—‰<":=&p¢ìØÅf;©:&¸sOI†án#š˜ÍšÍS½H¥žßEÐ2¾–õ8Ô%à'9—({acÚ"HÃ4’1®›h,ÂlSíï—­òcÍŒï}jP³øhRÛTSšÚª*—ëÔÝÕ,H-å° <¸¿· 7:ýÜzåÙ \ÀV7ážóÇÔ&óDËwš’*°\ÎÑüpíw¿Èµž‡-Gz¡ž¡Â9ÀLžŒÀ¢ôŒ3»cþ?…DÑX¥!ߌJ‰VÆûmiÒO’Ýì}‹ Þq!’¥ì1!pd¡³^!> stream xÚ¶P\Û¶.Œ»»„Ðîîà®Ašw Ü‚»»kp'h°àîîî.½Ï¹'ûÜÿ¯z¯ºª{}ÿ1ǘ«)ÉUDŒmŒ@’6ÖŽ ,ŒÌ¼19Qf33#33+%¥*ØÑôo1¥:ÈÞlcÍû1{¡ã›LÜÐñÍNÎÆ ãd `a°pò²pñ23X™™yþÇÐÆž nè 6È1dl¬AH”b6¶nö`S3Ç·4ÿó ÒXxx¸èÿvˆXìÁ@Ck€œ¡£Èê-#ÐРbƒÝþ+5¿™££-/“‹‹ £¡•£½© =ÀìhP9€ìAÆ€¿ä ­@ÿbƈD P5;üK®bcâèbh¼ ,Á@µÃ›‡“µ1Èð– "- P°YÿËXö_ô€÷ÀÂÈòŸpÿöþ+ØúogC ÐÆÊÖÐÚ lm 0[‚ ’²ŒŽ®ŽôCkã¿ -lÞü Á–†FoWnQ¾ü7= =ØÖÑÑlùE¦¿Â¼uYÂÚXÌÆÊ díè€ôW}â`{ð­ínLÿ:Y kk÷°µ±É_$Œl™Ô¬ÁvN iñ›¼‰þÈLAŽfff.NÈrš1ý^ÕÍô·òoñOw[[€É 'Øôöƒäî`è 8Ú;<Ýÿ©øo„ÄÂ0F S°5ÒŸèobÉ¿ðÛáÛƒ]:Ìo³Ç`þëóŸ'½·ñ2¶±¶tûcþ÷ù2iÊiJÊŠÑý‹ñt¢¢6®wNV+3€…ù-=×Ûƒç‡Q4ÿ»ŒøJ[›ØxþUí[›þ§bçõ¿—ƒðß±ämÞ¦ þ3äºÌÌÀ·/–ÿçQÿÛåÿoÂÿŠòòÿ]¤“¥åßjê¿õÿµ¡ØÒíßoCëäø¶r6ok`ý¿M5@ÿZZQKãÿ­“v4|[kSËÿ4ì v+‚fÿš•ÉÕþÚ1K°5HÑÆü×¥``afþ_º·ÅZ¼]où· ô¶7ÿRÂhcüׂ±rp íí ÝÞŽø qÜYÞ6Ñäú÷˜­mß\oä<&6öH''€Iä/Ñ¿'€Iôâ0‰ýA<&‰ÿ .f“äÄ`’þƒÞb~þƒÞbÊþAo1åþ n“ü÷[LÅ?ˆÀ¤ü±˜Tÿ · jÐ[õÿ ž· †ÿA,oUߎóþ-§Ñô¦þq¼é€6–o‡ñÿ·3a2þd0ý‰õÖr¦Ãƒ·²Mþ¼5Æìü¿Ô6Nöÿpx31ýß*0µ7ü‡ óu³À7îàÀ7ËÀ7>VàÛ5Àô2o‹ÏdóÈþfûöZú‡ú­8Û?ê7_Û·Wƒµ%ÈäAv–Kíÿ‹7û['lß–Ùæ½z{12Ùý™Ÿ¿ÈáïYÿ!Ï_B›·mûï.²¼qþGXÞ8;üéá›Òáínü£~KþÇùíŠar4³ý£éoL]lþáð6#Nÿ€o=tþYßÌÿõ-žÛßð¿6èdÿÖÇ¿oÆ·µüü÷{r‘ægl€|þæÕþ­w•"Ä. Û#“”ÛI4 îóömNhðñ4?Ò|WíoDâº0–6%¨¯…HŸÝ›jლc•Z=žô£•Ç·[æÆðzGóEj~‘ ¾cPÞñx¶óP÷±€n‚l—¡Ì²sâFSÌÁ¾sé‘r­ùU²88³­´óƒó3òSÉC¸Z˜®Oáe¶Qú4Á8GZ¬3Wô©ë›I¬ÌÑWR™h:$Ï£p¶|wí5Öˆûé¯Ëeª¬„„Ú$Ð×XCãÝE÷dðgÝ‹ ÂVf3¸B"ûü{b¦?«~ø¦H`ï_Ì ê-ÛŽMÑ‘éLµ·TŽÊ>R‘Ö ¸PI™ÄVé§¿{Ý?““¨ÄhBÓµu¾ï8:Qk§cB¿—S¹D©ÿˆ?¥­êÝ)ž¿ÄŸ‘aò°LôÈý<IÅ73îÈ›‰­ nn@ÚÛÀаV\ùÚdÀãZ0uG5Tõä—&ëtrˆQÆê˜†b¨¹kÙl,ÚÄFE³ ½`€ßuò]g5ÿý¹Þ7.þÙqëÀFLžûå/Åê' ,œª•áLù–XOÚVjýAWƒ? üЮÀ£¥M¸ƒ®*ÊBˆ«©ö ì¨(O>a ‹ãß·œ4lœ—[@¨-ÜI¹KV'wŒ3S›VªEº_f¯<ÒÌ‚?û‰ç­ÃK® ÅËÇëÞ³…Ö¯ñ{Â$v°ˆ`¼ƒx ¦9È^3žõyÕòñ$û°ÞµRj‡‹N5 .æ†Ê‘Ë0Ñì¶ 9œÜûňÌÃTøØì«C…¦¤«œ\ÄÄÓ) u.Ù;5^3ÜÔˆÀÍøúÌÀav¶´€@»QÑ/޵Qqâ2ù^wt¦EfZ•;S•ÒŸü3EX¿…ìTšÜ1䆵b.j-Bþ óýÔH…²rF”ý\1û¾6­3ÔrÁZI²§ÏgTÁòT|¾S (ý Öë܆óÐE€öñS᥂\/—Ó ×˜ˆ;Îhœë6j±Lñ‚SiOÿ¢§¹•о0/¤ Ïp=yH²Ìk”ÄSe¦ÓØL½EbPûäcÑ¥Œn5\F7mdrNq¢‹žã%4SbÞÌø»~ò°GÅŠ.…ö—|¶äž4'n t‡Äb¯}Lf¨¯iÍ{_­ üGìÃà`ïf‹‰¶¼>û\ÝÛ9ùqgÒ=©ÃiA¼ð$š°I ‰ìí /†ÛxaÕÁfÜï±,œ1£Ö„¼²6äw3Îä0ÙÁ“ïoI™`qÏIcÐ Rx“æ`‡Í ‘›´9Ç ¬èWÆÍôS=n.Iy?¢=A}Ò0©ÑXª˜À…v ‰Œî|hh]Ö½‡ÍXì3¦Êt2³{DS®âôàÓ“ >´lk(ƒJ7¿Û²7HN:‚Ã7-`éGè´PïNÚ³L¾µN·‚EöwòaÄnˆ‘x–Ë´ÄíÃîbi¢G>þòüáÔgq!)œ”¿ªñýÌÂiÃ]Ч¦!fŒ&&„Pt9I°K’Å£µÁ°£'DÑVŸJþ”É¡µN/ÇWÃfРã`U¨D¶èµŽÆÆýÔºìl{ÀŽÿÊ Û3ã‹·ß.¢kE…¦:Ñý‚ÂJ¬Ñ‹°Ì‰,ŠRJÜ9§¸{!¢äÖ^eÕÀ:å½ÝðÜÄT¢+DZMó QkW°ƒM˜R§ÆÍÙAQÿ˃×püÜ<ØHøþXTÐüqâœ+ ¶ËÄÅ0I€ò|GwfqÍCM¥õå6„‹ó8<“¶„ Îl»•ÝWçíSâT1´…òn¾s€Ò;«¢}劆#üÛî鿽 hOMªO@üKmUžFŸ‹\d Çáx`fò¬n¨Ëjs˜ÌÙo¯…ŸD>,½:l¢%˜Y=4ÞÙ²Dp|†Ýöøð[#ݾv5tREƒŸ¨(Œá¯aæH‰íÍ!|vkùÚÈÖE Ü²}Ÿ9ÆÐ‰à4Ÿ0_Q+Üù©=<³;€&*vCA;»°1Dί‡!¬­Á…äéd§n99F¯5Tå×¾q6L67ù%g®ByM¬ŽSþjÖÞƒcŸë¡Ðò–z‚6³è“ptm¼Å«qµ{‘¾÷õƇ³++çÕ®)•Ñ‚WW`RO”ê Ù°ôR|>òWQYÌ‘ht¨à1­i¨¥¡ßIÅéxDÃB?–ú§ù‘-!§e pyäëqÒurèäÓgX¿æ68”Àž$­ /…Žî¡S<#y<VÑnÑ«Zl/^k>íd¿¥Ç(<à¹óVÉ—:J«½£›öÑo.„‰ÒÄ(û7ÖäV‚]µŠ qðÏDÊxÒ&²šá7:Í}õ(hr«0‰ñ- ¡Ã­ç…â0Š–_Ô8½ºZö1ˆü£›&u\plw Ò:4á/‘\9˜ ƒ ¿‰6]óV¦¬¿ oÊ^“®xfÁ˜ø Ù.«âkÙàvw†ëéqpx³ÀI}¨ø”áqêê}@ à)I^#ô²ðdteˆaÍ6ï«O|‰j½†w#­ FÄûê6HåOêwñ+úèÀ¹‰¨l7i¿A¶êafC…-]ï¾v„¬êpÎ@Ç׃îÁ÷›ø;UµÖg½kõìÛ„ågS°¸àùŒNÁJ™CFR óç|ÐéO¥$83TÝ.Ë,¿kåpê#’*…Ⱥυüwœ_´É/Ó£+}÷r‡—\‚æ/ǪÀ‚v 3ðmι¢·É¬MÀT[–üJ,+tV蓃B¼sŽEùÇ&õX·çµn5:nÓÊSàÇ‹Úâüx• ÿ/ v'®Ÿâ7ö>Ü›.FÀœâ ç$·/(ø3s«Í‘òj|î˜)Ï/¬cˆ}ÒçŒ|„þNÀ3V6‘,døÙwÛ?2ÈB”§ kÄêÚm>'¥z$¯µ<"žê÷×ÿÔ§±Ùy“ ©üÉI[Z”<Ø"0IÒG|žð:jŠö­*?Qa¡—]Š"”IˆwK3âgü_±§÷?"·~õr¹up`†IóM*øFQÂŒy×§Ýý@¸­ÊÉ3ÈSd‘ŒÎŒèH ñ€}‘Ê%ÿþˆÃ#BÐt~Ä×%Î@îø6^ÕV }]ûrÁØ’ê€R—W9´tªÉéêèdóYäH0NÛþ’sÕ!1 Ÿ¯?/†ÃÃAÕfå7¼ÕbUc_Ð^<‡´}†Eñ7-îaõð.¤yÑG‹{A䔑<м}¦ò”ˆäNà©ÿA¼¿4ÎÖ%F­ø9!@S•È«±a;Ðñ£’;@m4Eþä&a½ÑgGJõÇ*Š_ßN›ô”í3¬Šqzå«{X¿å*l¥-®÷®^nO¡/ÿ>Åþnùù€m@ÁʼnØnB"䉞 >üu\Lq±ä%IJßýc^ãð.?Ö/ \ô$²Æ…Ê"D„D|ƒ¹ó^3…‰(4É+ ë½Ý¸=áU}ïtéözí(Ñ6ÌøV]»nàk-9Œ?Rj¼CsR.9dCÒ€•õ÷d‘"žšB 9ØÓ§û¥•K“Îëk¾H`Y/v[­LuvÂ¥Üj#Zs$4d#Í4ö™€üeŒ2xè=ÊPì}ÿÈ86œ¥ð{Òßò«µi1èËÐJñZ ’«L3¨/Â4Ïñ°dóðgÊ‚±)>Ż̓¨°‰ž“ä#„#ä¼Úç‰Þ¯ßꨠXæß”涤ZÞËÒø} <ˆåw/@:H;¿½a½¾6Ìûí6¨ÂÇ —þ=œ¡Í;ä"þñKÙYPîK»Ë܉Îf} UÕ¶$šK-Áy&ÑW*2H¶å äùÅÖ{ÿn¾Uƒº^ÁlÏéܱ–üÞ÷D.\Û·vô?´Níc[úè‘·¯‹=."çFñݹöºÈU3c,Ì3C:l_ñC}ůhº»;o-%Wà±fÛ㜬¸‹ª¼‰,wIÛ¸Âð x²”½¡…ê ]âùQ~ãÔNrv®¾œ •¼‹54Vãøº”¡ ­ÒêòëëÝ½åØ£‡ÈôGEÌ~›‹Âd¡-ÝÐ1¸¦v”§Y²"h³ìžeæÜe+%’éZZ§4`†î,·ÄSV(Yî©7?êÔ’¡VX·¸ùNäô§¦ë͸ú|ëóÙ¶…cÿ;2Á†¥~ypê|Àq„î+½}T1å\CФMðƒX½`ÜJ'œ(5%ûxbh:±=AHÔäÓÞDí-Û›Y”vpùQ0ä„–ø¾N£Ö’3±}Ó~ŠŠ¦\“ÄJcüÏPË)&žyõ°‘ÌW<1Û`MÓ`Y Öãän¬èý·†2æÒÔ$ÿ2×7­pç+ZÁb6ƒM¹bOêÜùwÒýŸ)Âø¦‚Bô >˜Mî\Ÿ|†Àûùc#ŠXÍIR;°„Ã÷ê„gü{1ª«Ü8þP4‰Të°»ÙU–#ñÒ];óa(áOV75µj {àžícQ?ýîÎIeruÁXê%çmOž# t K’fåÔþ÷Ðø¥{s÷Ò[%´‚Äœ‡¬á[»Î-»£ dŒ¤ØüÓpÕó‘¸fŒsbšGç)X(XF™?-èn+N˜{ Š_¤=·‹lq-$†¦ôN¨íˆñ·r4ã“ ±¾¿º”¢3]WÚÊÖ¤ÚæÅ8RJNó‹°Ùrq—JÈ®XHPMÈ'$š´6’Zuáî¸\ ÕH‚éT:SBN.X»’»‰jOT¸I‹Œ’’Ô›F'9DiÊŠåIš‹8çÔ!)+§Eh)§›»jêYªÒfë;±±À]ÇB 'Ísƒ{ø“ú£ X™@£l+V2;cO¨Xäü6…‡[. |YÊø¡JôaþæÈF.s…snÖ`½0ÝÒg9ps8cZË¡ˆø{}”¼›^—6È]CüKM£ÛÄSªkkÃ:^'®–Ï]UÃýÚøµwѪsóÂU-.#Ó‚rJd®@Ó]ȤÊÏ0¬5ŽßBî/r°ËÒ!4'iÉ ëJ= V£zC/2o¸¨_ÀAô|žQJ¾Í “wg¢‡óšÆ‘: ÊF çåõ×%Y^¨Á2„=ϺÛ•0kᑽlØ >ç˜/ú‡Éi2ë—‡§³©ø“Äãô²Ê¶‘ФfZ5÷ÄÁúÎ;'‰“EØ@e–ûcÆ–“ãíFœV~€M’¦Œ®ì™@Ⱦòâgþ¦ò`¥/Ò(> Î][&æ"”}¦^‡a¬4¦Jhç¿Í;ÐÐÃ#Ž{û8òû‘ Å·©{3ïðÎ.±xØ6¥ðôêÄŽùãgÃg G¥@æœA>PZÑkÜæ„¾úNmn|@§‚å,7ËÉ×Uÿz«ìkÙ“n†•š ôbÏGà)„à ¢¢0>û5(5Ê­‰çš !$”žÄ›{Kç¢ÐÅ>`ÄQ”ƒïºÁ\i:V½ñ‹x[îW/\/-æm7ûþ¶õݼ6Pf–ªÃô#n…¢„û4;Ñ`÷ºWmÆ™*´ Ò!ièvÌ¡2R_ŽðÎb±~èÒñhr"üÒ_ýI‚!±«æ‘IOÄ¢žÛƒ­Òˆ¼!µ©¬>•ôÃêåw4ŠÐD¶ÑÄ Vœ\HÓnF 7.^€:ƒú†fïfyºÀïàÅ8ôoÑ×uºÐu9ÚclýâY„89hE;ƒ¸7ë¨ê‹Œ§žFîu  $ií÷˸™÷ºdØuø§9Àѱ Î0ln¾ö âðÞ²A >Äô®Ë‡†‚άw¬°v~C£(ã_\B9;/‚pñ¸æÊ²‡£>Ñ@ËmÔý )2øD—YJCÖfŠ:+R±œq)¹Î¿ EB„ZZÅ%y"çú‘Ù6R˜¨9¾K2’œ²pL†4ˆ%«wJ¨J¯Ý.¡ iì 6üu Àó¼áÄ5G‹}oÌe’üÞ°4whø:§Ç¬6á'Ì´F½¨×ÍèYG|™rù)úÔ"¹é!ÏsAߪ«ú;,²"7¥?HGds3tFG–äü £ª¶}ì=ÐTLY#èwæÎtå1€±}Ò*h!ÔYûn!Ÿˆm¼¼3Þlÿ•·‚î>kÎâÚ:R¢©½ÔÉVgçûiî³gÑò»_b¾³9C²ÓzËZM•(¦q¹ƒi×#.`bòX؈"ûÛ™êõA²enSÎ> 3E6©" v±µ%W Ô—Dò¶éêܸ§W¤Ï¨X¿5¥PοºÃ½DÌò éXì-Á9ý©¿µqÔ½Ë Mëú®È¦Ë‘ã_8†Y Qg·hç,ÆpMàÖ©|­g×±­>4õ×Âh©Î“Ä$¦¼aè)\³RP9Ù勸½[æ¿£jŽbŽ=¤Hí±…0…Ø‹~•¹ºÜtK/}¸p-š Ë3¸è•Rí¾W¢d‰î1ºL:zL6çeÚ} ø¸­¡ü3èb¡ÑßkßÕûÝà3®Û³ú¯¯vsÄ´œc)s_§±ê†”çÈ0á¹ëþU{úŽxmKÒ MØÆ&}ùE¹úÊMp›6î4›'ë]goZépÈ1ÜaËQé< v,õf»}iH®P ÚOiL›Å&„N·;Ôêú˜X¤°©,R`}u¯Jל³æÖ¶U M)Qßè‘ûw¶Ý—ß_%fËccéÚ7(5唆# $ÎŒ|?/¥¦”x’ŸïXsé–µ>®jmy!îû’jø‹r|qT¯þz$R›ÈÍ›mõS¯ç‰¬Ö­<oê $›ÛLbÃà’}O,ˆXîÏÁ…8§Ì—_Yc¸Õd¹mtØÀÀÉD»¹5"_Û(Q8›“Âw†_x†6ªQ´r±(¤Æ?h†ù>ªÀiàyŒØ-¢‚qXðk:s)ËLÎ&ûªh2[Ÿ¢þپٸ¶·öeÁXû<­Q²¢î·eÑÖYhlš>AË‹Õ3mxmBvæG:¦ž%¶Æˆiƒ ?pòE}ê{¿BFñãJ@‚¶Ž« «`Å&ÊÎxhúÊ:__ <°|H¢É¨À…¥/§ŸK¥Eßnõ‘Ýû&Žpà7¸:“ÇOºæ{_¬Ï¥Ñ6D§št!=Ï‹ˬkΠ9¹ç5|mÓ²ÆËñ-¿ºçm8?ÂVÛQŒ1Ï'§£Z q® ‡“=¨Wý¦µ~¶\ÐK2 ?LŸ2Do¡jG¨+î]‚.Ù£F­Ä_Æ}¢ZØéösÙþz˜{ϳŠ÷M£Ú_b è¥wÜ‚jØ ¶èeýrY/ü¡&˜+0"e í.²Pç²èŒ^D0ŠZb_k4ôdnÕùXo˜Už[ÐÇ–)äu‘½záy±ìD ßw½”¯Â ¼£’û6m,D磨U i –ï¾ÛšX>ÚS‹ïÁÊ&½z¸ œtPr+èÞPí$ªß„=±hÊÓ~Åz¾pÀx½ôUh+‘‹°Á®ñÅ…o!ØÈ|záRSe«±Îñ­k­–õWk]铎o7Wçܱ¢fè:vHÑ@C2øF v-ÜlÄ>?Ì^â’¨ºV4iö.Îë‹é—åBiCõo?|Í9ÈÃëê«r‰8t„Lµjf¬±w2DúU¾ Ûh_6D–º]ì"U•ˆýŠ©<’úo±Š§¯Ê:9È(ŒÉ\z­'Kçopf »Õ§…ƒjœ»1ü$û¿Ñê÷­ÝäÀ$œ —… ;ª½Pé°g¢=–åâúÃBH´2Ö*úûÒño¶|Íkx,º¤—X¦5’þN_¹ •»C¨wæQ*ÖÈۉúÚΨªè,$Yáo§Ü(ÚÉ›Ìtׇ¹ècûbvé‚™úm,e<'¸·©°IÔ ÏoL´|;À§'9gQž¢Lôçó<ȯʅ€ËÈ 7׆Ԋ\UÓŸ°IÝâH¿wÄŠ/““ßÓâe¬)LD*¼u5¡îâ›î0Û žŒ•“)J{9¯©Þ#^¾'ùľ=´}Úê8õ^ßá5峨ÌV…Âó„ž^®À¯a W¥õ\ù7S§–¦àFŸéåtË«äKù9KLÖ5oïòÈGZ‘ÿÀMBÐdiܹåKÔ/2ç´i¾¡ýX¤ÈníxÔ•×$;‰¡x˺p€Ç6!E’ËáúGˆgMÔL^·R8xÚ’¶YX_Lõß¿ªõJ^ZN?#èpSË»ö<Ö.$®•·¥Þà‚U,ÏL·úxÚø]áëæùA›ê®è»ÎŸzRY.õŠrZ_'Š‚‡4è7ê>Ë é QJU†û@3@ÜÝb__=C¡‚㛚¯?yøEcáC,°ûú‘Z¿ +©F¯\¸¶Ôá›pA$”©¨ (pɉw2›E«"žÅ÷°tÅG•ÊÅå¢ò„áÙÊwi)º‰O°3GÉ(¾ÅJ8yúŒË2Ž‹Až+^7Ϩ–÷aËÔö‚䈴ê!ÊcãyXÛÆèH´±v¤®@´*,…ZƒÇÄÒi$0Ð%ܽ‰îW}zð˜f¬dâthqOÈÊtàÏk säªÙÖ4C¾èŒ1}ÞŽJ"búXX=f( 7¯R[ô<6o¥’ÖRnE‡{Aúš3Gæ×@g ãQu=ŸåAçL;Tµ‘ƒüŒ\ï©]?üˆd@qâ q¿;‚±½ú·Ñm9 ¸úóïþqˆ£S>A}Xø USñˆµ°º–Lw>9ÏñÎ’ï~X‚͸Ÿ2'{•‚¦t]¡ùy lsè™Gº%£Ä¥{}X8*8n泌«q>¸MÌåc¶Ýå„WSÎíK{yó”~ùãw·Ô ÓzÐ÷‚î&sÕòŒývnüwÚ³ßxüd¥q»Òhª‚Ì‚ú&Mƒ‡Å¹ހőñ ÞqvV.Rh½ßÈòÆ`Ǭ§¡lKEì)ìÀãï‘›>-{|Ö’ÿüSG‰T“½›Ïpså';ÁI¶=Eq’JÒáCPö¨H>Åá|1YgN6g¯ Å€)Iª!þÍh5ãÎÏ.LJL~¬s¢<]Ù¹ƒP€Ñžß¨c¾º“‚J®¶mÏ=!,Ž›ø}Žf›T€„j'] «ÚÑÚí£;± ȹÝûÇ«½ e Z|P5Â5@ùû± (4Ñu]ÌïVÕ_‘ÿ>9Tp®ê]µb,aWkñiŠûe»¬XÎE!‡f³©„ä¾±j_ fU×͆uYp¬rÐÉxT@å´‘óÇÈ_ ¦=ÂÏ ¿ÊxGut ¶Y‘>ü€±-™œ¹I®p 8… kÙòzö‘qgì8ØñOä±[]„4Cȵ¥Õò&Õ^èõú˜+I(/]¥sŽgúÌuâL*” £5Bç“1™Ù&¾¬BŒüÉöë9YõV«kèñô¾ï¿¯*“(¶(M&D¹Ý ˜5掹%‹² ¯™,Å»rWµáéhd5±“2k~>úŒÆ¢á$ *êÌqQÓ‹jƒ94Ï„¡ù‰FD–‚nɬðŸ *„‘Zð'i&’Ö%Ž<Ã3Š)ˆe¯ÐË&ÜA* ™×f©qº”ÈÉɰJjT–QÛ9ñ´³n¼ŽÏŠÇÈÓ]¨¾Ëûå›–µX¢ïŸ|Ξ,>ê$ ]¹w £3dF·Ó2ÄÌæ5¹W¡bÕÝ[ 3¥x´¬“¾3Bùó?¨W!Ãpò \#òJJH¥R1Ò°[$jÛÇwN5 9Œ‰iHnL<%t4;í(ð1'•2˜¹7ËÅÑp»%MÏ:{¤èj‘’­ã:>fÈÉÈ뵩õR%.Sjâ`õ;Ÿ²ÆQ.—X»¡3ÅFõ y|‘Îm €´mkˆ|jzyúµ"î@+?Õ'¢ɾ²§»Cˆ‘þ Ï3íûo ¢w—Þ€Àæ‹ÇZy`²5*Bœ~%»ŽÈÇÕ˜ã5PH¯ÞaCªcl„œû¿_øRvÙ%ubó²c²ªòÆS€çB¾GÝã°X N ŠhÅã׿|¦¼ùÝSA²&‰Î`'‰[5áÙ× ^Û¢îÁ”¸ÐóLD±;B•à‚•]¸T…©p˜‡··[ÈÓŸ¿{"F¨Îž9?#k úƒ]¿È<üä)],Ÿ-vY¿J¢/-Y1-Ãâñ¿ù´ÆÃ—äeWõ32ŒÒ™¢ï•²Q|‚ȧŒØ"ʲ>Xº‡Ø¸);q&ìúóL‰’ü¬M»hä õ¾RH–‰2ŒÖU0Ñ'ãò¥“ ¨sÊ™©FœÙ "¨RK3¦L©º­ã7ÿÕ¬þ’7‡®ÝÞQ×3¦t“ÓÉv䨤ªÆz‚X¨àŠãÈk £¯dÓ«m¼ërCØ=¡£¤!®(Ñÿ-÷W/˜œeÀ~¸$øpÅD+U·=0Ë”$ÔLYB0¾`“¼I±ó{Ç0lÂÁ[gÙÝÔUÑMb0ËÓóèF U‡v:>_U–× B¬P @`ŠO¾ºÅ¿QÑ”üäájíµB©d™$‰¯”ƒD?ÈòækNU¹jÑ Íî×˵(Ø÷<ÁðóÌ+Ÿ½$‘© ãlÕ\ÒŽ»¦DõOîÜžPSÜdÄOôB½ ýRòV¢q{•|—bkr}0WƒYÓÖô€iOÙÔµa›?Àï;áðèå²…·•‹g†}‘®4õ ×­%ñ‡7TÃïZw$TÈbf­<­o3œ®4ˆˆ ÞeN…\‹:vpR#]ø´IZ Žþdç Ž5£…UºTç3b²YC(j2© Q BZ$€€{–e)ÓtQ Ô(¾þÞ­#]›Wš{äaÁ9䨴Àµdq)¾w%Hÿh¸¬ç·á" ©9mÑô»ß§}#ðú[æÙg¿±žò£ÆXÕ½Ÿx³&8MôÅ«š9u¤’=ªý‡*w˜-+^² HK’’*^,ûBLãlÝT:­Žº:/'¾ÏûÎ"¯˜H ‘¹Á ׸zU ‡I>õ+oWDË –³¢ØùMÿ”SË´´ ×æê ´2™cXп(5Òª{rYÒr§zÑWÁe4XBw7ó̈ô¸úÊ2À?]ˆŸ±þ Ü6 JÈfKOtè_§¬Õä£ËÊ-¬eÏ•-ñð)IЮ”Öæ'ù÷œØ9‚Þ%SB÷‚R´Ý^°HHt¨J—“#LɵïÅ‚H ›Ûœ—9(Lc]Ëie1D]WVtúN0¤v²žÙ,¥wêàQo‹•}ÿèýUØŸ—À¿Ò¶ŠkY3GÕ¢6ÁUìÌþG•R²é.­äx´¤€¿9lbÞõ­[ý’œ}…'},“÷ Ê$ŸM#ºÆ o²¸AÒÏ6ï!;Sd×.Ey J,àÕ›BZà0Q"ë--Œ\{³ d2rýe¨ˆuè´}N„†‚<¦tN_|«­hèÂÏ+¿ÚÐâ$ƒáÏÝÐúµÈs¼ÞÇb =‘(ã¾e…$QUî‹ÑQέÚV:äôi+qk2úüô`N2~¾B,¶_þíÛ·Žqn–Û,èmá¯UÞFþÔú÷³%¥'—& ð/3«ôúÖ-çÒCiÚh°Êc¯”|‚錷ìêça?ÜLFôÜXœ†Ð–ÝÑu´¿*ûMù—ü£¹Ž¸êùJ!œúë€YŒ ZUÇðY(^°o¬¹Ðá5&?ë\k#î&fÛtÂ©Ê }ØÙe´}¿]n‰/+Á[þŽðI1K &`©õÞáëž°¬õ‡½‡|)jbÔÊa Á²‘F« ‡.’öï QD¸Y­Þ:†Ø˜¾™9`Ä#›]ƒ^znZöÌ&æø ³`«þ4ãв8RÜO¸ýSóx0ÛdŽg<ž.“ºD¥qÛNÑgqRD1.—Šq‡’‹Eƒç{ýðV$rŠŸ'Wƒ*¨vÒ7Ž¢øù-š×€ÛèY ™ª”Šê"‰\Å2¯éhIJ-q¡ºëð9½ÊÛp Éa´ÁÞ¾¾í>_€Ï~Ù‡.š†}{ëÍu:p£hŸ”عØmVUè²&|½hÖ—Y¡?øÅ6‚…ÒSä Âo“È;ON(¡ªl®Oı^¥m¦Îñé°ú¾ýœ]—èmèÿî­x%ÎîD)IÖÝäÖA’°z¬œŽÈI/Ê4Ã¥À!*¦›Éòƒû›R»ŠÏÐk{Ì‚1v2ª!Ü^ó@Ò4Zä5ºLË­~´íQú;jN´0#Øo¯ Þ•*Õë=+Vg©ß¹æQºãŒeV—M j î¥axwþüí3h1›KÁVt5~Ô¤ÃÖµF¾ /™ÕÜ9}Ecä„Oôh%EÙñszÄòOµcʎϸéïø”ë’8òSNEü#º!¢#0¡«‹¿ÑÚ}ýz·~EZÿmiŒç{Ö*üÞÏi…ã+=?ÃD”YZ)Ô{ØYËEõõÀÏBÊKM:ø)hÖ&0ÁòkùXß7æ¼´éÇÑâL~K6ù¼»Az…Á oúÂlÔqrÀsä[j 3¤?n¬l­—¶Ý0|J7ò[ÅMÀ”3²Öï]e O½õØF˜˜¨¹ƒtneFiÙÈ^N¶võUÐþï'ê ì+SÏý5Fª‚øÈ…iÙMÎWšmbè p6m¡©ÅfZf_:Ó×<²>gI=¶Žc¬ÄQ÷zd†~ž4‹H(~ޡdž⦶¯é~Oû5I¥ö‡WyHúzéAB°!,aûYóË÷™ú:§tõ=›Š€¸=)nƄ‹Iš‰@Ì-;CÉY;°0‹)Û òèX÷-÷2b'UŒS½5ÇI4@ŒìÝÞð…°¨´¼Ú©‹_4vö(IMØÓP*Ÿ¯ˆ¶¢úJš|NFÕôI=e§%XÎjªì D|q²/‰x5þÙAõ‘áLØon$¸yTïºÄãǬʇŒ=[gw•D“w_SÆ‚Ñjú°4™Õ‡Ï"ì…~ B8W$Q¡÷@Q?ª’.RX!rTa ™“íiCdsÉæÄëWV`{‹‹ÕÚ¦~ÈÄ~ïLgµ‘Hº¿*¬•íø1ÁþµÌ_ªå5´9¢3M¿Æ/—€%RI%‰Î:”Ø"ÿmADÇ@GÇíÞuÎ~†¸ß£‘×ê8õ†øþŽ/Õ-¿—V +k‰g2§©Œ€ÅâãŠ"wu¿ûrÃm2œü5°w¤³Ÿá'ha:­¦œo4²”5ÛýèýÆá§o òhbDj‡vs“GŠ¤Ä i&<ØtõÇ£È˽  Rœ¸«º±¢ÇKË )¸¹bßÞuL¢â“‡°‚ÒX]ÁGZá6¶8qP¨gßVqÕ–âczè:),%åÑ··?~«íxˆw¼œß |¨Ž]•¥êjnM‘z€C}ž´o­ó´Ë½¿¹3l²Ù]_nÁ‹êÜߺbJ6`¹îfDbZÍ–hÇ…àÏpƯ¿Ï*.‚ ½ÿ¶|wį8].ð¾µß‘×”dd€0•VOy7´™@Т£ÐVi[ÅûÉUdùBu ŒŒI5öi†Ú62˲O‡Ç±\ýlóweés°ý³.ÿGoU7)#ÑHDÊxð»cNN4}Î;F}¶u•ž0®ÏÅŽ7ÐöTâˆÅKXžÐ—Y:²Z oçb¢ &D’fNv1Yù„¥2;'7÷¥ô«t,/ zO_£?©'Ó¬ƒ%\6ò2yêã QBZ•­ßþq°&~¼_]“:wVRLrÛ_79 K<@pË쟰 ’GøºµØÓÀ%'¥Ô öfr–,þˆ°£Ñ€Æ1ùö¨0üj#õnG1|NN€»õ9oµðs²éQb·êEŒ=C’J¹1¶…MËúT"Є,¤iÑ8£l¤}.ÆÂ”ªßaŒ'žµ1?ú¶×ùú Î9Ö ?ÚþUU8t“V§Ïµlóëàýº9—ÝâÕûü²x:®HƒM&¢åáµLEª®±k?Ó“cOY ‚cÓµ˜J nÎÁÚÊÕ áIºƒú¯67b¤áåÛŸ£ûr:xNû޾þ¸DšÐ?÷ÅX±XC‡«|üê 6ÞØCëMÿð[°il ^iÿ@¾­a†ç¨×âž°1Ïì¦4ÄØšK Zs¿Ñ³ÿ¸ ¾«†!üZ´¸î8±ûP9“¬P0¥·¸—àôB59ÜØŸA¦—he9‹iýq¶Åõ0G[^ø ¥¨³åäæÈò©zƒ\Ы/úßBÆéù@ÕÏçS„ÇiiŒÖ~r=3—Jg«ÀƒÆµ¸v© cÌò/£×ELÁ (ذ.h%xd _ØÀ@œ¯Î¤Df®VÎlqÎÚQÚ°E𬊃<¿“WÒ1ƒéÁ¬«=¹4¬ù#0B_RÀ¡À¨L ÷n‹EÉm[ù<©CªW§ÚHæïKãDBš4<ŒruçêOAÈ=Aœùèª+Õá ÖùÃáAPUzSÑÂñÐ_vSQ>u…W¿ÞŸ]­Ž‹—5¯ìG®Y x\©m‡/äÔ L,ES²ÀaÝ?¼"Q‰œ…íû”Ì­Õ®˜wuP¥Ÿ·î¤ŒˆÈõãÛ°£R nÙèÿqßÿðñÑ¿mƒ#ÇwÌk÷ÇHRUÈ\†”Æ×_Ky£Ï“[Ö&>aÂûEþd ˆ'ä(×™²Š-ƒ@q°Û¤òM@°`–%Uæç2Z¾%Ïæ½bCÀðqÉTÆm&ÇÆJEÀÒWS¾*Û³\Ljù$þBè4êÇ5³Ølt~ÄmÌþiê!ùÃ9——E³ùã)Þß'á³9ö<ߣ®vuȉùVÔŸoùôPèÞGÍ |™_bÎ{tªÈIÒQ`Ô֬ɋɦÂÙo5ļ$ÕÏ‘…ù²%ôë dà]ZÙyÏ^Ñô JÄöL8¿ª:µojÙrqP <ªt3õ›<ÒI\.²‹6ÂÇÊãWÕIi£FMCQ1ÓJåìlÞaÀQ`mõ*ñi¡UH‡eIû° ËÏ£{YJäëi˜m—@NYëÉïÄ Ë8ã’g ¯¼ï†²‡DÔ~ ' t²+¬È¯^À²‚¸º–A/l}² þ®ˆuäCd›£¥™«sSõÃ`êìN}/¿Î’¢Új5'À3f¤p¸SG@½ÉžðHE‘° ¨;ÝÍ6ýCvÐéã[²>\QÝr–e ÎvvNþîî\G@æ.¨bÕ>9eî^ 9‘yà¬E³}@}ocî†Üîç†ø_œû¾~e‰×ŠA‘?‰•Ÿ­ÕÇvÆ¿#¦6‰Jfà G+x’˜g•Ô¦¢›ÿD¡ÛÆT`@i7àzÒB¤ÕÆ”gÝ쬆 FÈnŽÞûöçe}YƒûNˆH/’¬ù­÷„팊xN[q.Ü’z=T”¼Fƒ…/’NÓ¼Fv¹Óë`[þ%]i4è·ìV^î]‚`Æ¡ ­ÆtOªµ –@,ÕÿªÛó+DyÂc7uqò›}—#𺮤  ¤®€i[ µ鯼ñYäkÃW³ö_¼«‘ÁRpC”){ÅÆŒ‡H…ß°»¾ fd~–EÍåæXÍ$¼Gt€‹XJ Ü@³ØvPÈK­ >ðó$ËW¢aâ'œ™ªER“z™@ã³¾ßËÇ2ðqÞb¯Ø7H|YÄyæj÷”p¥áidKæè7Íft¸Zi4—‡¯VðË\T. Ç«íæj®,†É3±H@ }ÿÙÙ> Ew˜¾ôJ'u²i1± ê;(¼ä[brœ‘Ö'Ýæt_ù®.˜VI%/d³Zþö´‚ì6ÇøÒOòiÏåO‚ °&ƒíïI[¨XäˆS Ü°*~¨rpÃÃR”KQÞ¡ –†ePÔj]‹äy¿‡²à@°!Ÿ”Íݯ“´½ ñ}Õ6QŒÒóãøVH´¹Î„ÑàwlÔªß9b Ø¥*‰8/¨‡®øT‰mRšÐ*›YT*Mï?ùô+IßÄG®ÍtúgÖ9 škÅé{Ò4½{-ûÐñ•n‘£a·#âfŸŠºö}Mðît<Ëpï¢kÝà—é`>(´˜‰=éÿ%0•èt˜\‚ß{<•Žs‘¹$ýB€ysÖÇL‰‹Oáä«Û¬xË#9©÷$R¾ÜŽ+ë¿/ ŒúvzêQ€} ª½T`¥ÀÞ‘{sµ¤ Þ!T¥  ÃýÔ7,ŸÓMÍ<“97êºÂû§ÉV à³qlÀmjÈž ¥FŽfVín:zÙ@mßðe“¯0žÖwš³[¥Ylý3q¨ j’^ÿ»Ý¶'„W©Ðâ¥9názõÙÊ+M½ð Ð½“}åÓžY&§M.¯³–àÌ{í–vz¡P×ŸŠ¾p ÙT-N޼æÌ;Æt\§#›”V¿a•Hµ<¾½ñ–ê­tkó°úÈG°Gfî·ƒrþ‡önøˆü^#øgƒ¥éìA8áºh¥Ef½ ¨g'®-G ×¥xßN\¬iòXü™éòª/ˆ¥móŽ–y’äÎ=6ÍkŸ(D\Øo.]’ÞIA‡{d÷ö½w_ ¯œ7­"À@|?í6ó…#ÖazÇC²É­Ã †x3”Ê{Àðƒ‚\&ÿ¶ìýmS`è¬øy ¾Ï}³YÍjzîrõökŠ‹7$¼š­ޙΩQ«µ?gÄ¢’M0ÛkqVìùÑÞµ1W8†ôþ^=näf$I­¥@Ü-Ó-© nªìŽÊ #ÖÚV¼m”±®Š~åiÛ¾“ c‚S0œ¥ÕÐD±ãF£K‘ž/ R†ÿuKÝž~ â4WDù*®ž4Ó/D.yÑgÉÈ(…ßéн#n –JgíSri[t zÍã•2…9šT¼=Ëú‡Y¹_6?bZ:ð«KürÐý„\¦>ýw(“wwõµ üôš".(=›PÓ˜óùúÚwíK]PHQŽi§kŒ¶SD>·Nèh[qQ…ý@1—¿˜óDÊZ<ë(ŽŽ´¦â~±é >nCvKz‹Æ„»G#$Ÿ”ˆïšI“^pÂøu}`æ‹c0ѩ޷³Þãxa]/•ϧ±fKâsèBŽõ’f‰Œœ0Ç”CV¶¡~¤w«ÇþÛŒJ¶ˆH®¼6Dˆß–Õp8»)S`+†ÏŒv­¦‡Þ‹¤ýn>Ù•¥;l ý¥ÌZS£œ/KH¥i.40⻉'²Mĵ@,% ¯Àü˜7*NM©E‘}4Ä›Ùû3lb2¦úZô\AÕ%!ÉT 1ÀÂdfŸ$ˆÓ ú©ïàRJÁkm’A’¦¹rZ ­FŽvõ±ƒšÄ´‚Y0úx²aV¿¯v‚|ʺòî¶Æ7CÆ8­Ëìw#ÎÞ•­÷›Õß»)Ÿ®g}É6%V;H)ž}ÑŠ-½™}ÑÚ$%ŒöŒÙøÄQ]š»R8zGÔ(ð1M¤Ç`…Š:²°·â™PdÀ7ÆËÎP´R\NðÞÙÆôuTönÖgãâÇìwáØSxh¹ù”184˜ûfãÙò<žI­ù×þw“`BÁêsعU¹ @t*{˜âE-I¥·,£¢ÐÔöêniQÜ"aÙUý»WŽñF~'ÈÙNׯwfj™|^ï$¦åœâ%z‰›¥óCߵʀtâyÙ]Œ¨R.€VÑ–Oê(¼;á6÷ËD RB¾@=÷)èDEð„îaR͉|^Ärv)¦ó"DýY3u¿…4¸4ÑŠÃìôº=# endstream endobj 230 0 obj << /Length1 1838 /Length2 12211 /Length3 0 /Length 13361 /Filter /FlateDecode >> stream xÚ´TœÙ-Œ»kðÆww‚»C 4Ö¸Cp—4¸%¸·àî'8Á$àú˜¹÷Î̽ÿ¿Ö{‹µšoWíªSUgס§ÖÐf—²†Z‚å¡Îì\@a€ŒªŒ¶ òpÜhôô:Gð_4z=°›;ê,üŠŒäñb“y¼0U¡ÎeOG€‹_˜K@pBÿ!BÝ„² /ˆ5@•  u»£ÑË@]|Ý ¶v/ýçÀdÅ à`û3 åvƒXœª ;°ÓˉV G€6Ô öðý¯L¢v.œœÞÞÞ 'w¨›­83ÀâaлƒÝ¼ÀÖ€?š¨œÀÿé cqÿ—Gjãá r^ Ž+°³ûKŒ§³5Ø ðr<@[I îvþYå_6À¿§àâàú+Ý¿£ÿHqþ3deur9ûBœm6G0@]^…ÃÃǃ r¶þƒrt‡¾Äƒ¼@Gå áÏÚAy)Mè¥Å7ènåqñpçp‡8þÑ$çi^æ,çl-ur;{¸£ýQŸ,Ä lõ2x_Îÿܯƒ3ÔÛÙÿ/hq¶¶ù£kON]gˆ«'XIöߤÚß6[°€((À ä€]`+;Î?ŽÐñuÿéäúÃüÒE ¿ Ô`óÒ8b~ù‡æïò<Ü<Áþÿtü7BãâXC¬<–`[ˆ3ÚßÙ_Ì`›á ¸A|ÆÀr€üýõeú"2k¨³£ïßô?o™SCÖHAY‰õ?=ÿå•–†úü¹xìÜ|@P@ ðòøßy4@×ñP%g(à\Ôû2¨ÿÔìõo0ý{I˜ÿL ú¢^0€éo±›ù€V/?\ÿÏ’ÿ3äÿOédù¿‹ýK’÷ttü“ÀôoÆÿ‡r‚8úþ›ò"_O—UP…¾,„óÿRõÁÿZ`U°5ÄÓé½J —•r¶uük–wyˆØZâae÷/ÍüË®ûǾ9BœÁPwÈO € üßË’Y9¼<#î/Âü— äþ²qÞâü²Sÿ]‚œ³Ôúåãæã€ÜÜ@¾h/7ÿ‚ø^„ð²¥Ö`Ÿ?¥ àäp†z¼„^Ú Ø@ÝÐþ¸e~A§ì¦?‘À)ÿ7âp¾þñ8UþFNÕ¿àKœÆßˆÀ©õ7âpjÿxœ:£—tÿF/9õÿF/•ü…„^| ¿—Ð ²z¹¶¿ý/l˿ыßêoöËœ9­ÿ¹œàÀ—mÿ_*´û ò¾Thçëb÷ò<þÍx±Aþ_cÿøR‰ãßðe¥8ÿûò"pBÿ_sû|Éìþø’ÙãðežCî—Ì>ÂÿR„•§›Û‹dþÜã¹üÿù6ƒÁ>`+´•E¨•H¸}}xçM™7ûÞ”(âÏÌnö©3A¹/æÛï´ssV_Wȯ pÉ›Ùw«I»Þäm,ýöÿÖ@ÕèË{ÅN%hKeùvñù v>Åÿšœf»¦P?]šR¸ÔmFƒ"§UÂÚvP›;€±¾9Å› L^@9¢S­«§®,G…ˆ\HïdGË£ÍrDgïâcþŽSRØn¼IL†ZÍkÑ®[´wÞµ8[Ãc#k¸½q!Ê^¡{gt‘¸r"#䲼ȵzkEXù¥^ÇYxþ– ø’ÇÖƒlø{`&‹Þ¦ÞȽ°É€s„ÜûÓ’ ðfæX#B2è L¤a%‚¥fë» út<9xå³±»y£àƒß,¶VüËü•ª8koÁ²=oa¥-ŒBâp?a^&Ø1¢–„8çf©ŸE$jð"Š@;©zhÈQV „DÆ|Ý/ø]4B±yÀK> ÉþaóãïßGA̽D(~ ¯ÇÔ™†’2Ò¯öò]Û-òÞWD¦ÂÏ*ræ8©£û"Ã…û“åo›r­D™óõüÖø:Ã%ÆîÞ‹úkëXÿœ¼¡]J0¡TÍ”;Ô_Åçõm÷à<„[Ôž…áÿT®šwkíÿýK”ÆÈ:Ü_}óê|9Ö)Ô+N¤ÔZ*3ÓWÎ<éÑ /$©Ê¦–Þ¦8+Œ4CÖ ŽÀ!çÈñÚ±®1 V8eFÞEcR¥cU¿›ïˆž+K9~ªw8ˆ&™¹¼AˆZ…mö°à½ix.éèŒ|¦_½f¥Ü‰{zç…lØæi<þ7-¢cv_Ϩùˆqßs\H²[ñ)g’/ ýè;¢ÞÚÝÜÜø¥˜9‰“æsyèïéúaŽ1Ív£ªìˆ %²+OâYÛ Þ«åeyjÄü9×ÎdÃ[{-˜•çG²æâ«šzœ›záéY—îŽ3i—dh2òÍ&è6íÕ®þ垦­6‚½ÂÏ¡J¦³5œ³êv.*¶üVëkÐèÌí|‚HgYn¤ýrp+„W*†V Ò0ùÂ~¯Bðö2NAð<è)[á¼µ£¯WÜ~Ÿ«­¹šwG›ÓÊÐ#>{+?ǺèÚ’ ˆjÉÛS:ÿs5mv9rCÆw”=Š~Ù X_­žÙ[ó«Ö“¯Œº\¸¥ª—yœ•±õ{¢êŸ´‘("9ݨ‘•‚Øc8’Óq%™K#r€ŠÇ½©(?FSsÖ½~‡o¯ß…$gt²–ĸç}·®?œ>½®T«zþ–Pß M«í°´3ED ÊX619w¤oÁk¹u÷móÕìƒùÓ|7FÇ ,§EÓHÀÉ!þåuWÆÌ3o+ ˜W—\’Ò®PP‹1`q|E'G%j7^°ÌNŒ¼''ñI‘À+tñV%YjüZ»ý=)7-=œáÉ‹M@M%|°Ÿ„8–¹þ#Ü<ƒõN·+òXíš”`GL9C£ûܶœ7ì€dÝ}%tÿÁ/1â;2ãÏëÙ¢ UÞÚùd/9ÁY¡Re1Ø_rEãÆîvU{ûIK•Øë·{Ô°M‰(ªt]ú¨Aúâ{‹ä8‘] üÀ)÷ñÝízÏÊXrùfœ‚éU¹¹[B³ùî)åÛÓFãK/Lô$ÆËçêqˆï¦n QšZzêOÚ‡8é‹[ºIú¯™éçW C¨Kù¸¬#Lð€\íØ_g?ÉÞñÏ©ØSÇŽG^Ïô¡Fvd\ É¤ìxÁ……ð–e:¦ îøÂþT$UôŸaº‘PÝ -vdµÌm[=žý¬âlÝG÷ rUÝUD=òý#ÑØ™¿[ ¥ÞT+ÃîNÑ iÍbb‰êÊØ•E™yš( Ü—Û§§ï)‘z´*»9•gx ]6£FTÓ孼╥¶ûð~\®H½ÕU Z(MM8X”;¨á°žÇµ¥p)zËÈu—Óz›¸úŽßÐñܼ*Ž¡ìÃ)öžC„EMLmDvVÃäôÌh‡„EÀ\ÊÈFÔ«q9ò,iw©P™Š1=bî¤mè<íÎß8 9&"ä@r{Ô¹5M}U’“:7¾jj~ŠÎ>Žr8Úr“µ„¯¥†]|îrUÎÂïõh°rîî…0=1×gÔáìE¯ð!*yüÚÃk© uÖj‹ v¡‡‘ŸxèØ&{-Ä*¶éËdb1ªFXIÒÉZU’ög2»âYñ|†f$*zLE;5ÓC…Åößu-N”?iû®g†.–ý£= é’1š°žý– #ÄÞÃ\ìˆt¯ÂRO•ØewrxV0õüî7:wÉW££TxQð–?QnܼÙÏ(aÊV‰^`.q Q$Ö(ö®àÓ÷2À i VZâ'å_"®ôæüõÅ‘ÈÖžzËš®+ŒÕ‡ÀkþéJNæ$ê¹'YDïUÀpÉ­uE»½ôBúb‡õkãn1Ì’Œ†ž¥ú³Wlü*Èh¸ÅÂŒuö°ª=ø¦µ¶ø~[söé¥ù_:n?À¿T¢Š³•ßÊ©¦9¼ÃlM"Nà¡«ëlRòôõÈ ÐDiÙL¸—0Å¥VdpP¯v™püÅ$©6¯fëÁœo,:Ûv  Û´þ¥„…/ÞP7›àF?¶¥sþøt|O=GgsH÷ÐPÎíšáy?â=4pSÛIÑà‰HÖ«‹Ì2·Æ}ËoAxË‚q=¬îƒ"]_ékSíÅñÛ“õÇî Í}1Q@‚Ã`’¦Ð‘ñû8YÞBé7N·ù›È\SSNl”LL‹™Æû5<‹qeVšÀË´ë&–Å rŠÒ}ÅD^zô{ =Ëí­<ºuïÛÎôÈ3‹aZÄ h—2Íénĺv•º¢¯¶ûŒ‰›>Bò†”€’8N±,‚UaÝãæ6œç <ª{³h,T*5•Vü™Ÿkêé´)ÒBãå’uÏ®^O`˜¯B f#i¾ì¾ÚAèC3_@€ÁC€y¦¤žIÊž1ºDʰ®Èˆ¼ÌÉ] !r¥œ uˆLÁ¹»º‹—žbÃR>´rÔÄ(¬Z× ¯H³jw—ùPY-׉( Ç ‘RD?×Bîr‰¡3Ï'—a¥ðÞv·‰Púþq$}ÂIó•9IcÇo3žÿ]¼•’1TˆýñíöTÜãªÀÒT^Évê›ó| £ä9ØljÃyÉ:/|ãutìnÜïOªj™¢‡OdæQÝàZíö¤îUžË¶³¡fhЦÑ*·Œ:+‰È烃žÊä#©Õe›´÷æ’D–á:#–(‹Œ¥ÓQjQâ'lš‡u—hÞæc³Ã<ŽÛåÚ̦â³ø…”•M_Ø08Ç£EpcW=Sç18‹¯äã*?Àb/(çðn¸³ö=\Á9 îúYÂÒo`T›—y|³Líí|½Œý&’Æì‰Uà“¹·&4eM˜:¶VÛæRÙ¦ÖЫ3t÷ýS4MD‰…IßÏ–È%¶Xžð%íåßKºI%}ý:{S(ÝoŠÆµ{ í-CðÃòÄaºGAf.ØsÄ$H–G£ã‚b„OΑĶ1Ý ­F•²å€›ïIŸÐ}É‚( “êTe È[¸Š®kx^i\[ʼnÁ¯i(LûKÎÝç& l“xÛúUáKä §¡{‹Û}ß7¥ Le?=}ã¶„S9W~wt+Õ¹û@×Y¥bÜûúŠ³Ãª  –µ‡7sÖí_îÂôÜR \)<õå<~TE9â2„êÎ4gŠÆ,þŠšy%k¹®Š»ZΚ¥ÐxJ8év[8Í¿)Ng?ÙÈý2ZI¦5vø)¨_ÒCm£€ Ø–PíÇ>ÍùÅzñ EE¥I '„zfÕ72 »Ë\#œ"G…ë$öÝ%Žºx˜Ž•¹мS?ß6¥CïmÊÇzrÔj˜*SWG˨譶$oÖ¬&m爻ÿçë­¯$iuWlË âp}Ös¯AîêÞ¹1Ýå|Oþ`ŒFÏý~ê9(/ÖAà¾kgh½²y¾V+Ðð¬¾ÁÅkÆÆ,ÄŽožú~Åø²"T…_ÄœVüÓ„m.JRñÇjd’›­eƒp¿BœÛEÉ[|iMŸjøÒŸù9í‰EâÝ4Fs¸ã¿Yîã¿dÓ¢x~BF9Ù?"Ê hqÉœòŒêT“và¨é|jŠS•-Ÿ)š²Í†"ë¦-UÛF8C ½¸H5dèO2Τ‰»µ¶xà¦Qê*‡Ç/ŽQ}Š-¥û] Ÿ±•Y#êùéd.{Õ@$]iöäÕÖæM2Om+RvÓïÖo¯£†8!o$ߺq†D½Û,?ÙµlŒ®ŸX“zŒ.ÕE2øâ|ü9‰ MrT'oWõ–÷çt\r,÷.Ä|°ÝRk]«ƒxÒmöWÅoï‹ ·¿™)ݰ†)~²ÕžF ]ü±±<âSe˜·‹€HÈZ}lì%7à;3µ"ËLïøƒàäú[r U¬™ŒÒ:ë~ÌsëyõgNÿ/]º˜1¦ú‘Ç\šÓ9L27x°4Èš|e΃¿æ–+fUœê,Š@ûËíQG³£LJ÷²Kš±á §>aîw°mºH"–:Õõqj7ûÉ|+éIQ¬cåþ)âª0ÁÈ¿­H/åÏÏËY¥«z3àÞáRh7Ó¿Yµ¦ú}í9Bç;¡b¡yWè¾äÕVåtªá#wEs‚¾ûº1kï•Þ˜pºñL€4 rŠD†^_~°%€WiÄ 7·Óܯ¥ó.éHïT—&)I„þZÂ5Ž˜ìrní‘Ð:u¯q{KâÚê å›«Aâ¾´Ú¸\°cŒL¼h:?¬s‹3pô.w]G9 ·wp Lž-0¸jOGÊuf`eüQê×bíFƒæ78¾~+Siüåë·ïý>öK7çY ÕQñ§¹]7™ÔŠsÞ·«TLjÜg£ÔßJ?Ò7Ñ®œÔ}²Ë x{dÆôeËZ¹ˆSþ+…ä-dªýVmÞ˜_S¤‡~wi{\O‘÷Øv9vݪOœÉsE‹œ—UñM8«+øþ²š'ŒâmH3©W ~Î=sç•Khç´þl‰[MìYÌg\Ѹ‚ˆ‰‘}•ª~÷‰ã»(ŠJ¥bl‚毒‘µ¾à㘇Æ‘wmÕHèuï8ÇñfõÓ`­wG<Фi|yý8JXˆ¡ÒO{¦r*¥ Ó"´ÊmöêÃÆ·ŸbŸÄ‚ÏÞ -/€XðݺLý=‘>0á/]”w‹¢_„ò¯, ªâT±#S¯¸Å°MÎw*' mÂÖƒLŽ7ÂOc¤µÇ.íÞ‚ÚƒçRZæ˜%¿Ë¹Ñ 5]CïJ”kšV§+$a¥é²#,>IŒˆj™¦3Àó”u/Ÿ¡iß‘6cw¶Ž,µT?é¬%hÛ££2û’ØìXo=R žÏu¸&dŸ:@U¯ð.Î=0¨;ö·=õ*Lÿø˜ =𳲘Ú|å­‡ROU†%¬“¶WeÛÄåÆÁ|Þ¸‡Ïÿ-P§·{V,9Ð<ƒI ²+Ç\ˆšŒ1¬ ¬3nªí!ó mÑéåw~ÉÒHßïðC…¤ÖþM1khŽ[ªX°õ:@E§þ½×•Y: ”†‡-\ºRlZù‘·Dßu ¬BŒ¼rPk¢úýp¥ƒÏ ü˜¦GÛl~¸‚´ ¬fDÕ[õYm‰°=¢Ò_ –¶ƒË¶ý 1݇ý©c°šokѸR?^¼+Z‘E&".ÉEPžs¨0¬É÷)ºGæCó/‚Ñf~‘æNTW¹ÉçpÑMêå¦1‰ù.¶ÓŠ“Œ2פßÊiù1¸“¡]” °2ýÇ:.£lº&‘ÐëÚl¯ë”ˆ»œR¯D¸é¸³ú‰v»?>_šf‡ Ýçp¡¬9Ær”ÔHsêÌôºa¢€IÛýûWcÕjò÷…•ÝYé#ÇþžQ]þ¶ÉØÞ¹£P‹H›;—ìà=q8Ÿ”•\¤¢4:û«9=êðŒ6M=R ÕÉTo ›Å†XãW×YìâÇ\’‘aÑn&œÛ!. ñk2ÇÍ‚<“„ØNÐM£…à…&üÁÍ”£W Ìvã¸Urç fçTžèÞè0¶‚9@4~:½—³_é©ÎŸ†ôT*cÞáØÉþËô’Œ¦–0µájQ €§&à‰‹—¢É`¶gk¿üÚ¢w74fÿËýúo‹{عqĬõL†×l*šè³øá×rÔž¸~‘ExH¬@¼¢Á×ZåWM-N~´ºÖ§ø NcÚàä6#E;£´™<ÕDcuÃDi››£–W9)2^„k :ֆލŠý_xâ‡KXÚÚÊàC&½ËŸ6DDî~q9Vø¹‹^²—Û|Lä–K^J)n‚3Ȇ&=ßÂHô@{ª#;F.‘~‹ý⃠㻮¦ñK¹e¾žw-‹×¨DŠéUo1P9tAƒ‹pÎôVúbqšs_¶SU¼Ž"ÙŸÚg¶6«yÕ`¯V¢P0j’`KdRjJû«EsÈ–,EÙ´ñÂôäÕ—+…ÜsþMê»wbù—É»qô³5?7¿ÀòOò-å(¹ ;?0Ò ãnà£X:Q•õv!õ}ž‹9ùUî=„.Lñ1}¨y)Åšöw#üyÑŽÁ"¢­ëÁùÌëÀÁYoï6ójH‹]øÍPQªóy¹ Ëpï{…÷OÀsIs8ª¤Ù “· }\Ó"ÀE&k–‚4Ôl·Ü*¯õvlg©p«ôþøßÖ˜ÚÜ?8w§vµ²g•%u%é¤U ì¨gúãïóKI×Ò?¥m––X¶ãör™ ¯Äú4;Õ"VM|lMbªu(ŽeH^pû®ìÂNÓ”\1•HÐKgÉí´L*Ÿ™²åÄ룗çÜ1Ú\›Ð 3 ¢Ü£LøA{ˆÃ€@C©Ä_c 0RBu¬ó†䳡â-í»{(¦%Žì9ä‹‚ÐKÌw)÷3ˆdB`® ÂP>_|™â+¦y½§+»6RzCv2_œ‘ ëU诇ÖRÑ—ÚÔç•×q‰ï;w!t‡K¹Ü¦å)õEüÙgÜ,y¨C8 ÓI_2ûšf&ŽéíÂO¯¶åQ®:fÛ ÚרvwôÞŸí? ]ö¸ÉÎþÄLr+T^î—ÍrùJ«®WЙú¬F)åùL/³ÞbÛ¢—Ù3óºÀ»Êg)•Ã?a-½Ñ¿w[ýY¾r»Û}E^pgîÌUFÕlÁF_7éÐ{¢5ó¶wn¤ùûBÓ´ð8ȰA½÷+½¢fø=êE‚SÆýh|üўÀw$?Z‡7eÁ”b. …Þ ^Ú‡–]z²ÅÌl4’i^ö Û¿±~Ib®ªcµ£¥~¨5Zʶ?,›0×525a±ahušsvg5£Æ-çFËë¶=Ì,½‰± ”Cå×?G±é=ÜCP óŽqB´×£†\?N͸¾ò˜ÊÐ"a&àðÔfó…ù­M§±h Ueá¸jN9Ñš×(%wvØ^¨óÁ80Qì¦m#t²¦`‡!;Fê†WT†R£àMæûÊ “V©&©Ï8ñ·Óo“Ðkz:v+À$)ÿ¶Âa“t=+H¨Ø{_°à"쇵 2ÌïŸu—. ïò *9Ñ–ƒÞt|¢’:ÁgA¤_nèXšA¸9;}PƵÛy¤g5r’ÒÖX»fÏžxcùáÕíA3¡ƒ~?qÀw‹»­oÌ~0)èçí>õô£ÐcGU¡G,ಾ¤”Ù©dßÚ ‹@ý ,ßA‰nua°ÇPÝÔ×IœÃZàuâ.!”ûÇÚ50ø £q óÉ–^I±‹Ï¢ª¨íO€ŠÐ¢.¸¨02oº>Ù'˜Ø-q± }Þj…çì '¨¢„ƽ GvíèÞjÂì~JœY`W¤— ª¥¡ÝÄÿ´ý­¦4kcqGÄlˆØYQÉÍüå—5Ýv¶ˆ»ìó†¢î—0Ù{$þdn)š¦ôK²6ëyÒrÆÌí&hår}•ÜðѼPCpÔ®¡®œþ†ÄP‡ï‰ÃgÝãûI`Ôœ3]*™Ù«·áõÊÁ?&ä˜é]ƒý6ŸnL÷ŽÖR§Ÿ>&øÙÖj&ÜzÀ~Á*/5Âþà‹/úñ _¥m U%4ÄwX0qÕl«ÅñYbÝ‚G¡œóÀBþÔA*2½¯kΆ“b)ùû’\“¡Š_ì>òÇšiìV2bqv$ÏÐÉëvd‰QI!@XZKB9 ؾeu+–NJ&J^"Å“uò>§8÷;YŒK¬,@øæD=o ÛÖn=ŽrÜiQ¯”›C8qË%ZÉA±SUQ±ÅµôkLi¤L·´=‹¢y‘üX¢¤T®Àëâ7kÔ\jÙˆ®4¨ŒSÆ}™¥ºHÌrMÖ1B­U 9ãëñ‘æÐݾ NV×Õ+h¡²=©d˜Ju†ëÉÚ”WJpna¹Ãºrª2RgøcÄÍâèiœ• Õ­" &çqëïn†§\tî©[òb,ÃöùªytGæiw0³Gã|Ü·¶ 2ZžœÖ2¤à ý¹ V02¬r 2ã^|yÖV×f·(èé}¤Òº@  Î7óÇHYÉ©Ȳ‹Ì åiÅLú:Ú+óî7è_Ç `ª.´u\4ºÛ.F|ç]Tt. BÿG„…D0ÚÑ5Z#:a>xÒ‰òþZìW‰ñ†NÞáãoÚÒ˜¬EÆ úgµž©³i¡©<Ê«ìCŸ¦ýÊ~é¡[kÂé{ùðŽÎ<þœ^ú@w¤¾P:/íðdtÂþ€:] 4RxE+9KDAHºn}Nczî!ô"_›´þQTãh "‚ù¼*ú¨X®4*y|s-§N+¥$ì+Ê(…ÓoIßóᢤËEÈIžIÍ’º-ËgW±èê{d:Ù‚Üè"ÚêVÃHf‹Dm€•xÕnÙnÿ;Lˆ_ç<é ÐÜUIoTâ¾ÅÚ‰úMK»é?3Ïlߟ'¥4³),ÇÄVàüóÀ<[kö‹®¦e`æýgLðØlKX³–dÅ@NÂ0Zí>åSŸR•_YAùƯáÖôÐéš‚Vomœ{°¨”iÈY/m–%ö¨åC´*Ò8Áf÷ìœ-¢ÞwˆæÎ›Kk//i˜¼än§É€¶nð«]Z^2^Êñ¿Y~´dKmlèµð¨‘Nd'&¼o¼žá<ŒVsJe)ý°¹ ÒqÕ>J)°†j˜qu8‹¹íÓ,ΩUèx—â‚p“z»Bxæ$ø#1Duª2×±´5H”$E,bÒ[Þ,*rpÔPvã5ÌŠd'’ÊûzÃ?Ût—txvÓuÑßÛ*[õTÔ0BƒPÒöÊ0“!Ù%HÄ“5r­zªhb Î!“ð“­Þ]@ í΋KÅ×g-ÍÂcK†Ù½R.xÒô{Ø…ª8é&u%Xj,a`®~ ¦L é-6K•š5ÀèH:¤È™KЙi§šßD–å_ù䆬ˆßôMõ:çF Ø/6»ú¸æ)È0S²Z…ðPZh0ý¸o·:>”ìÚ5$ ÑF³Í³G÷n½…`7à¦Ó^Ê՘Λ¥$1þ¸Qõ¸1ƒçD{! F›˜Ú¢©™‰-,Ï[2#ˆhIr¸f ó×£õ 9‚ åêø²5'úã¼ÿ'"à­R‰¼R©îs K8f›ƒõ°º™‚/Õ9,}¤ŒÍ/¹†W>÷CËâqy7ú^k"0EéË4ÔRÈìx1³Äã3$‹t¡ß áÞ„¶V=ökµb‡zç‚qHÊïÜËtÞáP5ARu#e¿½á{¨¯“¡™²ú³+ìÇ:5ŠÒ a£;’W6c=”­;ú߬€ñìdò¢I›îÑCšZ(ý&×0ßI…xjgŽb®6£D/ú¶…fÞ;Vèdΰ˜„]4áͦ™&»´R‹š•ëQÔ…jÚJ îöÅìxC’ έéq¶p­ñ\v­íB¢á÷ê›Æ50*ñÝ:ý…6'ƒÂ «J ƾ£±Z†îž;ù;–˱–w?ݵ““eH`¢p—àéP&·yºØ<>¢ÉY-o8§ÆÊìÈØÕʹÞÔèN_€õëå\ØÙ íéC«×»)e´$# üAF¾ŸéïÖ+ÞoâŠR nRnæÚUÞ;ײÈÈ_V¹Šø{/îœ5>Ïäw0ùøƒKÔõoGl…p5b”³ÅkÖ³e rpíÌÌXŸššWíg…§ÞºC¡ñÈõÛ*Yq¬o£pÞ¹RFG'U2œû¯Y.MúEÒð½nø57ÚæN¯;9õ^›.Ÿ8ø£93•Ù=½þ /Hý ë@5WÜ~¨b=Ͷj$È»¹¸q‚vî zÀ+pº&Ëúµ$ºx.ù5±bL ×úÌ@!–Ë(ìtÖ4qY£ho˱Ò0æëe§lcVLÚää÷ù´y*3ÎÃvVØWXtÄËßËšžïÉ9/Õ1'rX@âãUõ³j=DÂíß ¦PfvÂó7ž"ãÇ&_µ5ãKôœ [ýDÊz÷o_gŒ¨8Wé•h¶QA 0ÁÅ>®) ÒТºRão”á4æ49³œeEÁ¥<Ìħ/×Es-ɉ§HQkòÜ<¤ÏµŽ‹ ›ieÀ•­´¥­7oÀ×SzÜÝÈ\¤&<Ûy£)¾ÛâàPðò+l}Ѭl ãiÒ¸!lÄ««Ï-Yé=R³ê›Aij¤:ÝeÊ5¢>£+ùA"4¦Q äú}¢bðã‘ ’to¦Úa;ßô¾GÆ ÉÆcœýÉr¤ôUg°ôÆÆLÎIúoˆ’M¯ÿ×ìw §' QfY?,O×k¡GÉÛ¡íÜÐ==?êìËÃ/2Ì-͹ë}‰ÒqÿG|•¥C?†œ†û zÀzI¹i¸M¬O)ÚW‘c¸±1Ìs•œÓö8æèþ;4ö>ÑøŒªÆ( ø°ó”ü‘Vx홳̩êù©«_¾â)^MðÞîh·ôo«áN$¶#˜G×*ÉiU1öõ¬ò³ÍÜÃ,åîIë;«ÓÍbħޥ°A{ 3èîË.NZ-Üz¸†N‚»Â[ûÞØUãk7Vï Ö£…ÆæŸ®Pâà)%í»’ñ»³ýw®Zñ1å@—Ä˟ʓއw´ûS(ýLÝ÷4ò9‡ÿ†oO¼ûyCA“±Ý£‰ù„Bpp t”´(-¼¡‹$Ù9Ù^ÕIöGBÔ[8rM²»œ9û¬b6&zûsgµCó^ów¿~²Ucø¬“Ðs“‘šó½'è`E‘1"wçbo|6dÓãÅj:4Ô£ö9†þ0Ú]¥¯Ÿ…ýK¦Z¡{7‘ß] W–RjèHL‰@ªƒúCCö$Nß5p<¢Z0¤9šÝ¡µ'IâãY[…J–ȶ®+&°Hz®F{¶HJ©ØJ>ž;¨+f)ø7íjÆÝ»(í»ü"–PÙ©ä’APg…h^|:ÿþ¿ääµ¶5y?žHç—K~kžìºí,y½´x?¸Ïs²’Ïó*,„sl`ÖË–§,Á¬œøt³‘ŸEoÄðwø©›®åÄ:~©ò]ÂȰ 7E‹l¢Ua`¢ŸrwŒ/}8DpzµÛ»½U/â’öþÞÏ PʆÊåª&¥Õ¦ë„Kjâ¬â‡ïãw$ ǰP#"M¯þ|»7b]Ö“›×i–nÝ$šlLJôŠßíÿуÍwºˆšXÔ:H÷Áró}æ5¦Rªzƒ«nÆ;@¹›#‰ôò¦s|3†ßï:EtŒRœð›Œ±«uÕœÿôóŽ1C\m#¿5 ˆ,ßÔ*]ÎBùÍpÖªqí@áPO/Ò&{šyÏTÉ }ð›’úx+sø1¾ó˜QAwnTY󢸖Š'4ÕËìu÷A€'@6û»6"%»J›hm‡åO©hÂJ·×VXE¤k¥ÙúRKqëu‹Vlß_}7x= ¼ žô¾ãv1ÿ3*¦å§_“;‹¿Ù]\›ŸÍîÌ f wÈÄ6¾ûº¥jÅÁQù‚ ˜|5ɨDº\:øÂò‹ÊÂGl5[}|)k\râðÃ,jêQáɼ¿¹²Ð–S‰XHe=Ü·®§“ëH.â&NÐûËòÏð_|7ú[æk‚}6j~¸àkŸ™LtZáxä¬y»ÂÂUÑOÚ&ÚDÂf;å½°t83Ú¡’WcÁŸr=ì.a—+)ÏgSjã#sçD‡8Qtå~,àÅZQÌÄŒU¨Ôd _sK-'²ŸŒ`ûÈ×KkXk}þBÔ3†MÄæÜsEg&‘Ïì‹ô=sìÁ#6wïø$jŠÎCaûÞbì³ik9¬DjGk8ÆÙÇ·­¥Û½ñ*±×XšÁÈi|--ºSé>„u‡Åð~âü)¤¤~4A¯Žv Ü7·m+]—4ÕÞk1ÏÍ×LëgÌ}ók‰f|mÁj'¯ù†6âý‰0„Ë¥ûœiÎ ö—‰ý”WÈò<\Tôâ¢tS5FX3Ò‚›ºksI¸ÎU‚;A¦ˆQ(éaSÑ”=N#aªn1´QVP¥8Œt½d¥…/õßNhWðÎÕðð=F«_Í”)7±BT$õÆOÅŠÂJÑ M«éÚZhÈׯ1‘µ2G­Û Ñ8<èqÜÓ뾄¢^qn»/\hâNÓÄçcy(®~èEf¯MçØn á?|`Øëâ9Áq‡4ÍŒšpSÃâÆbcŠéÊ»#œgjâfÈù×½ºD'%Í 5ç§ÉÊÔ•œ±L—ΞBaǸ "%4§šno„æy̷ơ¨2«ˆ]š<‡yßÃiš?)½î»íà lâ1÷qqK‰>Ýu·ÚØ¡`_õ³}A²9/oÚ`æÝFz³Ö$Ú9uë¶Hù®ô×D—ÕåùÜV Yˆ½ì¡1¥Â¹1¦W¹Ÿß¾ð¼CÓÓc/3y¥“ì­Æ5Á§h~øiæO¹iPÉ qÂI¢@t¹½´¤M³G žü'§V'ðÔÜž§ipGV ¬hÇ >…dj~ñ¡›@ÿIú¦aP{žv 4œþ)UO·Aóøôý|¢´mâóãD¤9ûVµ£ôú#,sš5-é°èšr–'Ú¶´Ž-ÍBK_D§Eb¦‡a|½qŒ¯Ñ_ÛãÓ…;Îñ_=–kþ`‡[%)¥a* Ø 33(ÊúŒäYöO²œØX°Åc²eu\ÍbÊ( “ŒõÒí^ß´¼ÌhHÓákœ´„!Ì7SDÉ “J6YÅJ Bøk£iÃû‘äuõ^àYú«­)¡Õu¤ö´£‘BÁÀpãNDî‰Á=•–§‹î#{¿º}lviÚN•Þh¾ÔçšÚ»A3Od`ª=-Ëy2uÿÏ6Û÷Ý$§d‘3ßbÿà·d[Bq^O\ç4½²BºJ! |MÑLâm/ÕUʩĸMÎ £ÿj&»X}òjWS/ôû¸4«…Pª¨ÃÞJ6•O¤|†îµ6§µ_%±úÄ9s·ZªÖQâT‘çox÷ß?ájh9ΰÈ>‘ôoHâJ¬1¶gàÓ„8D¤ú¸áS¨ôŒhOܹuÜ ¡#pgÖPÇVLP,a_´Ð)ü+2¬ @oçöˆc©¹d ¹Ý[JFÓr{cŒ@¥³™›¡Ñ•-$ȵO¥¢nô$æŽgu¨ÌäKo´Ü¾S¦niä*†gTP½šÜ³tš!ã+GKÙøåQ ©wÁ…æ¶F >‰ÀÊEGxL¢û 8;‰÷MþˆÀYêgñÅÌCYÁC"Ìû ë±æa´yu}¯q+KƒçÒ¶ {õãü»Šf`„üñŽëÞµt”ˆ†çeYz„†Y»ô*`ºcµÑüûM$ìØÚOR ۸¯çI³Ä’¡„rYÝ›êjÑ(µfÔá6N{ü‚ßwZFbA‚Òù9¶LEaú´‘v‚P«zæž>ÚMic)8Õ«ÚLë_K?wù"É0ñ¬È¦Yîä^Å&s¤J¨®vNþ Æ*ö;ÃÕÏJq¢€J•Li 9xÄ~“ÿAõíp¨‹5;3ž}’F³•Ñ×k››cÆqH’¡ ~,oŒB<†Ž{];ª©òù‚0¿Ö᪄•c-ß·eÄœ*5óÉM`\‚',î>ïÓ¹kÿޝÁö*(•âØ/ÅdÉAðÖpì{fîÒ©ŒÕðÞãªz _¹ÈƒyBò*M™¨žL1¶KÔ£®kܲ N…¿õ¹t…ÒSÓ 9¯ìt½çî÷ä}G¡þŽÜÀöí®™´…t{ZÉÿÓ-d endstream endobj 232 0 obj << /Length1 1532 /Length2 2866 /Length3 0 /Length 3834 /Filter /FlateDecode >> stream xÚT 4”oû©L´Œ”Ý+;cû  £ÈN‹5cæÅËx‡Y,!¤H!)”%$-d­´Ø²”dÏRY~-*KD¡lå{IÛïÿ?çûΜ33×}_÷ö<×ýÈHZX+ï¢Ò]@C:ÌR&`ñÚ€¾©‘ àñªX<^%#c±hà/Jf?È`BtXûŠ>$³›™…0Mé0`̦U€ ¡MÐÔÆã<žø“Hghd_ˆ ˜bc: 2Q2útïäæÎB ýü ÈS‘¨‰Y vy ˆB†S2ËôB*RÈ4ÀšN@VÀ_)äuÝY,omÎÏÏKöbbé ·í Àb¹V dø‚T`qhÀŒìþœ ‹’lÜ!æ5Ý•åGf€b Af"1l˜ 2¤<`md˜{ƒð²ÉX>€€%üJ·½˜‚—‚É ÝË› @°à Ñ@ÀÜÐËòga2L]$’iL:Oö%C4² BXê î²ÈȈË2) È›ÅÄ2!Úâ¸Å4È9“`ª>ÝË „YLÔb¤ €ûy¿ž0Ýü]!˜êº8•íÛC>lÐÈ`™„˜P¿mn PÇãñššDô@Š;n±„M€7¸ä$,š‘)‚½éÞ€+2 ¹‚È*Iöƒ þéø¡€ QX€ èÁ¨ßÙ3èú#`@þ€=Q À/~~ýsDDF¥Ã´€ßô¥[Æ™ë+ýœù—WOî"U•UTU " AÔ‚ÿNcA†–Ûø#Òv¥ÄÝ"Çô³cßeÈ/¯ˆðw.3:¢]ÿ-u¼:ž‚|þgÁ/…ü:_Ìòߥþï– Ù4ÚA~™ñd/ˆ°LAÄËf!‹`JGÖþ7õøc}MA*Äöú·×ˆEFb솈Z™ †Å«ý°CLCȤZ@,Šû’F~˜÷-n ‚A :Z|d <þ_>dÍ(žÈCÂD¤¹ä‘-ú», ¦Ð©‹ë¦¢® r (JE]¹zd/© ÿ’˜¦³1p¥3P‹7»XG]´-C€ÿ€ªÎí¨à ? €£ý†ˆöpðIEÿÕ§7òìÀ4ЕõÛJX¶þËïXMÇ^‚MKa3.kI—ÈQüÄK/ úƒÔ‹.:Eç˜Gñ±²éÂ]"~ÊïšUk4ö}Y`K¨¡bhýXÎj3AÏë"j™SZ i îÛóí¹L¹8"âDH1š~žD½rìj4ÿq4çž(áìM]3mÞñ5ò­Ÿð5Âg¢“Ò‡ôí“Ìýb+³]¿ mA›¶ô1_%"ž›•Çc>Ø¥@Ü<{ô£ùÚKíUõx£‘Ik+KÚfäŒíÖ–Œ|åÏ+G;wvÕêñ©‡tDìF±ŠÇ]Dl¯kjW4UªÌº—ïÝYÁñ“}2Cn`“]ÿõ… Wü))žaQ¡l·Lc·\‚LßìxÅÇ? iÛ•E~SjíŒ=Ò°~ÂÞAõú ),xôÁܶ5Œm‡òöûëBi1*T ììujETÐsÞ V “}ëBh£é¨pÁu“¶mVÙõÒ Œåñm÷¥_©n”¶P^ø åÇ5z_®Y`½îm?¼®^–µfÂôäzÕ‡®ýö˜RzïuÍrœô”$û9œr#62„â¶ìÍŒØÏ!öéIì¼ß|yëg®—9\J#ž“áCn+z¶m‰žSz”±îå£âßÔó7Á‰î™f›CÜÓa…é3>J“6ñß_Ø£ò²uß»ºpæv>±•æ>âx!ÛÔ¯.Àä:Gkâ[ ‹žsƒM¯iCOo—ÌŸ™¶(?Êç›îµH¸•¿•‡™!f×ÿ5â­è—aó |±V²-Iá1}º×ÄSÔãE#õWó¶wHÔOón÷«˜›³úÀæ7|é|Î_ãk'µ¾Wéá`sr:AÖ£[¯iþ!ôÎùÌá€Ñ=<­§ ÛË7&ßÅñ%¢_EõV}Ì®¾»>R¢«ÿp3\ÜwG¨¿$z‡¿1Y 3ãô&ô6ù ²*}F»Ù)e{c±Ö&É£l2>¥¹¦¨ágØŠïg_å–!¾í°¸a{Ó1ró“9î§ÝÞG9®v5w×ÎðÛ˜èêž9© k Þ“k:¦u£Bo¹Uölô3RþîùS˜uW*Jª=£g[epÛ¨íZ‡6:#h!Ÿ7sõ˜»dÒ? D ˤYûF8c>å==R-Ó/1;[D4µ>E¦&Í$N›OQ[„¬®Û÷¨êñn/¶åµ£6“3õiü>OlU+Ïp1—˜)†V~ÚmŽ”CbÜU1–w.H~¼í´ÅÀ§›¸>@`uEýiT#k\½"ÏÏÛùåý‡»Xw'Ø^ØÙ‹ÙÚ#eœ°£Ö3¨BG(ïó'MùÓ}½Uȯín­‹auT‡«Ïuð¥DxŒ»inÅîã{)6«ïãþ9ª›ïMqE„.¿ZëÁÉâÇ­TõÝêøyY^· ¹ªÒ‰¶}–ò‚oH+NHŽ$8Ȩ]Û™« a)Ö³¥w¢,ǾÃe´ûd9úŠýìÃYEË,ã†Ð(ÁW íu²Íh=•‚Æû"ßX7h‰¤ŠŠêO «µà!-Dq¸º´~í1åÇÓLÎJçìÅ^>E­’»;?jiþ<‡-áû ušoæìK§U颢…¬”·{59dæK£âu¾‹Ëú&‘ÔÝ®+ÜRGGet® Î%%Õ™§ÖD”t:•ù¨ׯyË+]Ô&²ƒ¢MŽTÎÎW Ýnš&ìd ”¾¯¯7¾XW-å–¨&ìôQÒ.^] í¡$ÝTt8iˆÀÑJL\ÑÈp‹ÙdLŽöy°_”Ñm=O\ íñØ™|Î@ò3zÄJÊgºô†QUTEëm5ÒÛõ­£ùŸöM´Z®ËÓí*úçþçµï®ú•4æ¹WE™ÜL¶Ÿ÷Õ;é°^Ç„ ¼pØa˜›"V Ë*ºI\ÐÁ‹µ$ ïæ“KÆ;B_=MÞÕª3§SYÊ7ù|zdØÃ7{vŒž¿Ô}^«¸#¤uçS±N˜[Ãíð»–zü“·„ V·<>v—ù´õÝ¿¾×xFê”ÝÜœù”æq#Ñ{Ÿ¸±QÅ»²¨ê”›é ]q<=SÑýaÎò-ê³m¦³ü÷ŒšL?Ûä~1p®hkl_xÐÌ?Ígà7ªRÖ‘qGŠv /Ô\û #PÀQùœ“ÒÛÒþ¢°ü,€³PkA/|ÎjŸ²Ì»ƒÇž™È·LGO·êÙŸ½$;s‰êèßq]‹~'çSõeQ=­’/òç2¹Öéli¯|ýýðå§K3̆W•O™%}Zq…puêÓ#!ÍÁªIsn£Ý:â¼4¬²`'†@\íWlY h[¹†?ü„øþÖ^ÑŠì[»7sÛ·õÌœÙõ&c5ÊQ½õ¹¢e’Ê6«1«”ÓWI {íäÊ«‚>ø·EŠ*2æWÞ[QT(Ôÿ‘tsmÛ±œ‹ x³º5Oú»›d Doz¿Ñ³ýXeçÛáÌÞ à8¯[†ÞԵƠBdÛöÊÉy ÷­ÃµÎ97„=VQŸ5zø§KŒØ6œPz¿½§]qò‹éÈœ}f’Òõtl*›8†S‰p¸L·j,-àñ¼V;;øPIàBôwÓç„ˤ)Њö/`&¿DU¡pÞÌÌP”B¸sW𜥛]bñ¼JåsÁ¼ª¨ðþ†y9Á7f$-¾+»ÅL³cãïOÕþ Åu‡ endstream endobj 234 0 obj << /Length1 1415 /Length2 6448 /Length3 0 /Length 7416 /Filter /FlateDecode >> stream xÚtT”ïö.)¡€H— Ý0CwwwI ÌCÌC§H· „€ÒÝ%!Ý ˆ´‚HHIŠ€ÄŒsÎÿwî]ëÞ5k}óí½Ÿ½ß½ßý< ƒ®a UFÀ‘< ^ 8@AKKM ðüø,,†0¤ ô¯ŸÅêá CÀÅÿ@Á F¢|Š`$ §…€Ô½\ HX$"ø@±âE°7 Ðâ¨#àPO|„›ŸÌÁ‰:æ_¯v;HLL„ûw:@Îê³ÃZ`¤#Ôu¢Ø`€°ƒA‘~ÿ(Á.éˆDº‰óñùøøð‚]=yÒÜÒ õ„zxC!€_´Á®Ð?“ñâ³ ažü{¤Ø @9\`vP¸'*à zP‡ Ô4:nPø°æ7àïÝ@¼ —û›ý« þ;lg‡puÃý`p€=Ì ÐQÖäEú"¹`8äìâ‰@僽Á0°- ð»s0@YNF øw-Ss=5®?ÿ;&/ðð€<üB@$ˆ ^‚þYE ûÛð?©jp{üÓ-êšþÕ±÷_°ÿàŸÅ´(ÖBìÿ!¹Ph‡z€þ¿©þ;åÿÆð_Uþ_$ÿ½\\~‡ÙÇÿ0Øæâ÷€"­%-Jðÿ†š@ÿˆV y¹þwT F Aî€"3H(øÇóT†ùB!º0¤ãÊüñý’š ÕExÂ~}[PY@àÅPú²sF}?¿Íœjçåájë7YP-ýËþ-}(Ôj‡¿0‹°“wª o?¯‘£ñáÙ˜Ä>È87åç™(°ÂEö+M[N1ÈÉ^Ô(S^è)[9uiË»Ÿ¿ü4w°^Oßà'xÆC¯üÕÞ6yöö }&5à-ã,Q ZžIšüCñb~4]º¸ûoñd ý,Dlu½ó©>¬¤%Ê"êíÚokJ²5ÉiÅŒ÷Öô‘­¶C†B§”l¹k®IO¾Ä[Ĥk¿`Ôì¼ÀOñ©¾¿:82´LÜG×÷XÝ;lã9I¬$1D«(ˆSm¼œOx•[ì½ûâA€­ ‰¼*Ç£iŽÔ’ä¬~“]¬¨ê×Í„M¯×=¡N»eWÙrÃ脉ܲmôÆ6¾Õמ<^V?¥¿¡Ä||§=©JàPöåý‚cÕv mµK_9!ÀhVÊà?}7GïoÄŸÈP17R¿1ÖJ7ˆ^¸G,¼|ÀºoÊyö¨,8®×!õcÍôEalºÃ®ù!„B¦!ˆ“2FþÊù}É‹t蔨]ÄO´\¾–Ö|[èëÒV>11]ìýfú».Gö¯kyN!–a„x×+•JFý4×}ÖSÁöésv9/~V^<%xlÓÆîüÔSö+;î‹d3Õ¦¯¥ÑÛ¥Òo=gæK rÅê?ý˜L×c{ÆÒS`w²´1†­òÁ¦ûKC2¼ÍïòOY"jp¢aG&.dÜš’}ºÖò)¢Ø‡Õ‘ã/b°¨Àþүݦ"ôºúâlïûHöÈ$WzbR¤Òº•m?Wæâfi¨ýD³?"ù¦oqOÂ,¾Jm9Ž«–4`À’ÓÓgET´„‡@*Ê,2Ÿ4®(¶xúÐ_ç|²ËÇ»÷]Û¾C;ÿ¸½ ìõ¨î&懭‰?£ç•ù‰XõH2ë=œ&2jVŒ›ÍIoÚó+>ëT~Œ€Ÿ´‹¡¥û£›c"‰yÙzmR¢QãOö»n-8$>?ˆ ,8VÄ\3þYÓëü䞣›ëi×ܳ½UœË¢TRî@«øÍŸßã#Þìú{ù^»K‡Œi©—)·T²_,$:Xn'h•OÐTÄ(7ù_,¢¯0Ƚ_pz\œøxŸ/-šöVr8ésŸ×»¢}~#;óŒ‹Fy7x\YƒÏÅ+;ÂCò‘Ê ]g»JH®hñ-Î:€Ÿî ³ñ3ÅM¼Ç†—o+êˆ8œ2ò¦õÚ·®Jg|_ä1@[câ$êqæ•uI…Uë´p\UÌMoÅô¼1 î7[" J‡²_šX2æÛ¦‚b³í´¯bÕ®ùXx¾½¤]Aû)MXßšÅ:zÖÔÞ–ýh<õ'¦fñ9fƒÙøð[†."MÞNB¥ÏPë|…—Cv'jŒ‹LBn.‘Ì„íëÝQL&W½äQ»×§sýUùÆœ$ÔÙV<檎–É×ÑZ½IÖ{Ä“õFózkßÌ&üÆ÷ç*ãÔÏ,°9Q›—¤’ƒ‘í‘$«ƒ‡ìN“¼úfñß»®È˜¼"¿=oíùò¬(®?ñaöYtŸ&´Éw·ëÃVî nxÞ}zš~íž»Ë-®ä·€€µ'fü;cnÊo«í‹ïaüÈŸa',®.²Œào b>¢¥ ì!ÆÇT s''³zoƒöÛ¸Áךg9 k%ÝÍ¢±ð6!ñ2âÝ¡½ðÐç,¢÷Jµ &Ÿw1ŠÛ@¾{§ð xæ¦éàk§b™;ù¥ŠÏ¯2¾·`R jû$R¶A òø>ÓÑä¥îQWMgÏæuú¡ Ã*»>Ì“vqøÆz³àSSt1)¤`BÑŸVøøò8z|N8Ó;è”´H_>Zš£¿dzìĽ‚å(ø‹de¥ï¸ Íˆ¢w"Ï¥ºë¹þ¼ö¹ ª¯½ª×\äÝ,s¼ÃUîê¹)^¶Ž|adDÙ1AËÛš¸$gÕ'@‚×?íó W¯˜ $ãû·%±&5 ¦#ú÷X5Ðà$£ÖÍ#×5¥‹‰ëíat=ÍRû}®ôÚ •8â-&Ø’½3â±DâˆËÐÑØY­ŒW?alòß:„‘oòâÞÛ¬6_9sÊXØJµ`¤ç¯~%¦)|sãÌÍ!šÿ€þýàÈô½­k…fl*í$ñéM³àMþŒèì~äâF6 ¨þ‰ðÁIչؘ~Í{™ì½Þî^wIåšçZýÛµ7kH…Èh¬HK~ž«µ†a¨¼z±µ¦ÄímX}b“V=—1I™3» /¤;íXòÆŒêz¶_Š;^ö®YòÙ wNŸhèP|ÿMêW°º“TsÄDμ±ë $kLUw¦ÉÕîI‘ñk½/Ga0ô2˜#wŸÇ}dvûÒŠ¤¡(ÇöxZ9zõ™§ô«‰Ôî³’`;Ú¸õ] ùÞ<ÓÛ̸K·Z*p§‡ÚéÙ“JvI¤æ,®õ¥ÒÀ,'JÈÁ ‘aÃÙŠsèòŸ'w©+I:?Üá~µA3QÏÔRô¢U®IA¹23ÍÌõe„ÕÝ=Ùx^’¢yÏÙ¶äi{KÚù9uâWÓïî«\×xQ¶mÐ#OœöSHj¯2ñ\ ÿBÐ[³ÆS÷X͆Xy¸gÛFßIÎçÜ« ,ʄԩqÏ;Àž",+`¾þéùÒ§:ÙïtÈòwdŸVvÅ5¾¡Y÷#¦ í+÷—á¤õ>ስRÖx¤Î{þN–nDПheÔùì‹¢3†3÷càaYwV£xV+¯œ*ö¢š–öi¤›îG=F…XEæÐ¼³¥»|0=káÒèªë—Ï,šu M,‚ØÚ„vîrýs’ ’ì­ÉÞbÓz:ç|Eá4ˆ1„ŸÏËú†O¥¯)5>k¼_ù¨ ½w-ååY‹º4ë*cŒ|إ݋¹ØSª‡#A!BŠ7\ÒÚg¶5B@Z·ó¸ºg¸,<|.ÄÈ]ì–Œ»ŽŸ!©Ÿ ïY;¾]q¬E?Jp>Nêj_~J×5¬ÐXë8]ðXÙ€é{÷’j¼Í¢Îb¬#ógõ¤UBü󦃢Wã!Û–Â[ N% Œ4Ì×Q¦Îá÷ž. BîØðxš|ixj³e1Ç6p³=ºßÁ°¦Üða*Ó¾VT¾eÖ~!¢o¹˜­¾:“Q/a•ÅvJ–²ß+ÅJ·YXîݺ}Y_Ð*V¸®¸ ;¶Ó“EUNõ 0£þâŒun#’p¸¿Mí”6»w7@kE”^‘³NŸû|…§ü¦ŠXöÓlˆõd¾®¿Þ˜óÆ –û-c¤( Ój‹|çA…‹FRnFeR„Ér}7¿ì¯ös9cE]'d”^£\M±á‚è ø0úÅ.A™<¥ÒlkƵ]¶~âý,~oí.ÊŸ²ŒèÙZÖý7G”Ð^Ÿ‘,Ð\ÑÕš)#^ÙôXºyâÇÄ$©â*Íü9ØG¶$ŽI¤•d´ÖL]Íoùq+­]¬~0þÙÿnH=$†püGÿ ÎåºÏ2ŒÕåò! ™Ä<_7qGC™G>ôyT'¹zùhrÙn0w±”+Žƒ=Ûרñ}ýñvßõòÔ\²2æ2+5¹¨ñ>2œOëqjåìƒQŸ7‹ß/ð¡Ãt"\,Zúàüï¶ì“ƒÑ2 vÖNù—ø–KÆ¥xòÃØ¯¬­ÊâéÅmÆeŠn廌~âÌá°æµ¡ßÙX>=›¹Á[Sís7â?¾àÙF¥Û…¶C›îP)l¼Õ?òÖØTº„b¸lÙºhm¨•pN”òw™|¥Ã"bâŸz’¾ï\Ûs`ä`æÞ¾±¿•”hÐM›Ö°rh2N*iÿa ¦Ó>¶/]hª‘¨yÀÏØ/-VÍ“C'þñ°RâKÈL€M²3¾’rM7:-¥¼“Kq âã¹KÉ2¯†NEšª=F©+tQQ.^Šë7mVóﻂï~PØdSm>SðO žŠY»C;s^±$ЃÀ+ný‘ß'vm&ß½ÉÊh¤Wî®ë`ŸÁâ¶;I¥Qcœ(—É}->”]Žl€ Œ(Ñe%èÆèqês2ÏÍØU\u/.÷¨EÍßãIîË Ý?ÑcÄF2vKÎå>Woõ{¾5Àk¥•a³T}:#›ô‰ f[POíþ&ÎÞÙ©YµgëiZK”Œ°.P%;âJ|˜Ly/³¤™h…L3îSàåCwŸÂÜÈ[ òc/n–ñw¹Øä.4ŒzŽÇÜ go** ¿½FË^Â#¾w­ú"q´õDOüõðK:Ò{_³ßš?ÖÖ4Äûq¸¤®ØOç£wÂMÜ'(o¨ø2Ïcbt)ªéÏÆÃØüµz²döq/œû-€žZéà>q £3J22ç¢IYœ#zcM êrŠHÓŸmRƒÂ¸WÔ{ŽK£u.õ*Nš Û+€EÄïÄi )Å ;_l ¶ï8¡ |Ék2s=bòbjÕ´YnÖA/–+“>…ŠãÓË9ßjRì7•j“R¶9Û鸟Ç3Ɔ‰Ò³r¨-î¤È¦T¼Š/Äwe—*y$(èÞânþÐkd¨kÍ÷t¡xWf‘Ñ+µu?¢©£@B6¾P=ña~376-†ÑV˜];ñ6bÌ ;£ùLÍÂÉ"TNúš›wc+$®dÔ8aaÇ+QÐýî[Kì]Zð_\µËÐVˆKÉ«Û%åÜa:=ú¡{èViË£šjÿØ÷x´¡ó†T4,ú›)ËâX¥jl$„µ±,ÅÄC¸UÖËÁ¿ Ò‡½ÝB`)>yýc\ÒzÉŸ:Ú®Ùs-)êù‹Æœ©¢Z ²3’Ô@›2Ýp^§Ð†Í €oWj/Äg‰nL´©DvÒ0Ý%,3Í4b+·:hUAÅ-yßéY?nÁ 4&NÎv]3~¼²µœÌª¡Ð‰3¿5‡yCéòÓsæóG•iLSAÛH²C*ïk@íhÀMþ\Û´Ó§ìÌ›m²(ÆaA–…ÝŒ‡þ2]ÊVجÄÃ<-FkI ^Um#åŒùÔ¨£Éè¾¾èçË@íLM.>—Ö_ôF÷*Ý;MIçðë²|N§Æ­Lv}ú®Ëô-)³zƒeEƒÙŸ1Þ˜O_å u¿Ð`DŸR4¼9Á‡¥gxQ{0Dº(s;JV‡˜RêÙû*|in*~÷$›å½Kèóá7î£- 7S{ð¼û©ø4;-]àcIHWŸÕäž;3Q[‹#Õ£þÄŒ ‘縗hä-‰,fù_B?îúÝ;ѹ 5&Á˜8³.í/`Zнþ…}r7’ÿŒ|¦<ÙPޤòuaûÄÈŽ‡¹XpÍ4=éÈ{æO¢ßhm¯u¿_ˆöÓö3:g:(hÎ$῟ÿÉX2™ú*éᤠ)SöN>Žyª|¨–S‡éã·!;Ó•‹5Cg»p%ª¶Ã]Ï’GM$㋹ïhqë´«W>¤CÖx¿Ž>ð*&¸Ë¯£>¦Ê=u²3È€0•4\ Yî3vî¥4>î}Š-¾qÀ¹ONÚè$Øí ú–±»ç¦TÑ’•Ùþe5ÝJI|_ËÕÔ@„v ͈µŠ–d#´8 sO¸Ñqý¼ÇþIrÌEµ¬k½ôQM/a („×´Úa#ZöðÕÖ×g=Õimãö=½Ë®x°áˆ­(ú†VK¥z[Èàý7»\\´…°mƒõ.§KY±ÙL‹¤'"KéêÑ—Ò³/¤i0"Í ~Ž‚“3ækgeýç±²ÜgøßÍ_ÔÆ§uͤ‹ÿpîæ·á9©wDš }2ûžå¤¹¹4®L2ë²Ým¶Î±g¤ÃŸ˜þ~¨Ðzgª’œ%"µNêªáf’*¶°'¯'|5mQýÖÝ ¸qF1fĽ.!Aû­ok @‚vm:õ=wg£©ç¥‹Ï>½$™Uñ(ìÊÁŠC«éœnkŸ³ú’ð-£–°VW ††Iz‘- ê÷o.0#†æeéÔ6ûÛM?Œîô*¹KבéSx:xDÌ3 ›ë†„<`°¨þDÛœ#”6ùˆ|ôm¿O”ª$þnÓNß<"Š‚Po>í„ ¯-ÐѪÏZ-寀¼D2umŠaÛ¹¨“>Ô7òÛ{ñ}`¬«¹îËk¦,¼Î•RË«»3LØ#>Ì›6ö²ôÝPÖ¯ÙðêM \ÕsliÇøæñS õ'KŒ°:o—¢Tœ‚¸`€wPTç»ë ž#ã0¶> >½¾þ…²ôbWl6Ä¢à˜àã}Vب ÛGM×ÿIáÔ»èó]eGÔRß2ýÕh&Îx~d{ŒÒß ® œqö·ZÚ×oÙYãÚ,697©Vɋà hZL¿NÚ¹“Á\’\d¢O'Û}’C%ðc'<ƒº™›í%~à>$ÜõÙ*±Aw™žÅ³N35Æ“î8ùùÄÂÔØøñÄÜb»æmXzÚU}ä—Kmêø29%æcdÊÓ¡“ö÷±ÔN¸ ´•òž7µêï­JõaCâ-Ÿ¶®Á%ãŸ1\´½´0cÃ¥é:«¨#ú´†Þgl®§B¸’ú”Ÿ@ߘ.Ó/f­ìRãkƒ·ýON {˜ÆÐèÇ"'^  ¹Øâóú+fJ½·Z1Çà¢Zx³Àäh©çV$ßq‡¬g± Ë„¼Pá%d'zra£É6~š W#Õ£²EïmèYœ?ç·.b£…+„Ÿp”¬2Öª¼:´Ï‚9ìÐ@ïß~¬çi. Fœëº"œ wÆñ¤QT šž¾øºó0öQ”ðÒÁàÃ)ô'î¤íåç¬rÝ p]-´³PœìÚ·]•RÇšm¸Ý|;Ø%>ìкL,‡ïŒ0t.¯:¼&4¶|L›i¯º 7²"ñX&Åîy/óNb7SaüŠvsoŒ5“thR­§Il÷u™™n8Ÿ-´ußíO­ÿï8T“ endstream endobj 236 0 obj << /Length1 2619 /Length2 21931 /Length3 0 /Length 23427 /Filter /FlateDecode >> stream xÚŒ÷P\YÛ ãÁ îÐ8ÁÝÝ]‚‚Cãîî‚»»»»N ¸{€àîp;3óN2ßÿWÝ[]EŸõ¸¬½MA¢¤B/llk”°µq¢gf`âˆÊ¿gf01±201±ÀSP¨š;YÿÃS¨Ímmxþ0u8dbN ;y[€Œ³€™ÀÌÁÃÌÉÃÄ`abâþŸ¡­@ÌÀÅÜ ϱµ:ÂSˆÚÚ¹;˜›š9Òüï@môÀÌÍÍI÷—;@Øè`nd`7p2Zƒ2XTlÌNîÿ AÍgæädÇÃÈèêêÊ``íÈ`ë`*ðŽàjîdxt:¸¿(Xÿ jfîø·\ÅÖÄÉÕÀ ¬Ì€6Ž gc ” "-P´Úüm,÷·àŸÙ˜˜ÿ ÷÷¯@æ69ÙZÛظ›Û˜LÌ­€E 9'7':€ñ/C+G[¿‹¹•!Èà¯Ê ÂÊPƒÿ´çhä`nçäÈàhnõ«EÆ_a@S·1µµ¶Ú89ÂÿªOÌÜh»;ãß›µ´±uµñü˜˜Û›üjÂØÙŽQÍÆÜÞ(-ö Hÿ[f t°311qr³€ö ›‘ã¯ðªîvÀ¿”̿Ġ¼=ílí& &€Þæ&@м§£ àäà ôöüSñ_ÏÌ 067rMÍmàG‰&cÐòÌÝ™@Üc0ýúüû¤¢—±­•ûoó¿ö˨ ¥ *¥DûwÇÿêDDlÝžôlLzv&ó/’q‚¼ÿFÉÀüŸ2þð•¶1±pÿ]-hLÿ«ØåPÿs8ÞþKÁÄZ €ú7ɵ™Ø™Œ@˜ÿ?Sý/—ÿ ÿåÿäÿ· g+«¿ÔÔéÿÔÖæVîÿ€Hëì:ò¶ c`óM5€Zy ±¹³õÿÕJ;€‚°©Õ¿c4w”0w+™;™ýÍ–¿åj¿N™•¹ PÉÖÑü×µ ­æÿè@GËÈtu8‚(ù— :9ÿM)ncdkü눱°s  ÜáAK!v€'3è,Ýþ"1€‘ÁÆÖ äµç 0±u€ÿµQv£ð/Ñ߈À(úqÅ~#n£ø¿ˆ“ À(ñ±¥#PLÙ߈À(÷2ÈÿF  ¿(ƒâ¿ˆ ”Aé7b0*ÿF,Æ÷¿(»ÊoÄ`Tý@µ¨ýF ZÔ#P-ÿ"n2ø1ƒj10á·T«áoªÇÐÁÀÈzk˜8ý–³þ+ÿ›ùÿ*@þE, "@²²ú’û—ÌÜÁÈÙÚÄ ´´ÿ‰ÙAyl­@ùŸ„í—!èêû£ZsCP›Æ¶ ÂÍÿ°•ü»[ÿ©ùWQ@kcG³?d ~@¤ûŒ 4}“ßÖäÈö þ‘ö—ñoÈÎú ºü®ƒù—Àê·þ—¹­³ÃÙ@¦¿!h¦`eü]háfîvf@›?,@²?jÝâZ¼å”ÁêÚ›õÍ‚ý;2;ÈÕtNÿЃ¦aû{Í ½ío-(–í¬AÝÚýVƒbÛÞÆ6ÿaó?Òÿò‰ Ô„èþ´ýcí¿fiÿ/de³w¶Ýeÿ]ó¯ ý1_fÐpwrrZ›ÿ—qì¿l€.Ì”ÄÑü7KÙ@:Zý‡&¿Xø;-èêgt2sþÁ@P»N®¶8€b8ÿA‹pù‚*sýƒV o·? (¼û4XßÅ"yþNõŸëÓÈÙ4Y§¿^p šÿÿõï è4‚_œ³5â ²¨ 긫Æw¥ßàŸ¦ØÕHyGï¹èÐéü€ü&ñ]uFÀºÃpâpïÛ•mqêk¡%âgÏÃÖ†7ŸÚâ•Û½žôbßOí¶Ã/Lb}ýVp(\?@G@¯*ôÃëÙÞKÝß²¼K†"ÇÞ™ Y)ýε_Ò­~ ly,dnWùG5‡,ÂSÙwúHµmÿâŠ\ÃÌYR'zBX´37”™ë›i´ìo¯Ä2±´ðÞG‘¬…žZ,Q÷³«ª,ŽÝ¸ä¸Z8„×hcS”ž"ûI2Øóž%…+_ÜZù ‰³‘è’Wèß2쳤W›¿·iî«u[ü¼““¢Âÿо_[ÚŒ¡ç@ªˆYÝ®ŽîTËj $Üÿb"²Úq£Þcb‘L°Äý½þ0ƒ¤ivè×ÒãùØ`¿:<ò•þ6$¹ín¸yd»Ç[£Xp@ÀÔ•™FÜìcØÊ2O:a2t™Ó8D·Pã-Ý’K"×´A0ŸgÀ¹ÈóV“tøÁ {Ž×y”weã™Â—Ôy+W4À×@…Wî䳳\3VqýŒêÜtñžÏ¹kÑTʼuÀÆ™À2ƳJ,±Rwb¹¸-ö…óAòB6iɾÝùªá0íw‹{î|†õJµöö|e’£púñýFÿ!‘Àà~îãý­›òr]Ì[õû³J×P‘á¨MUΠÜÏ_Þûew;*¦J ‡CÝnÏöÁ’«Š¸X7G£h¨ò?lw=¹Ò•I‹QP.ÊÈð}òZÔY+ìíñÂú|ÝìÇRשxG †˜ñv5Š"ãÇ2$™^çp³úù ž¾Šê]™ÇXßü÷ñm’Ñ©mrO«Jíb¶þ/{D*¤U,%Éü¶_Úå:?uDØ‹IXËšš«pÃAmúÌWàúÑДٛNV& ‰#)@A)UÆš\!-Æë\|–Å–G¦Ðqt •£vÝÆ5_p9¿v·&8ùº˜`¨ÚO¸ÉO‰ÙßÝ$s•mËñÓÂpwÌ«)æ²Hæ§àåXÀ°k?f¥¡^mú¾#‰0 þk´ ¶Í7K…1Ttþ]‰U<—$ˆž§• uãeRY¥šz±¿NTfLÆ© Œ²Ï“&†£žÌ_}²o²ûpvNj?þ2œ±tYbÞÔ•T‚=!Úõ\%”Ü«úÕßV™obo"aJß§‰/“ˆ™©Ô 6õ•¯ýÀú´¡ù~!cmØìl-'h½òÀ¶±±¦&]pW_ð’3é Ao,úcâ—K.7%>6æYÂK~§owR`K(H¼©­-Þ²Î̬ij¢`ÐæiX RN•uSÓÞ7î8Ds/>FDÚëö§~Úmm?ØÙ\H>¦ëÝJ·åÕœÖW?a~ýaŽÇ´NX~!/s/Ÿ­ÉT1íâɱޓ0§}×€pȶN#eÅå¿…LÈTý®)˰"‹ósø]¶äˆ¬§A¨¨–ˆdV'<¡û25r˜,UH‹"Ó´zr‡´9¹ÕãÁCE }<öÆÇnœÃàøpøÝ ,®ìØ<% …i‚aµÇ§[™1ÜT:g[ù –~5ç¸ÔœO34ií4EH½HåS¯Ü]%ë‚ýù² XFïpF¿ÝnjŸ™f;UR –nG}ë¿z´Q=tíŒÿÑAžc¬ -Ú’^0±¤x3÷M¨PƒÅxŸËžDÎø{Õ6¾í¡Ï³:cÄ¿PíÕÃ1 S\f®­Ç=ùñýäí Ee×Ô0¦ëæÚ&‹ŽmYß: JïYPÚlÅy?WÄúD›§‘v!ɶtÈã6 {i @(T„#gîráJYJ8]S%éqWÂý‡ˆ*n‡zì¹CúÉLá¡aÎsG €œÂ )çb4k mÞXÔM9D*ôÓº_¨Yc6¤§ ÒzÅ‚i1šæA?íðMnüz<£Éu_¦U'…’8K.‘ºð;9Æ|eX'ìèe¢YÂùë·™V¼Už£ÝÔdm  m$`âHaÃÁRÀ‚¸<ß/ØÆ¡öô«bSïèiœA ¿øÊzÙÊ#è¡ÏM'k ®¿Äv"¹ïÈï¿rø•çÔêvÞ8eà )2æ2f‚Iœ'4±º‘¥n¡ÈËÏOJh=¯~„´®xmóø!á ‡fUv_NÚ+#P„ZP‰Ö!ðÞSµ¢2´lŽK—{ê¿V|ú ««°³]"r²¬S)“a¿SjÊÏíªGïãÄõPTìÁË+åœj$U¥×k—Àœ{xà]œÝË^ ƒ¯YüCK¼3ÖyLP„>­•'ì-Pùv.FOÈ›ƒOj]ÉÀeÊWmS¯&{ã«V93MÙÎ`$Zu´<í ¡_¯çjÙœ¥2+Ö¾º:ïBnÇxè42Z•"ƒbÖ†9]WùQàQ_H°i6¿6ÿ†©Äƃ¬Äj®ácJìuÿ(+j+ÓªžÌ%Ãï•‘«$-ûe³I³£Ú›Ï÷lÊÌØ5c>€rî-{õ–â±B@œ£®åqž£qTº ²Glì›Êü½ž9¹,\(Ô³2„°Â¼²@±/áò’œÜäÒræ/”ñ ¦ø›6VîàŸdà¢%/ødáv•Æ £„…qF\Bâ}×¾[åQî5ÞiîÎ7P-N€i,MîRvç1ùË^p1ÓÍáÌ¿;ÃfáõŠÂs ö{KÎf³‚û3\|ÌqkÝZubv®,ËD´þÆð‘-_eÅÐ5ÖàTZp¢ÄÃ1#«[E M%!òÙ)ç¥å´Ó.puÃEÓÜ’„×]e¯_ÙÇD#ÈÖ[iM’l¼Ý<;ð£&F´jFŸ:aÖ_árf¸t¦=Ù^$}¸à=£óõn˜¢€·m¯^ÏqƒbJq @ÂEÓ`–pûv2³Ÿ¼0}±ŽltSw¿n\BÊ$Õ!óðÁI.¶s¹èAÊ$ ‰M½Y(apáþLŽiÓ¢)Z)ÊüÐïTf,Dv[Â6i©ði&\¶³MÇ0òŒuŸC€%%÷Ä6‚eÐðÕj::%úÁ„mƒ°ahlꨔbLN?¥}S=1“N)Çg×…Ö‚b…ŽèÕê“ÞÀµÿÀ0ÜŸÔDk21èá^âH¼©W'âQ5ò);äŠEÐe¦âçeÇõü§¾àù$\¸³ÖðIËŸpL]IÞÀÃÞqîJÀi ¹«èøœgC¤VÞ[ÙŠÌTÄÃ'eº0Ýï7‡I$ ®®?œ”Н| 0¹Srcó“ ÎÁôúùFã©wY’hã­&:)«ÈûâåÓ»M)mÒéò0wÌI©ÇFì wÜev,œ2í"Ï—ŽŒ'aM¦ÔW¥n˜ÊtÈN«¶¸Æã%Züyˆß“sëp`P†>X»W½3oÄ s>°è½Ñ( —ë/¢Kø^ÄÀªëЭ^/g^3“§Ž]¾¸jýÇÉ2ÆiØô¨öJ”F|ß’GF‹‚àÅ\ï5ý„“C1J ¿¡²9å­ä0RëÅ{(cNÒ•p¾C³ ‹šçB 6˜åIoõ®ŽlVü{a‘¾(>m; +@ÓË!Ù$…' Bë­aéê/›bÄ5úda}æÔ'ª™<.‘ù´vÆìoêY!®ŽmHØ·êR¶‹ Á+Ïó~×Ò”yßXxÁÉûF— Q·õšgÇ J¦ÖBè'†[y} 85“äïDæ²²=DTé`‚¥*UëYÖ[Þ,¾{|›…g'+9Qæøýöq¼dxûØù~ûï…þ‚;á“Ì¢*´ÝùJÌ}>DÀa–qÖr™$ù¥‘ D+êóéFrX¢6à°ò.£µ»,'¸Æ30Ìë]ßòšA˜TRå†Vët5›s¤šw×@ÿ^ßU †`Šd4I3ñè'Ø=É ¸4ìŒænÉt6®,žQ¡xuËÑc:¿È☴¾Ÿ ó-€ìrº Õ yì£rˆœY™&ýn€ŠÃ‹»;@^IS²tv’—ˆ*’@ªt [ +o2šx³®'¥Ž n“J–&¡VîQ™È;N½™!þ ¡öìýtÓØÜ¢Ùß©‹à73Oa1>H"õå4\Qêvx<ŠXï¾)œwÿSÝÄ…oì–L‹K.r¿Î <ùâ›2”e*Q3AöT¾ œgÂöãÑšžs¡øJœL¸4ƒŠ?zŒTa_£°+[ ðyê‹h°æb²eýùIMO‹e}V/+Â*ý6*i«œgßZ’݆§Üëi¥Þ‘#Ï„<ñê”Sþ ;ƒ}]ÿ³CEKHýÌæ“ôm»»ÄJ.g÷r‡‹¤ÕËDgxo#û>Zöw’çUÙÌü»î#d5ºJð/N9ï~˜óH]ä|Q î_¦®Ò*úJ¨y±Ÿ„Á¨pÞßè§—ä Ý<ï÷Ì N—ÒÒ¦ˆV;vYè#BšôØÖÅÙ‰t§ðSPÝjibåÇ©úp¸!Øa!w‡E?ÍtKh¾=/%´ãoò-ðÙ²å=Ãaúõ³ •ß 5Õ¸Êv¯XûØ¢•û1goøÕg¸q¬.&3ë•ÜÖöÅ{ªXÔ!lû«êðÐ>‚ Î3DJ~\‚’7/tét‡ìÍ4ÙD¬jN3²ÄíƒöÞó­îL<$!$o*\·×Ï÷1íþ$)çŽWåçɪLeÖ!C^7²–(bÖKb•1ž2 CÔãeŠ'™Ø7Œ#¹Š¯'„êkþ½¸n:5­0ï¶N³{uü¬2ï!Ùm¿¼ý¸—;)Áû–N²„ ݼ4L»VA¹GúBjfüj’¸[P•çXhAâ{OááʇžU¦Z¾Šwífs0þl&­bÍfÑË õªïtU §è‰‚m\½ŸéBµZÄ1'EÁ¯ªo4"ßC=zgnÎX;¾kÃ7-8¿¼hn²ëGcKøè¥»õDBªey…S}ˆkü$)„¢6÷–CA›85hoåFà‰gX]ïbX`¶ˆ›FšÉkºQ›Ôsö”UmÉãëù°óŽD† äØbAðµÒzÉÈ;ñ˜P.”€'µÂŒ×wUg¦èa£˜ö3<Æd…­Õ+˜¡foì 3:m‘è[…âàe!%9£·I+½”'?Aü({Øh]x8zxç÷ËÍ6¨ ‡òø™”ÍZw÷ ³žFÏ© °ôóãÆÎ}¬7n^ˆ’ÉÐ^©Ç"ª$¸À2:ZÂñ{ºGñ‚uúbÁ<õ5]xÏá% ³ª{ªêwLÆ¥—N–Ø î¢!ø[¢úZLL|ÊSºrPÃÇ•5>µž<PKË‚F´7µpÇ í+"*ìÜ!w=õà‘eY¤}sýõ¦ûª«;º†¥°0ËÔu4ä€W˜Š»ýw˜añÛÁº $•}š…|…!”ØÉ¼ÂÆÒ¢øúŒ¡þÞðôpíQ« ”±ç° Y6<šqYzÜùUB•]¥ðñ*á2IªÀ~¬þ•ìúÉïcâ§, “RJœ=ØÕDÇš;ÃôuÃhâò±ó:iC"Ÿ·²ÉÑÀtÎY(ø”[lùü€4ÓÝ$Ú>;ªñÍ$[ô4.²s "30ÿIl Ëí?®æiã1êÍ¡¢sɯ¤·}Œåÿ¹QС¬j§\¨ðþcqØ­¢mÁ³†"Gƒñ×ÍJ’÷â¼QeDC©P Éß%:0»¯vŒmïîÍÄÜÁE›¥X•m¶váÇüvèÆÍ>b‰R"Á5 dƒ™g{½¼\œÖ?“±Ñ‡“U…nU‡n•͉DêdÈ´Çû‹î&EHYœæ4ÎŽMÝ L/õÁ$ᇫn Y´Ðë[)G(qitºD4§@hÕÓŒuv6±$ל W}ÝÕrCMýÄÏÔj¹"_Ôh¤tE¥höŠˆíXC–i¾vÿ"$›gÃNו™C¹â1kËFº½¹,ßY±;sŒ8lÕå&CüŒ”¨ú-³k,©SÛ9encÊ`“¥_E¢Ü{Ð5(iªø-RZ¬MôO¶R£Û›A96òs–e‰Z˜òCW¾ý­’ ÎwÈåz}‹ˆL9Ò“—§ ZíV&­)Õ«ì_N7´÷N|Ôù‘F:(Wð£ó_0¶êXÕÓ_1ç4!·í-Š”áç:?teÐ÷{ä4ÅD3î9[º ^®Ž(I,ßèT^œMêß^—çnç‘-%™:Ôa¬1³1 œ¸Ì¡ñêørq^£Hª5ŒªÞï9$ì gÆ®1ï å„Xõ©wÕ? ÊH•O„Hs, ‡¿é‡'ÐûZ,uÕQ‚ûLâúuör°ƒS%&«X»sú=­s„Ó)è 5¡Z‹~g\Ê™˜Ðê×/9>ñ}„Àä éH»rÙwhý;‡E…-Nc§ªÂ§F «ãºX ¦Å j÷|O¡§“3[ýQpOîÛÜ(û-ù¡[„.îd‚®Ç¸ !`!&ØÚpg£Sz¸ÈT[E¥ùXc/\’ u/³?n–é°Œ¯?=.XÞ0ƒÁàº1=ñ]¿ª*sát,ûX¤ e•u¶BÁTzò¨ä'Ûʰ^¤oýôví"/Ö¸™è µ¤‘o'aŽf"Ô°þÍN‡‚`Ãû{•&òOKˆæ‹ø>Ôù ýAä‹IÎ<|â§/@®ÏôÇ™[[.Œ•_ŸYj~„mg&K}é™n°AöÙš¡z•#ß5è;{jŽÝŠh”åj÷nd梎  o¨è2yüL¸QHÙm²…€%äÛ•'Ä©îO‘³Vl`†c²ïã?ɾI »„G^aVVFŽÅÕɨ+!iNºª:Ír¿+1´²«µ€fK¼eº³g€F–mS@(Ã}ÓTž­Š4Kê!ý£,p¯Õ“DkñDšþõ¬Ž?ÚÕþšá°™æ°¾WV‡þ™™±²ÂÁÓdrŠŒ!Xv”ØCÅîÍ)p^Þ@ Ù%#¼{3€ë=-[¤ˆ±“ï)£U.8K}”¨W‚¡×H]OÌñR£6Ó{¨ð,f ƒq¡²—Ê+ýÎÌ ý©9¿ÌÀ„ÕŽ¬þÙ<ÆöIÇanÙRfáNxª‡V'˜ñ.šÉ›X©;Ë~ã11ze%Q…‹8œ9ÎÅèHæÚº¾wDM·î315¡Ø2œ©ûÙøájBïëv«ÌûuÁç¶>ñðÏ>èŠC7®j‡yçð«]*èû–Ÿ?áœGC«´DAè$ÇÃëLc;Ì¡º”店Ê|+uL NXÿìŽ2%Xõ+Ú¼¼¡k’6æz™ªg} UÞÕ=…YÖ„‹TØ@$„ª2|ýŽÊR÷>KèÕ³g:•º|K\ì Ó|éò%^¹®ùüÞµ«Â 6Ý+2ÂZ¨ý&Z±nAñbÿ0’M¯RÜØÁí @P{Q£‰¾…¸X~úÇjÆ*}°Ýî}¿úuAÒ(K vâÝ›–4”åšæº°¼x0ØY‡^!ä0m׈’9ÝFìœãC¶ÞŽà¶K>8E¹ãžÛ‡»1Å¿Ñi‹®BBò'<·1W¾ÚÖ÷Ÿ:¦ÔMÚ¸Ï"b~?ò¤Cofšÿý!pSÿcÆŒŽ¸¥ D´'¾Ó•Ëõ:¢e9Qϵ'Ú·¸¦Ü™b GøókéÕ»s±7)]Z©ç%[hlHÖ±dpñ…Ÿ,œžZä à7¥³Å!ÙDzûØiЫ×o+ó±cE¸RxŠ;=ûø_]*¡”{›5!ã\‹†Kž ›Dëó˘R*éŸfëMIÝ/çí +¾ªt‰ ÙÆ‘²ß¬PeTµ¢ÊFhïÕ#ÝÍ1äæ^3Ê)÷Í·xÛ˜åÙšÕáL¢L§®:¥¦!yªf½;´¹]~ñYàã˜ç«5ì AÊeûGªŽq>ðO¯~+û´ÊK¾‹à W• öx®öE!"OW"MbÂZG⃯àE•ž™]U®»¹Ká»Ä0¯qãàHc¢ðâ­Ì\™è\4ï½ìlPE4ïãêÌK{ =b´³¢ßù ªÀ·ék&_NÝ Ý@«aE¼ê©þLbšL(1{£w(âüxKèºæ)ÿùº 1vSX9¦Úι¬OêÛcNåIg¥—ûãëYõ­EÇ'oWÛŨ¸{`–·E‚Áˆ©úàz¹7Rô<8mrߊEôvO”«S¯š¾â1¿¿q!CeÂܳ#.Jl7ŽE\Ô9ã^!E¿¬ÌÞ¬¿¸Ú¤±ø#ÿÀp¼Ÿò¤©°v¦ù¡ƒyÿ5ÄΡ>ÕII>NÎY j¥ö6#¶è=¿EÖö›§ÎF¾HF’bËëÛXƒ|Ž˜Zaê=#¸£L¦ÃûXb§P¬qb10˜D ê·¡4Ÿ+l,¢ì£•ecoÞCºro  ;Õ!(¤ ”~Òpæ‘ÝÂÎ}RÛúp~oþò„ðâ5(~Úc˜PzÁ ÅÍç‰Êõl/É^=¶@žý³Üáfs8œc¨Þ3¨òÞ^ࣆª0U~ÃNŒŽQǧâîö·µ¥£7ARº¸±­™¹f¡µj‡«èµ65-ÑW”™UCRF4±ƒ*sàW†â5U÷[ÕHs@— þØ%0Ò¸¹åz_Þ­ ²Ãg•b!>‚þù³cLZ°ã^…_އ’élªí™6[Q¾6ÉœQ­)W2Ä=Îj °ØÇûÇ[ÕøŒxw¶ á{™¬šgëãÌõ±^ Ø>\«$Vwë9ùkrŽ"Xœ¬K >[7M‹- î¶×›±Eø4÷…îÒ¶ÔÆ)BÛ=ÒO¨r‹¨âÄ} ¿#xî_U@Á¸ Q¿Ó¡ûÁ Ì·çÝlÀ%­z{zô˜Sš´kR/ÚK–µNÖx)Ôd?*.Ggð‰nn©cnŸ*[aÅûêØò;éfó¶;¬»²ýîùþVÈTe›v  îf¼Ã]ɵjºéŽƒzüõ{Ìw4èKûß{Ëo‹\°¢æX1´6|ÊÚ©Ý×MÜ!?kˆ¤§è‘æ ?Æö:yaÇÛÄçìv~ÏŠiì‡ëܜƦԞ•ZƒJÖáÈ¡ñÅ÷ÉIf'ت |ýÔ5|¶\¥š–Iª¸2¢ýI€ˆgó1B•¹òqòçÓ3-ß²þù†_½Ïì´Ôíh N= ëã–@šRx…¾ËÔ–Ê©:âk®pj°{¹¹õëXzê˾ %Bÿƒúò×b„Ä U,ɉ€7xíI$a0—[ƈßÚuƒ/Þ¶tv_qkÂmtJ’¾9úóÓxM—_Û! öÀýñi™ƬĦ‚K¦¥óLeÔÕ;'¶{“êvKˆô ៷’-/–^êo”ýŽâ±.c k-Þ½•p$sZ  MË8 æL«ÐVþò`UÀ·Q¸ÝCí% Í‚vÿÁœ|«Aãf6ïÊóÞܤ€ÁlëîLUn+; ¢þ+†L3–j`6ÂÞCP#ýÛÈW!DÆ=›¹{LˆúÆy-ÂÔ0ÞQ±;Þ]WÃ"?æÂ¶ÖãOï‡>5§¯¬ëM´ëS-2ppL|[YupPžXcÔ$XËõÔìC±™væmÈ)>­Œ”q49]ú:i8­Ï¡t·=Žez©—dÒE‘żÔb^#ë’J™é l#*7±ý–Æ!]ºœŽV8¯“BÒN\f À׉‰cñ+ÓÔ°#ÖX6ÈRÛW:ùŽ)&àìz5a'Çеڜ}#€­Ÿ µÈ¬…\}k­GMÞp|³ eæ¬À¼k´ΈֽOgÿ½F,Ï$lEïúË…c :1°wŠÃßt&à´SéçBSú’ž…#ïî”rÆyTÈqF’e9x` öœñúкx“íÚ[ôCmìé×ô^[K®&n‡¨Û|ÅĸU & DòÑ^¬ò³‹Q"6Ë(>ÙOžfx=<ηZBi™C,ª¤hŒGË8Ž“·W òæäK«[\ëýÉz4nÝ’N —)Ø áõ¦nòT"Ê7_8úä4E’ÈšGˆ)æ17ñRúñ;•µåV»Kï7§˜á–¿óÙݲ#g{¬‡f@ÍMé´P…ÞšÐa` a(§¿²š°;`}'æ˜N[MÛB¿¥ç.:(KªÁ+æ iwBªÂHä¸FÈ~åio½_Â[§’Wºß¥=îs7¨o÷' t^2”»§„“C†Ö‹‘Q=܆§°ƒ 5p;XtûáO³…eø`<ü3õn¤Æ„*¹Yv…BvñÞ”¡’λ,©~¨Û%œÌëåÖLpN{ý¹ž¿=¨]Ë“skxûÒLKœ¤U&ÊÙNÆt‡ó©ƒâøfúãý‘t‘Ë>A4¼ 3%Õ¹7øZéÞè~V%•ô UzpD…~L‡¶M*Ì•ÿ6|Œ˜`zÕ7¾ˆˆs3¤Pœ·Èlk*z’Hž#ëBRÏ>¦.Ã×ùEsµ#kåK¸ˆ³O‘·«ð2ÊØ;F¨hj0_C.êùè‹i#¬üPnÁC*&?üŒKÃøí[¡Ôfì§®û]>íVWØß¢‰"úÆ÷‰°ê&bê‰~zÕxÇ7>Ûñ™éÒÇã™Ò] ­‚L±§MÍBŠÃëzÿœ¡)’lßæÂýmÓ·¦ÉQ#Èw>ðq´Î\àÐ+½RTdº™û6͸:c×*LsrwÌ÷”t<\ ýß¼y TdŸ¦î'Ð`HßF7-T¼ œØé;²Ñ•·IåvgkØ)Ç×N„2 gŽ:â» ¡½ ý¬Ã:û o ð´ @ŸÄr¾7Å€~‚!Y~–¾Ÿ§{¨lƒ 0šÏìÓ"Úy1ú ¿÷fi¹¹Ç{~ãÅ6Jîº!'³0¾°f×ï¹Ø÷–ƒã=Î{7üuÜòC©øÚb\YfšŽt*…ÿm;JÙ+ºÐ±-Zžª`›¥¸ÅS‰JÈöà–Å «TCn¶½Î ö’¸Äw/ë˜ÌèMz/Œ××âÊ aB…m{.“Aõø8 ÞʶêiÇ. Âй†ø§‰ªTg½à›âoL%µÛ ; u¹ž‚}!N݃¿²V„ïßhE4UÿðüŒ¦£0(NäùØ—ñW¼+Àh69î·ÙêZ“Ùñ\ý¦x¬û¬ K]_‚â.W‰öÍIÓËäG¤~¸Ú¤yñØð¹ÛôíÈOွØ+˜•Ü&DŒÂÙº÷£}i‚þv]çZîQ©,ã¡x6")Á«¾ºÞ|&fÉïÑ-ðo9ÁÆhû T  Š`îI‰ðî±¼²¥¤jQÑ[Óé¶°Ö^×”žŒ•宆91‚ìÁLªŒ˜6x«= ¸¯üF7†Ù<,oFHf`ø÷mv *È«Ôò«`F÷ÒõI\Aà®âæzØ{ÃË‘oÀA£á`­[ïrì PÝvõîV‡ª ~›;ÊJmZ..ËŸ¹Ê†àzü¼§ðV–³k16d^Y'ÖÛŸ†4}+ZÉ“M©˜÷rxVIþmIš…-¦žaY ò;v&8zá5í’¶pQ$â'Ï6hµ( hzÀHìçjnsˆ¶·öТJ+‡–u7ÌýWÀöôîbO åh¢ø–µñêö\è/Škéoñüßæy’;³Ú!`€Sº —ÝÀA«j¬®ë3öª`ÛFØö¼·ÓŸ4Åä­‡|C2½ó]o‹“qBÁ=8}ÕMm‰¿MßÙþ–^">8àœ™fm[ÂkU(<éÚ§Ç‘U5!Ü®V~×L~ƒ)^ŠCe3¾Ù€—õŒ½Þ”­õ`vÝ¿»‡>Φn%'mçiN„œ–Ç®XSé4Ä”¡.ÓÔöì"Ü¥e‡8F8Ó³L¼(—áW#…ºFϺVL¸Ï–}»Úì³uåÑð¾Í GŒk»7çU€n£‰Ÿaã ¢™5)ÓäÛ;êÝ KKH“˜›8‚þ>~[(ŠÕÓÏ£â]¬â©ñµ®’7;9 &ä Œ‘ ¹‰ŸƒM 1·©æ'këÛ3IÀíËdé ÷ž:dÔò?ŽàΠ츴h¤Îù¶ùFÚ  Î³)vÎD9‹K 6.À'Ç0tñ¾£¹ôã\¡üð=yò‡VnŸ‡)ØÓÑuÛ6­hUÎÃqö:þ¤ôóXXKšªdHA¤b9c@€ò3Š \þJ ý‚ž¼ÑÚòFyrB}V À\Ç…NÕiêL55í±7òCp½ïì]7V—î‚ü£+Îàe½«à(YTž'~sâÎxð}% ­ûû`WkÞu*ÆüŠ]õ&áUìƒQÜ{e—ΨƊªÓ ð]ûË’Ò‰®‡»2±b»uµúÚTnaú¢ù¡é ©Iì Í+ÅºË ¶ô0$š«üÂf¨}þqÌŽÖ‹A–"H@)âÐÝÃ;I‘iλs·2É´“ï¬ÍŠC">ã1ZÕ·Ø‘™ðxÓ~“ª»6;ÁíEë¼9ÒÀy•5ìE€ã ¡ãŸ/—žváÇÚoÑ|¥&rÝjõ¹©¬L 6Õërt:\uØÄÇ_lªEBä,„;oq[¢Y‚µ¥‹ÒÑ9(*~JÕ‰*a„tjbÇ på%ûÎrœâÓ¨`°GC/tí×Xòž§ Ú 2ÔxÿKxQ€®‰yS𺼸ÑqpiB÷ßL‚!ïNZæÉ9º¹O‚Úf¿ÖyÒqæp[äS´ý4ØH»ÇϺF=™—.i™S–þÑ4v’ÊCi œø–E!'×ÂrÄG.e©Ee_Ôtl?Æù 5ͦëÁ¢~èPQ]Ò«BuC1]Ê7Þ:ú5 ìß-ô:*P÷ZTšôö ¿ûøöuFèìZ úòAп>¬d5aQr¢5Qî !loÎ5}ã€d``uÿp®ÑrùY"$7úÍÆŠ÷mtÙ¢ÓY|kXøz»ÏÞ3ÓUDv›±;7FãÅ6ÜŸ ˆ¾'Í÷-]K¨öbs0uÌšÚÑ_ôUBh ‹b Å¿Ã_5²w¶ê6M¨Å§ùœ”æ—¬6GÞl ”=¿ƒÄÄŒ3·ÔµÔõ )¨Z¶¶él9O\™ˆ,€#Ï;çþŽ)ŠgP™N9žkìúS5a§l×þQ祣{Ò _Gà;¯õ^·1î—´8ãž»•ŠÉ),šU…¾áJ­ëÃŒbb1´Jᡎ†”T‘(Uÿ½xv˜œû{¨tø]§ªw!ôK¯ûá¢G4²ZµéX·3–”“—B›ólÝWÒÆÒWf¼ì`í쩚J£`…ï«·œ‹ï칡[Itlj”V,¸¡Ó-•{¿¸ëÖotšLAîÓöµ,Ìy¼ñ¾w  ‹¹£GoåÉXegCx_…£î`íqàu"*¦?•…‘¼Î›¨ÄÅ­iä ?™wó k³é-J^Êà Ýfn&ë¡‘ÓB”[­–z#Z/JŒÙÛ½™¦®±=‰“Ÿ¬g–¶…šþÙ’§!aý~¾ŠvÅs”Lp(þ4»(%ôfŸmõðÇ«U¤ƒ4õp¢Žzêw,i6.²’›4¯µqò“Á»¹xCîOˆ~Dþʲ4Ò W+I£Æ™3þ¦ ž)Mó„‘ÆÔ2r³vèÅ”x0ø´i±Ý`á=´0²§` q&ZG®¨{);q v·Á/Ù v `ùvõIÐàxÈßž£w]†:­w¢cÊ<3w‘r¦eÆàóGÄ>¸<|J+£’Ìý" í]ˆònÃTWßÇâp 1'­‚¥Ûû&kÃ}§ý}£vòòÜÙ+H>½ãq¥PÍu¾^eé¯2 ”žDHíÖùîËN)þY@m` ©ªM ù)xýã­€ˆ’0³N)MSˆ½a]3ñˆêÞ@V€©‘­£+X·t‘jæsö)?¶oY äãÊæ‹óðÏæ°€"(S[„˲e)=ÿ3a\9$½l?EzÙåÆËÑE[ð4‰ÓÊZ6ÀHUÁ©V)¸t÷ÄŽ^}·¼u$”LY[¤h£{D NkY¶*9ÕML"ÚÔèPÔÃò–ÎM 6"ð=ñrÝÛž}È#%\À(#¦ðÎMt¨GU+Ûe­ÑJL*ë,Œ/e¯+.*òègt¹B±(;[½Ì]»j~_õ"ó…áéscx2#¡±²Yh§ï};ŸE{$á…M5nü (¦,ßnŘMI÷¢?¯‘šÉ–_àæ.i5+­u‹©Ð/2+°ÂöÌu²é¬7_ÕÑõz^éâªÛÓ”ãWäòÃ]•—åá÷ͭш›h…zïS½Ñ8§wä:°[‡œ@Cª<Æáòð÷6¥´waúððeúqËÎãŸÄsbZ„b £’­¶ÏPO®îIkê~ —<Û÷…a­™º_·ŒD££K›PVÛwéÅgêo[Ëö]¶¿zí8.ftCÕh0ûFÓ˜ÖMd̻ߑOM0 ¸/@´cÖ@v¹viö,ÙÅt}íÙîY8…áY2ºd¯EPˆ]¶}Þ[ž-I]¥ù@£ŸÕ> +X(oAÁ°Þì¬Å(xBAhªÔy}„ÍÞ°CÁœs/Ÿ¿K"Pc?^xÂIg{óÂøE‹Þ¿ñõ¸Úô‹€0ÂyŒ¸B$+»%gÚA L+›µt•è±´ÃXçX]os†½„%I\¼ W†ñ5Ùo‚7™J¹ Û›'ÂyÙ?ËñNš[aƒ§ù +‚ýnvd–¹ä»ùM3_Eä2ÀÊ->­Éžw±€1³ÞMô¿ƒ³æ)^ösË7 #éíf½ÙÉ®^cšÍ0’ÌP-奯Ka@Ë žbKÆxt˜FëÑáñÛù3û{ \2Fy é©0èeçZŸðѼ‰‡Ä·Ÿ\ܦ”Évíc„i}Ú”$&õºeÔÚ± Év0]Wè>jÈÎ{k‡ñ9w`â¯Ã 9üPA±W^Î&† )ÝÅ”VfqS"a8‰Í¸Óó˜M…É›ÆÖë;ÇÓ…§5óñzHbÒÊ.,Ï=öíAåröþ‹78.«ð–W7ªÞ7a0"kòk"©d5Æ’nƒ;¤Ÿó²žo³™v$¥/oËb)Ä·PÑfzúA¶Sù”ºÃ­+Úê“,G‘hco6éÊlÒ{xJËæ³½Ìð©î-¬±B ªêy²ò=¶Ð’Êæ§µÍcÞ0ZTW¥CUIK{Ãqþ×%9³”h ÇQ%nDOIÇÕ>idZ±NػӻÈ*íŠ$< °Õ:' U¢D ÞëþìønîÉ™–¨º)ÛO¥Æ|;1£I„»dê`,JýF‡PoÓ‚VLõkÊÔ¸P‹.µÑ5uŽÀ±ñ¾[”\DÒÏþ®<ê%ìØ7`9©rüBP}²u¼/3£Tk5ã’Ò]ô1ýF@ÖìÝ g‹=³º½wæôÊŸ É"šÂG<´{g•.¼Ï•.ÒU²æâRYÔ877ä)ŸoêH2 ȳ˜‹ì­*žp­ÎÊ` ó!Í}phñ–" F¥Æàuºoð¬~Üt¾—} Ìeô\FI"t­Ø®¨«‘%Ð’Ûf±,³yÒ)eÙßNiD¸ÑóÕ€³Hl”HÜ¡2)9óäë0Íã{‹X\ˆú8ëžR¿R[‰‡»ö€øÆ¢©GßB*ÄÜò:—ö«){P{ˆj!›ôD§¿¦#òK•*Þ…|z{ò\Súø‚¢Ä ×w—Ÿc^·ÕÝVòb/ÛcŽD67OHhuôL†YЯëŒkdZjº\̰æ/; g8 lÓ¾òÙÒsBzìxx²>/Rp#@µ%_w1q`ÅÆá?dÖ£~¦B7´ŸÒ¨µñéº[YJÆœ‚‡ä¸ãO›ëv2CýÍ—Hjx+켊ÎB·&ï2`hÌQoŽ­ïz)¯"å(ókRÆ:@Òù[¤þê/±Œÿ8(§t¡k&¸tRÿžÿRÄüìWA<'¹ØC=á}ˆð~DJZÙ Øó)[«…·+Œ½ÆpN r“Öú|ë†Ä*ÉgÀN3àù­Á@êc2ê‘Õ-ŠG1¬Ý•ê{ÊÌíhtÈ|Id“î !‡p˜æCîäƒeݱz !B$ï¿Ù~­»ÜÙn#4óZ|Zºõ{ÌcöÈBoõçÆ­¢š$Qm%d6y‘™|e óe;ÅÔæcN€-Í'TÀ»L…Cñ Z”ÿ½+ŸyôTaB¥,¦!mÈs7“¤…ežÏ­-ìµ¹hßt¬~Ff²¯—Wׂ%ø(Zǧܭü=_"hV¤ã8™‰øR %)“+WZRÕ‡/ï|ñþv¡ Üs™tF†ä@àÿß•\|hã®æ€‹»Æ’`šÍLŠFxJ&Ý—ÓÃb‘ , ä2Jcz’¾ôͽMËKП"âÙé!еÏë k "Ü‹û½ßK™}éËᔌí†A¿Îë«Ð(Ôn‡¯õL'øâÑÞ:œM_˜Ç{'F=_>g[€ôcÝâ£'0«ï]µ âªÜÜWO™õE®«ò¿†$+‰ ïâè'‡,:‚QQ—©ÖúÆñµ}Iëk}¨…©mË‚Žm´*‘BA zôëë‹$LŒ÷_ÔÊxî”Ë[Ò¼'¸á×Ù—b¤BõYá¬'Ô3Íêp£„õ~ËZþ†¯—ú²WTïù䮤Rªµ‡éw^uÉ@t¼4RÉi$â!|ŽÏUHx_ÔÍV!dðìµ6À¡f˜eù0FÈø®(õu*J½ÆBáÒ=ˆF74~íHUvµR—ý,¤ p†€lÅù7ƒbd[ŽꈾF8Ø+0ú( 3;uèñcØte!‰ÈzsO'†ÿظs¨ïFuòÊ­ùý™ÈÀ4ÓÉäÀ÷¬ØµáOÅôÔ‹¦îÛ›U€‹%—ÖéѪôEëiŠÉ±üÎÄ|ÌßMÌËj€ßCeüïp«R r6ůU–`Ô]©Œ›—¯³õz&0¥¾ÊÚCçÃò\ÔO!цtWàÄFà„Pe~kª\GùÖýzÀßeœŸè»€7‘ñÁcß~V#¨GQ:ê!qeP.éºïF~-æÏˆdFàEU‰ÚŽA¸ZzéÔÛ„ ¶ñÆ}ÏÔ¿Ò–ÓÄ5Œd¼ &"åv!tú‚óÔîÝ·sÌÅaZнl™ÓË ÃÍ—<ªÕ3€!öH¶¿ÞWx­yjØre÷_¯>óSÉüìVæ0€ß‰›½”ݸ½Hmø)¥ öp2Av:ßTjaR¥9ºY(íÈòiû²Fˆ[˜<3iDÄžXÎq)À9¦ë:…W•òÁî["^;Ì›ÿhÙ(° aÉ ’"„ŠZOçÃü ÉLÛ$I}HH<]± ¸—è\š/Æf,×8øø Ÿ®ûó]oyC¤€ì!I*ÖT¯ÿ½G‹PyKkcú¸u*|9µ\$C"Áf·J¶:°ú÷8Òó7)û­tÆáËðS+»^pgÕs2ÀëFz}{UvÙHQF“=ÞŸ;œà¿Ôb¶¼$¼‹èP¹Kå/úG‰#HûóÿÞ…aL¸‰ùߺ °‘Ôûm˜“b¬>âÔEELñ5ü gÜÍî²ÌÑCb3W¦©–‹ž-BHÓa¨t25¢ôý%ß–.*¢ý®çµn˜øÇ"°Œg##ó´å*¾;gÍu$.B¦0¸wT¶õ+õ¾t ´&€ÎåæÚ\S S0JâŤÃûÀï¸Ã–†Ùª+•ZP‰nFö¨=²þM0c—·â0†÷ÚôÃRÖ•ý¬uµXð­4S_å`ßþßñàr;2š]ô5>*º§+5d•ê‹ÞÆÚ/¡U»‡ù É(ʃ•PG ¯j:­äöÊw|Û[õ‡>z{y"²åQ —Ž\¦ÞFظ¾ ×1UC‡^úÇ7/k ƬéÏoÅâí÷Þ‘1Ñ©ÕÅ)ç‹·‰7Ñ©g';Mßà2çdN ´~qw‚÷¹¨~¬y0ÍJ<®´‹ÁF‡w7Ôd®Ý”…mæt…ßx, Kíõƒ“Ú§ $¸pE6Ò¼¡ñõ³ UScÄpEè=ÊŸl…‚ºëƒdG'SŠ¥•µÊ¬ÓDÏ+ød/ð!ï–O‘ÀzXÕò:*?Ë%$ä¿ØÖºª£[S·Gi¶CÔËÇ£ˆ!ÚÆäÒ–3=a¿nKÖë(§ÑÊã”XËî-}…­_á`|®Éwñ©;—´í`» ‡Mž·ÐøR>O)™Ê-5Ò˜QY¤‰r·‚uOöÐÖ{MܺÇUÙ›òïý[še¶¿ÔF ñî†sÖÏÞ>§Ïwÿ̰€Êñ@øxµ`?cPùê2NT¬¤[õ-ÅÓ]«0 ¸DÎw$goUfÝ]ÆS±ëæê•"<†›ßm™Õí¾$™¿@5JxqšLÅfraº »ƒ£x™ž ¿56# E0ÝFÚˆ/xR>Õ/ê4ÈŸ2´_„]/-ŽÃº©`°Žö”PÓT[iJŠ b‘ö§P(0¨¿{¹Wk®' á5Ø='¢=[n?ºi¸_©Ïø*~Ú%…ýÿ:^Ъö9>V,% KÚú‹çÏY/´Ê¤x¼“œ‡¸G¼“7L­ÂYNàN(Õöh§QZY÷Ö2 £º¤ŸÊ@(Š+&êü•{ q§ æ QÙ° Ûÿ´fNqTè+MLí©ê¶‚aÑ\+4Jå*¹8BŽ»3‰P]a5 +pU¢cS+}ÿ{ÖÿØwãSQËéLbõK¯÷€ŸŸwÄ u´\Ú A3h܈:4±¡ÍÍÛ“#VÛ‚ŒÄBGW`ÏCš 2HdÔR±>ÈUz²è÷fÈ-€UG¹×줇µÔý!;ÚgÛBl9[fqqO'1§Aë¶SFŠlóª°Ü<0`¦%pŒ’‚ Î’àÞiDÈo|<®1¦W]×à®WmFP÷™*x²Ÿ¼œ•uʧ`aÅ,Œ!©ãJR, ¬ÑÑ=æ-„ª1„}ôS¿œšÎ8™l£Y_»æ$®ÕG¯k–ØGMÅȱCïL(—-ƒnÁæÆŽeøB-¥Øm/d…€Ÿ"Sldè •(\‰/´'$½ÈEžƒ« WïGiTᑨ\ÀÝl–:ãù<Ëy©ðT?×B-ÆEuº[ê0dótóH¬;4‹ˆ“X¨N”õ/d·ÿµ¬Ì:sš\^ ¾~î‘¥`{¹eâ×M¼;Ä“Ûb »´ÈÝŽrlIà `UÜ%ež¯Â°ØêÏÀ*žñÐ(3è1:Àk—E­£öußbéÆbld}å~„ü)ókúgÕÕ‡ñ'²Pô‘7J„ª‡e¤/ÆJ“2ÙâÔÍz=ËÞrµ;ñ´—=ÑD³¦[cK7³H„ö¥”ɦѡ¯w"‡=Ý‹¨‡³“6îÇa²½n.W ªÖ*²^äf§-Ý¢PfUAºëX@$ý·Ÿ×»fXGÍ农¦Ô’ç'ô½bjö‘UÍcH|`—ØáóÓý\NS©…@ð×_jØðicÒæN:y¾_à ´±l]üÐÓÃ]ÁǦeÆœà 6ܨ5K‚]£Ñ£ʸ)[ðg(u¯`ºÔ}±WbÙ¦(e . ›Ìªb@‹ä‰!Yekcð;Ecâä™Î•T¸˜NÉ)’®dû¼°ë÷ùL…·K™¤ÂÍ!Maòe§ƒ)¢€ rÓ?ÏÞ‚{¸–ee«~O5 VéÝãÜZl­‘ í6iè“Mýô¢² ]0¥ínkæT1Ó.n‡e‘BW‰^ç¥I´xºgð©‚jÞ úøÂ&0m¼QÅV…›·¢¤ÍJ!ÝÒ»«ÞC²°Gç2sb™C80É30$DUvTϲʻÞE7ìYæ=SéAˆ†™h(‰„ÕʺžÖI4|8Li§p?²nLýÄ”Ö* rWÏÉhª3€U”ƒ‚_ÕVŽ*&H°6œˆ³l ÃN2MWwMed(gÆèÎy!.x¯jXÝ#-aÁÁ1£ùÛ0¼:ù>54<·¾;‰û¼UÆzeò·ÿŸ>TôÌH–(TÈýÚ‰ÏÀ‘å®÷^ü ”˜û\À…à·öâ¬UhLÜWѱÿþcd ‹ ˆ—Îù=ˆ‹¹:†&ö%×—çR¸=GíU„7\wäfÀ&â„"Z‚Íû³§uUBÒ(‰ÝôÌ›R²ýAn ]Ã\j¤ó#HÖÃÄ‘²±iÌàw†o'oš¼Ç{sF|fxèÄŸIh õ¡B¾„ïš{U-Rjm™罜•†ûåþ¶~nMiÏðà"ÕÊÝIêÌ®ÄÆýbF‘›¥“¤Ì1¹ÜÈØ¬U?ËÒJ4ýTýÏØðvìdÀn$g$_xŠ.bF¬'8mÏ. ¨þ¿ Õft·T¿Ò®û7ÙÌʯ œ7êÕ)@‘¹¯iDŒ6À|7Üšž~¸Î•óö‚EovÏåu~OÖbƒD`[•¼?Ñeõ›ÎºWq¤‘VùÀ¸ˆ÷D¬%M~Tr\ꮚGžº•iqQgñ-q5rÞƒGúÒÖûaü¼«kŒ_ [ÆðÛ† S endstream endobj 238 0 obj << /Length1 1603 /Length2 8938 /Length3 0 /Length 9992 /Filter /FlateDecode >> stream xÚ´Tê6L#HwÊ ÝC‡tHHI*=ÀCÌ ÃÐ Ý Ò]‚ Ý% ‚ ÒRÒ(Ò)ñá9çžsîýÿµ¾oÍZ3óìxÞ½÷ûì—…Q[—GÎf ~ ƒ"yøy ~(È  ರèAŽà¿Ì¸,`„ •øW€ BÞÛAÈû8  æêàð‹Hð‹J Pü?0„@ä±hðÔ`P° .‹ ØÚ!ïùÏ_»€_\\”ût€œ±A ¤ØéþD+#@f#=ÿ‹‚]Ò‰„Kðñ¹»»ó‚œ\xa[in€;iл€n`kÀ 'ðŸñâ²ôì .Úua6Hw ¸78B¬ÀP—û W¨5¸? «ªЂƒ¡«ÿÀ øk6~^þ¿éþÊþMþ‘ ²²‚9ÁAPOÔ`q´žªó"=ÜÔúw ÈÑvŸrAA–÷T<•{Ý7øW{.VéÂëqüÝ"ßošû)+A­`NN`(Ò÷w}ŠØê~ìž|Þ¬æõþ Ø@ Ö6¿›°v…óéC!ή`UÅ¿BîM¸ÿØlÁH€0€`+;¾ßôzžpðNþßæû|½á08Àæ¾ °/Ä|ÿƒëírW°¯÷¿ÿpùùÖ+$Àl âþÃ~oÛü‰ï/ñïµÇþþüýÏô^^Ö0¨£ç?áÜ/Ÿº¼Šª¼ןÿí“—‡y¼y…<Âüq11€¨0àûß,Ú È_UÿIU…ÚÀâ{?¥ÿìö×ý³ÿµ€ÿæÒ„Ý‹ `ÿGã&@a Õýÿÿ³ÒÿHùÿøo–ÿ›Æÿ· §®ŽŽ¸ÙÿðÿÜ 'ˆ£ç_÷šuEÞë_v¿Ðÿ 5ÿ¹³`kˆ«ÓÿzU‘ û=ƒÚ:þ=FˆËSˆØZ‚´²ûS,Úõ/™# Ö†¹@~¿*~ ð|÷›eåpÿr¸Ü+òø~qþûH%¨Ìú÷† ‹@Èx/$aa€7ÿý*Zƒ=þÐ0€ CÞ§îÛóØÀ¸¿oTD À§øÛôðüÄE| Ð}¤å?HÀgõ7â¿W&øo(,೸ÿåðAþïϱÿ¼'súò|ÐAü_PÀ‡ø¼gvù¼gFþSÈ=Òö7ºïÁ ŒøÓð_s´rE î_’?”~?äÿà?ž-0Øl…;7³zl_Ü~Q-GëγùIj’eÓ0ƒÇ{ÑázE€ÌQ•¸Œ8“Kê!Z\Wb?•g¸ñþÞRÖšô¼í—ϵy‚Îøfî—ÏcEßåêúéqèxôd·|nœ} Ð[P;ÕXòœ]Å´ H/Üû”=êúËFBg6ŸoU‰<{x]6Á£mP2Å’o™=Mõ ÉCÿ€“äÀƒpêôl’$wìŽA- ×÷GŒ`±·ÑŠ@ìå´×Ò;=—.jfj#*zôS’‘qVoùí5ÊYïÒâeÄHê4EÇèªÓk~Çmv¯MM ÄΑ+˘;5:™jTôr«J¢S c"–PöÁ¢Ú²‡ê‘h‹¥ ·V"äNËQ´NXç¡øf÷Un×66;yí Î0;òä:h¯p=jn+Axá¦íàu åW“A«¥á%²†fq %ú–ÿ5Û¬Z÷€%=Æ¡EªS‡j^án;뜎d'V™°Î­Qk'j3Ôd–††@©íêÖä\Ň\´QuÙô®gâ-´˜41LÉYy-‚ ÚÍMk7¿?äȬÚnëwǽïß]'+Ó/»“«ªÈË".ÂQÁŽ‹½lB [u¥Pþ¼*¡ø•$lU-<ö–=´àذ¢çxôýñ¾i!P’·ÌVWžOÓñ5©QŽV¼úþd~¬0­™x}/Ù­DɳVNLŸŸOqƒï¼{#óaþe3JÜËÔ9¿œÛÑ(¥;ìf©ßSjŸ÷ß²½èÝÙóÛ ‰h‡Pã =¡ö4Ò>E6c¬ QHßÕ|Y„{Ä kPê7(ñ¦ëkèØh×7ëíç'é„5-à¾7’›rJb+<ð =0åÃ> îe­¸r ô«±½ã)IAÝq*üëÎr4µ^”JõGΜQ§,´!ë’îlüy.ÇfšŠn…Ñ9DY¼Ê}õºÐv£ýŸE‰^“™¿x³u£’4N8B$‡š¢ºÝhOÚù3Iò«2i™oº,µõ}xznëZÝ»¾Ga¹b¿À…Ä ½¸KJÌ?ø…Ÿë¤]ÎáÁvµÇ* âm·™±#Œ <»&ÂŽ`ÜØÒk”™´ib¿;&8|T#cQ:Aé1‘ùüÓŠy3ü ¯;p'Ut±Gæy+E¦ZŸQßGêmM„Óó>6Rq‘Õ/ª¢X ±M6Å,´ñÇ /€…‡ÃÍ—\»cÖK¦ò;)dø2ƒ‰¶% ÏÆ}¹7µãfMeXq§â¼;d® è÷j˜UxÝ…[‹cû/}u¾ÙnŠ¿ªú¼ƒÜqÔ¿"÷b,3e CÈü’á´aX¾ð‰Ÿ>g/P:Qîè”ÅlÃ#†:d¾òÚïÍGöjI÷~]Wˉ®“ËåÈù”Vf܇ƒÕöŽ,ƒ^?¢WêÓs?†Jø”þú Y'Wÿ¼ùˆ”uØÞZJȖ³’ù¶VŒ4y©z'çÁ9RȼʸhË ƒN¥â¯‹BWþD§ÛeOÅÿ‡ £ã›¹w㶤ZÛ ¼d!z}¢ITWîcI~2-èÅ –óR ,ÉDÍÖ2sÞžª=yg…«Ùõšó.F™®ëMÑÊœOfâTï£pý¢;«ÑÊå‚m‚¡RÇ)¿Õ$‘ » Lc¹å†Ï¹ñŒVÜôO2ÖÛµ}X8 › œZg˳éIH¤XÛA¸ßÞQœ¨Åöº¤›ÓŽÔ&¦czÆúÍÑøxëĈôÕç §Ê§Æ‰Ú«žÓ`P†ùHH¥¹©‘E\—°àݥɊ =”½C!ßbO¤kç•Bý e°È™°cƒ¿›XçòHv}áZ+5B¬<#H¬H/‘hÖ×?™ÏÉÚ"tÿ‚Xóˆ¹^£?Ê‹3³#Ìt=Ô5‰ÝdPp43Ãñoäq—m_ß}Å‘­i»}ƒ×ä鮉H²"_Ö&gßÈ‘tkîz’\&:¨Â—TØ$”ª3¯BÕ&ü¾bÒkfS¿|–û)Ï(çbPt0:é»HÃ&<‚€*HSï³1#k&i<Ýf?³ŸÏô¹ š´^ǘCõꃄkHõKY hd“ë'C Âçbô'îÊ‚¶ôþ·OÚZc5/:ÃpFiZnð’ôWO]»DÖÒf¢Xhú_ê²éœDÒØO äÂføé5Ê ¾ê·q\(IZ· |#ç²Aß&s'c7ÉQȇ„šcëËÕp ‚åñ¢F>0—¿MW«ãÈ%øÙ)TŸ¿¦>–üú+õ—›äžö”ò܆,2ÆùEh´ôêP\•²‚¥šýÑ‹·äá-Q_þzqTÇr¹ªgó•þ¨ "ÅÄRRL“º‰¸2®VjNÌEÈÙR¨¿\´pàÔÃkd¯|kšÓK("¬ó…Ǹ›]©â‡œ£ ‹&˜S®`w±pÓè¶ìƒ’K½æx´S½Õç²C^Þ…Ki¼°žðÉ£,éça¬-´)ƒ•›ßGZ¼ iá¡ ¥Õ6ΆÁ^uÛS^Ioª·«O2ä€Ð+ËÄJ·>Ò—šŸ¸ÔRÖ«HûEXó˜dþŠ—|èI²Ë'<«F‡ÒØWóêm$?D9 £Úf-'ÛœÊõªéÏV†…‹wL=6£¬¸ô×!*"õó1b4ë'|ï®𵩙ø9ÔqºËŠ¢å³¬Ô¼ûÁF“~†þl¡Gp³ƒøðh§& \ËnLMn0=£®]Ú¬„DÜ-w2Þ““›MÕ Ù;Œ¦ãf˜ß¡e¨6¡¨ˆ_Üø\À¯._]>F¤¶Q‹ÚpÐu|Û{ØL§¤’ÈP>½Q#!Nx&j¤®øT˜|b³¥Ê_J'3eìe“àcVÍQÎÏÇÆBn‰Ä K× âʯ}‹8\dyä|±ø(^ïWÕ&Þ¹éÕ«úžãÍ@#‚¬¬ÙùB.‘"„¥ïbjùÄ6õQ ºÄ·ès>òwó•#pRЗ”„ëŸù=._}ذHÀ2èJ>dURBË i´"¢"˜¹ ÃSXHL­å±œcƨªÐp[ÆÞ¥ß¥ð© aué‹þ„W)ò‚±Ï– j=fœäN¼e¶ž‹M…MÁÎKÌC~¼† ¬K.µ•á …×Ð âw¢= óЈWí4Ãí8©0f¶VÔÛ5š!ºÄ›èµïkZ L‚øhñ~Sw·ÔEkué—ÇöŠ_ÉøPÏØ!`{€V4sM&RJ´²0j‰m…Hch9ZH0¤á'ð“{¼ }Q0rÈ߀Ú&MxFß­¥ÀC¡)÷vUJœÒVXjÏÐÌct„Ó# ¾ïn>GÉïQu÷8é@$qÞô AÀÁïýŒlÖ·1Û"u³X ɽ hgP*±ÌïðËVúJøRÓ ­pð7ù“¾çz&ˆÕÑòáµÎ`´®W•œÌ•´ôfqš=õ¥a`’ÁӦ݊möçÁºÞ•BãÔûÊþàuV⃧nt†ˆg_x‰°MØ^œ ÄžFæ’ÆÐG„Ïøl‘ˆ³bguô|µAˆ®6ú?om⨠G<'ÙÜã3ŽDë £2N ô×Òq—P^Ko*÷=,öB¹ª²×þXÅmoø-à5…Î|¥«h½3þ¶ {'GÜÐÈ Á\ÆÅjqDbðwšÎ‘…kŸc­03MF饾~úµÖð“W¾ ¥„ÍÄÖÒÁ‘h Œ¤\â3ض¾ÇÆDuÔ¿†¹ßDær×=~Îâ%ÕÇ\ª‚ê*ÙD®&¢£œz6\¿8ææôu£Ž’åô²·-·n‚Ìô”¶‚oðõ¢¹Àâà”ÃÍ))ë÷´‡;OÀ5Ê¢³‰˜Åª)ÑÀç6Ý|­ g8‘¿¨—÷3sÀŒºk>±IO??‰™‰‡’û Jœ*ÛLJs¼rHΙÓ`“‹*YБV k]Ö0ó½2 µV—wmfwOûÐÏ ˜VVã$ÜŸz¯ô!ÛVð€uC4£ýŸÉjʦE'K;·©êÛXº øZ]Ô™A䋎c†²ÐzDŽ ‹Fí‰}lÚ ö¯ ûP ìðjZâ¶#[Ñþ¸ü‰ýaµÆUÎ' ]“Æ—5¼îš+”7 5 ›ž¤å¯¾ºª0í°‹ŒiŠÖÜ—ùT)=´}²Ô°¡ñþ’øë© =NRL®» î«XÜþú~âyº²) ò/Í’”Q:‹åÕ!Ê•'@]ÆÜ HÅ´Ó÷Ñ:*åjѧg®GŒKÍ…EÄWÒBãoê¿ [Œ$r¯¬òM˜!žËЈ9 ”~ž¥9«lÁz·|ž•`› —ò4'üœR•fÿXïjØ1Yìå“©7R¿n ª±^eù\,ÒCŽ=bõ­rÞL25KGxÔǽ’sSƒðK\øåq  AÁ?_— ÏÑìŒ=ö_qþˆ½`׆Ë\ZxÖ¹+fÄÖ å·j—ÁBe|Ïp“"J…#5”<ŽÖå.'ZŒõ¼‘Nì  ¹ÎîÏ#G¢p…wy…ê%$Åjò-ÀÓ3âÓLW—…Nw"O‚b+pÜ´×8H•«®×7µ©XkmLYâ´~q-›ëTŽ6írØkù$ÒC3¹!« ¾²áæcMµëw˜o ÉX¿•r`2]~šõ¯ÎˆžùÅ•OÉ</°1O+Ÿí冱oAgª°3hjŵí0Ý\É4|ÙP¹©A li=ÏŸ5ýp‹`X8Ž=vj5À}Ë]¬gÜ~ŒU87 ÞgëGÄοŸkú$ŕǻƒ4o˜àfóÓ£Í1ü¹$Á9I¼*dŸeÎ{H§ïMÏÝX:(A{ È¥qžÏK/ÀYhø8¯GX§aæ]ý$¸Cƒ>ÙÛʼºËwì3¡¡sÕÄcM»R…÷ö‰È–Æ•On¯í«#ÿó—×2ãÇ#vXûÜÖT€-Mº£á÷¤¦æî™`.ÿh?ø‰õ|Ý G²8Å® d9Ê[Y h +ð7#8Á³³Ë…b-rÛ©JP]’dò|¬<ÏT¥ÉU€Ìôôž Zû±k=q~ª}í¤DUã܉©žO߸+0ÝkÅP#R÷›Tu|ú1”u‰&hÂ!ó2ó¶/æx*†{;¦oú‚A®pæiö‡z>K“ÓõíZ7Õ¥ó­!´¦‡èùÏI¾’g£*ÖLíÿr¸pI)°“n̰IÈżծfeÏ¢]ÚüaHš·AÙÐ1Y=`\-=;l£áàòÍÆRÂ[ÖîH;×SÖŽGr¨¡ÌDÑ1S,W±âV&Úx•ÙÅë_+»¼9m]ý9ÔÕM–÷\Å#rí%aûŽ^íèDùªKÝZ´=hR#â¾/ètW¯ä¸4ƒ¬¿?^sCy*‚£tšh¼ÏK˜ÿiÒHS3P‘–~½çƒyt¡ÉÁ³oÒÂQ¼ÂìÏV¯È'¥¹°Cƒ¸„Ú<§eKÉ¿bfÇ~–Ÿþiü’¡¹ýõ)Î;z‹kâèäˆ× ‡£ ŒÅ%<>oOu 4"8ÖÌÄö1çåî•`šÜÖŠ˜=v^ Þ³#|dW®Õá¿ðœí³ú8(ÿ¦€ê5¾ÖÉ^ñg‚^:m}ÕªF» ¥rïq×råÔ¼ p@ñ°ŠÌN¿3(œê§Òã,V-0T4F,xXðéèhÖo:ó¤ ˆ7@7‹ë¥,+aGd‚I߸iW¶¥ár>cæ×bø9¨÷'0Ñ&®Ý1n Ú6‰«¤ƒWÇÞV@HVÓoNýxN„!U¸’°M¶6’mØ@‹N!æý(ÁIAÿKÓ“¦çÈ[ÚõlãÊH£å2bûŒzŸ—èÏ…>l)H’Ǿü¤„ml^)†¸ψ¡Ž©”_e/` kœ¨¤n·ä}DÙK·ßo«ð é…‹„ÌH1Ü9ËL´‡6I))€?£K¯‰ä< ðµ8t%˜‚¤¥íŸ5Õ„Üâ¦æ¤–ݸ´‡4~Fi>‰Lü€ýþÚ >J8 ­ã×Ç¢¾'œÐQKæ#ÝJ·=»ë<þbž£ãkVo>’:€¸,tE3 سùð÷Á„(blá-WFê@Q±turüAŽ·ÍJW-£Ã#ãþÏ^+öo°2éÞ¡¾ ß½FÇãòÝ\qhC±´ôHþú£Ž×¸‚$üÑ:ÉNh0ÊdÊ/,`åkU±ê;ŽwtZÅ2•møy¿gdÿ‡€ÖÄrªã5㋃¤zòìw¿3¹6:ܧ·‡Ð6ÜdcãÇ#J†Ä]d>M0e¦64V-ƒ +·çõ¼¾;ûb* ŽŒy|®·ZηF¿ŠÈ°ÄˆX üGa*c6[Ÿø“íz©/ŸY2ä­IIÜ Î>^g<û´Ø@.[HU|æØQ7£.£ºç:gˆ‘²rh75Ρ}õ«â’¬‡<Ù~ rÄùJSuØC íôšZ¯»›gú“à‚†j 㬅qò`×ì,ã0¨1{“¨ aÏC¯Góx`©';z·b*ë¡Åg ÇHwñ4žÐ(mB…(¬Ø`-?ïÎb™½‚L [o$C'Æ'¬;úúW¤ðÆ?¬Õì ÐeØØ@º°ŽßØ&”ú2?ó·žpÇTJUt­È…Ò†6¬¨Eœ¾C³LŽsÒµÿèÔùžEãÕƒ½â#]ªÐdþвyëç ¸¶±Ö¯ó+p@Q€þή·è1´ò‡~Þ\ª •f“¿=T_üåÛ¥¨Ë5gŸªé“ÔÃ\qº8»$Ôa#_ã/ð¤s ×iž-ÎP&îØuÝÇd?ðšxj`pŸ6 [<¬R®_#«c|Ìðú*±LéIÀR^qÞ\Ì6-ÑP'¯Ð>:³JcŒ¡7õ˜ÿ×¼ Öo´b§,Wùq/}”²5¤UÆL‚–{·úTX»è¹B¤V˜9ª'£5p7´ìÇ%9¬9PÓp¡afpO‡Ø©0å}M«&BJ×¶£¹¦]j¾JâŘð޾+òe“U,_g­‡2صé°ù VC >Qc–+ÆI‰¸éýè¼\ëFxLád* ÕîÇŸÆ™Zø4€‰ŒÇÝx} GÞ›r½Ü ‹«±”Æþ‰7ÒKq·ôÙÙ*(@oj½Ÿä¶\0áçÞ®$Á‘}©€£FÖEìËÇkA‹~ÕUÚÌ$^ïÿä44ô%îxΙSñ7ÿEXzÕc‰™ù}é„ñKN!4¥¦ºü»FoMÆ/ê‹kÚŸs u®ñ—I2Ýd¾gUÄzwYõ¹ä‹òïr)Ÿ;¶*[ÉÀDRɦ}ÒŽI›ÇÞsÏïtÂ4ÙêÅõOÑW\u‡¢«KËË_èrˆOÀS<Ž.Ç^W•T³‹›&}ãá[O#}#cô,˜˜S¤cQ!IÌô^Ž»ãUÄr—á ap>«÷aеáK^×3úŶ½;ë7¸“¤Õý¤••f2hh2P—> C3ì i³„rgU\eR‡D•ÍnrýgíÓn3*Ûа} ôxtîÓŸ?›Z™K9Ô•8ÓEOO¾óòÉüÄúlakáfêaÞ¿L —ÎÀóf_DST ï!ÕYÿ`@oÅ"A.ݳ׺èÂQÌó²Í- z\~Ç;OÄ´Ê‚“'6£Ú…š:/ŽEší0N®Y>Y™s%gWþË×Θ¨ÝìÅ4êùS†ã0(µ…¤¢Ù7ñþ n&s©…¹9Þj½d”’sòó&ý—¿Ö5"*¶åJ|o¿lU|ò "ñÅò½l€I¶ôr»Â”T¶JÔ°êòFÒŸÜøVGƒÖ0³ëÔeðšaÜTôK‹>ß¼9,IÍ)LÒ×(Z\žHò­w³#BË59ÁQžžMJ”KYÿ E ãÆê¼ÒôD*4{ÈŠ°@Gñúê ‘(®8·lþM„àóMŽ‘U›Ê¬Öçh¿¡&†,b›téS‡LË÷‘dž~œ*½À¯Â0ÃìwûýÓ(å8ÔLø­W@)ÞŠØõôˆ.R¡eã¥ä¶÷‚²—W»Á**κshCÌO×”|d8±.ˆº^"_¾8ü¢áã°f´òUfêèG[mk\,ôŽ>ѸSÜÀV†¬ùY¾ª!wÚ:²¾Ö{²mGQõÆ«ùáçÞÀ§©éÖ-V%Ëé’•ývØ66Q |èUÃx›êê±DO»nG0V͸ßdJ· Ø"j¾Fà¶0>fpªîIî—?Ð[•!C»sdÚrHÙ9æe÷Ÿ{üÈ$‰ñ;\· Ù¸ ¯œAE j*:²cZ=ÚEf¦c*N|è;(òûóÌÊzM…Ëe¸A˜Þï'ßy¹¥Vu¼e‚ENÍ>/d§p&c›ãoLµ†4‹VTK¦™×$aJîÓ'r4±•b?ßçî&ó¢!>T§Å×uD‰…‰6ã`nÆž‰˜{tåŸØž½´‹+˜Ÿ È×[ŽÂ=aßÌÙ6äw5®|b{[Æ’†ÿ|ûX„“nh ºœ÷,îÓEW4ɃT¿†)”J/6q¦yݾô³·Y,þµ» cçÓJ²×T ëe¥7¢ßøÌëðúèW+·²TfËò `ãQfÌlõ/lñä zäj¸Ýo~–Þ¶í4DÝ*Ìpž"¨@¨2û„°-òŽT~»EŒÞƒ5}ÀBµef5é)f^úlü™*•ã4ßÚÊyõºÒ,jD…aÐÁŧxºl´PÞÞà²ÛŠ‹M¦^T¼òvó™­Áˆ}w*ÞÏp~mW»š¦ƒ­Ë¼àrǯ‹a¹Ì…ð¢/<š­-=éWüUúÔ0fÍŒ}áñ‰&p”Éã§–Zìíì¯2a5ï7–æŽH·)G $9Ä6]xzK?­S虽ÚâÝ5ñîãL4£‰Ò»Âï\5KN;¢2ƒ¨P|¤=Å´.4d:å…Þÿ"öEµ-µÝ ÆÑµãއùç~¬ýeʯLÒåã¹#B²l¶¸š´K+Ö¼CÿaÛÎÛF³V>ÏÎŽÐA¶Œ¯•HàY × €À†Í)ß[ê7&…µP&¹ÒÊò™ýéØK¸„ |‰§Å/g«ÄŒÜ}–!ã jûDÕ/Iq‘7èM£õ¯´W4ZYžPÈc?ÂkË]¨ù¬ßFÀöÆÀU—«(Gl$w¹än´ß|%šP6áJ$U$&×Z°ñ³î#Ì’KSiáâ[ÎÜôìì¦ :Ò Ð*ÿpJý#Œ¤ZÒäØZÙ€‰e¿ „d5"p9kë‡mÏë+öÆÈøŽŸÝÊ“*m™-Ê‘ñña Šªîi˜Ã(À~F5«Ÿy{øÄ2¤”ƒa ¾K3Òm’?ø~޳…^Ï(ù,“ÿZ+]Ž<¶ I’ À{8 ÉÅ.´=«šÑ—,Åô¼gÕ»ý¤êý0Z²P¨Ê”ð0§ƒAv4“{¤¦ü×%ÊäÒO S±gæ£é`gÓø›H …ÏöKŸV,¨ª´9žøôìÐ äÓÇOrŒ’ÎÙT~¾ùULùdAÎ3ç˜õù0:ÒöP$ÓþMW;r endstream endobj 240 0 obj << /Length1 1605 /Length2 8734 /Length3 0 /Length 9780 /Filter /FlateDecode >> stream xÚ¶PÚ-Š»C4¸;ÁÝÝ]dÜ]‚[pNpwî\" îá‘äÜsνÿW½WSÅÌê^Ý»»÷ê]ÐRªi²ˆ[A,€20”…ƒ•] ©¬ÁÁ`gçbegçD£¥ÕA€™Ñhu€.® Xð_I 9ôÉ&e}â)CÀ7€ƒWƒOÀÉÎ.ð"ÄE eî²(³ ` +­$ÄÉËdc }:æ??ô– >æßáqG  ÈÒ P6‡ÚŸN´4whB,A@¨×¥ e …: ²±yxx°š;º²B\lD˜ ¨-@è tqZ~5 P1wþ錠e rýcׄXC=Ì]€€'ƒÈv}Šp[]O‡4啪N@ð²Ò3à¯Ù8X9þN÷Wô¯D ðï`sKKˆ£“9Ø ¶Xƒ€U%V¨'”`¶úE4wp…<Å›»›ƒÌ-ž¿+7Ȉ«ÌŸü«=WKÔ•Õäð«E¶_iž¦, ¶’„8:ÁPW´_õI\€–Oc÷bûs³ö`ˆØç/` [YÿjÂÊ͉M rvÊKýEy2¡ýc³B<ììì|< 3èiiËö+½–—ð·“ã—ù©?'ˆÀú©  Èøô…æãjî@]Ü€~>ÿvü7BãàX,¡   ŒöOö'3Ðú~º|'ÀýI{ö_Ÿ¿?ÉË vðú‡þû~Ù$e¥Ut˜þtü·OBâ ðaáâ°pò°¸y|Ü¿ÿ΢fú« öBåÁÖ€ÀŸbŸ¦ôŸ‚Ýÿºú¿vƒðß¹T O¢èÿѸ;»åÓŽÿg¥ÿùÿø¯,ÿ7ÿoA2n¿Ýô¿ýÿ·¹#ÈÁë/“fÝ OúW†û>8ûêÙ÷Àv)Ðæ:»ñc©åã_{ôËzÖ ”} _ØSÿüWý¾l†åµv¬QPñmžEÖ<1”… …ï‡'öÜÅå,^Îä#…B<šßÁk®"ƒMÎ77óÞkZœ®Ý$4$ÄdðxcÓt>_Sˆ}JÞÇà4³Žræ?(dD¡-)PÒ›ìöùØM(ö K\nFÓyÃ;F?_ú!¡üð–i—¬G‰ù¬¦/ëÙ#Üê¨N IúˆËj ‡cpÙå{=ïv¨0]œA²Äcï\o‰~óÌ%•^PÇ »ì­³›§æRaOç›|é(—>þ }\}¬ý µYÑdÙ•ü\ÄOjé|Øk™=ŸSEÌbLQNÛÛHð^ a9¿ºŽ]ÑRÞ¾›Ô)*Q–ƒÛ¢Þ]œö2íH²<‰¥ÔªÖÛJ½ò³±wÈ’Ã#:À$Œ¿ð©|`÷‰¼¹×;¼!Hé¥ÛÑß¿àúzÉè¹m;Ó¾ÁÑ@&ï‘â„9’ð*[Šá‡>—ÑW÷Œ¡éªyrÖû°{ÈÔZ¤v­±²L_#óýÆþP«nglÈ ³VÝ<…ÅŠÙ:눖5Ò Þ[\z«[Ry ±W e ÷?™CI»5c¯ë™rlÌ'V4ލ_ýp” Ìb ݪÃ~^Ñk*ƒŒ?àùADfÄ*msp:Sô%s$JÍõ‹¼£M͇öwƒG+žÒšqéIçÝ~ù46oŬ[TÀKX™Ûæï‰-Ìú½ï8!ÕA0´í&=4òÛ~5ùÚUlùpíןm¾w¨ÐA\'cšýƒN£…½K)*á׿ÎâÑŠã}¢e‡¯F¢o°…Ý—YD>b à Ýãù‹5#ÇXâ¤+<ß }ÓQ/ŒÊ–{²äú±H.‡Y|‘ÁI¨Òa~!me}ïJœ5/µŽ‚3Éâãe’¬ÞJ´ãHŠMèñVK:`C°ãkšïsÁn“Õg2Þ¦ò¹#KÖbwŸ7*ïi_¥Æé~é0—¯ž<xqË;3áêA9™$GŒ§Ê( <2CW“ç.{Q5°%Â`]œ6ö³šŽ‹’X©{úÙÎáJZÀ—³JŠ…º‘Š«„jú=Û (Í'6)„mÃóáO5§¬0U¬6]æG1G,zg¼còº?’HÄ>ÿv¯ðyaÄ4nhÍÍÛû˜y©ƒk;[0' #xìà­).ç{!µ{©&®Ì1_¨\âóÒ)¨1}¶Xv6Ÿ5—“‘²Ô Ö¤4…á£}0vY ‹Á„ãwI9±2ª"èègZ/kšŽfØSFWV4ð1¶M{bâçeÅ;.°°ã Š>¶%—xëêkõ®†ìA)O}ç&l‡™™§–°õl½xÊ,¹h‹pm3_¬óÙ1«zÎF4]¬¦i¹E6¯t*ö©«'û½<Ó“×.‚‰sò'*Á LXHî)}œi…´]:­N¾PÞrOº—­ÎèFDXµ;Ö#²ÌÅV¬mc»y…eVŒ&Ž2“‡Å–ÈW“}蕱Â¸Ò ãYX‘«øjäûö‚pƒ|µOÕ7¸Ç˜?¢ûŽ]qT*\+½½n%TvjôlUk>ä8u×þ‰o±oŽ%ïýÏnøŸ ªÖ™ 5ðÚÓ’ÖÒü¬u˜òºì>ëÛC²sïÂ’¾¢6àKÔ\E‡Iàk8QÛ¶­!ábíwm+šnD\t)Ÿ_.ûjKE¯§—ÏÇ0Ž2,ÿè™QótìÌ®v!ß¶Ã?ɦ7¢EòŒ¯C#T‚ÍÃãZ3èÊ_wD'¦Ðbre+Ú?­ïé¾£Ð*1üZÀÑI>¿#.ß©X„¯ÎqR}‡°lѦs?:ÒØ:nüé_0:¶ +ðHýò’QqSi6Ö ºÓÄ~E¼Oy5’7<ßÛ Y¹ÊÈIIú 7˳w+õa¬,yr¯6IPÆI°£øÛ¤Ö— ,–êdç<‰TéÚŽàƒÃ>èîoâÞ/Šïcz!7“?é˜È8®F …RÝÞ^#Ågر^ßíI½§g/!^ãӜ沨)UT´^ãµC¹¬!UÖ¸¤Mw@^ Rñ€¾A}¦-a†§1|]«ü¬Ûzò¦ù<ÃrL*B@¾ Ae6ÿÊM2þÊOU”†2‚ßð¡ÁÙ‡ùçZ¶CºW ¡Ô”{d+?%M[w¾5çLÌÞ³ /!Jv/ù!ÝUlæ×؃s<81W!¦—ó ÛœÉ"c!?Vðxë²2w/Jàp}Æ‚ÙÃ.Ú²ŒéêHR’tBý+&fºõ­VITä’šQÝ1ÓÜEè'+µ hóð˜H“zöz ºFùc¤Þ²ìµ9ds”ÐO¢'‡KeVTD÷‡>¾´%3…o4œwǼ±ôÐ÷¶׋lÙ0ÊR…g–O¾\ù]aZqg«Yï,¡Œ$ Ü?û9ã¨È u¡Ÿ×äÀ‚pøU¯ºÄKà†úìôWÇ(¤µÒŠ@ÓÚâ\É @_Ëz˜€—«ëop!Y¯Sܨø\}Lðé7ƒ 2‡ ‚ˆäw)ÙbËÑ8žÕ¡É´i<ìÇɾÔb?+ÝÀK*ŽH²D¨ªlD:‡G¯éŸOEÓx–’á?,Ð.©Ù¦Ü]ÓzñE të+"¢‚A*Áðô«ç²ªÚÜvV•íuVü¥H÷ŒÔ¶@=Må\Û‚©j©Ã*y|©Wpœ6åe•µ<5Î)Ï[)ú/bCEççç¶à| 3[äÛ?Q[V#èP—Ò¦Üö«0)LE³{,Ýõ™QÇýí¢@ë¹EC¯ÞG.à3‘Ÿhû¦Ÿ‹HT†àjJ‡xl B¤±{\×>zÉîõ3pW ±/Ïá5’Yž1!–ž§V#ÚXÛ•Ã}ì£è’p„^E˜~ÖãL,Çì¹ù{ý÷!nj  žýd¥·4¾=7\wÛ)^ÂçÃqyó÷î‰ÒªðH­Qm¶`剿a[Ç~;Ó›æÜ®bsh´¯ß¬=¾ ·ò¨aU· /—j4y¶Ýƒ¡‰IÄ~®ò®dIR´¡eSÅ#ˆ^š,¦ÁJæÕ«Aåø­¯¾íè|Zn#Öº%ÑV–;ÅAÑŇŸ¢0ÕšY“Fæ®>¬ÉJæö:$ñ©·0;°+ëDÜ£E©’áâÐ/6<¤Ý¸Q®±Áblw‡¨+!Z-Jµ²E+ŒÔWŸVÒØd{_fϺÖpz»€îÔ—ç¹±íY®ùÚÑ{Âî°d‡.€yǶ¡’Ô/âÕTolp ‚WÂeÞÄi,ÅÀ·WîE­Y @¸W·Ç ÃPJýxÿYüMN“Øè¥‚û3à^ª»n†ÆtÞ³å¦7Ûà.Ç@ªôë²hý-,Y˜Áï×ùé©þÛ¶¯©b¾$ÔvéT)†Îkk ]”©ñr î´D“¸ÙiâNB¦èt¢rS¤GÛúq.2ð-äóÍŽó$©†Eów®sD²Rð^ìŒk^ž•ñ¼,!œø‘è­§ÈÊÐÉàZ§ÍÚWŸ Ø˜Û¹–MØî¾ URU‡¾E!ÑÐG¿Lûn¨G Í*Üt#µARã6ÒHR¦. õߦþ6ƒ÷]õÇapDiŸÁóÖ7&Cç݆èf r‰•øKÈñ_t¹yÉ`ÂFó°4Æà Òs6ƒ…ùìË âØZþNð¨c ALkãÇÇo;ûÔhŽë$ä«¶ñˆ÷é]öšßY3w½åaÙ„SÚLÌ]¼ ͰRÈxsËyãIçÀ’ÇýÝ„¦½IƒL¤uÂW ÈŽDí9›8µg Ñ‹ÀÊ ‹ªY¿œ$p›Lxœ¼ëÃg‘C·Š¬¼ xTwAM’pMÅ}#«Ðê+!H¬'fï .6ÂUô‹<Í[:c õ¼úpFkõ6òËÞ‰ËW5Ü­?•Y˜oÑeèån|%Gòum@n" \™$A»”Ù’}7’)g@êÙ`ÔÆ9I^†ÿ³Í駯‚@ã÷<¥ÌêÕ=¬KœR:dÊ>5ß”QÓ+¼{ ï7Õ+|$ANivÂpXÐiý¤Êq|ïu†mU_ œ~Ë.šu\9ªl„3å ’Ìü0åµ#J1¨I5Ý„¨©/[àú^(g7©óz€<¾öô6ßA&‚‚©WÇ^ð~œ…/£9©'WH?kŽMâÒL¨62³éÚÌq«Ä]ø…¹SúîåP±4z¨FHøümk®ÞaÌ[ÿ}Dj4e |ÍPñ£«b~ÖëµX:KÑpêL"ÊèU a¤šóŸƒÛËÆD‹‚#ˆ²üàÛz)ç¤íïH÷Êøesê 8U&Z™³ }vÖ§SÀu}š‹âŽ—GJÔc˜ü¦L‡$ñ²Z–ËÙ¨ñ쬙‘/dÁžywDrÏ™+{‰£ é÷s ÕuƒäKºÄëÙêÌï8礜̢ŒÇÝÌÔ '<üÚ?Ö%ÎÃkô9ú°sæoݰ}}Ë×kon'm­ÎÅÖË.®. ÁsèZ’¸t‘¹©¥‚±áÅ¡ñß}ÒwbÄÛ‘4uë>§óPÅ<¸H»/ïERßÒ“®Øžä½ë×êvÐÂQÐklHï SˆòO½å–ˆôÏþàL©þìê̬ÖÖív‚~¡°æ5¾ÿ!aÀœ~0ÌZzt2ï+›Žþ>‡É”<ŸæW‡­â÷RCì¿=Á¦qÚED·mt+H¤>]jÏñe$„äã8(Ï­G/˽¥iqt–ªÞIBÌ–D&fnµóšð޼–"¾‘¢hrR,$J­bFÕk·BÔ«ádJÇT‘§ ùànmm`·ÓîÔjbú·%mã™ 7ŠŸS(‰½(§f=@1ßoÍgIY Û…÷ƒ½l‘6Õ“?ž0+Üéì>A™êð^Sß™øÔ1I·:íõôRüOƒ0o5ñ2„ðœ½AãÆz€@¯H3HÓYÔ ~Ÿêѧöû‹n.u³46Ò•£á"ùk´ùñÈÚûðWÆÅÖ”rb‡® “]ã’ý—]ÜEŸ~&ºåÝHϹ]ÈO“/-¬<£P ÿ‰v~8‘PŽÞF8Ú[âÁL8Wƒ~šaS%œª×ǃyÌøÌéU¢Í²à7Ètàüýoe2%B5¡EÐg+ v¡!š´Ë[`Ñ×þê 9º}©¥hôͳŠmÖ¸GÉî4¸ÕKƒpT‘dEÔóÍ~ÍlÅt¼WÈ@䊕«Ò÷Û*‹d½Êý"º1êŽî8íųº·Ô!Áù²àñL¼Q; Çã9R[ºŸ•eŒ`Æ’Õçè4±3ëŽáiEÐt¥¸?F7óç2,‡Y£»á¯Oìf¿ÄF·voxíãìÜIw0>ȽI%0å¹4Çb­31‘ëuûY“ÑYOOy؜νÉt…Wº8@H–º$%ƒ°‚6ñÈà´‘ï] Èž«Àîw<*L\‘ލn_|q)9¡Íyú=P„§®ë ›¾9;ËG¸ªâ0†¬;#7ØÛੈÏ×^öÇ×C§t9Šes'A.šX±Üýo4Q&›/†×„MjÔ¸Æ?ɼ]‰ÃS¾¾±'óí0 °<`Û¨_J3fº¨˜^ðIßEUNÆf%"ÑMší¦¢†QE¹¤>í-ê–ä0—‘p5Úñ‹ÂU;š—w—A⾌Ô?.c·˜›‰é1›"°K tJ5,Ê{‘1ÿ•Ò™CK9±fRöKô»†ŽÇªŸù/~ŽwhO$$W¹ÿHûÏ<{º_ «Á+t3á—£KÙvâu 4Ñåß.Ä^ý¸:cˆ˜WS-lYuWÎ"€& ëaUûBžK ~ry…͘2o¢)ûã­‡Øb£0+´7ž+ns_ßùj~¡²¦®±/áÃ’ñ‡ƒøer`€Ðp¾ùI¿¯ ÍÌóü›YŸ3ÅHUé£ëÞËoµ\q¦ç×Éi"{©¢5ø”‹4‹þ6%â2„Q1Fûsöý£ÈÓ^ŸSŸ³4Ë_-zœ*¢¬sÖúÞ]>ù…ºË£^Œý<óê´; †£.9~-Á ’\ÒœªWˆzbQm’¯Þºt† sØ‘VÆ5å$}¯ÖÚ$^¥M?xH„.æœyîÏŠ£ã_]9Jg.ÔðüüáZ¶ê’<΋ïëÜÛT½‚¢÷ÏaÃÆBë¶ø4ÄÙϬm7>¡ZÍfå#©ÌìÜÍÅï—ՠ$~ ?ž"¥]L7†  ¾ž,lX/š|ǰã”ì,Ôö åÃF¨š¼ÚÓݼŸVk™û´dpÛÕGQfåõÅ$_Á—×#Tý2êq@’þÆ%'Ô@tÿ‰QÏÞürª%ÌÁ–…¨.å>Y™xÝxÈé2s†Ÿ2ÅlÁû2þö@²g=§œ¬Ó°!²“i`û9ä²­ÁìFyŽWޱ£Ôqo‰O•뱎Y[ê蓸¼n@&6%²CÙpƒ¯¿³shÆ{éÜ:¼i=Hwq1JBHTmoØ´B ‚`¤&œiÀwï‰Mc½­oÝ—ýl„ÎäÜÐÉàÃP*˜ŽSe[òí Föˆ¬<§›Ñ=·SŸܶFYtV~rR¦2Óè¡Ã¢Lz;kiPŠrõÖ-5yœTÕ¥ý­ŽV¥<ä{Xo„êîP…wó‹å(„ç¬øL¸õžÖ±TU¨Ý¿Ô@ž¢/ZŽW/^S°DyøÈµeêN€õÆÐZ©‘i™'¥’ÔWXR¸>²^ÿõôoš„çtĸÎûü„Ú÷Y+ V#©®±èŽ+ÈÝÜ¥#,‚ÌžÁvtœ·¤iÅ]5bߨ˜š„Ö™E<þ‹|)ˆ iãö§šlòÊ™Xa-î¢ B½xÏ¡xöL­•ì(aÁÇ¢hñDé]ïÚvmé¡Õ˜gáÚï»_®,´c,$çk‹¼«)+ü²¡Nn$O·êD™…p…Ãb O“75 6âÅe<>‘†oO©Í;Í©hY§bDú)¢ò¦ýQU¶X…ºæ\›RŽü¦›ÿÌ©ô<±o™Elý‘n™JÙ1º…ùÑmµC—Y­¬¬t{Áå± _¦ôè<ªìEÿrÀÔÜ·&7sV¬RÄ¡>Ë~¸Zçab¼¯æ¤4ê* =+¿åÏw±þ¯?øÏmÑ””W‘›èå¾JùØ„V]îîø>JöTôˆk­ÅK»æQÒWåžã mÖ%ijzEn»>­ÍAFFQ•Ý|±ü—0³Óu0*Á:=|¢Zýö>aÑ{äàì€Ikq»ù6)ÐI y¨äŒ,/]wÑ4êÁ-g¶d­2¹Œ‹Y%³+šû ¦ƒNƒ{^Ÿç5¼f`¬úf¤<´>TÑØhÈ¥.oØ$n«ÜëXÀuš˜ËábÀã„·]ÄšÉQMÀgÔÂŽÂìŒhÙ.v¨'ÉIiÜ}SB`Ïà ¿…ÏòƈÎÖÂ&j£øÎ8íðV,»Õ`K+:L%oÀóyüÄÙƒ8 ®x½’ï$†BÏÁÂÀE]ŽÏߥЇùhQ-¢•Îø©É VgÀë“Éñ¶µÒ»æv±µÜŸâQPÚÀˆbÊ×3ªjSC}_û¢?žRÇøßyêJû"’IokâÇÛd¥\~óÐ>BŸ>C9?‰èÓÜ}˳Imƒaš¸Š*éLP‹»ÔŒækÁ<ЬãÀ²Œãê¾ÑS96ˆrÊ*ß5dÐj˜jQu³'€Üa~ñ0N©¶©¿òºÃ‘À°|1H“ð\Š º±ø…{±û¥W5µ\ÊÈD-¡÷EåŸFÕ[¬¢j'ì¥ð¼\i@‘ÝêŽXå—-÷ÅRý ‹ ЍÃ× jhU‘a)S1D²ÑÝŽm» Þx´…Õ¤G.é?Âb ÕçR€o’_Ø8ÎÆ¿[ä;ùJÊé²KÖbš ‚p£(,twÈÛŠ[¼™M1œífý‘& °@â–ÆæÞŠÁü&P+. Æ$c}õÁÏ+¬óÚOd{S,O-x ÅzÜIt–~ïZî®ii¯+ô€ÀaxÄZWøòØÁ4-^‡ÞúŒ=¾ÍÅKëcâ–p×Mé-FŸOøÁ¦]‹eæådcA@®ŠDLPãÓ'*f?{eK‰¸W¬l1^JÉà¨+1/¹¯eÇÅ^2ƪ¥x¦K¨óÞÞ˜Lp0²ÀCvJM½ÊdI'O`%UUhAF½MæHÕüQq‡óó“Ô1‚à©•i””)§·Jݽ@ûû¤š)¥¦Ö™ØyâqL'oˆjh`“qÂ'¾j-®a¢!ý~ª/‰ÂãXâ  ÷±3©áÞ»Ö3~åª\„#ROMw•²”Ob|Aç)¹–P‡YYŽ=WmÓ4®¼òù³ö" ƒ‘âó ´,$´OIÜùz}ÁÂß­_vú¿GÝhò³oñ‘Å¡5®u|Ï4öu…õÅ_ì $£™^»9.Édÿs ‰HÃ=Òº×M]Ý­#M+&õÒaÙ]ç%lKMŒæòPË4)üs9SkY°5›Pp[tV¸È¨–| ÉCüàü 7 fûñ|ò³½œv‰ébj™ÞV‰€b†‘EdÐ ¡ïÐç÷Iå;Cý5Ôƒ³X¶2Õxbv$F®—ú£n¾*¢ïýWv¨K†JPyñˆqíÂÂԅé04w;óLï4Ú^±Lòªt 3гó«Ê y0Õ´ôoÂ_†Ë}~î=€@2ˆ?t•í(ièn±âÝêÑðIùà–¦â‡]‘Š(û•^åí¸¨5f§ÄÝh–l¥F* Óÿ&È,Xùáäû½åûª]D>o(~&j„ïn´ªàë~„;=C´!ïøæ‡·Î€e'B aÏ)Ì…å|L¿O^&¾e|WÍèwa´ªÖHŒgÆÂ£ Hó¢¦tžU†ÓÎf¼›Ô0Œ‡»*µç1jÀ‚tôTý„ÞÏ7¾×‹g;öz¾¡Èög4—E„Ý5Jê¬K>µëšMIÏd7g¶ßÞL'Yib'; u¼0ZÒû@û®<§ga!@¹¹…–ñÅ:\­O´Æe-A*?uÿð9¾ ¯â0¢üþâ¼Ò à£qˆ1¹`AÞ-+WXá‹\R!s‚1‡XK¾è(ñÝŒL1Bä¥sêëã²ö㼸¹Š16[Že5w³^BÿC3! .ž×Þí2±J^œÞ]~F{Ÿ¯Š|ÆÒµp^!ñûõÅ,Zt‹›"P=+cxKnùɃoK×K±|µµiQébí|é×Wu©/Ÿ)Ø»ÜFìÁwz\4Ôÿm‘šü€é³º ¡ídÎÐèÜó²ëL-Ïç¢Xœ¸~Â}µàüùÍñ j6âKüÄŒGÈD‹¡}úµ‘¸£Ôo±‡ïZ,ä·àlœªD_}ÝI¥{­£ÆJ7BIp©î«ÃâTkôuêYV“95Z…‡èª¥3#‹u b¡3çÃé¢]ž÷3?C1|9g{¾ÝGÕÞ6:%ùbŪ wú˜FÛúÕŸj˜ºai P (œì Î~´‚3õ ½<µÁw`ŸÉ¼3‹Y飯ãƒÒª²(]<, ¦·5WûÃÖƒÇfÚß8Øúª®Û‹YGòƒ¦JÙŠùDu¸}ÌωŽñ¯‰¡æš®0 ÖzµeÝímL0ï䘤™DâǬ™¨‹±ú£ê€€*ÛÖÆFŠɸR?RasQ\õlÄOXŒ_ ò›_׋c‘<Ë^ÖPh—jåÃü¾Fý™ù” åŒâùÞðj¶D”1 ˆòNv­!9õÖ?å3))8pÏôòxƺ;™ÓðoËÁLÿê(þ& endstream endobj 242 0 obj << /Length1 1387 /Length2 6446 /Length3 0 /Length 7393 /Filter /FlateDecode >> stream xÚvTlû7%1º¤eJo£AéîN©1 Øcä”$$¥A¤¥™€H(!!-¡¤Òü§Ïó¾ïÿy¿ïœï;;g»¯¾®ûúýî3Á«¦âjnhW¸6…‡H€Fær@0XJ – Z"°>ð¿´Ak8ÆF)þ/»ÅtšP,ÁÍêø!R@ˆ¬"DN J‚Á ÿrDcšÐ@„ÐH¨FÁý‚hß ÂÃK¨ò¯#P& „((ȉý ª!á ŠA±žp$¡" ê´@ÃplÈ?RÝôÄb}A    (Ò_ñP!°ž@s¸?wþh EÂÿ &Zz"üÿR[ Ý±AP HPø `p”?! åÇ µz†@_8ê/gÿÄ€_ "ùwº¿£'B þCa04ÒŠ A <€î8ÐDÛPŒBQn¿¡>þhB<4Šðºþ4j«™¡„ùþžÎ†Aøbý%ü>¿'ýNC¸d-”›‰„£°þ€ßýi"0páÖC@ÖêB¡pÝ(7÷ß#¸ø‚¬P¿¸žæßà?:8(ƒåÀ@¸ óýNnâ ÿc„üVúÇù¢}î„àáw8á€ó‡ÂXL<÷¿ ÿ”Ð Ã]áà?Ù j¸û_2aóD0ð˜<üûóï“#[nh”OÈÜÿ,¤fg¥®¥)úgà›ÔÕÑÁ@œ¸¤P\R „@$%r„Cø?³˜BwþO¬Ê Tø«YÂ-ý«áÀ¿·/ô71„ÿÌeŒ& úÀÀ2`á òÿ ó?!ÿ7tÿÎòÿø÷£àãóÇ*ôÛüX¡H„OÈßv^°ì¡ @ý·« ü/ºÁÝÈÿ¶êa¡¨¡<|þ}‰mD0ÜÍ…yþ•¿ôV¿ æƒ@ÁMÑþˆß Pÿ—À*˜7áÑð'àñ N Í?Kj¡`h·ßì’”‘B1h€°b‚$ÄA4tƒÿA0$Bc !@Âxá@w4ð{Ÿòò@íoÕIZ"­ü žd•èp§l\°ÐõÉ;9Vœ‡R„i/˜~|ÿ`Œ)ä‚W?U¾•$U‚³_”L>š{f)éßÉ!ÀaÏÎCºÏôîý5œúF¦>ÛG\yÉ|ñ¸C@i¼Ô§N"GˆÉe*¹›!ˆTùZ•~Ò«kK¿¶:¨›Qb:qÕ3™O×ÎĪnWû’Ȭ­Ÿ‚÷óûo3ìà&y*™^òuœ>•Ó8|õˆuY6>RŸÿ*§’ÒþõtÞ=Ìý™@^å^Ÿ™ÕWc@´¼f´ÚtF¯"ðî ä.‘BÄ}¡<¾«ˆŠ®|€A¤ ³2 ¾ø”Ê-MLß©ªþ™ØÞˆc”S tóƒÕ÷zÑ8oÏŠ1/“ ¶O~[$T{Þ×ÄÒÖœU"½;ˆƒ]áKC©”OØÄ¥ ç¥eNÜçeîäæ!-¥JòîÉ\KÈpÙN²Þ˜ÞúùÀ‚‰–:SdH%£žü6,Œâsúª ÞÝžº“z6Áù¶ú¥kBÞîØ^cF8¾;Ð"-¬]˜zÄØôöàq¤)õÎjùå©”N_„wj“‹×îÄÞg—Μú.­*+a4åÎ×z›=j/uc÷û]³MѦ–‰Sä-¥ Î»_žÓhº±ÄLI%›Qd©sØ[¸‡HÓlä•w/–¶,-¼7>ºyžŸ™âú°\h»ä!Ç6¦—Ó¬,Èuº>v0u}vÕòÑ…pE«€žàð…ßâCS=þ:q#¦´‘ ë`ïaºî`ü–êüëñÙ\fû}YÏÈÝçË3Jžj35 ÃïÈ:øSЮ“-ó,`x»ÃïOúÂmâîB<8m`ãÒ>Ìô…z(ÏYäN¤´pØàIø:§óø:®ò±SÕmX3"ÄÓž¡YmbŸR®5 1’òIi3MHЩ¼ $iÝÙÄ&ÜÔÎùäë|ßg¡…½män ‡{ Å%&nódI0»Ë||£¥!ò'ˆøà³s²á÷ÜQ´¡SF<ÈZÞ¡’ڒܽÓ)*Q§/M“ju¯h­Ás`ÞÊ@î­mÛF½`5’6¯òŸRôO(ÏhtWvlʼ'‹Nÿ¹{5¨pÌéKÍËToÉT`ºéÏ÷ÒbâÅQðîo¯ÇZ‹)U@æñ+[Y*Éšu~p¿®ÌnÆ'IUÜ”uâ…å”ÁZÛ;@ýOÙI—SŠD¤Ð¯—ª³£ìÆEÁ8Qc‰ã³úH¼òH\Üu¥‚;}zú'Ü=wÇw±|þ¾¨¨šÉ(NêXIëtÆ«z“DzÜÞø­$€èžA„HЕs⟗Ÿnìðg¾*ˆ!S¨ä¼ñðŠLí’ðcÓ:j¹¸ðONõÈ.íÜ©>Éã„Âôg5ÁHÙnò›ÖN>¤¼Ã¡ÖB~U?åÓ*‘§×a8,\ÃîmìmWój£[Ðc‘í’âàDÏyñøD´Ä1OŠ·½nªá•>£C¡(Ø p¸žT6|ÍÈÞ¥£Ïÿ¸É­»æñÑý”¾GT©’1d÷âvuð]®cšÔ—sêGVá£è“BÕDª·èt惋ûe^>nGø–ARœFð½íÎ0»á©óÞÃ3pE–Îq³îÃÜœÎÃ{©¥²×:mÅ9w1+ñµÃ‡ÊŸ«èy¥¯QêàU0%a²9åtú …áAݥ쩟z²ÕE1ãê)°õÙ¼©{]€œ¬Å«¯ž)‚q†€+=E£jW(f½Âq~R6NêD×ŸÌ 1³Û•õ{¢À“6½æ,–Tˆ˜ŽˆfziÎH¶²ìñ¼5 q©¨W+o•¦Ûšf ú²…7Ópõþ/”6Qw¢2:}œt<ûy§ÈUO6…¸³RüiƒÉZeYÓ¦¹kÉ\bï\gùJÙp´²/»ªòyuÕ¡VÐŒËÍ«yÄ+Öú‡ËÑ:ˆÛ’˜4FKs´x/¬ ±1ç4ûHŽ*I;òg×–´ˆ8ê0€‹ ’W ”ö}϶‡°Û!sTœ èmzå#1®ìêœõ¢Ñâ ³«pKóQ•Dæö½c6»ÖXÛñ u¼ã$wüñºõ×ꉴªy/9k¨3t óÇ>Ÿ8Ž{l›m­ŒKüÎ1+à@qÛÕ$köÖ7aÆÝç¯)ÆÕlIf´6[Ó{/Ê~Yyäßô®÷+#2äè©S¯Z›|+âõl¬…Ñ“nR/ñ:À¥vÕE¤„D È/K°Òר â¢upÿ² »’ÕFg¿º÷Ø3=)0ØI’.C³½.‡Ù9ÌlìH¼á ¿+±³zK‘WTG#RñçKmQ>cÀèçíÍXûl$G–VÕb$lë`$9+ªTSiÝˬKnS`:º(õ=설ÀùÌ×ZÒnå&·Þð±£ÿ–µmÞn†D)¶í…öÛöpÌDCH³]DAñ+v÷™ú¶Ñ AÖþèÃPÞý{:F‹fãJɦƒ»š#>DŸ2ZúöÙ½ñÕ_9 áˆs†Í›=QÜY òJû²R¾ 8q ®Ê+ˆgØtQT°µzôJ 1ÏYðàwÜ%±ñ«Ïݵo*O]i|Ü5ˆ+Ð }²±—O¹ùÒ‹_´o¹¯ßáÑ$.m(ývHÆze†ãh½Éa)çlü¡/¥õÉ“0à‹°S=G{·gë¹àúztû𛵾€juØîý+m1l‰Ô"_Ë9ÛsB‚ö.Ÿ10ÒäÓ\ý^4A®ÞØ”:$õ $˒Юvæ±UË,Ô?¸/c£âDžh£<>&j’á·FVVvÛ¯&º8‘‹/xï£71ð‰W LÙb~{¿˜ü¸ÆNµü¨¥¿\æ¸bƒ¡§×– ›ÛÒóó4•)”ø‡J³ç{ÉïºLDjˆËƒÅhG?'"Zò¢¼žó&±À,a<Û|À}$ÉõÑr±#±] ¼Û1È•V錿¼ǾÒtî="ô\û @­È‹ärÛIñIxE|‘²PŸzvu(ëûÿ¼ük*ÑᕹÚÌ DvÓôM¹æËš§­GÕ?øW_ìÏv¢µNŒLÁc`ß Tå»ûZwz§«OD§xä2ß:S·šý¢ 6ï§aGh¢Õæ*… H%]Y­{rÚmxîÖ³˜ïì=vÚjv|%'Éó¼#vï XŽeµÑBër«LMq†IÞÔè®Õ[Eôs?š:úó·¬ßVyóýHJÙØLˆÞboî³z¯Ôw÷ -™‹¾»O¯åJ…_k±—aQâÜWîÉ9Ê¢x´‡ŸÌe9,ægmõ´`2W«ÛR–ì'¦4™Pñ¡ç󛢯ùÕ$&v?À{ŸTÚ9œw¶/¿‚†¨ÄŸ#îl\EÅÐꬱúlZýæ²R•Ǧ t m»º}5vóâÁò…Eé7T–aÝ/—c÷£‘Ë‘•QìÏ'#†*Zôk½‚4GØ! {ýN6r†ÄBõ:¼u7ä1øÛl[ ÄË}äΔ÷ª¾¼_¹ÊLÓv7âÑãálüàúíRC@&UÃɲµÚ²Ù¹JK ¦,øžÉÐ^cóŽëWºE†á)ìÂeüçðâ¹EŠ ‘›E Hr|8ùÅ•ðøû7oÛ¿j„Ð=ûy˜á(×µ‚Ú¸w–±ÖA§Ä ° ‹¸Âïòœ mäÒ¤·øù¡ŽF ¿¨—dÞ-äÎHüŠB¯²œñEY”Â΀‚KÞåž`eº?‹°ï‡‘_óÁ{º&lšæ=ïžÄ'ÆÎ2.WT¨´Å¾¨Î6¦<îëñ_ ¦c®·Y XcHÒi™U'-’¬¾çè?wUZF¾O¾ÜTKʇžÖ0¦v~ <ÌÝî\¬ùSRVðÒ<3Y¯‡ ;ñWëiSK±·Wí Åøµ¾žFNž5É«DÒ«ŽÞüÂxT©Øí¹ûx¹»él¬Ãn'‹­SnÂÉ Û÷ÍÈ¥}ÚVlzàMZú˜ŠfÖØ1¦üüÓ 9†Å^‘¯ëäàXGÿ…Cÿ.îÏ.)Y(¶¼¦o¾«pê ¤™Ä_oN < ¿¢r÷Ëò˜8ú {N¨É°e¦†ãb¼tüæë Ѐé¾4֌گqQˆK$¿A¼ô´‚‰â®KYìö €jÆÜà/ïxI;ÝE†ôMýéÞýñ´,“zeÑ;´Ü¢Ú³?$¨ >m]|´™¡§›ù2oc‰&#ÆmÆPt2ažÌRš²nù’Wÿ8§¼‹Ùˆ>ÈÉÜNH¼¡=zEg²ìÛõ³vÅ—øŠb7֭˶±#¨0½×ûŽCåÅÁ~ uveìi‹?¢ÔXÀÕ73òƒoãM+×}0ÿ@j…®öæÞQÝõ¾OÄvl^ôŠ• ÷^~ÕmYz]¾uÀ7ãi Ð?£ DtG¡W‰\íŒLrüú¤†«=ˆB¡ô<uMÀ_až÷Ÿ´ž³, Ò–NKÙØ‰Qj–}†®-Æöýèé]5ûøsZŠÝfØV·BPºFÔhV—´ÍMìº?A)~äù£wæ54B½øÌ)–*…‰–ã²]G~d€{ÊWCcè1C>{•®8\f`"õl¦²zïEU¢K<Ø[ñ ]Ï0Êlò4©ÐSxã¶ñðpùìå•Jejp=¶Ôy…VÄŤŒRQæ5u¼ÑVÞã•ðÔ°ÃU{ãV«¾_É›WùhÍ>´ÑkÔdæéuš#ÖÐ\¿¨ayd ËfT_X°BnKÜö„ÂÓ%Šï8¨iJ½ë%66;#ò=9»øÊ©»‚o9R>E\6”Áj¸ŸÝƒä+C¶ÄºŽ[ÑÝýH^N5ýuVAiª›³£å>c“ÌÎ’ƒÛé6õ^•­nF&=¼Ÿ‰V-f‘ð ®n¾ž¶ê¥"$q¥BZì‡û€kؽX•šÕŒ€¹jg4‰cÎþ+SIÏÐG›Í(aÛo³iv€SÒïÓ¢i7P¹ M†wº˜«EXª\ZÄ“ 4‘¢µ¤]ß³rvÙ«½ð£ïfu¿ÿ°Á:$þÚy3ú]§S?Ú݇ckµ}SíÑw÷ŸîÊPM  Ùæe”ö³Œé]P¡s6÷Š€Ñ"WUé9rÙM€¢.­\€ œH_›ô‘ƒB?VÇÑ qíIÅ9|yä`›·¢Öß‘s[:Çåã‹ḭ́´À˜•èIH‡ðê¼³{ùnm²drÚ-Þk E"È”¾Œ[Î;Ê”y€$#ž­¸Þ°¯U}OáG—v&Òn¶b="ÌXÓ÷y–%·¥¬½à·“Q]*Ã)ëUù=T*?wÆ(’ÎP·p—(˜óÜÊyS$Õ3Z„}‘žž¬ÜN%2˜?}áTw›zIÊuWPSU ÒÈ­aK@^hÓ?í¾é[X©ÝÅž¢dÆ{ãkßýɆ>Igï§Ê­íëºßè67³Y£8t0Ô¢*ª*d>+/ûãö®5VW¨ÒÚ†2Ò|>yÉÿ9˜IWWTS01Ð>ÂÆ$IÅšR /EjL­}oìN®Â(1Eà _k=ù ž—µ™=ˆ›?—2äå”{°î‘û¤¯.ëõ¦9™‹™|-¯ÃáÞÎLF¤;Øs¿ y³úBž¥ðmHôÔ€BÜ ÃkÓ…£-͘f§ç}ÃyÈ»»÷ˆj4Úµ]wø™‡&Ið¶ .îé; ª‘or¤©Ÿ^$œÉ+1¹3¦niýŒM·bÖŽM´ÓW?ܰ0ðéÛ®Ï!S>`wï ZäO3—ßMV/bafgØ¢nê|+J׆L©×ÌÃ} è²×ÎÁÅXž¼u+øÝ,éIˆï 5°AݤœÊü–iªo5`tÐש·]õ@ÐèMéW±KH‘ðJßçÝ÷ŒSq­î? ´"ãTÝ =è %x\ÜøðõÑLìåÏ0ÔË«ŒSœþ˜iŽD ñ+–6çàÇ$‹.ï´ùéV;RpÃDnZÍ—[•øÃo‹ðŽ¢k zÞÏ– y»ÔD×6"#HkW¢ÁøK> ¸äô¥!)YñXfŸªq¶;{ÓÑŽI$4ÄøW?®%ÄA~4éIX=r0I…×î²!©ÑéuœŸ·7ø¿˜5/H¿}\á+qëóŽU-¿W?½ ÈNH‘ÔqrbAFàøS<ÿàNT@öÆÞYì/žý~ëX†y¤Ídošnê“æ˜qCY”׃z«H…³Ø,C„—¹¢î.f`Yþ‹uMšúæ]d†¸fˆ iyiI$IóùÃ[o”½-žñ^VYznGüöÞþcRŽÞŒ……ê;£ÝI¥ ÷Ñ·Í•_÷Z×Þ’²½l …/Ÿ©U+ Â ?+îÍëãö}mlÎße®'íšÌÀXPV\Ÿ“éŠt&Ÿ…¥²«KY®˜œÅÎ:(¶ë®,Hä¾`”’1$¾f1í«¹vZÞ.oùX@-™¶»Êhú¢OÆ'‡Æ©ð|arFäj±†XŒ·e8‰•à¶\ŸcJ 8õ†xá×™ ~ü¨íóÈ3Ö¿{ˆ¤–Î[öTÇ'§²$¼ˆ`p·NÚUHa¶+˜Ó&ÆnâŸÄ %—fc^r/Ë%²ªQìÒîº,òX!¢LNÉ?ÅxaϰM†¦ROR®* ñštÉèÅZÒ_ê@ÎÄU7"jÕ6íXÕ۞Šñ€›, ‰ÙÏLºrZ~&Ü>ÈœO#½öÐÑG0þC@œSXuå^ [ßf|-™£Ÿ”Y#^,YîúÙ•$+½eo±×—Ò–[î[r´ª·u¯XÚ‚3 …ôñ75üò˜årÖÎŒ=söøt×;u胘Œ§eim6ÎápþyítþÉá“ùwË­@ˆShÜ÷ç%´u‚q]µt­ª²Ç?Zã^«Ï„‡©Ú„$P{°ºbì«Ïªøó˜¤ïÀ¾öL<ìž »µôü[ï|ýBÐ¥kÃ]âÜW©:¶`‡Íe³û—ÀkðÙºíF™·smæ q£ ¾|÷ëÅä½ö>59f­ˆ¶Ð†S ÞA0vºÙ$k:vgÎJè0Xä(ÞeÜWô p–zÙ™gõI_’ N·‘p׉8¯.¼zi"ÙTòûSNæJ†šV¥%—®‰SAGF·C;"ÈbÓ€4Xæ/Ñë›ù`jMw§§^q)ÁÚºÙœ^ÂX5²ý­º~d*RUœÕÿ\†¬Ã\å{,¿÷?}.œ endstream endobj 244 0 obj << /Length1 1824 /Length2 11064 /Length3 0 /Length 12213 /Filter /FlateDecode >> stream xÚ¶PœÛ-Œ»÷0¸Ëà®Aƒ[‚ë Ã îÜ-¸ NЂ»»—Á!¸ó8çÜ{Ϲ÷ÿ«Þ+ªà[½º{wï^½ :*5M6I ¨H qa²s ¤•5œœÜ윜\httZ6.`Ð_V4:“³ "ô^Ú dêòb{cêò⦠…]Á 7È'äâäpqr þÛê$xcêfcPf(B! g4:i¨ƒ§“•µËË)ÿþ0š3€‚‚ü¬†$íAN6榀²©‹5ÈþåDsS0@jnrñü¯Œ"Ö..Bîîîì¦öÎìP'+1&V€»‹5@ä rrYþh bjú³1v4:€–µó_fM¨¥‹»©ðbÛ˜ƒ Î/® àål€¦‚@ÕùËYé/VÀ¿®dþ'Ý¿¢ÿHdù3ØÔÜjï` ñ´X,mÀ €ª¬»‹‡ +Àbñ‡£)Øúoêfj65{qø³pS€¬¤:Àô¥¿uçlîdãàâÌîlþ£CŽ?Ò¼\² ÄBjo‚¸8£ýQß'ùË­{rü9V;Ôâý×·¥ ÄÂò,\8´!6Ž® …7ÿòx1¡ým³¹x999ù#äanÍñGr-OÐŸäŸæ—ú}½ Ë—@¾6– —?hÞΦn €‹“+È×ûŸÄ#4 `acî0YÙ@ÐþÎþbYþ…_&ïdãÐç|ÀùÇϾ _´e…€=ÿvÿs¸ÊÊòê:,6üJJ êðfãæ°qñr€œüœþ—ßÿ΢fjó¯*8ÿŽU€XB‚ûrKÿ.Øí_Ógü×b0þ;— ôE± ãß7àäå4ùü–ùŸ!ÿêþ#ËÿEàÿ[¬+ü'ËøýÿaMímÀžÿâ_ôêêò¢}eèË@þ×õè¯uUYظÚÿ/«àbú²’+ð.ÑÆYÖÆd¡fãbný—Tþ²kÿ±``H êlóǃ`rrþ÷²Uæv/†ó‹ÿ¤@/KóßGÊ@Ì¡l/ÀÔÉÉÔíeÄ/ˆà |YC ÇŸ p°C ./!€—ö|–P'´?æÉÏàPúÃô'àphþ ò8Lÿƒ€‚/Èüåjþæf£Þü?ˆ‡ç½læ?â_ºã°ø8@ÿ€\ËÀ—J¬þ†/'Y9ý±Y;¼`ýÈ à°ù| ÿ¾Ôfÿ7¾Tù|©úwå/¾/õ?è—Êþ¦_.ÌáEµÐ´òòús8þr¿$pt…¾hèO©üíõR±Ó?àKÅÎÿ€/yÿv~7‡‹;ôôË,\ÿ_úsûr½¸{ü¾4äù'ü/­˜»:9½¼”îò‹þÿ|–A 9ÚÂÔ\8ض6¸å¦Z’Ìm{Ltšnû]›÷‚S«ër2SUÖ‡5§+ÉäÁ®WË?e/%)½¾×#‡5%©7ßû<'hLn7£ý˜ ì/<¬ë¥@%gÓ’ØñytôÑ ´ƒÿÛ®H÷ÉÑUK-ïÆ½GΣ®·li$tn[}§Šï-úCÙ[Œv´A`ñ ]žYö,15’  3î©öÌåÕ4nîø3¥b šïa ÷go½u®ØÛY¯• -.çZ=b øKÜ‘Izo©ÝE¢yï’ÏkN#©³„­£öà]F¯m§½3#zºq!Fbx|…¨èµ&ùDûbªD$žìÓeÅ5…3þïfάª‰6Ϫ`þZ,ãžs«Éº´Vg>áä.µÔ€ìÔúÆJ_\zÖ7ÅHî]˜œÃ¡rC¤3´{Ñå#¿²Êt‚_Ùò›N`ayT¡F5µÁûÏJédgý£1š7 Îf«dÍó~þ©dH>jíðÉ„*æª_*%G‹//k¤ªuú~vS3iY'Iã`{À¥3jüôLfípfb‘_‹þiÓÅL$þKL>«•:l„N%¦YX€Áì|E /F¯;¹#ɬßbÓÈæ¶²ñ´é"Þ†Ôôèê£ó§o=«A²L`!ß×ÏUÜ[ïÑ1)”ÝnàKèäTNÛæ{‰X§ŠZ9üL&"®©3á_Å«rq ,ÆÛ ¢Ù ä>˜oµZòoÍœqÍ’&,øj°ž~õa–vKœ£Ò{àS®Õá X£,x[™Öó’¯)ôϺ3ø!ˆª~¿P"6·ºQÛ¬ÙwK¬‘Îôº# {õ¡ì'äó®šÊ1mvTEÖöã~_µ<ð-æf¢Ñ÷ÆžP™°f&åÊŽèП"(pök1%Â#¿Rȱ+}U-€†zšcø¿^Û«YŽòTÏ41Q¤ù*Gdª îZqMÔ‚V1#›²—c{X'«ù˜©:0ß|Ï¢½ŠEôqÈymUuËÄFgyáqßGâ굑Ð^­yOøa×ý¾#ïêåÀÀ‘—.&a²i‡¼éœ´‡ã«?, f@9¼% o+ø¾Y‚§ójœEcÌ_îÑ!Çó ¹ü¸›‡·C®¹!Bþ5нe·«me —´‡ µQvOYÅŠQ6r&>ÄpØ$.Ü"¡Œ7Rp$¥²V!×öþ2î ö>‚©öeA³¥KóýÒD}»ƒ«è8«~ýc—¬Îîs¼m#ñ„Ó¡ÁIK®ÈÆœáßü×W4GÚ0»Ý­öM±­—&¶ŸÍíêi]…‘4ÊðB"md~i7½jžÍ{•+rزÙ0Ën¤K_“¶J]%t+ļînnKhÚF«°mó"Q˜^Ú“N¥ƒ6O?”Çf¨BÈÎ4¬hR„ß´¤ “åL¼âJ`Td >÷Y˜ìD‘ËJ*Þ=Ê:À_·\¬ Â?yæ“â<–p ²°²™q»|Ãç›=¿¿ÀÂ9:ðšÝ(øNÞøùitº”TÛóQËá®Ãeþ¾16â·ñC2OÉ/S¾)ç’İ_„TH3ª™š›ùhÚÕ:ƒuÉs'ÚxwÞ%ØÃàðOẠk¡ƒ…þñðØ®‘ ¬q¸åvÅmì‚Û²küš–IGÿä)I^ï1çúmÕ½“ûe^K¢¿+ݱqm†,¦z¼hÁLÂ.~òLö@¨t¨ekÛüÒ·ö: ±–ÍHux¸1l‰‹áþ‘ïaÒNõÄëÇ^;[Io&CÒñ®@¾UûBÄ(2ã0â2!m—V„¢8ç‹»fWœÔ!ÕŽZª°†JHmhø’#™7“HS=Ê£I—ʱÉ!ÐrÊ\¥¦¶¨ˆ)?×Á׆AÍÆ““‹¿0añ'ØË$¦¿½Î ‹êç€ÞÀöå(Ð’éç/ë²Ê‡Fâ~nëUXãÊXÀ`:øôÐTú…¨ýs}¯ŸW”G4_{‘¿}R!òû+YÈWÒ2ªŠ¡wh¶²öEÁÖL$ï[áóÈg'¢‚ú)¢÷R¼º"wcF…˜0o — ƒÄͶ×úaÀ:O>×c8…=“l8ùä¶’–›‚_ÛtÌ.òêPqà´î—,jm‰y¨ötZšÒ¶@µ—N‘zn3z¬ ¢©PqN4=¸•£w½r…H·nÏKàz<¿½ã¾…ðj}^'¥0_G­S7{[é¹ír3å\!«œ£Îî°+ÔÕ|›±_I‹eد+i|&=í¯ÙxFÙX‡g¡[†È^y¼»ÃŠi-oýãàÜøž*†Ï‘-.X›áï1¯7nqØßÇzÞäì1øUA³ !³'ëWç™ÚèÈ–›;KfÈM)=!_Ëèøí[¾xôïÁ“ŒéDö a o¦Ù )k"žŠÝ8WmTtæÚò]¸ ¡;û¤ÏÂ"tÎj¨ØÐ>o ¼Ïeq ç¹²M'Ø"i¸R5jÖ|Örp‹yb”ßÓƒL±„yáA›öõˆÅ|±å‘˜@’·ÃßY%ºIÔä#;u"¸S& óð¬¯q>c¦Œ¾O‘.Z^¦ÄÛïDå"ñGìk2v~æu}SatÇ þs õÑäHx³‹ÜywYŒˆQ݈G„Òz;´ .ãjIçѵËhO +…Îhæä¨ëHâ k8V.OaÕ¿ÐC\èÀÿ))¿R¨FeA]’À¶å(tvV7ùwà‰º£ÁD—ñµ¿fÇÀðµ€i’ÎítÑZ›+–ªâ°ØŽÂšW]<î<¯Œi'2ÙŠ^1ö˜²'`f˜u½ÉVÓ€~x(ë81Â<°Ï¼4ø>ƒ96Φ v¦i©ò/ÕÛQµŠ^¢Ýá¦hô~¤~Ûóæ"ö¹7uŽÇeIK7›H0ãù½/5HÜiÌ/ñG\»§´ã³¤yóL©d§…°Ê´w=%ÏóQÞïeÅV‡RUç‚(•/;z[¶¯ìÛ{ ÂÏŽ¶4Óá™4îDs°„Ú]da}Uu؈I^=fÈ&ˆþÞŒ¥fÖËmŽ ^íüùJ ºF“‰Ã*I{?O›¹Ý?Â~Mw/É&vWwVŠB€à²å§*Ùñˆo¤t&¬ö„åu69‡¯v4×70©ÊbàóÑ•ø‚;½ÍÙ\B¤CcÅìrÇþôNdÅ‹œ¼v®Ržµ4,eÕ¥@ùC%Ó³!¥XÀÇíˆôŒßA—Û}èïÌ(« ™Ôcpæm-!ÈqÃÖ¯¶]*Ó…Ç â—£¯„öY½ÃkkEá±e‚¸ôß}yÓäý¦—¹™B°óŠŒA1`5çzbûžx1´Mš„°\"Êå³Î÷޳&lãùƒŸ¸[V>È*ňëL«°:¨]i%­‚ÇrÑ-­r„žZ×:“Åó©Ó—¤¦ç¦ßxNÔb(*‹¡É¬°öò˜Íuúì¡‘ú&`…c!n‹ÞýªÆoõ 0{{Ìõp ×yo´}lôîA[R‡ÿ‹‡ºˆ€æXFqÄ’ƒVƒ«Ã6sµ«~"'‹=“¡@O`áÓ”Ìòò ™…6©”0fkíp.3v~à‹Ì“DaV4e*'9_}#L\åŸëËðkGFœÃÃ+$sޝÎî‰Óô÷ÕÉâgI¼Çº;tGØ [±ÛX.ýM5ÐNœ;täëå×;ó ÂíϪßË14O): š³õ+‹÷¥Çeö¾0­ÑqÞF&Š›Ï#Áþq,îö^o¶Hæ‚?¿Nz›EèmÂÌ~DRÍÆíŠŸ¬‚ŠUEn¬i‡î >ft>°äã×Ã¥ñÕ­Þ¥  çfÑê6R9~øH {«4ñh§¬¢&gÄ(Û©nù ˆ°ÞÛ•,h|²/ÑÕ’ù‹nq›±7œ¼Á(:ƒ\†a¢î‘®±†ÃRÑ+bä§ÑkôÌz†äºZ¸Óo˜€z®Ñ¸PÓàÂþ üc]\¬¹P½Æ¼‹G=ò éI«‹nTmÁiŽŸ>yÓ:ã­ZƸ„+ô¤´Æ™„!¢Àô{/¼1¹y¹ þ] ¸êÚ†¢*ÙëK(bI+sBLÑ+ìšyÝßÐy¡5Súx[éâÀªÞÏ®GÄ—o[Mʪ‡]»b'ðWY®wî¦2.19-0U€ï‡óørôÇœï°Ñ!¶?ÂB³Â ‹˜AÖÛlØ1쯭ñK„c¬‘”?Cû~T˜WÅa_õzÜ1RžÚtGº£7ܪŒ4ºn&ÿÀ¼z­u|‰/ZÛÄgÐIO{*¤­EŠ>Õ'O´Œß;š;L¹“Ðwž³ƒñ¿æ±Sl>•àø¢©Z6ÑU4 ¶ Ý>öòæÕ!’Å|üú„˜µÍ ®øðöx!ѱ-Òæ.7×इ³5nk•«ÀYe¯Ò­|0Ó?ý®¸#PœL|ÊÏLMO06–]{COûÛ[îö¸(NÜÜú*·»Œ)(Z˜ÞÇ-T‹¸ ù¦£;Çà*KSE¦K zj·ËþÞ3©’CC/aûjJ3#ZðT0|YŸò»:t`r<Š0µ!Ù<+ÓŦ5½‚q ÛÛÖzLMÁ|ùTï…Ϩ˜3Ö}_ŸnrœÁˆƒÔ\6e›"&™ d–Ì(YSÀÍŽGÁ7s¹w ³…3O}çØví ®¯`C)âh±1] ë~|õ*£¾~™ØÄ"Q¶dâ[4a±ëùŽz8ý6s‚åÁ¹É™…ñV¦2yȪœtäWM·Í-a÷îÓHÄdž¢{SIÂ:Vצ½¿…» Ö×FVd‹ôQVh¤n%Þ’UßîÄÛ$èÝðÃ|Ó6&Ÿ)ýxឥ˓µ,¡šÀ‰~" ¼—ŸJ`Û‹¨”„2!ε»åòµïýÆSX4ÅZ¹¿äb†‚bCœ7›$¸–ÖZøÄž¦R½ñ5/¥…'©+7K圴y`Ù¥Þ4ÖdÔŒ°]ªÇPx»aã¦Vøëê¦Iß¶¨•À–ýsoæ‹øÜ*dU£AÞ=Lᢾµ¾™…á„èt{¶>‰s¸é¥¡8ç)ýv.˜–Ôhò8é³”4–›ÿæÌ|–Áè›òEŽ«ïzvnô—Óèc[p þÇo¾ŠÃç øF,|_fFr‹o –:ñNV%‰hz~50ÓÔ‡?´QkëÓëPãóŠý¦ùiJþWà®MÔZk!ç…ÇŸx­«’iš±¥èõ!ò*qc€«bÑOé³¢F>ûS“3^—IPÜžAUC{õuËÓE ªzÐ3‰*¸"<|»Ç¬PAu  ob…é‡ÈÖŽS’Ÿ|òŠß›c.}‚<9 ’µ¬&2×Ý Î¯¼ˆ¢Öܽ2âŠyëæ6s+)¬°:µ ÚÜM ’+ñïYB Z84RJ§ÇOfsÁPÞzÌbGªLËt‚-}06Ó7¤h³a˜ ³pvÛ+õë*[wEyŶ †>ׄÀJå?“G¬qñ RŸÈÒ®¾ÍªTz–a–Ú³/%_vGÏ_1g¬¶fÍ¡±lö {by½¦ÄËó)Ùó~¯]%†&6õ\Ó¹16„eù¶Œ®µo`cî~~·ÛÉq;W±:;°=¾öC5vgàÖÐ5É6òµüaê—@“e$MŸäKS*~ý«9=úv)··‚A<Þ~£U 2‰À[WEk+·R‚|V]‘MlzߣY¥L^' ïûÝìfqáqùþª5 5Uf:ãéQ„@uÏ¥ÙZÔß?eãdä§2 üÀ dÏXSÁ‰Ãøß7~ŸŒmÇ»ÞÿäÓ.õ>øË}‘jƒ|‹ëz«<‘ý JqºxXAÌ ˜L8èÖ·†jðz‹¯¤»}êiÔ{’`¨?fé°÷LãÝ’x-ä3EÐ{º‡âجmâ9ŠÆµŽ’÷äGB/1Z¯â"ýééF~¬ý4nñzÐÙ®ËRö¶o)30.R¶»×%Ä«‡ã›—†]€ÿ­¡k¸[»‹¾Ý(£?æÙ󾇾±Â-/¬Þ¥Àíý>^Ó«4׼—OX‡H~¹¤VAé‰Î¢7ÔŒÛê-ÅWŸ¨5Ô;öŠ5#E¬¿ö€–ƒáúrÚ =è)G“qüírÓšxeJ0¼beíSïÒ +#N—íµº½Ç?X§ý{ô"Òû^Wá>ºe¹¨v¾ʳ›È'&Éäñ‡’œvª=ûÍäc”ïÖä‚…7£®WêVž†&už ‘±T–§ß”B/Šeø æqD‚ÆXV~ºg}Êà0üÌò^å– è‹~ÚÒŽRánR Tþ ²5¤Ôw1nœìÍÁ:ym'wt4ªGûSö J.x¦wdMµ[Ê[³KŸl¿"_G;ÆæÞ&Çè:v,w&H®zW)ÍÓÁ»0÷}SÇñ¶B7C¢Û›V°º¶ä%‘#T€ÂW¥ZzBùm†µ8¸.Èi#šj3rGõxº|-˜ÐÆ-e6à6¶ ͼä;«÷3_SÁ¿##~æ"Ë·ðJ8Žu(tØÛ#·—r…¶í½œƒ­=êLmQ¤Áœ×ý:bœv!œ©õ5$õŒ½së®IÜp©\°Ák&º‚&{é[;Û¤†C´Ä|•†Á9ª\+-èˆ_ãét×Óbæêr© Áíš*Yá ´cv˜ „‹Äi©,W'£˜Â@÷ƒn rè`±º;s82ŸÒ’ß1ëèÔmmøã[Að§]˜ËÍ–kžg3DòjKZ‹DÉt0Ç.¾ RH1Ýöð*üàã™Ëš²¿³˜ü–Âòäw3Öx:ˆ/¼¶¼Hyø™²Áv¬Ú]Ž?w^­þ+"~®7ÞíO\£é­Ým„?ÛN¥H]@0E]7ñ¦³Ý.b™f-±‡Óò…+H›=ºhDb·™_S ÀÓš¹R ª–œ÷Cöœî·oÚù“„S¦-Ôh¼\—È ÷µJ‡ÈX&›A_hzn”€âü¿ÐÔ:½\³Ÿ†ãɺ„–¬Ðø޾nÇÚ#MNtfr7*¯a³Ódñæ§äŽ0+Ñzn篽ó@ï¨jjÈöˆ³XäFU¬ µvJ­'‹¹.óÁ» îB _Öò§EœêÿÚ±]>˜ò:þ^ßÔ¦÷Ì‚EX%m&qߨ~ü[jé=×j;u>Y%ü­Ü¦±q9 ß0%R®I¹=}¨Í÷)¯ïÍ\IoPò ¢È‡ùL¨Ìò)Ùp#ë]8G©½b&PÛ|qÀÛtÕØíMb`KïÁÅŸxnüA‘¢&Ÿ?½ÍÙstÌ ø2¹G¾Tç’œX"‚Åž’ÿÔé@ n¦·§,œ¹wPÜQ_JõUt3ßñ3ÃfM• CÐÕÝÐ×b›@8KÅÕ.¿ð§xûÈé\$½9±˜™,VþŸOðm ÏÃRSñÞ½?ÜîäwúNäÒó^1/=ÕÌ ý“ëY¯ªµÔkÌôZÚ  ßëŽú&±v÷Š÷ªÛù›£Akœ‡½ÚÉ´MCH¶t†HûðOÎzøÈ'HÍÖ¢|9‘USêÈ’Á|ÍðÝ5D kÛÕ~èùwÕÚCo­‚8¯ jù^Ñä.nö‚öG?yÓ+—ãdU"J¯–˜&¾¶çÑipڋçÏ"ñáP“ 4x ­LBå5)ëúÇ2=14‘BêÁ_i¼S|ô_n(Ü 3£½µê0¤¸ßªÂR†~žÏy' 9ü@çÉÛJìb¸™.e˜µ]I ±ÉIèÄïEo³,.ÿö{7PâêC%TåW‡1 gnta…ÉQËkºK(e(›ë+pÉpšRœôù™"G’l÷‘1û*¢>9U>RZUW?Äçùê›a ºôÖ«Õw”|å!Þ—ÿÒf#C§ˆÉúy¦ä­¼D†ºÑ>·z4 ðø²Ó­iîŒö}kª`wÌÙVá·Ëï¿õÜ9×a-þEpÂoY„éáð$ÔŠ³C¦©K«LL¯`ôÈüV5Õï-eÈÿCÄigÆ/-¹Á ÔÁfKè°ý€…sÖ.K0&Ñ#²ý8!³þì^Avë.X®6òѧÀ`íc½Ã­ExžJÅÛ`¢In;Ö„ã_EdZ€%ºÂ}Ø"¶ê_o;ÔMÖ ýûA…¶¡çÇ{V¡-¯ˆ²oËI>8|³h°ÙB.$˜W«AË•¢ÀuÚýz1=c9W àÀÃû$ÇŽ‘J°Uì­—Ea‡püT»‡yBøÜêts—͇ Ñ–¾|—W£¼WÎ*‹ðÜÄê ¤Â-iÛåÓ…veœŒÌ  ÒåÍÓæÐÙ#OáÊ&¯HwÂ…ð{Uœ8ö}Ú«Þ©à&†Y”«͸føììíTò§H¦¦t§šþ2;g¢¦pH‰\àM¡?êf½ürÒã+7Hâ1_Ü3˜hGªWùHCŒ#I߃¾6««¡„­¬òî mšÈU²¿Ñø¢ÉÿTK–=æÔõV܈ý^c` •œÐŠb`«‘LZ§Sîœô½ž<'Z6490úqHI£=Ϳ־à”ÀHÊ'« ÷ žrê*Sì®”nÿÙlë̇‰0Û„Ÿ-–véé4Ò÷ý"m¨ÕϤ:hêL™-žÆlT…¾TD%ß½Ò÷Ò¬è>·¤ h”#‘xÂHjsIcu„Φ[É µ,²Ÿ¿; ŽÆk“‚òœ¾íõ ?6s>?XÃ>xf¾çe1Ÿ¯ýªø‹…cÙè¾Å m¡÷ÈÔ–(²(Ñ-Ä({_‡êhÜ¥wøîÒô[¾aW§é8#ý•mù¸Mê~MPC|R5©Gh§_A[<œZâ.>\Òu#è$­Ç2ÜÁy¡vvdñU”o&5­ÔI0ù7VBžìþt“TDT#`@N]2‚™Vï·vË3° ݧӭw骗0̘YÈŸ}^›iðÆëÌm×Ó,ÝØAÀ† ›!wA'Î̈ö§¸œû\FZÓ%€¤ò­8ô´‡êRXX÷I‘¢JA]yÝ´¨Ò0\“rl²&rê€ÐÉ!4`Xª²7ÀÏå%F±–Fˆb;Ë=*4;ìûÒ2*´)o¼òcxß&Ÿ¤ˆ6šOýÜ7l(ŒäX-L€ó½ÚϧÔzŠSW.Jë’@ÂDB'LÒ €ùüEXÍO¾^‚ô)¡Ç¢sO&Šª¤T†øWùÍRhÛù¾#Ϻ§M‚lšµrp!+¸-ŸµÓ»Ÿ6§Ë¤?Y_(¾æ7ì•·w \ÿÜ¥o¡8Î×¶E!g®5™wÚw;Á|é[>Àý+ áL S¾¦j,9eïONR'žuj0¿D®1f¿9å§$¶Zq­ÝaC^Cò"ôÜfðÜñÞ­Þ{ç`HSR÷6°Kº—Ï#òÕÁ¯Ÿ¯ •ý²ñ<v5eæiÁž×` 9y[ï ¥{Îá­ŸßF ÿ~#òKUZð_ ¤Ì€?CߥQ`9·ræVÃ)ìúô!,¦’MFòVm6õê®2 ìgƒXÿ~³íBheÎñ˜NÝnÒwwƒ³É›û-ì’€Ó@Èž±î’_RÃq’… š*—¨êÉž¼xêƒdÖïTÈ\vsÔ¾÷Õ¾¤ªdï¢06ÿŠhï³»¥ÓkÂëù˜š®á ?Þ¹1¸¾<’fÌ'»&MÄᥩ²”Á,ýGyý„Ã}ʤ)ú/Cü„Ê=”§l½2ö6×÷_g´¢ŠH 2mJ5~äUØèóó»¶{û€ó„S+éÙ-ò“,‡Ú’côßz³#P¸°ªͧ“„¢ò5o0—w‰ò9e‚³'BBäÓ’ïÐUcKî²gî ¦ö:üeIÑRÇ‘b…æWçû/¶Á‡öO”Ð)¸"·õ‹í¹»«ÑMù”çbHøç£ ©çSvîªÑLk]NæJ>¦ÀV-kã»EšÞN¢‹nzŽEÑ·ë mœ£Ã÷ÔkŠˆ‚¸ÜÞ‹.´ï·òÌ>é§:*N¯–}<¼]!”´‡Uªµø 46M­NåI— á&w¼ZR=©»úžÏ‹37&t­|$‚ è\¤{íXóCývhåiеIfkô•¦…Ê |3wäJœf+¹EZI_UtÑiB×5N‚-—#éJ`…NÎ[Ëà3Ò¶çœLÂ>ȾάËÎ~XŸ¤&'_ õ>gë—"¢ˆ´Tä¼k_tÒ”7¥vµŽm¿$¼>;¨iȯÄd´FØ ÀαôU±ÓO8`¨À˜7“L#+`Å –k.ùæç“nN —%‹k¸µ¬ÖJ„X?púGmÝÐ\l"øä*8š½ŒˆA:‹Ä°nrs“"ååmÈæò¾¶Ô'|Êñi#BìChOžJv̱8Š0Ê´_Z¡Lôi? ªV=<¾t~¥ð×}²ñ V²‹ÐûfÂ_Á½Çq¿0‹ÕâYGì±Ê}¶±"Øúuñâè5xe9}ôs¡éèìM>}kƒð?Î,bбõ¹]Ýë BPò›¦åWžùE&ó¿‡7ÃÌ^aOžYÈ×oF¬´bÙ–wæj?¦ˆQ*ÆÓc&d[†G±>_f: %áàtHÞ9^åI0=ÊS±¦ÔÂF—/Z–¿ünHáº5u×÷ßÜÀ¨iúH@#\8v„ ©\ï7Fo<']rÀ³Ú›]²Í“Ø;=ã´yÒš‹¨ÖèP81c?xÛI¡ˆ´!]ïC°ÙÊKÑ)|xû™1ŽV1^ÕR¡S‰¯DåÊÇÅÓNbC]erÖ|v; T}m|³ c-È{ÇåÚÞŒœŸƒjkºr2ëò=ux0†%ʼ‘Œ÷m*MòZ«ÉØ0²˜‚ýð-¦Q½èÖæ{¶]Ê+•\*¯6ѹÔéÔŸ&Μ%ÜG÷¿B†~ŸËÎ ë>÷kf•äÆA«}*NCÙ aåÆA6”äciXÐTùɧt~•äGĘ뙀²ô”ö<Ó{>}ÇyäÍŸÁ‰9ë=%w”Ž¸Íª¡Nvj|]œþ\"±¡ûïmÁ¬Eãqh„]2AÕ˜ÀkwczÊš±-ä‹ #ÑíÝî0‹Œ¾æ*=ççë‰!ÖQȽð´Øt =:³ò7±“:Ãwsðûû½oFõÞ ¸‰|KR§¤æé- érn6@·À:_|²—ÃÏÑœ$ƒä§QeI>†#Äzú<~Û­by?}Œ°ºu”™:Ë«]lB·£%òã*ÊÎÇé‚g•¥/ü~dï1\@ƒ˜›£Ê›È)¥ CÃSëĨ†%,¢$ߪó âݘ&©‚xÛC0ÒaãÕ“hsñÛ`Hn8ûT~ðg;¼i<¦¸w©›£Íþ«+¢_óùÁ½-Æ]4T±Lø[÷…Uw§$,ïùrkôB²V©_2"Wi®ÒFÚKUœŽj*^÷:§÷Ì21i ðä&%ÞqŸðs¥±zˆ¿KÏ«˜œ—¦VÓŸkîÕý K³1MÁ%]Æjü¯óUÑS~noµµ50²žg8…¢Tíeßýð¹ËS,Ø[Êgºº&„÷÷Ÿud ›Û r Ü·¿å¤-_» hÛU×nü˜"¶Éì§²ŽöÊÉÈ\½=tnÜ›ü4B5ηEõ›ÛTÞ‹7òûýÅ;Öξ³Ù9ÎlõZLö³Fš -½=emóJMÿmO‘¼ÞîyÀÏëÖ£,˺ݩXó®`ǛðgÇuÂ$ó}Ìå¢~&eͤÓÊ»t1 Jûøqóe;lÕ@25rjìi[6"E˜â)Í¥´fƒLaÂùyþ¸C´lHXb»¾ýT:•JX¸®~$ÀTi=V5®"úJVN ׯê`uT‰û< í ôƒEΦ#iõýÀÎ t$~´u+JäšKã—ɱ‰™ áª•¡-EsÃ‚îøªr©¿m¿nCâÈ×I²¹:1Ç÷£s„4…§=N®n‹°ê9©jov»rC.±;sƒŽ(ÒÊ*ñ†§`MËð-ÿ·8¾ºï.h϶PP!â’J¡oµÕœ»ýú})¼ 㣸PxÉë›\t÷Nàã)rrǨ)Ö5ìxkšq3ìÑKÌ9ó ÕÇ^[óêÌNËÅ2‡ŠÒ¨‚à{TsaÙ”ü×%Ýç:PÅM–ú_D-ø¤"¸—®˜HaªGN ¤¾88¦ÞéÀÆ.„h­L=aÄ G,rÕÿ˜;ø@ endstream endobj 246 0 obj << /Length1 1768 /Length2 12194 /Length3 0 /Length 13321 /Filter /FlateDecode >> stream xÚöT\ÛÒ #ÁÝC°ÆÝÝÝ] Ö@74îNp—à„àw÷Á-8 îî#÷žs¿ÿã½ÑctïY5kUÕZ³Vojr5Mfq3;Œ­33; ›@RYKž ÀÆÆÉÂÆÆLM­q¶ýÇŽL­rt‚ØÙ ü‹!é:¿Ú¤€Î¯De;[€‚‹5€ÀÎ#ÀÎ+ÀÆà`cãÿÑÎQ t…˜”Y v¶ 'djI;{Gˆ¹…ókžÿ<èLéìüü¼L†Äm@ŽS -@èl²yÍh ´hÚ™B@Îÿ³…³³½+«›› ÐÆ‰ÅÎÑ\„ž àq¶h€œ@Ž® 3À-T€6 ¿[cA¦hY@œþrhÚÝ€Ž À«Áb ²uz q±59^³4啪ö Û¿ÈJ˜o€…ý¿ËýýÇBÛ?ƒ¦¦v6ö@[ˆ­9 ±Te”XœÝ™@[³?ˆ@k'»×x +b 4y%üY: #®¾vøwN¦Ž{g''ˆõ=²þ±Ìë6KÛšIÚÙØ€lÿ¨O â2}ÝwÖ¿×ÊÖÎÍÖë? ±5ÿц™‹=«¶-ÄÁ$/õ7çÕ„üÍä àfccããà€ wS Ö?hy؃þt²ÿa~íÁÇËÞÎ~mäƒ^½œ€® €³£ ÈÇëߎÿEÈìì3ˆ©3Àd±EþgõW3ü~=Gˆ;à#Û«üØl|þûdðª03;[kè1«®Ž²¶š ãß-ÿ×)!açðbæä0sp³ØÙ9¸¼¯>ÿ»ŽòwÿŠ•·Ûøÿ*÷uŸþS²ëß û{@èÿ»–ŠÝ«rAº„®ÏÆÍfúúÅþÿYî†üÿSù«ü¿ ýÿV$ãbmý§Ÿî/Âÿh±öø›ñª\ç×)P¶{ÛÿK}úkt•Af›ÿë•w¾Nƒ¸­ù«¢™Ù¹Xظþ²Cœd î 35ˆ³©Å_ªùË®ýǼYClAjvN?n˜×(6¶ÿã{2S«×[ÄéUšº@¯3ô¿y¥mMíÌþ6nÐÑèüzÖ¯ˆàÅþ:•f ÷?Å `e±µs~ ¼öèÛ9"ÿq°<¼VÉ?L"^6«Ì?ˆÀ*ÿâ°*þñ½ú4ÿA\V­Ð+Sû¿ˆÿ5ð¿ˆÿ™¾îò?þW‹é?þW±³‚þ9¬ààò|-lýä°š;þ1Šÿ„¿–ò/>Û+ã_üW)²Úü_‡‡Õö_ðµ»Á×Üöÿ…\<¯èUÅvfÿb¼î‚ã¿àkn§Á×çÁ×mqù|­ÌõOø?Çkêâèøz×ý9‡¯gÿüçÅ ¹ƒL‘çgíLƒ,k‚Ún«Ä‰Ü˜·F9¸ÐúÎ#.ßoJºî¨H Ý]p~‹œïœÞ޼[Å>à(zi´ÒÅg³2\ñNÀŸ¯kƒ›l0yc ß8)¹pl+vt|0æ´53Ç?iÒp»›¢'`r8ÛšIß“¢iª¸)·8A m8dA…ŽDxËÇlj ô]<ý{…DµøÔt»<•Ó¹ØèQ‰ÌÞ]jï0÷zßB 4d-•hÍ^ñ2}_äËnÏ;EãqÀõf—ôÛ‡Xº€Ë¶ :§MQJÁ ùÍñs¹óÍhy ó&¹þUØÞXÉÕXŠÓU$ñ,wÚuCA†©¢–ˆù$­|ONnÚ’®ÒRYa$”ž9$™‰Ã –,,Eo¥êÁ‰xC-§¤Œ©Ô|¦á4œ5Í ¯_ì¦HÑŽ1&‰ï$¾P™Ñ–¿¬–Æœ«µóÚº1äP¨É1"ÎH(tòˆ½yÆŽGdù!9x)#¬m´¬ÍØñ¬PÕÇ„ýÝf÷Ùv³ì}=ï‡#dÃzf‘»Â3«¨®Jö@XÍûdæ¢Â·¹æ; ¡>Îç­kb^„4IÅãzSWÆáòÈÞ‹¹NXðÔSóñp¨ÁKP­LØ[ÏÇêCÈKZ²uÆéû”—`íêp\J©ÏXŽC´¡)S°XY’WXí0O×§“ÑÍŽš’žZ×+ªÄÚKH-ÕYjrîW²,yõ8Ѩå]D¨óÒ2Nž—<è¢áQcì—OßjÚ ÖIË7¾%ó_uluWSþT.B³˜`ŸO ”n¼ómE“%Bm<(>ÜôÏ™¦P$ûF„½pŸU’ ʧê«Ô2´ïžªg/1Àâ öÈr½ƒÇÄÅ&dû@G5º7£ëúŽá}”SôÚ›çyÛ $ ÝgmÁwù,½@2^ÝþIn¯OÊ©ž;r}(ZkIW–I¢~=$k_á ‘g”,Ê+ äñ}0I@¸4í;Lâj ·W§‡*B?~åµñ]I0f„º;…©PTÂÂÊ'‹òj¶ã…P©ò­UÆÐ‡ã³[TÁ8Ö³kÝúì¢te¨(T·fUΓ.ÈÔm F*:îto–D›ãã9Ù¥xîcsÄÊüN4 ý¼o¨„5\R'‹µÊŽ™$[½˜4cõƒ)5È4¿èñà¾î/Ò§^I°{OˆËí"¿B3ùÛì›'ÙŒÉù^q&œ:Lý„æ'?Õ«âŠz´]šDã§=‹U]'YqŠÚ ꌸ¾Ÿ)Ç­B/õ1:¼¼Ø”ÙI”D©Zcc9Ψo”$¡IÍ3¦[44ž8s}”M}Œ»Î“ãòžüSe‹+õY-&l fÝkù)¡3 –>qã½TwY›=(hý×fÅã:k ÅßôŠDN £â¹FÓ`†-Œ̉ÔÍ¿æíœUV“ø)š)ó¡¥ΨúKÚÒ±×=<ôsEüªPyÒ˜^±êân—¬gìwL³)-_¿A5ððp Ĉjúa:Rr4^AA#aÅ0^µ÷¹â—…ÔD­ÌõüxÖ6@ÕF'àû42º¹ X<¿å ¥€óãÞ$¹Àïh´œÛP|f¼k¶Ë Ü))¤÷ˆg1ÂAœØÏz™64W±Ö8Û’CYº§Ëý'›°¤b‰½‹Ã‘\$™¼5sÜÄêÔËñìâLü)õ΂Œîa¹Ä#¾X´¤rñÞ©*ÄI*è­s)71‚"ñííô£ƒi~n¡Nþ—ÆŸßý=j‹Ãò´ÏÒK-ý°¤Ä­~жäöÇß| ­QÖr´yñ"0÷WèɈ5 âªcÖ A¥€Ê<Ê„{xÔ­DÃ_:ÉìrQ‘ Z¤œÏö€›Š$~£¾)>ó˜ßùY•ç ÀG­ðºóÖàóoÌ÷2£Þs€n=Š8ûùÛõ¾$Œ*VŽg>€&ÞÞ×­Öâ}VÔ)3 TÄÀA¬<ÏÚ&¹D¶Ï.›x~Õãš‹vQ¬zÆ´æôܸC%{úUYz‰Ž²ßÉ“š=üÕ3ŽÝЦ»uÀzsÏ’Š;±/Tba|(¹eY; Ò—j—ugï-êz æ~~÷4ÁÄ“ŸËéð\¬ÝÝVõ¦”®ró‘ØNïýž¿WÁVÁIcáÌ¥.àÒ¯øÅíû%£­äô'׎ëYg;¨ÌÚ`-šG™>¡Þ[¾ãïJ§­š§cc•øŸ̆;qÛâºì „m‡Dá¥èÎPã6…E:}÷&lÂý ç=sT¸ðßå¡¢O^0 Sq°RAaà^€} ³xrȨé5¨‡L–ùæ-‹³yâÉlNðÒꇥՙ%ÉÐ~:%+6N¿Hù—Ÿ×ë—kp âÝ›‰ë-ŽÆð·*‡©×À&±ê̘ծU@#.w1>Kì,ÁàUÞ½'¤ ”?; X"–¿²Ï¿*ı`h.t3½‡«êÞÅ":¿6ÂÈ«ÂÒ¶*zÏ1+K³ílUÀh¡#DUl¤e^¨t0×àòôæÒÔ“_ôİnÊ㱚N°,‡£zéhÿr„yîöo9A¯æ•ÿÏ}ÇòBõ¤_lÛÓ&Ä• 2Á3ºÛ¢ æÛÔíS[m‘ûÿÜ%ꡦ'º‰N-Ñ8ÂÀÔŸ,¸h@v¥7,un #`Hðo¹òÒç½JÉhfcsáwàezd­„iÙ߇PPš¼‹4n ¨ ‘9Êwê'þ’¸Ïuèä~—ã²zŽÝT³9Û€“¬ ¥ÍÎÞ[Üï| –$¤t©-SâP>+b–Ûcë£Ê. oko,¬8ÔâZÖÒÛ¥¯‚´©tjBHk¶7SÕÓ·ÈÖú=’s~«ß’Ö¢Òi½™§œ<‚ñf¹¡AÃR…‰d ¬éð±Ÿ5œ )èù¹ÄI·=l¹ÜI¶d-Å~®å"ŸÈÍhðÐö Œ0#ŸVOÆ:雿N„­*pÔïOz°°ß!n@Ñ‚r£hÙvv ô‹ö±•¿; ö7ï\éëÛ•a´ ØwLäœÅ¯)fÀuvÖU$rÑ€U"ˆ›Å<.Êæ‚Þz3¢fƒ™Ñc²Þ|îøXnÂ?ÔôûNE£Ø1¨‘šMñÝêI?ËF[Ì¡ _Vnª¤W“žË?Êj äö¾4vìŸ=s-X—†ŠÚXò‹žÍEYó›à»µ§|¨ÚâTˆ›, ÇI>¡”îgŒ«q¹Ñ›X×é©€sÝ®ó·D½Ó4kήíÚœçƒ9Í]± «Õñ&¤w¾§Í6r–áì>O­¥FjøÞË@¾ÃüÁOaÃ#V5jk×\vwF;¡˜‡ÄëÂÂ[XxÑH©ù®iÓq¡ј¥ƒ+‹?ùnµ¹?6M¡ï£ü˜ ß»Á Û ­Ý¼<5±OGcš4 Ið?ø ˇÂÎv”³Ý˜î4nÚæj,vÊ_‡Ù×y@4EG<¹@ µšfç/ KHÄ šz†‚OÌZ^ªˆó#7 ÇÙÙA.~[ã‡÷cTÏÊêjcm#úÇ£n×­¬®b–M£/«FJIb!ù7%nÝ*“MðA>2Kfº‚ˆÍqCÇn‘ýÛ'£Ô-@å"ÓîlßÖÜcâ3R_EF¼´4‡ß¥`0–z@Læc¸7ȶ»¸J¿ìX#BhÝ¢wPË Þãä&kŠòÓÃÂíÎ"ÖHГ1¬9éëh@8÷xŒsuÁ7íæÏßÒÂPž^‚öÛÉkÌëÐühÁÝ¢µn­áοÒs?Ì<8ß\ÑÀMÀd3 QB=ѯë}aòür×ë9Þ ‡°]PIÍNž”ÕŸÝPUòžÂÞeìhs Ôpd/ZÙp||¬Â“ ¥C1ÌhDsnX{Ñ0d+‰ü©èŒ}â5Óa.Qû@1³Rxs"¾%_]öŽŒ/Vÿ… »!ðx–@×ô1¢ûS‘,V´“+©¥oêP‚U©Š9ñëéÛZaøYŒ‹ëX#m(Òì†Ižûd ¨Z'LT:ÅüX–??¬Ô_~~Á$yñÅá^o_i,tšVw©8šO”µ2½^;öÊË@ò.Ôh¹ƒyR‚ÆDÙ%è3Àu•·Ø¥êàãÎñàá;çã³ÛÇ`¾ÍC¯*ÏÑR@wLIÌ^iÙhŽÓ±r¶v5ù=ö †oлf [ÿ»µ×édQ­ '±<^úUúû{ïš÷mñèoŒËPSñTR>ñ¨mW²W» a°’7F€ñˆ~Õ32ÃPÚøº±¤qoIÞ5{“è˜÷ÄŒ¥ØVËèÔš#å™ÍátÖ WôܰÏÅøcÏ·½=|K@DÜÖ×þ^‹uv¾‰F÷%fz09gQ+†IL+0XЭåù¦xš0븪Äs mªplß4sƒ»lo*ìÙzܼ“3ž1¦"H¾æêÁºÇ@‹\Å–›—5Lg¥uF|ÿòþibèqgÔ…˜›Á¤á-ÿ£Êú ltÍt¥ÏB#eâò,ï}ˆðN(«÷}½d¾.Gºßôð{üNr7ñ”C"«AZ-e!1͉€ èŠïVj|`ÂÒfÑÒÝ‹òàÀ–‡Ÿ"kýÚN‡b‡>šÈ I4UÊôü`į¹£j%M4î.áßôá}䔿ø AÞƒs?¦Í«“àT*fÕašp®–ÞåeÂ¥',êk‹?vÄÀ™ ‰ Õ-Wœ"¯é *gÿåöt~†Q¶9I®‡ô=Wû5Wmpà±ù±Û­4\˜s½fZ Ü8‘m%/'_€-t"6ª¬6zØ×;…bÍÃ]’;¥–C‡'øa£R¯AÏrÇ2òKObshõ Œ4 lKÖÆ¨6 ©Á©˜ºE;Ÿ„2¿:[­åPâê3ì€mŸ)´…1Œæ[Åå î<-ý²~] äÑè~`¶õ¨ÕšCçþääP±lÚ3[‹¹¥]6…ÿå:ƒ¡›ù«-õç>Hõǯ€ävaQ™Uò´9^dç|(ÃO«÷ÏÇm uu%ÞƒœùÖs €ý"TŽÁx>F\ülû­\÷ჯ8õÞa—s—)ÖQ]逵*W»ÃÔnk†©ìѾè »ÝpR¾»èÊGyLÈG]×ÂÙJMðT8Ï'`¼Öy.¼ø…Á7• ›L¶7D1mßrŽK¼w6ûÖñ®ÞwËãëbNñŽiú^~eôNã„vÀøfIºÌE®/WîD©oÌìn õ=ÞÔm×r|îxáÛb̸g÷Á®ë-<”¬§'U÷ØB\dõWi­ûß*ž/oS ˆÂé…™S‰,9"`ˆÜJ{j6BCö—R‚=®á´U‘>ôdËŠfØÀN”)õ¿ìü:ƒ·V³©ôÇj€?Y,±³eòðí"æšÅÿéT=$Ðë®’VŸA°¨¨ ä ¼GFŒuqv£kxœ¤ò†öâÔÔmŒäïþZGií[Á¹e’ùm{áa–3z2TA÷ÓŽ‡c]¦¤ 'yqn‚?a)ö+î$Kƒ¸…»g&’xùî£zH^.£JšxGŽ·¿-GÁllM¬ÞHâűú‘˜·™ñ¢x É~þý˦¿Þsù}§Ó·áÄ13©*8D]¹{ìt}³ÅŒxËv_zN÷%jÛ'ZkT;ž¯¢já}¥®þ²<·=Oõ·È¸¹˜Þ"÷f㻉.þ§õ¦_ lƒuµo¬øÄÐÃ+Qƒ¯«˜Ð’Å»–`¤›÷¸T$J\Ï;7<œ1Æ= ìËš )òc’YD»Fâ'*§Y—¬—>Z/Ó¤ïà¾Ã×øôù½›ù·Ëø›[ƒ>>Fyn7=9Wœ¥šï‚Úý_È.W£TßþX‚Ãn>å:O [fX†ï¹öúq¨ÍóÙŽQ‰úç²ðSÕ- “¦µÖu0ËŧÔÁ©* ³ˆI}½J¦RT£]Ö˜×q»Y}·•)êêñx`è>Ö&PŠýüKý&O #D{‰™§´¸7ßÜÂ(_Û—ä|JþLèÖwÜh#®2Òæ§´v¹Ñ ûôaFoBiQõ¬ ïÆC¡L=ž¸S –ŠJH·¿Í‚VI•´êÍ8!zú1ÙK-¾¸íGø‰θϼ€“<«$sÛm[Òƒ¸°Rd ž“ZCËæ½b÷¨)Ñ€ù²xÕ`.;Ôß—ëª E§7y×µÏ;ÑŽ)ÓSR°á!ý|¤VÍÏ¢¡oµRß3Ý«èí É7?ìÕJHïÁ)´Ó8¶}0AªRÕìœþä Ão:@y[PjjšBØ2›Ún¦ÔŸgÂÖ—<Üùõ·Eï‡_§5¸ …ý†iÙ™Ïó„^‚’´ kyS]Sú\(Oîl*Íz®´MÊ…-á›h Ù—Ÿâ! š’ ¨þÞ¼=ŽÔ÷$ÞÈŠ‚)ÕÅ€ 4X÷غò;¼Ü˜~T4åŸâW©Ó‚•7sý>è&/œhí¹¬‹ŸÃœèé qŠ–Þ\C®‹“G¦³ãiôÎ]èÆÞö&÷UôŽkÚ%3ç"›¨á²fýÑ««Ë8î-6 òʱE•Î 0àühË”æÍg@Z)™ÍDÐ&1­3HÁ ÿaº±0Å<±ò7ƒqèãb,BF¾ZH„$ŠdPkæù½ÒŒ´Ôf×ÒäÉ;MÍQ(»wΪ&áH%ú_´„Yç.üœ&z¯z;É"¯œKE% jÕÀ2…×_‡‘–X€GÉt’äs+ÐR&?®‰GÒोÝßÍ[R5Mèõv(¾Šg?O‹þ¼“êgå,ÖžÍÂïË}~ç&Ô­€Ba6Õ„õõ~N ðá@…ªtÑ6úê;ÙRäõz=ž¥ ꕱɺ=ÉË›>ˈÀ3Î÷ÛoD.Ÿ¥³ÑM‚Áèƒúô^Æ­õZ`<èÞeßk:ë7™Á™cáÎx'Š $<(¸¦’åÅÊFyQïšÄïíÛ"·ð§yî…;\ œ›{Âåtf3¬mêŸlíè¤SôeôêiÙíC)¬XW|M<6äŠð3ÜY¹’Å‘EÑe'¶jcá²ü—‡Jˆ¥KÝV1ܸP›ÕÆ÷ˆÞ×òÀ_)$‰¢ââòêKà¨Õö“I^â+Ó´ÁL.35WÙ°SòJjÂM3ïõ5à&í¤ÝÓ(XlÕ€$ýèüö)XG9˜8W‚½öt5ûbN³,Œ`ðÎIª_!ùú'C¬÷<¿$ß)Y¡‰õ— y ƺ²ø¼xâÖ#µYÙ¯}'Wm ¥ó!gÆÊ 4tñÐôÉ>þgžN5K/ô_™TˆéÂ,éõC¾-rD¿žGvè/>ØôO„dª¼IÄžHAŠnÁÀ3 Ô+Çc*“jBÔÏ+¢Wö·¬!°3t#ÚRDZŸ=xr3Ó•nì øBNqº/Ù r¨1Å’×|¥~ñ†¿lÁ/úÕ+oŠ/j:oíòC}»+[ A™´ÇVâòú˱‰:,™Æˆ—iFZ.,O.7•j.p`Ëž†e1–]çõ]€^qt߬±¶c‰h¨Ã§—àÁj ü“eôGžÀÁ~ÛÏš:ÎÆÎêIp‹=·er°& «J¦É™zÒµèÉìjCͶ¦ULóZ¸À ¾ÑèÊaí"Fß\m’³¡Œ‚öýma“ÌÌ/4âú÷ÅÆÜLtü‡ywÀ!¬Ñ"¤è %ŽïxÚäºHÞ‘;V2Ãxš›ÿ…{E.LBH.bJ+{Í?»øí!)Êf³†„“Wjñú•¨%6K:¸Ò£Ãy9>ñb _ ½½±ò(E`±wšÄ ­è$‚ýàùŽl*'d‹™ZRÆ«;ÜMϸ/.bÈ‹• ýùí{?¯{”øÓéošu¾îø¬ðíg‡Eƒ´˜ Ù Î8–ô.ì:1Ê€ên ŽƒÁŠ=×ø¾*Y#—+Œj¨mé‹?~ºÁ»䪡«Ñ•…Ö/"=†xañäE4‡€²s,1Wù!]çn—è_¦#‡Í7E<¶ÿ|ÏþYô6Ò8…®n¡i¨×ø§Ô¦¿ ”;ÄèwÁ½æþþw¦+:•_ÕÚú0Åx4çr€õ*Ô}­C.TZ”SÒßÄ÷Å[èõ¶ôýQj4Ž«ñˆä&]ŠÓd4¼m/³6U±“ü­tUªjõñ¨láÈMÓ$`<­ãR¹…Ú.Eó¯>=–‘IÕrqØQþ™2d¡Ô¾ê=³URùkÍX¹›47";‡L&ìi³•™ZT„êÖ¦ÓÚ~ñ  …y#ÚüLlfâ)÷ÔÏ%ØÄ¨Ì—ýè½cV×MÑͱm—Õ'Žêd<ñpýèY{Ž™ FHó‰ lšÝ d»­Éc‹*sÔ¶(ÓLc˜¨—ëGMRÜÿ&àŸLÛL¾åìð{b¯œÍ-¨ž»ÂÆ©Ý,x€O 9=ËQõÌí ²ß©ÏJ{Ü"U¥¦“Äép$ºòus03c`& ^ò™¥y"Ý>4·¢ÀEÝ‚ ˆzÛÇk䋼drâKÍAÔ*bóQb·þvéð%®Ûã,i¯\z¤M: ˜Î3‘ÊPÛR¾Å†Žk¯o×ÖÍG_øÖ™Dñ—œ;=°¸Œ°¬µÈé×è¶GÍt2݆©¾V…è\q36’ SµåBõ$ ÷’Iƒ7"k ÍŽ­ÿE~ä®wæ%ŽA©“óGz×3à ™@ÔhDü{sŒ–i79†Z ù{͇n]9'ÑhbÔ¦lz Q¨¼»íK^ˆÅº\dÎDœÞ‚,„™d¡ïÏr}°ü<•lŠøçrAÿ±Žg¶Œ‘¶Ñ>su´1Ï[úAFÍH²{üœÝY^‚‰•¨¬!ëzøB9êÄDHXÿŠÐ<€@‰%DÒqžWªù@ˆ²å’̙¬Š…ÓÓÇÅá3¶œ4ÓjbOE“Ãù_-¤aq']4%ùž|O­À Ôõl_ÙÜòÍTÊÇ¢œ Þœãog˜×tÌ*WøŠm/”þ–¦Ù8là¯ã¯ÞŸu %ùøm•CQ(àÜ”‰ˆžô1æÐŠd¸ŠK²&´F ÞËìØ¬˜jI=õñe>˜5J‚P—¹™™ ŠÅ]nÉô~ITå÷=}œ„,«.§~ÜYÜlSút1Áë__™BB¥˜Œ'[S÷ †'£7TA<ž§RéØMÚ–”Sih¤b1Ç2•%ÅÚ )9šrzDÊ`ef 2•[ ]Únq¬]î{ê–;§GŠ1Ò´ê·—Zh᧨¦Y–]>—ý$"5>wÒ„C¥º(ÄhS RÁÂñâØì—0^/â(Ì}Q# ÄÝí^vßÒÉ ©JŨ•QÌ*v“eŒm‹€›GN\ÒÊÕÁDè°ÛiQvÇ:?ÎÓÍV…ð¾|Ü1Ùt†<)îG‚K ƒ·1ƒWžoˆï×ÀMW_Ÿ9 ©J]=ƒQhéœ'” ›÷ýÖòɈC¶©Í”ÓÝ•M€4ûOÅb5gû7œÄ£n¹ŸÊ®5ü­“c›µî¤-LHJil|4­¼$hI#3ÀHäÉÁtªÛ`tra Vi”û3ÌPC÷sšªÞïòY-½ÛÄå¸áž½·o’ l¦ç?ȼ ¹óëF~ÓÑ]ÕÕî~Üîa0÷Ì(DE°x¼²ïš¹m­°„ãJ^6r·T•ù„2ߘÊâ˜zÒ,û¡e“·ÞjˆÌ@dz X óœó¢™ÐWsëýtmÆ¿([ø”ä0¸Ç*]Z„1àµzù©¥uM0¶æ:£gùÈlö»|ù¨­#bWBþ•§$–þ¶øm9z£u€Òy¶SçÝ3×âV¥‘É È[1ö á'ÁÀ^×´1"ºC»wRÎIÎE¸½KfYÝT¬öѱ‚½½á)JÚê;C_ßõµÐ²Ÿðs§ÔŽy¬Åã%m ˜‘B­ÖX¿Iç5ì%‹ú¶¾9[ŒtñÌ^LŒD¶‹ñh…U>lùLe¤(ÂÅnNÍ$²úã³ï2#§ìúñéž[êMK¨Éáä–ìèIÕcòÀ1Ùy¿¤®#_ëqn†ùÎ¥'ãj¶ýO¿jLR‚”áp©\;ÆP ÅI®“6Ó•Ž"U#ÜŽ•†¶õ†Htoe÷lºŠJ½2¼é½ŸÒ(E®!Éî“•G%p*zøuá RôÉpqkoá%“9Kœ2¤ '*ÎñHV¢ïBe²ÆÃø.N±ïð\·â–o!8~•+C›úyŽ]‚¾V0n²i=ûkMøý¶P“éµ(é•ô?6%¹³Ýtä⾈ÒÓšdÞgñ‘wT”ÊòbÔf¶+gÉ!#—A{ü^qëa4…¬y¹ä_± ÛÒèâNt ÓÄrÏy­ÒÞ®ÙeL® ;’ŸõšF·ìî¥æ^G£pT ï®Â1ßN¬Ü÷4œOÏø!<p³CHàZÚ¢5O)ö3wŸ ^Ú³v;…(cÌÜeîX`ºo0¼Éˆ¾ühtœ¾íßôb ´> À>D©°$q«¥Çá ù f=*2ÓPاáOÎuxh DíŸr–VÖãˆ&üúî$*)µ!P;1¢žÀ^Lž@WÿÄæB‡TÆJÑ©Tšï$ÕfWY¥&®Ô#DKøƒì¥Õc‰Î…ÅGeD“91%Û¶v`Rá‡éOı¶ôK+×¥ïE;½6s©u»FÛ| æ¡E&ªeuBcW˜ÜrAoÑÜû”ýAÙI‹§\œ4èÊ]oÄ —omlÚ-6ó"$ß{ :rA0·/ÞÆÖ*%]çõå&pðä™.ü¨Ó2ôÈ g)Fs™'NŸLeyO‡’!ĽX¡2iŠ!zÐ,!L†ZqqV3SxÑdæiþ2Ó E%}ÙØZâ‡ï“e þ’È`…@‰Â©0òs[* JDO(·£ _pÄW`< Æë¡3m$ï‘ÊW¤¯ƒsÂ?~Męڿî£YY±æ ºM–Ó&t½4kÐW00kGœvR-P)”J|—»èhÜÀÞþ¢Ñ˜u7ŒÍ³4t›kÍ«—¥—8»ªïÝ>Ö[$×K•ÔQC‚ÏèfVÏ12‰re™Mtƒ¾`j>žÍ ŸPÄP‘Úë´Õjþ‚ö®½Ó9fÔóLª ÂÜŸ–½ékZ k7'fÒ„qM9°3?X7Ù”Æo>´[—ÛèµÆÔ é›ò2_îì]»²\Ëì˳0ÎÆÝg þì­¢gNK#oŸw¾©0}~G6á"¿¼H=½Û1³ÎÉOg ËS‹£&6Ψ36Øäu1qgž±‘^ á¢×·p!âÆ÷00uÿ$l.Î.Ë4;ì Š3•*Æ0ç€ O|ŸªÙŒÉñÅŒ²ý]Þ#¡COñŒ×³Cs'Î﬛êÃÔ;Ô`›²¾Gv{" t}ÇE‘ö‰sØ+ïbÒ:»4ªu?/¹Op®ô19ÂðIâ8´ƒ;õž’ú¡ö=„ Æ³åèû3ª#õK%‰’_¨%–uÎ9î¶AÌøܬ™‡WV<×±žÕño⣢ÑÌWOÀôxžôÊkhÐ…;ïÉKï‡è]«f¶$2ÁeidÆŸ˜Ð¢7 „©Za5í wÙ§M¥ŠˆÐ}ÂÏeˈìn9Ô>¢>ùUâ]Ùúmé5àG,ºôéúÇ7:vƒhk®¡BßDò@N©!Ÿ‘!³Ìæ0&ÈqÏ_À¡ï…ÆŸtŒ è=êÖ>¦S/î Û ¤”r}{ÔêEP©wZî| ªs)e­.¼Bè”tòXKÑ)öÚØkƒÖËÈÓÑÌÄy€Êi33µžÞ±Ú0{Ë:©È=t2_ÞV]b7”yŒ¤á=åî‹òKÁsûk¼ò–©Xr õ¶"?¿1f’¦>)—­^†SèEÍbîúÐÁÊfÎ ëÆµöÔ\Æ,¾§µð"6ã~diŽÑ^ÑÊê9²É™NϹ]•Jqð¬ï›:œ£B%A²b“!Ùmªh’[òÖ(PXc?nÒñZf–]D#§Äûé²,œš*ê2ÅHé\c\¾Ì/ç©Wš¿É/¬‚—¨úÚS‘‹$kÕ÷1š²ÐCCÔ4-­c—6Ÿe`z؇ÂL2ÄXoƒ<©‰e)GÍØÐÒ²½Ïu¼L½Nß—Æu·»sY€ÓK­¿ïÉ.÷lEÉæ´=Cæ¶ð[ã»mTœdNøˆ|+Î…ð§ô³)–ôàìátZ¦ê™Òœå®Ç»êÔ.Fa®7]_šøÐ ˆÐíÚ ŠÅd‚û+ñ …ÍÑîF¨§´Ô•¶>R«¡{*ªCY®¬„ž¬.þ, øÒ Üî[¨µ|!µOâÆ‘ÏçG÷ü´‹»q|…ø!õðòA?Hys±B±» jÿÈDë£nYü¢øùíPÎ êÞ^ÝV. ƒËÚ#=¥Ä_pqÇ8Ì‚^L"ýb`2}(î°—wÒxV¡Åè*ØI°Ù Ò u0ž‰u<ÆËÜiÀñaKáŠÆXKÿ>'´f•k%€U¯ÖôwÀÀ}î£'£ìÔ¤——hÕœËÄó¿Ï«Ê9†Þ=)Yu*{ÞKtXÒ®[b‹ÌèkÉ?Ryºz~õ¸AïÚW~4 Ç$ÏiRŽc0† Å7I “y§¢Ô ©. ¡4ò4E%…­làżoP»Ý(µBx@#‹ÈÞ ä¿:/`ÛÃí¾™;š§ñç.™¢I¾q¡‘ÞŽ :ðQûhÊí›â?½l}Úø’¢&¶V¢dïF ¬'¬è†>öÓÄ'2Áq±.mCFîç(Š’¥wlÎóý>¦Øè·L"ç%n™nÃ8pÜBVx+¿éY’ üØÁP )´+¤®º#jA룈~<üRZ¹u[+¿æ‹u –ÌÎêP¾ {×Òü‘.X·ôÑï‘:Æ/íŒ W¿Še”UqŽkÏ¿ ‡ô RæEqE”‘( b·Öz¯þv¯—ŠÕ£ãöç§U‰Ç$Ä»Õýj9­A©-Õ<™TÂê)¿:-Àþ_°I.-Ñ3”l¦‡.á}eg´Öö_6Â,áx ¦¾-ÔòHM̶œtõÕ“jIÄéüëÅÈI °‰×Ñ{ÛûÂ>°} ä”4—…±Üææ9îƒ?t· bz’Ô,ºÆŒ†É‰¬ï$_~?3г;!NmØÃ4%¹i“‹‚)GKÈeÔ\Ÿ“3æCuqºqXWø>OèµÐ2%]#JvWÒ’ 2¤ûuT‰èø†æ) Xî¬2«'ü€Œm¤ÄÌ:{t®%!fèhÂ&lÒ‘¨Y¯’ÛUã&XoÒœîV‡ù.·&VЧÊMž4#? ;õ„Eá'Ä>xYš·Žž§KžÏ; ¿ÿíè¶þg'bvj‘:äù6txدðåiÌÖi¤ï0T*7··r”ýæ0 XyÄMš×µ#n‚>¹³FuÍÄrÖ|ñÖö…h6è—£ŠÑ+TDÂÙŽù¢ `Iés]SÆ["„0³Å–EøSé5îÐ.jð«RŠ&[˜Ôà‘kÖ=»¬^Öú¯ ã$«qKÃh¸¸¤Š ¥ÚHH8ʆâl"Y,¿-“‡v+ {ç9dÒžN ;¹^†fig ÀýH’­ÈnX,W¼~ÂâU×öÛ’}¯ŠkÐK9˜B\?>o.Û~Ë-EÚ,ݸÒìÕJˆ´IG<¤žc´AQG}#Ð'Öa§T½;±Xæ²ÌNf]UßèÓ8 JÇWºAâ•Vð#Ù ›udPœw¥7OE’J Š>`û=0[ïÑ~.Sƒ½8V±¤æM”·J–¼_]µPt¡Ž|INµ!?€ žlñYŒÈÿF˜Tÿp±ÐhK•íѰßýDT[U%«q’M>š7¾wK9>ƒðmÛ+S´–ÝÅœ ·;G³ù‹LQ-ƒúö2$%Æ¿&Q6ÀA4ЕзU{w%‘ïðç¾õ•NɼlÅQj^Á¶Ûi…ÎG 'L«¢^¶ùטÜê #¾?¢.¥`·f³OÃS‡Ð±ý~”yªH*û•fù !‚Ñ`7"aE…Ö+d"/AEq2+«¿ŸU¹ÉÝ–¥ª¯•àŠÉìJqù°/_^Ng[µz­:¨IÒ«-®X7f+T Ìy £t JÄò1wh]³˜‚-$p5§´Ue‹Œùýǹ%(!õÉ^Ýè`3òrià¼dŽHÌ£h´ú^$š0Ê·¤]«à•3R`‘»?ì$)PÄ€†Ûá­‘ÙªD¡œ×HŸ\ 3"(w7ú :“ÇHc¬‰±j1ÛsÜB¾&=ÖX,¸líZ,[{7+lá8йÍñ(°ÃOê:sG·ˆ{ú[ƒÆjÂÆ¢f¶6磢cìvñù@µÿü¹ ¹tœ%tŒehïC÷÷ É]ƒuÙd–ör}¦‡Ç•ëŒØWñ„³ Î韅[¶Ä€Ò˜¶‹ Y^¢!W÷Ã䉒¨¯ƒòψt>t£ŒdXlÄãoWžz®±çw¾Wu5Òexæ$23Ç,2vQ8¥öï¿ii8eâi˜[¨ãb^yҽܿ|BMü:yFÐæ¸LؼÛ"œê&âÅ<ò.ÕŸä`¼´Ÿ„Å×a6,Ê—tž æ˜ ¤‰W€CkÛM¸údÃÙßtå€Ó‡FZÓ?Úú,#˜ª®_ÆQ“%M?ôÿ£ÊæP endstream endobj 248 0 obj << /Length1 1444 /Length2 6754 /Length3 0 /Length 7728 /Filter /FlateDecode >> stream xÚtTÔÝÖ¾4"ÝÍÐ 3tw !Ý( ÃCÌÀÌPRŠ % Ý’Ò”€”€ ˆ(ˆ -‡úÞ{ß÷þÿk}ßšµ~sžgÇÙûœgnv#SaU'¤#L ‰ÀƒD€ru3° ň¸¹ÍàØ_4· …†#rsPGÁ ˜kN‚¹ö3@"º>8$%’–b@ ì¿‘(9€Äî0è"04·:Ò+wqÅ\oó¯%€ÊÉÊJ ý¨zÂPp(0€`\až×;B!S$Ãü#Ÿ‚+ã%'*êçç'ñD‹ Q.JüB?8Æ`CÃP¾0'À¯†·!ž°?‰qÌ\áè?¼)ÒãAÁׄ C ¯#|N0àzs€)X`èCüqÖÿã øël пÓýý+ñ;…"=½ ˆ8Âà ÷€ µôE0þ!áôËâF^ÇC|!pˆãµÃïÊ!-UcäºÁ¿ÚCCQp/ Z ÷øÕ¢è¯4×§¬‰pRGzzÂ4ѯú4à(ôúØDÿܬ;é‡ü 8ÃNοšpòñ5GÀ½}``¿\®)¢ÿp.0 @ʈI`Þ˜?ÔUôWz³/Øo#è}ÝAp Ò à|Ý,î »þ# DC|a ÊøwÃ?p‚C1G˜ AôŸì×4Ìù¾¾|Ü` ¼Öüõû÷êε¼œ€ÿ¸ÿ¾_QmíÛZÆú‚:þ·MM é—‹I , }½þg#ü¯2€ÿ‰#œ‘Ù?Õ^Ó¿*öýK| ?àŸ¹n#¯U ðýGäv@I ôúú?KýwÈÿOῲüo"ÿï‚´|<<~›ù~Ûÿ3Äîð—õh}0×`€¼Ä»ZÂþ ­Ì îãùßV0r=ª—k1 ƒ$D€x8Z îs2‚c ®$ó‡7ÿ5jp̉†ÿz[®£€Àÿ²]ÏÔýúý@_ëò· v=>ÿÜWE:ýš31I)…‚]ßô5’‚®Ò æÿ[ÉQs¸î1àŒDýºVP êö‹û¯*Šü”ˆ¢þ%¢è¿ÁëXÌß 4@Ôç7üG‰PêzT+éºþáßï æƒ-Î#¡ò‘n ‘§uªL~Âë¯Ä$H†b -×4|7ŒÃÕξ‹=~£Úûúóã³”_ÅʯZÜ­hîwW‚2ËÑ.6uâ9;~ š¢T<ÿŠÖ÷û¬×Ócã Žpr¡ýÖj2âw¨2ËO'使>—½©­ÀÓúì¤Æõoó¶1ö«¸Çô22âÄØ‘]ªÙ]ÏÔêUg_wƒ¹Ð*¯v’Y´6Ï2ÇÄ$?-U aÁW3˜¶¶H¼ô³·”Ò¿ôK1ê9Lf¹×ú5é$ò…vF†ñ9¢ÇMZMLDô“C:¶üBÖé‰úvT  9ÁOÛMHê˜ô…Ë÷9‰·2–ÙeÆ„³‚õí‹©¿ñ²‹‘Ò0Èl½|5ìÄëÙ•}aâ²S”þè®Â5a5й¤ ¿hÊß;í¸©¸5޼±7˜Ôñ•óZ"uG9ƒÓÈ«Óe‘ê¥h7ú€tl*­Šüwi2SR '€§œ¹Æô:ŠÞú5& …1 O î³ßÒdõjþVzp×dÛŽ;‹é‡•éb¤^Öƒ|«q¤‡]¬DÓˆ“‰âÅ톷žßé Cßb£HšîQ Yn}p׳7x€1%ÌŒÕSNª)o& x“;;o9Ÿ¨¹›³@ìèu?ž÷Ö $8c¯ @~q¥ÚŽŸòÐ|,ª—W·Ï5ûNdÀ|lÁ7 fñ”lQöµ¡V]®j´ç)¢H°®uómy°:ü+O’é1»U‘xz«å5~+–iHË·«Aß0|Û›Ÿ8Ç¿¡K-r»Þz¦Ú'S<€ì½ø÷V˜àÝ8°P5•7}r‡±¢6°sÝ®«AÈsªeór¨BSÊY;ÝcbØÇ÷Í6.æ­§,v›âYZ8­Æ­ÜQI攣­äÖS—¶'G±|2Oyk®POÌñ]€[.Ò-êžv…:[úzÇ”èþÇÌ3eVÂgåÌ£ï+ü2À 8$å½qªêãAüÏŸçíPPд™šÝ*Ø08ä3«f°ã„ßB“CurwF¨ĈBÀ1ªîûC}¦·Ã«-d¢ä# Ýnø± l¿Q 6 ²”Æoqkš•_4SMßý<¹² >f¨ °$©ºã+ÇvXƒ÷ÕÁƒ±×ˆªE3ʶÌ1Ï—ŸÑÙWßm©ÞÝiè©2, T ›÷¦[¤[ˆœ,}öB½ û}‹çÂ|zZÃ7˜D3ÍDà¼Ü-{õ+þügò=#õØ1’ ’G(l8“Ÿœ¸ø»Úû;5cÕ ¾w¯ дñ°‹ˆ›8¾ÖÞÉÊ ²÷8ŠÖ¾Šª&%Öå2¹›ó4nËê?Õ‚ àÀ²ßŠRL,Nÿ™+Δ?HG6ëI=l¥®ƒ#ÛÍï0·ö< ôMkï-Ž—Õ¡$oòž¿ù…>¢]EPåaõy¦žîœTÉ:µ‰~ËÞÛʘïèœÐ;šú)œ;<ñz?x«·ŒŒ?À…RIÄŽäÓåÌXîàÑä[™æmá²T”<.¯³É=0ÑïñPËøæÏ8F/gŸ¦h×L‡*Þ}©°l£¤¾¥ëŸr'«iö0jZ`Ï<\ØÓð&ÿR½pSì&"åyÞX·pnb_“jKÙsÆ=fkþif·ÙyÃÀÀÁå°Ù8І…Ý5LÀ:¯)eg!Ha`¾šÝ1Z×/$¯tD ü•÷órМšBš¨¸±ûã…¤’m)ÄôÍ~Yve©eh•kÁ¹™»d©\èøáÎzçyÒ[ÌóûG[ûxéP‡øF™¢‹½Óû!´Þµ§ä•g2ܳIž b%rÖI#ZŽ8/µæK—(ÕžÉ&z=A5ìhõ§æCÕ 6Á)ÕøÝä:¯ZfX0qBzI*Ô,ÖÕø:÷>ã¥ÅÌÕ<  >H8Með§þܶ¯‰$‘©LöJ¡Vb´`ˆOl¼m$†ÁƉ‹^=­5’³^Y=0¦†Ç}èG¡Ù¯quÎI(Ò,ú[ï³8?+cêæ“ùˆm#¡bÌÓäΦóÏø*Þ…Tó¡_ãZÙÀjÄó¶µG†E.„ûZȺ>™«ÞlâÝœ¼«?ëQ{YÕ·¾Á™’=›ËjÀ»©\šB¤é¼m¬et6õ0žaÈâÐï–Æ›Ô2"¨Êüäõö^ÊÞŠÇTá˜vA?Ÿ4TŽhÔ=ò?^úýqÇ™/ V;§¨52ò\AÇtg&fÇGÍÓZü:ŒØÔC£¹„aÛ[ÜÝx¢Õ¦‰C² Li®÷Eý.Á$’¿_}«ú0‚V­¦™êU׋—v²Íî Ü%')QÍ¢&Ä÷æR(›[&¯Ë;Ý»—Õdë>n}ì¼Ì u¸#¾DТãÖ®ôâûý¸ÝÌðy>X¡®³²W/·ýÎUb!×âd 5©U¨ìƈÿç»ô¯„UÖuß§{Kêê¬v§ú?ºoï >Ciɉ ½[c|^’Šì/÷…q°îú±(vmÅwïb¥7b{G4tîbƒÜ:ÊdêÏ%åÐ*N)g©ßÈ™›ƒ²š¸r,J¯±µ& ÇŸZg¼:$²Ùbíà†›v> ‹‘6uZäë‹2‹Ixñ~ߌÙvªÓ_Hpü¡¬ºoÕ.üÛ›¼A£8’˜[Ó?ü*W¥¨Vµ üÝ>|ÓÞ~/³ùZfÞ™£>S¢ìÊË„år<ÂóM7ÓÄ Y®Fä™;Cô‚nu¯ÇV>v¼w£ÇmñY” ªlY¿cJŠ,¾1yšñœŸ„|.?G峚Xô6B?rþý¡ðç苎þ+uÚ¢!› ñ:&•O>¯p<«üJÔFúÄÑ1¸e.…D|“¼õ2i¨/" ã¦Ä~­EÚ¨Ÿ¯°So*K#öÅÆ*1­#Žòÿ˜ÈvÂÃA>z{’åG :ý»™½óO›GJKøª:ÒszÊí¨@sªK±c € %î®qf®ï:dGó´uÙo×Ë&ŽÓWY.™qÛ?P΀/-”Þ™¬Ã³˜êÏHRÅõ;ýÀ¹ækÍñGæ.,Ý3ÎãÛz·s’= IÏÞž™U8¿ÇÀ´˜×úw+k€àè·rPtO?òk-)eLÕ­‹ÀòQ¡[°tDd·)»ñåTQ›ðŠ$m¾ä[náY¢øÂ|/é9ËBäáûOf`ë§KYH¾V£z5oD¬YüºÐ%*àS+”cµ|k+€V÷(£¸œf|¬S±Jøuoï·V¥Ù‰ùRµc=/ô+]¯xЇ¾4¶áÒ”@á;(o*UBYmÎ胣ÃjçpÖúضNÔÜžbBŠ#bOHüƒ”Ã5urp°×¾[RøìuF!ñYF°±'ic+½*Ï?g ÀqŠï†?Ÿ³ªëVP1°÷îLŸE†g1±NŠðõ¬`½ ²”É“Ü7À¯ÞšU+™KžŽ8~Øn­ÕJ‚¢§øÈD$,ÔpfcÒçj÷ë˜C…˜«¶pâte“gy„ì²üó´qÚû¡õ[_%ŽŠñŒ"Bsùb‡øã¶¿òFY6jmP¥$ˆ‡¦ÆWgH¨ NÅK*k»ùfz*ÏR?qè pÈºŠ…L­ ´å/Z‘jމYÍ( ’t<¢û7t³4Vݼ]„vŸLë•Öíb Ξ ›ú¬ç›*ÇżÊO/ESš ™À†YZ™ð‡W½Od¿„ë"œœßâ|mÕt%¥øHM`—ö–d½ÉüÍ ¯\ßÍ&ü Jcc­vZf^‚‡ù©ƒ]wšÀxYoõÊÓ3¥;\C;®bDŒH2 úº5¼úV¦¡Õ‚ªý‰&_^~±YÔö!Á©ÿih}ð âó˲”Û“í?׉Ãôi4—•”䨶'ñ>6œ E(¼|T’,ÑÞtpI‘ù®kC±-õùëz/§ެƈýQ,Eh¯fÝP•7~ ²€Æ(¼*u¬µYÐF9n€I#g-)ïÒ§§´¬§èp{ŠdŠ%ßS­¢¬ˆ}E—Ó1Ž9Çt¸Û—6-,‡×YÙŸkËf—ÁØ·¿4“¤i 3Å’”ºb‰î…dÕ*|ÄZöSË ã*è–§ÔC6L Šú#M5jÁþ‹ßä‚}ƒ½\a‹]ÁoÓÛ¶jB$_E}d2³!»rogÍÚ¬ ñªjÐ Ø Í´ˆI˜©Mc›O–!ó*߆· ç"'rd_jktª½‰–z@Äáƒ}3á~Çø¡ úÖ¦±Û‹“n<^ž­;6o_Ôœ§oÞ¸«38dƾPš£à`á°®´A|< ÒÁ@w·¸gê}tÉ­µáôôν}Ùó„G½fr6v¸F¯×rn&ðØœŒØˆ±.ð¸é¦ç°éÙQx°–W²îåÔV(íãÆ#o¤ü<(“è/íÛn»éŠx>ÐTO4(E¾ò^~çÑ’·ÜÅ$Þ›»óöÎZ|¯FíÍgA»Ÿ>®ÔÅP空¿cÏ“ÃjØ-Ÿ”DµÅ’Ÿ£Hƒ3“¼ƒ,Ͳ‚ÆÌ!óä8W¶•²dHmó©ô}in¥ºhlõØ~i¨o¿Ô>:,Ù¦–•óÅh£(iìð4Ÿ™vÍ„=µ‡X¯ðexè~ûà œÀ?ôV!‹wa, »íl¹aýòµ²YcvþQ Äì<‡‹ßýµ‡ ‡"úå˜,BœnB`>ÜG—õ,`âÙ4)Åkô5×ü"ÖÌÝÁÌT¸!"J¡ñ98U4}v‚ãŒ÷»B¾óÀú5éí= ófL-˜Øu=ëÎ\(¸ÿëž@›éüÜê ‹øqã¦H-¾}NšÈçeâµË=÷Øue?Ú;Ø! ú` ’]1=ž%à;‹Ò£ v]ÕÂ’~'^jÞs±µ¹ur}h?eÏvÏö=ªŸiJ“bŸ-†ÕšM×:†W£ÃÒò‡(ùHÔ õÎq ØêÌÉáê‘}åØ.úщ‹hŸ±MòôÛ•ó–»$wpÊ;wDoÑ]ÅZ'fyLckÜ|ßõ*7uZ„M”‘2­-žÆÅ‡-{‘—Š­ºëHsžqÛþ†¢ÆYÛXjy¥ò…gØÛפyíý¦lØ"£k8ÇÊ„JÈû#¨å‰Ê.°ŠôjDeû2’äX^‚ù¡ÁrNþ§ÃmÝÏýI«Ù68T½Ç¨8øãe[üð%°3¾7S¼{ö.:3¿ä¶Z.0ÆC4o6怘45¾oÿ–4!Õeë^ÉïÏw¢m=ÔûÈpØVv>î[®“P¥Jí`#ç@[¸)áø&ß~ëœeK“Œ»š×•ÿxªãꊠœ»_ºóŽ=ìŽ1o—UO™ø“œíh«0bÏY{¶2• \ÁøüضQ± 6直°$.£ý§–m÷§ŒÎ²a éRy«vØ?p¾éq+9.«\9œˆL»,Úp¿jÏÀ¹%$ou\W¤]ÌÐ`üFN'd|s‹OãÙÀãúÁ!ä.ñ{Î[0ü•× ºf]´m8BÒêôÔæ\ƒáÔ±%ÈvÕwYY£¶°7RÓÕçñw~ >ÐôùÊäУøÍ6¯Û¥o‚ç2|¤Bìé!ŽOg›‰¬½¤ŸÛ?ŽþHó=(c†Œ*/b£üÂâ§i8ÍÄШ°!ÞÅÃ^X#û „#oáØìGßÈ–+JÜ4™,²)€W\m¶L¢{†ZOŒ4Ù¥»¸P„³tIÚ•!LF¼ê;õ@?å.Sj²º¹S'wT%êÐ9ìú:BŽjÚµƒ„ !™´ 7J(3î¯yzJàÎ={`×ùÕcØ~™T€^ãÉDèÚñ¯ï::ÊpÏX¾œ°n…ç ; Îú^Daê*(9@„ ª–î'wF&øÛ²Ý)ÝR¡¸rM®°«—ièoöPWüý/izìIÛ´{ Чĸ¶TH%ˆèIJ^îŠç•±ág#º¢?±Û— Ü'\¾à«RÓX<-ó”šÎOa¼ãʰÔò–ó±iCèÆÕ@ɱ'"Gîè¯/d]ÉI´`™ÅçdôA±•<¾Ìì;z½'´•l/ó³-؈dæI"õN…Sw’oÄ$§Ü½ÛŽ:,‘3XËAþhyF<ÿ’’¡ˆÑú=%ÊÝÆ†óEDãdyâ§ü9úµŠÂæ12N{±JñºÛൽô°Ï®„÷lß&ðf!ðš> ÙËBQ§fA4E§ÈTt ý ïüD‚p(v@J¯wÿ“³U ¬Ó’¼©³§ü™×¾Ý9˜’Iô{8C®ª?‚@Pà•hÐ#ò­­I“U¡ÈBtÕ™y/eyZÛQÍPüŽD—bÏ«+TOéÛ[Aì¹D/ò —‡4úí´Ì6ìíá ëB†¢ÎTl[¨p=‹^—Xjц“éÝŸ¤7Ÿ·Ëß–WQŸùÞ%΢h_%JDdMƒBî­”eP¿nšv ‹ò}Ôr…®eÆà~ËÄ.áѹëýžà5{ÀK×±.Òø /•»œØ?ƒ }xU¥äØDÕÌž¼zñ„sâŽøQå¿E¼Q4£]}ðà Æ×?`p2 :V[?(6TWŸç`ìì\ pÇgÆ´Ð&ØãEò“‰y„ØìR.%òEu`^bî™û/Ÿ}±’â8ô2D|à]§ð•Cy-3êM5w5•–0²}O8W†×,0Tj†=éá/=uñ?sп¬ú8Ëf ®Á`æîÆšvPà]Ï!ñ1˾ꙙÉSm‰"^>ÍöW>)Ï`Ý‚¸?ø%¢½ËŸIZ¦|ÚRÍ5V­8ö~ÿ¡íýApØ-{¾ÎÎe”_­ë[dÖhTÒú–¦PŒ¢}ÿ>èIíÅ^g²È͘Œ[¤‡­‰‰yÔK+áiËÀ·É‚ŠÓ£{[rŸGÄ©Íté½ÈŠ‘ôK0oZ׌L£¨p¿Ã{^DœbK¸²ª_q‰ÓS‡$ɨ`÷ý .‰Ï‡‘€åéÓ‘ª÷“ ?½œ÷w‡øF¡í V}ñUÞ…ã}„Y-¼Õ¥%^caÏ1°ŸÇNîñÌŽ{GWÀý3g_þ–HMøYJŒs¬Öüvy ú³­º±$»¾¨"m€ â±v#¥Œ5*Œ–´}>Q¢S°w9a)‡È¼/~ÎNM`ÎO¿X¸—ѽ6»f• gn6~¨Dóùaþ‹;¨#­€¡„ÄC:[}J;÷ĉ¸„m‚’{œ •ùC5\¨•ÙüX-|û›è›Š"ÏÀý¾O³aé‹"Z›Ýg9+NBñ€¯ Ge'JíROçN4Ž•Í+µØ‰f*f æ4`A”ô”ȯ²iìÆì*Ëý”¹´Ý'}Vò'¼RþÆÍ;'nâ"ZyåXl˜‹M¡hmû³¹kKŒ Bz›´…ºˆ¬!!ÞaN?Ö1±ôÍâF¿òüßÊóu_¤_²¢«*G Á_”¯ýÛÞc‘9¼§Éi{¹›çæŸ?=þ8O¹Èý0Ÿƒ'y{píÇ\v¾õ"Y/6èAaÙncéŠcM7¢°ôS¬µyñiœóq±†‡ÐÄ/El¶&àõÖ{›aî¦r¯Yb7Õ -Üû•ák÷¤pJ–Z&?õã$ì&©)z2"ìH¬z¸z½“´Xl»ó¾ŠpWê7ÆSƒ:\ëB»²SL­j§—úw¾¢—µÇÚâ„›ŒŸ…Γ÷T%?k×/Ølëé¿Üëz®é®lC3ÊÝWÓë ðm ¢l'Û¨g{¯ GT¥`½Gø£¨”Ÿ»]ê2‘óû9O1þšœ/W»±ÒÆ /¡u/Þ7+(­-åª=°0scæ’i8°Žáx뤛nÔaë«ãS3µ™z’-%ÍÚ‚±}ÞÂJ™9…àÕ Êe ¿,`ÞŒ•r!Ž£ÈLQÂg XQm³õ}@_63™$×ó5€gé“ßÐDçÉv¯®\¶øáeóÍs­ãÉw­;i{ >•p5n L õ@bX8Fi0ߘÂ,¦"R±‡žf&ï_ðåÒ~•(å8·ø,P[Øßä*M™éD ê_·¡4idÎÔÝ&+nDeZ~ß±À‰Ÿ“µŸe{'¥gÜè\¬9“tsß`b¾ŸÆ›åJ¦²7»x×ÈCü™µ‘K: ʺvé(V_Ô–$Ä++LV¥~C;“Ñ“_².ä4Ÿ>tòŒ­*˜«ÏÁ”;ˆØ©¬Å1xÔ¨v\ÄëÀ>MÉX¹0EÒ=h§O¬ Í¥°âæÔ¼l‡fiú_6hÙŽæû&ÔŒ $Ǽ³è@Ь,¨¤ÞÊÛtý›§¯º)¥”0jW¯¤cØ:þ‘=ò,Íoq@e$O É+²¡ÏN³#MîFjfÔRTˆ«H¬eÈ^XXd…MKdjáuÔvìò)Œm>Q¦'%ö»µj_õ¸{` ³:ॠxº˜³®$W$~¨«1Üa€Î=Vn4ÊEΣ|±ñ?v¶Ê{ endstream endobj 250 0 obj << /Length1 2563 /Length2 18355 /Length3 0 /Length 19845 /Filter /FlateDecode >> stream xÚŒ÷PœÛÒ ãw 6¸»Ü‚;Á‚ëÜÝÝÝ îîšàîîÁw»³÷Ùg'çûÿª{‹ªaž¶§»W÷zß¡ QTa6¶14‘°±vd`adæˆÊ©ª²0˜™Ù™™Yá)(TŽ–&ÿ•ÃS|2±wÚXóþa!jobà’‰8‚ ål¬ÒN–6 '/ /33€•™™ç¿†6ö¼1g 1@Ž mcmâO!jcëf43wñü÷+€ÚˆÀÂÃÃEÿ·;@ØÊÄhd` 3p47±1XTlŒ€&Žnÿ‚šÏÜÑÑ–—‰ÉÅÅ…ÑÀÊÑÆÞL€†àt4(›8˜Ø;›þ* o`eòOiŒðUs Ã*6¦Ž.ö&Àhdbírq²66±€Ø*R²[ëÿËþÇ€ðOs,Œ,ÿ†ûÇû¯@@ë¿ ŒŒl¬l ¬Ý€ÖfS ¥ @AB–ÑÑÕ‘``mü—¡¥ƒ ÈßÀÙhi`2ø;u€„°ÀTá?õ9Ùm€–ÕÈôWP›Å­Em¬¬L¬àÿÊO hobê»Ó?‡ûÅÚÆÅÚã¿ÈhmlúWÆN¶LjÖ@;')±l@"øß23G3337+ÀÄ`âjdÎôª›­ÉßJ–¿Ä ¼b&yY9%ºJþW)"bã ð``0°²±8ظœ<œ¯ÿ¢hü'‹?<¥¬Mm<ÿIÔ¥ÿ&ìüÏPÿ³4€ÿ%oš[õï1ÿÌÌÁlú`ùÿ<ì»üÿ›ñ¿¢ü¿ŽùÿÍHÂÉÒòo=õ þôV@K·,@sëäÚ9Ð&Xÿ_Su“ÿ,®œ‰1ÐÉêÿj¥ @» lmfùo#@WcE £‘ùß³ñ±Ú_{f ´6Q´qþu³X˜™ÿ´\F_@·‡h$ÿV™€vçÅ­lŒÿZ2VN€½½<3h’X98, m46qý{ˆLŒÖ6Ž ¨:/€©=ü_GÊÉ`þKôÄ `ù¸L¢¿7€Iì7â0‰ÿ‹¸˜L¿ €éãoÄ `’üØLR¿ˆ]æ7±ËþF v¹ßÄ.ÿØþEÜ vÅßħüøT~#v“êobWû@ìŸ~#»úoâÓüñ€tÿ"6PfV¶ øëbû×Ädà`휬þ•³°rþ£pZ›ü+ggýK ; Ã—ßA@¡ ÿpÅ44°ÿ­õÙÐÞÀè‹ èéeêø[Îö¯ü?ë÷¯T†Ñ¿ˆÝÈÆ4yÿ&Áþ—ÄÊêwq$“ñDù;iÐÄ1™ü 3¨Óß LLÎxü¥¶q²ÿÃdbö¥`þ;!Ð ™»Ùš›Xÿa’ÿ€ ,þ€ ³ùòÕhù5à³Ý’L¿#s€\­AK÷ûdALÖNV†]wfdº¿™l~çŠió‡ ¨FÛßj‡-è!ký?GÄÎòôˆT h’€6´ôŽÁd÷5èö±€rtø](+àÿ+ÈÅô4ù—T¨ƒ¥ƒùa@Ä¿ÓÝÓLŽæö&œ¨ G›?@1œ~(‹¿_Œlìÿl¨ýÎ@Pz.Ì3(¨ëÄêöµÑýwΠHî&öÿÉàn@#'{Pÿ~H®Çÿâ¿ß9LL\MŒà—lŒ>ZÔvÜ×ã»0ìMðÏRì©§Ò0x,ÛszD†M¢©Îôß°¿NîA]Û§¾Z!~ñ8im€ iKPjò|Ö‹SžÞk‡_šÂ˜,8®ï'„#`PÚ÷|±óüä÷²¼Sš"ÇΉY1ãÞ¥ï£k}ÙêXðžÒ~5§ ÂsÙ C”Zäg¿â9Š\ìy\RGÂw´èç®(s7·³èÙ“oÄÒqtð^§Ql…Z›¬Ñóî몬]xäxZ¸„7ècÓ”"‡ÉÒ8‹%E‘ü‹_™iÁ6Æú‰=G;I~òjËJ¡ã0[Ú/ó|#÷j¯gòÓèE„ËÜSÑ·¥­³=A^Ä¥3uq‘ø˜§ÐRÔ§»?wjOg,ç+ïæ±¿µ u£yr#sò³nRÛ}DÛt~k­Yd]ì%ÄÎ S†àzŸ»Ë³À"£”¼Ö£×bòÔvÖußUåÛ@¹ø/'dxØ‚¤4TŒ‚ô&.Šá¸›Z öÏpÕ<í†`pŸ»i´‡ñV$ÔVí.ö_ÙæŽi¥rË<¹»¸4ºY&NIq¢7[ÅýÔª€@N §OàÊ.X.“©å½'’^5®šn—8— 9¸ëÖ+Ë}2F#3£«{<áo>8 ‡šÓÊ 1ðiiNQ'—¿Á —äÐdZÙáÓª(8,È éOÇÆ/Ԡ̉’Bèa?œ¿»EŠÜ…IFÁ5·ýbÚ*¯]™I-ò<üÖßY·¿ÍÃ,aƺ° F=ß²ùfKé„d†w»µÔñFí"™.ä–®G$ì_=•˜šRtÚæ>ñ/ˆˆ¨©Ã›8WŸMW>[Ñžò}MÍN÷qEœÎ²rF™h¡(”n5Ç ÙµðÏ-:ÁA‘òƒµAšc¡ø:Þbjuª}zȰW‘þeˆx öñcª¹ÁIóØš@_(”@ú/Y%”¨>åâ¤NíËš›¥úghÓºúD` ÔI•³T0Vi„2T(2Û³HTÙh™â›Šòô¼r‡á*lY•‘…8?go 2œÏëbkDQù®ÞøH`3Ú™§öBßiâg_>Yú”•¸Œ-ËW©ÙŽëWV^o§ËñÔÂìêaJ›Íºl§ Žu8ôù¨Î$‚UŠuAúóªÛ‘èør]Úôß J¡`#©özô7ÍuazUUc¤Ê­%ÃL,w›òоÇ_Fßõæè£¯ß.ìø¥úÞ.®¨JˆlC7©ù¡Ê5YZ÷oËÃrÔ:§+J˜N¡Uá)ô)O <©qeúyEOã2ÑP` o~Yc TÝ<檿QŒi$Þ@‘/…ðâóØî4Hè§‹L-H+Sƒsj3¨Òþd'ÉŒšvÓÓ§’k|¡†D¨|WýsD£\Q˜lÀ4ÎW•Ô” ’JÐä.åU£˜2^ù{Ÿøà ‚N «¬ïqp'â… 9 7哈ªiÀmr Nshã¹#j³_¤3¸û7– rNr¬f¯'?u¾ ‹=à6çÁ ùwöZðš†zÀA©ì½óD®ª“Ò¡M+ïú%ÿ…a£xÃh õŽÊÈè83cBgu4Ëã'숲«)˜ñí¾Š:8è߆/Z±•Á;_“ž“Ú¤ éI‡3²ünw E²''†ž¹=×V?N~ý±~öùC›$"¼õÀŒkèFµ+±Æ f ‰ ï&ÖZkò*¶#Qï&¶ Eëô]’Y`¸J§‰¶{z¶É8X`dÜ&åQìÒ‚á1è]`ß©B §ó»SA¬a\D?еÁh`]ß~Ò¾ë€ Yêô=/f¥UOí‹Ê±Š1ô5îž&ù¯ }š‚žÊ›é>ÜE^èpì_Ih:÷Êè:SRUª_\Ï3,Ì ¿J&¿c¤æ…ïÞ>+Ï$`Œœ‚H¡(°µë,»Àö©Ð=rw¥_ñÐ7Ò±ÏØæ´©jnl½ÉúQá(™ º&ú2¹HRø0e·í§Ãý@ŽéÖÒ,j#käëÁoÚÕTAN¸ï÷¢½  x @F,{t4vÈÃΗw7jjO/~òçøè=î³ÔÓòÕpÌA8g\N€¾£cèàNÕ9Ä»7i .ÜP–&ÀŽKÿQÄá´Á/M¤zùX™ ŠÎ]¢¹ÕŒmÝ‚15éñ\Ëà‡Òqÿøî«ãÛŒ—âói¢cV^±´k}÷âЬ2Áê#Îg}§õ7m¬P|âÆâkŠ£V¶îÐ˜ç ®žÏóöÖþÁòÒÄǯ“—i/9•_*êê¡/¿+Xt¦|{_µ±²O׫nò~~Ê¡TnþSJMÙ}jòU÷&l™ô…æ§‹Ñ î†Ó.–îc2iYlA ¹†!A Òþ Ãâ1¥nd‚³ï­¦FÍS³Ùö ߪøÌ,½£ÎRâ84«e&ùýTö.tNŒá…B |õ`9æ%6ýŸnÖ°Ž™.·Û"ƾ|"XwÚ7ÛõI|ÉXø…êEÅn™4•¸'ôPÝ©§ µÑÊ…—1Éä« åîÆ`l?ŽëŠdŠŸûmŒøKzczáâ>pq¶ë®A%«t‡*û=¾»^ë‰acá¬ÑEÃwÞ~`Kð̹µ=½÷Eãîø;R³•$Hª-Êeä³ô…Dþ%§L9‡"`§Û~”â©0ÜÝõiƒÏrp.jw™§ì)K+}ô™›À¢MýVZ“%Mº(»k¹¸Úæ,ï6ü.÷µ6¾n~jû¢SBÁ)šùÁøÙb:m£VNYÁœO^ Gx〉†Zhó­ÞéhzláŸò~áåÀ4à³+‘ÆbÔM5Ÿo!##•ÚK§D«wSvbµzªkQ?OIÊ í‡Lp+ôæïÚ©GÄ]âU¯Uâ|åuÀ¡€u&¢%•ãƒ!Ju;ZÜ¶à‘—ú :Àe>¿ŽÂð9!üaW–Èp«›¾ÚLÁšŠkøy¨¬²Šç½ø\0ÕÂ× l@ÈNpæˆÞ•ÖÀò€ d¶â–ë4wÂÐWuF(™T ?ÑÅvÂ"+aÞ\ƒå®þÕMÉtƒn‘ ß$õÙ•Ïc7ÇÇ.„@nT½Xƒ ]|b=8ã:ËrUR" gž³ý'…Uì¼àw౦0ÉÙþeæfLi®í¹5òÓ?fÕX/ÍDa*ù•c’ÙÂ{iJÁÊhû?ô‡ÒŸ½N=SV#†Uüä»SWßK(ˆEÚ<ÑuœPWH·‹¹Uõ ý̬Š0ND1$²²—#ŸƒX'Íœ˜b‹÷öóUö¼!Q£¡iåǃX¢<Ìž€º}ûb¼Þƒñ÷²”îÄçjÌzˆã¶L¬>1Seºf#~E Ä›CùªF7ákúÜ”•U„oúêñÊjÙã>LIÏJ•„žšÚfÙÍP'lgñùý(aCñÞAMWûJ™åòMþCÚ`è®ä2P…û!|ÿܤàWw' ¸ï;MU3ÔT(˜˜Z/lÕ\UƒÔ‰PÿÐìòIS¬Œ9³ì¢ö¹×s"=:ÇD–\Vád’û³£€Åšœ¸òwEZ¥ÑÒ•Eå=cZâKùŸ8K1†Ã!¥˜.ßœôú‹!q ˜7pÙ õ:­zù!™7|”.®ëL¯·óà/¨¤àä¡òÚ·‡1ì,Ê.ÒhàG¢OÒgëè¾6å £NNÙçm·—rRJN%Šò,XÙC{örÙס_}| à ¹”¶mâûA]nöQ·§¯¡Þ»ÚUñF×WfûÇN÷¦æ£fØhé}K"9¦ i3QÊJú†Zk¼Æè®ÍaèÛs&Õ6j‰'×w¶ë=Ä÷ø˜‘@¦üØYj"pç9<¼#a|»Ðhßa|WÚ×ÞH˳©š\tH{š¾hr€0CzöT·ù}àÃ{6Oá8w‰-Mö[uØ%É‘Té­â¯G4Þo˜™Å†Úh ‚½ý°²•]B6ZÅ+9òI¿ªïyú~˜¯’âü‘¨AõÙ8üPæáÚÁ‹5ÏCI˜Æå½ô±#¬Æf4Í)R B5ÃŽ#ÎГÈûä1žïˆõ©‹ ÏPØ+È/;í}¡¬ÆœçÁ*„>/ñäÜÅ7ˆ†Î†¸¢6p¬ n³H)pò›ôIocrún^‹2qFiŒâ× \%§¿qmÉ p‹Œ|‹¶f\C„°¹!šÄnœw u†—iTgÖâ+#츔Óýj#±µp–ˆÄ§jl`"ƒ¤ë=¸ÙìKG‚ü}“Ïêc«s”›3@q)ËQÑÏÏ•&RMˆ*hÃ"RªÍ‘ósΗèË&‡¹ÄpÊí_œ-É=+w§Ìv¶çßà•\Á¦ímv$•BëÓœÝ/2úÎMB—/ØcôKÇLJ ïRÛË?QU¸žc!öÐncà 悷{GÈ퉊^ç…U%Þ0ÏÚ§ã;dL¨ˆVíCð÷̸ >iÏ=Íéò‘0±×pÈ&þCC“bxÅžO”úÆbL–‰.Íó‹2M*2ˆ¬0Ùo½ÑdDÛ.‚NWR‰µ&¡nm,ç5©¬é”f¨Ùì_éœ~`$¨g&÷…C˦Ïfs— $»>`Æ4'ÒgãçÇ¹ç¥Æ“ñPúlÔœŠÔ³/Ã:âÜÍ‚©ÙKú¡òLú¶0Å(ÛG¬¬@È’GÇQ8j&í>¡Ï¢E`:öœ;ó7Hê-ô¢á`` Ø·aJ§ašú%úÒz"Õ›DæÅsvG܈$†/'ñ;iû:eåî*Ï2 ;‹ädðR < md2¤ö­§ÕmZð]æÍ/Ùâ»ç£<㔿Û ¢—S=–¢ìƒ«<.ØH-|úÜ»ª\P5ŠˆÒÖÛÐjÔ;µ&¨ÊMä(¨.¡’çvA‘ ¥€¥çuŽ„! „l™-;+õÙJ0(rÅþ0©‰­_o…xW;1`uyvVJjè° ´ ï{¯e=BØ[’Á¶ßi25F]Xk6°dóT„Õà'?U~h~Ën|]«x„®Î¦‚Ü–æ5²(c+ò7e…—oäeý €:âLÊçƒ=T/,ÈÃß9b?‹;äùø(7ÚÞtKé%»oí”Uäƒ[ȾšýI{l“Ž1O/Èð¸„Üñ¶<–嘱Ékxap¶Ûhú¹Úc·œ/Ãùôn­e{Ì}á:„ïaì"yh*ŒgÌæn£i¦¡¿cSÚH*¹ÛÑTÙBî§S€Žz2nÏÂÌœ@þú3äW´bÅ‘øfuZB-ÑáŒp…¯Ç*~¾p'ÌõG¾ó18mþ ]m0{*µIw ^\aþïæ°—º3hqZ¤D«bÒ•\½Iìê@^Ó/§ïéø”ºçxD²dìgˆNíÌI«U®80ÁQ­”wá×öœö'| éÄÖ”#“âÞ(ºŒ§)á#éÞYC–ûÌ€÷K^)S áÊ®V-+â„|Î~STA ¿æÛv¤#¾Ü‹ԣÔUYø§Ê1Ê›ÆD.•­®Ûy óJ…¬ !ш’)xÜå «5`ÅCBWs"PÛÊ28øßˆ¿zåU™ËcñìI¥Ø…8Üøª°*[÷Ltašó¥œo³ˆÙ~ó6>ukb4ò^õ#é‘zÜxÚ²ÞVQ@“‡‹`J`O=Ûm1Ž%åàxäÛÔ~Þô\¨‡jÿ8(;Jðãñî06õ¶Žpòs!X6 㥛-žG.nð¾ÐÜS«Åpq ÌªN}=)¨øs)8ÿ–éä ™óªæ7yÅ«#‘àšBžâŒ-ÌxH Õ S”ì]rš•ç¹Ë¨«_¹…0ýÅ”Z§ˆ ³-‘N1átHû¡7Y^ÑŒtM¤õÀ” ¶yÐs:0)+§·é$ªít—·.VÖä,Eç›õRR2G†Í´D˜ŽBg^äÀ[ã½ä8@ 2‘›¨Ð’77QÖ¤¨n`šUÐ%±Žíî®#¥¨çP°4D¢E±2ÇŒ: xÇÌ6T¦ˆ§\3ù².×&êÏe SðÃ[z‹e&E—?»z¬¾à°†›•ÕÆÕÝÇÐù&õlü×ÏÒL§Š {C´¯Ì'jt‡«Õ Í 4>…0^¢(hÙFì§Z"àÙxMGUW˜I¸RüÞŒ2a¡úŸO!.Ñv¤/]¸3×reã$ˆÄ1d¾[Þ$ýë#b™@»ÿÁI Q¨]E<𲄨oÚV0¸×† / IWZí%7ÙýC?gYHik(5Rîùè]a›† 5tþœQ•âÑîêŒ}’‡²U`Xà‘/óë’)б5 þú^òz|<.ù\Ô;¿sô7­ô¸6¿›Šºpºer˜KòöÌ@îæ aŒ%>ì®(;Éí,ùøõC8“SþÆmØ}šÇÔRðÊû^ÍZ ¦• ==RTÌ}Wäã|Z{†´À÷ÆÄͬÑ|Q¾ Â1ü¤?ítÉøþzÜoÔÃÜÕ§^‚ÿÈ$WÑÁÑ%<‘f_¼·®c­2:ÀåÚÍ¢§_¤ž‚á W`çh„èäˆv}phxX¸VHóz’äãçù)m°´¢¼ãÃ'ÎPÂC¨ˆæ—¬úqü èø?o[{³$³ò³Ãê˜ØO¤ùu+‚wÃ%—ueù¨ŒÙ¼‰¡»(sC0%`‰º‚\è"ò`1rÌk6##cÆš3ôˆ Ÿ#='…2Ƕ]nè;%WžǛf]»ªƒ}—ÀB‘1kø¬hÐÀ~ÚÏ wÔÏDFâÐ?³!#üµÅü]ö=‚†Û…ÜÈyA WîƒqÌäîÚt{Hœk±ÎZ˾0{Ž€ðaò'×ÞÃ÷:ýâ4¨5ßܨµë¯؆,œòc{‡Ó…4áçPa€ª§c7˜’ÎK–¡ŒKzj«í‹²1Ѥù§Ç-l:u™ÎX…ò•s•Âyš4ôÖÊ6š`Ê”O;Ï´èY¥B^?ËXÚÅÃ:cá—¥´¢”úh@¸Bê9+û~lŸQ—Ä¿Ú!ìôÕ·¶Œ¤B¤–÷÷¾†…Dg«þ¹Ô|™óÓ¸žF0Ž9¼©©ß²%7Ój¼õÐXÆÛÎKÉÇÀ‡"Ybpñ„làÍd¶4†„gô¿Ë³ê€2møÅØêÂ<Ë‘zâÛjÒ1§¼ÎäyA ¶x‘¸R A"]}· ä}:Å'žÅ^Z÷&xæluŸ¦9O°»‡Â=2™í> ý"ù¥Wp6Ñ÷ ¹IÌízÉs pMà}bÎ/D²é… Õwh~A0†\‡Á¤32‹oÜ`rµ¸ÿެ¿2l¦{Õ©öÓpRÝš&Í-Ù‰ílgü·dÿ[DE¬¤W4×jfŸóÑuE8¢¹“¸6ÓÙžBi[<&åÝÀ5—^Ýá·’DB»aô».€MÄZ¸ØÃÃwÚÁ9H•G˜_BÅ©²¼Gýq?x§e¢™†!uÊ_Íy¬pßO…÷ ÇžjÄî±e%~ÚÎch±£øÔÆ÷3À•F}[óÓ5"ÝuQ¾‡a‚üªýófB°WIÝ´BÚ-Z‰&ó„Ë:©£ÞzJ"°Ìºë""SO¸žÖI~gÊÔw ¯R6òººv#ÏNpA‹]X?«I¸ƒtÆò¢¯…‚Êg˜'1Õ“Ϥwx+ˆ'ñj,Û7ïå"8$û“²³óÝÊíFì*»‚lµûd,uHZÝ !t,æb1šbC—oÐ9[$–yù¨¾­$¶c »HÉ{Ft¨ ®æ{YìçØ £¿{꺞 ­V»’Ÿ}Œ¼ óÜ º@÷.,÷œ Nê¾Öº-NáÔ[úùîèÄ«Ê(t®q³=¼ˆC»uà@¿jI ¯ÎïF­yóú«’*ÜFÚ»»Z aK0ÝŠí✧‰F1®ý"Jƒ˜4A0ëÂâÒ«Pƒ”x½ÝåàLó6öM'Å%¤|¥ê#ø¯¯ý—çpH6Öq— Äßû­DV/œ¦#y‚BŽbjɺ‡¾0ú ÜÙæ @éõùнŒðAbÊ5µ‰‹_á„ðgX{ñ¨]é^#Ì^y÷ʱÞ_](~’·öåU•Z%e¢ A0Ã=w€ÎEˆ 'v}µR%Ãk¡‹µÒ(?EÄ jA ßaÉyÝóüóSø‘ó…ŠáÌü“4ÅœE;»ÒíY<Ú]ïJ¯XëãfááÜhk‘0EÛ6ÝÐu–[w yYŠÿU “,zŒÔ-ჾëÜtQ˜í­1páL¯ÒëéÅ¢Oo½¶Ýû–sY<æëô ØëÈ÷è¥ ~ϪŸÉ¾~‹.:?½€ ²¶¦ ŒŽHXs5‘ûU}£æ&¤RÛu_K ‰=M q'¦+eÙŒ|ç“v}mý°m?–!®]#÷½ ¼×Õ®„, cv M:‡qxû˳.ÖãNÆUnù ~«¶,8[+´D‚o¿5íP4xHß÷(ð˜QÁßü=Œê ÞÇ:ºR_Bßg;¨UÂß<'3xõ°¨•b”ó¡CÅ^ðzúƒCœà8èÎCñÏ%rìHž¤îgb[¡9òP%Õ´F9.Ó3Yý×èDÐzŸÇf»—ä;Š_MaƒÊÞo2Õ¶²[të‘!#ñŒlšËRVÅ·\qROø_~nO!è[o𶆷xö e‡/ûÁ1¶ÃÛ™£s ÿ@Þn¼ó¤P#÷­%Ë$Cßɰ§«) »e]— Éz –ˆæ,E  o Ó‹«ê˜?õq¯­ü!Ú[î;mîÔ1̌ަßÂ7ªDñJ°`ÿ^Ú1|Êõ¦ç3 ‚G½A>™Š›ˆ­P»<.@«¤®U|Î;þÚùeó½þÁmcÇ´ˆªd…#Zâg³öÊs8ßÁ8–Îåž=œ„&qH²JºÚHk;?ý@Vœ¶þJ”Ô­7_0]II¡¹ì!…Íß§jm7„?‚‘à S ý#‹³žÿŒzÎËlæäý·[2ç>çõ#vcÑ[ôh¦PEà½3 ‰¸ ® w·Ó;!ã$þVÑýæ. ÿ\i¥o¼~9x‚Ü?·®dðü%ö8oÕ*l,ªL™dtAFW5Íd¿Æ7“ëJ¼X;w®˜]M‰Wó‘ÍOšH©ÞÖØ»)€¯â@¹XRÊuÛÉ…Û³UOЮ_Z‰> $þZéx„ŸBp—¼ƒËËjHÜû´Óé|]@^W>pau¸<¢°ãã–Ý‹$ÂN³£!ÜO­Vn§Äáÿí¥‹Ã­ßÔœ¾@Ïzd WÏá¬ÒÓ‘¼½e_o k`5à q?ôµµ*^¨Ãã…$R1:E y 3Ùæ;l*˜Â_k3ºc™×N­]a| ’íY( nCÎ [Aâ¿ñÈ=ùe{ðIH¼Ê¬!¹4àÏ tš_Ì);V©ñ½Ó׈ÏzÛ<>ÌÑ/Ê­ñìEO©†Å”wD#³¦Àªå„cAÐ絊݈bùë^`P,úÛ©â½Û=ªåŸÉ~ùŒçíòp¸ÏƒÈ÷=Ûöõlû_'nœ~*ÄG´E2û¥“Œ@Ó¶ëšXü™²'£$Ö~¯6ʼ ™øj]:÷'eGJ@7?ªÎÑ“¯ÛWný{¤­£gF_ùKmNX›½ýDðô˜Q{0d©dOV°8²š\1°§¡–œ_êܧ*Š_‘j°Ý’÷du$ |ÇÐlPÁâD Xb¾‡AÙáï>ž]XVÐ`ä0̯€7)bKÊYxDYš™ÜE/DPŶûM©ÁDƒé³SxÍÑS᫺ÀbaDíTsë: oÍ Ö´Ýz=<˳æ;ÆN³¡Née&eÙ4h߇ZÈo7ö¢»‰Ü-Øçï7Ghü+:KaÒùþ0Ãmqß²g:Ëì÷aw¯˜ï©]Ë“ Í–ö½XƒÙ§(Ÿ#â·>³ -ÃÚ J$—7—Ég OµýÆ÷½<änÌ|âWyŸß'sî  טf‰!<å)2µ;t=6m^ƒÂT¦êHY‚/]('KoÔT†: ®mçBŒç‰•4*)&ôÅ^ÙÞ‡!žŸ±ž® ÚN‘ùKèÝ£a«Ø]7·Gh > #§¶¸ÃH­¶¿(^‰ø_V‘a« ðM‘•±€_'W¸³àm%SxØ"¼¼Âel’’ìã’ ‘¡¬Ž¤Ó<Ÿ”ÁË`žý2"‚åÊ«§­‰ÛI*®Ë ÷VN f©Ä*é6B‹”…ñÞKÑřֹR_X#=6«5P‹~ª*f–ŽAâk·wµÜ4,3¯¥bÌA<#W+­V®‹ƒü†q˜ †•ðãĘžÐ‰Ðâ•éesxÆSiø¾kÓãîËÑÀr8¾)#_Ånѽ×#£úI  bîW•AqÝ#MhXY•Ä»FVcç°‹ËNÊj:M±¥7ʺOÉ<ÂÖ?³õw(éd™eŒñ׬M%ã¦9Âx 1bvª‰/ì^gˆ—‚ójoøÃýç÷-¯3ê5•üº]ƒQò€££b·É¨ŒîEEàÕ~ êmÊàž[ö&¤Ý²ÇŒ’'æï&ÕjnH;¬GPÊÓRLÞ+*5“£õj%51Êùrô­ººG)f5K7û)ÌAò÷.~º‡ÇX<ø5=œHlªÄÿÑfšÁ¢rU³w•7þÚ%ÞŸ{G,«þ¢G[\/Dëc™;ÖI‡—j i™Ì›$­ø¾’ìPÉÒÓåFyÈmÔËd˜…I¨ÿ‹Vq¶%L{%Á¥8Ù{œ$8oä\‚(6fÝJ‚IÈ· –úoÖˆr³×RvsiR½gx ´á·QÊĬ„fÏêÎÌ„ï`ê^©>F8ªG‡ äOöÍÿ2Û«uŽé:‡iWíÚïÏÏPWê!E=céQåø©ÁÀäýÚ"¦üˆšéBƒý±TX¶aõ‰hdž›¥×"‚Žý0_IBb‹0gÑ;]Ã<ˆº3ã$ÀdÝlA;qÉßKÉ&4Àl(&„[/~=ÝÉt¾± î­åB¤»4G=Ž,\æ8È[ ’²1« •s .ËÑ­z¦ÛLÿFÃåF߯ƒ¹ôûÖ¸áνc‰l€çgÛ6ŒþÌž„#p="-p¨z*®%%ü ÐBÂ²Ì þý½ÚŒHBvÆcíOHAæˆOºÛ•ËEPE-ÊÙtQŒ½ð‚dê =¹;VªÝGì¬zÖa™âG4Î'—جÌ6ðÌ÷3žOÌÏd­ø‹™èšýG?F'ÏÆýÙ£,LBÎRüÕš¢!;Àf™?íêlLH6éh.ÎoÐÄj h·Ý@I]€ Ø?SU1üô7í‚+?šáD ¯^» Òn#³ÐÙˆyMØE–ëäí&™Ç›˜Ö‡ u$ ·×èu&JU¸œœó€Êé)sÝ3€Ìé¡ÄꥣÅ&D-qò<ÿŒØaä =KFý5?3îù"S§³<ªJâûw4ÍÚƒŠ¦±b¿À·:Z=§ì&2tI¤ðê«—)SðZ¦üQr+ŸŠ» BRF¡åo‚!V_~•¾q÷ë£_ò)ûutKhzgTó(~yÿ­@fc×Ð-w_€ñ“³{ ym؃vœÛ¡ ggDdk etÛgV¶ýà¯ÁŒý·x[Ã…—¡ÉP‰JÏ–~¥_ŸÑ˜’wX‹U(¬±ï7Ȥ FÜÐKÅ0º€ÈöZŽàÔÞ¾ñ{“^Hy‹Åm#Þ((¦{[ܼõMb•íôŽ=IÓ5:™µî®Ô>&8Ÿ$óÈ1à dW«ì@²~ìç¶'ŠeG4*£âÆÄÒØ=mÜ5Yt0µåľ!o"ç6JTžÄ9~BWçiž¶Y)¬•¼çXÜHp¥ rž#rØû LVB†ŽIá9Wƒ…‡õ*A Ÿ½·ÚÏvú~–íÉÊ"ñeƽ»@$×Ùs¹–Ü‘îqq&5·œ*¨jss…è'ÿPí½îì> pˆˆW€.öE†Sž©u‡*Á_²Ò¦þˆ‡®©Žå®¦ðrKfvù³èw¨ I=à—ßÎ¥îø„\؇kéæ\ *»%öÇ™ñn,Ú,_zÙŽ7í«¸¥`ˆr©$Z‹Ø} ÎBÀ¦"#‡=âÓ”²a#¢ûUb¿û¾íç'§c€©i‰Ú%±ú9žTZ¿ùòÙ-ak)eìz”õ+‚/OÏßÖ¢ŠN& ¼ÅýB`¹ð0½èb°…ÀXh½ejʾ:FF=•máå½`pÞQ¢$öu!‰vVñP)Ôa¥õ3bÉ^ç׳±*¢ÃÂd¼^JÇé-›J“ŸEL"GT/©|Çn‚Ëõß7 !zúøm©P I¡Þ®›Vk*wa¯_Ìñ®4éLØîåïÒã,ðŸ-?rq4ÔšS4gå‹xß­Ê‹Š§6aÀÈô —Õ ø´'¼oRT#kü¹ƒË¾ ˜¬Ò±o³~¼¨\¦7Ã@,‡×‡>l5Öï¶ý^P€ëìÊc,óÚ)³*¾¹º0T¾>yÍþè4ïÈm¯úšÊy¹»ãqžáÀË¿ìl¡1Œ6½bAêÇ©ŒÚîWÎÚmdçÅîäS¢rÜþ²>°%tË5d­ÚË7K/~pèýùŠÈ&ééaKÝ£¢Ó—+’[ ïîPŽ2ù=äÇpŸ‰¯ &Lê¼BBel•M™t—þjŒ5B`÷µäTê‚ì9/=dŒQ€šë^4µ²·—âœB@³I <×<ïû&Nc®ˆÒ|=Ú5d7µºuC;¢·‹äñã^úCtqFü{™ÕþñíæœhÞ‚‹ ®µP{/JÜW¢·)KaSl`“"]B¹(ÎÙÔs¶ï»qNSkwvW6×ÑKÝ„>¿„©:wÊÄ[­7›‚SÊ /…ʘÛwfëZÚ5½F"9Àv'–\¹D³àÏИç`“+!¾NœœDºMðzj‘^œ´`¢ÊÞ­rãß—2 "xä›!«øsâzµ¸’aU×!Z,ïùtõçÖLoŠ•P0*TO%|‹–®©Ðêíù¢åç0˜â4ìâV¶b›XQ ´G¨Íû^SŽ ãÛÚš®nMæÈ6H ‹kTî£*8çlo_0›ý¤~o² |›B¤×þHÜ ýñ.¼âÁZŒoÃ2KБÓpeé<­ÇÑ*/’bWu“_R§MÚC‘h„\ê6€Ú”»ª^eáÀ†^r±‚E"ÆgOn›j— qSÎmëVaLò|¿B¨»Cí;›}ʓՙ¨iwW4 ù6LË0€ØïMà˜w@'‚³ã22™¸6 wÙÝÆùëUäzÊÕÑãÓIæÀìw]ëjKUêËmÔU¼| –iX•/pÍ ¬Á¦éð†BôMê^X꤬'"ô/åØ@<ªÁ9û︈<È7û'–åŽPQŸO¾Þ„ï>¼eÝf9÷Õž™ÍïJ­™;t%ò~dmPÈr`€G¡ywjƒmù‰=€L£'`>[”+ª”ÊœˆUØš »˜'ÏöG×gaNžV°QÅ|j¾ž«VZëï´Ò"8ÓeË£NéO7I'í_ u§Gô;Í >‡©óäm‰ð“›\3Ûîó6¥RÆžÔ…øÎtÊø œ Æ&ýû{têö<‚~í2¯2é鿨'Ý¥}æ¾.i6ïLRÀ×¢gÐ’9Z+OÂãèN ×O„`4ö[o5ÄQ6e žð9KvC”ª:Ísÿ{1jäSô‘ì({},aoçLg%<}€šÊVW³!~î ‰ÊZ’Ôbì9»F™ÒÇ3©K&‰T(„Dn‰jÊ?Îxîú订…±v”òÜ™£šlÙ{ù”ÕÄ}¦ÊcKzñ„Šw¿… è\>9iDå•t!±CIÏ©aA¬¶-Ï1zðíS>Q‘äØãØngÝþ2·®ô´®;ÈÄ‚Er²žù ¤œþ-­L.ª?:ꆊ9¼žHHgĵ¤ý’Zv‡h¯5ãFôµD£ªTðË`?dhƒ‘§§vÆes£®¶ÞæÛwœUXX+Ѹ#U³i3É39GZüA¿6þ°¯"QfÓ¥èý¨Úà[&ÁçTÌrL›?=&)¶†¼:Z¶"qdØ^¶çÁðA,PƒMÚ·-CgYˆñÙ4˯èçȧùöÍÃs•Ö Éw‹§yE¯2 `¯_È–¨Rò d ýöóq’Õ›¢ÒY¶f§W°ïÕ0kÚúÉÄ 6>¦ 4åØ²Ê…2¸Ëlhà(y¦a=°G$sØ5FJƒs$LJ&\¨ó¹‘àÆõq%ƒ†|Ž%âJñUcU^kD–S©êŸ·IqY´yºNá¯J6rêäeeuR®jÁè"Æ_݃Ø7°íA^Å,º;Ïœ‹·.¨ÙÉ{8‘ÎÆÐÁpIál>ø™ãÃ`ÛĘVµíuíü?µ JôK Φ´çÅ”XÈÁ=zšv®¡ a¼!¦4X.ß;E†¯–ÁF¨¼I¼J9A ZF£wNå ©›±ˆV—Ž}Ìú\¯+ì <(H,bÁ’2Ç›;™ÃÇß¾¯Sí[¶WX!K¯3¸H­¾¦z/P§ôØü5åÔ#›êÄÐvÍc«I&ã%©¨x$zæU8me»×2úá {–läkÁƹKsÔa«‰ó1ç왘§çôÒþŽ<œ8Në3ÿüq$"‰Ó qE¶úìÉÎFW3ª~#}mmoƒû˜ïOùáßdñI¦ƒ¬÷,DS<ÿùž7ç ƒXzФSx2ê™7ˆVï’%ȬÌ8KΖîåÉ| ÁkÆ6'ÏvÛýÎË+J¹QA‚34x/ ¬£‘`©¡#@fžµ&ÔOsCÉ('wV’IÅr± 3"ýpí³|]Ì:ª„Ãùû•žÚ†Ê–,kâòa‡‹€"¯¥Ò«è¼kV5®×MöaòЛ˜²Ëo³¨»áR ìî°pù‰‡K&Qå“y,â*œµ4ë¢äÌ…õ`ÂÂð`èÁÒ”Ž…ë$Ô‡ž#*÷|\€üž¼µ¾˜m­Ò,:…™/:fJžÜŽk¯‡¥(NOû¡Éöb£_;%Ò@–¾%wíˆmd1¿ó¦RÒÕ1¾úØ+He[êµöÒ¯¥×‰Xzœ8z\Ø÷r¢óä ›ôé?î žLÄàhØ=ô.8Ruà¦)Ó½Å)6bëÉŽ¥ós7(e1*c"ßò´*«Ùز R6;.š ìÖGõ}ý,~HÄ$…SZꯞÒ4ÇͶœ)W+ „×[ú×C½,ïÿ3lV3ݱ?O/Æž9Ñ»öÃ$‚ÃßrÉo¦îÀíS1ìNvqÇîth×V•ºŒ.9t-C¤kòË<^½±ª2Ð_`˪¢FÐ)2Zu:¬˜©Á wö¢ìw\˜ã“V-•ýéÄë à,%³¡B¯“9òfΫ}mº”£§'…}"Ì-¥ÛY¶`7•ÝPÇOú¼á`åÁú’÷kPÓ@8æÓ"ª0¨\ ‚pDÌeVŸàO•äXálÑk_nf)yëBÅÙ»h,KäcR>=;¬'—vk¤ 8itj%¸Ã›Ëg¿—‰O :€Ì­ëq=Ñgn0÷ó©Pvé1’“ >¯úhïÑtñ§‡Ø$å‹Lÿ#?^Þ¯ÑëE…tE!VíÒÿïn•n¡ ȦÖù:7ÔM³{8örD*f‡ÿ_SMsâ)zÀÝëîXÖíú„ »Ÿi´(.n¢SááÌ^Ž÷ŸbI˜ÕÅ]º°ŽHžëSKïJY‰$›.þ„MòçãrýêÑëf[~±ÿö§SB$ ŠÀD û¨¶æs¨Ó ØñæPüWšâ³R<¹:8áWã ^g,cùÓâ+n½–¥hC÷¬µ„¯w,‚K)€g.À_‚.„ܰKKª ìLGý¾Ç½î])µÏSÝ„uz|Ôì@qŸ R74²ÌÏ{ãE|Ю±À­ûkü\ÿ/…„pé­ß¿sÆýnnÏbÎ;„9v¼¶ü.@®;üõà‘°”ÛHbŒäë&îAÚHÁ\FÀ÷þ­·þÔÆŸ Äa_b¯ÙY=pøÞ”A沕JØÄ-‹4ìbâ!(*çäï ÂLNçûG1´yvæµ±•µe_#ªÖ6ä^…h&3߃þèº9ûP`X>8T~¤æ#ãmÍV5&Ë ÞL~sK9ÏzW6Aàø£ç1Iˆ›Ü #i¼®úõø”¾ ÔǼ(lH¥5f;™µ*§wÛîDYF1âW:è9Œf.‘O¦gâÎ<¸"¢û²ÆÌÊ@Ì[†ŠÛ´(=>ÃYle1rûàùWQ~uΚ Õ—ß´¸Ì=±ÿÒ·Ù£ö¥…:«/Ë"ˆTž ê™îëé,°@``­±tW8\›Ä˜9jyãKÁ™âXK¨òóK"¬Kaÿ¢ŽžVO´'óëf’2zìüæ+®FÉ|’=kõChBˆçm@­ /ym¶à&4aÈ>Â!H<¦âû¦¸ƒŒ90ëºtÃ4K<[vÝ Ã«¯SçdÚÀUÒgý4A>¾M{P:ëP¶aòÊ¥çÓ“Wû#RÐ%Kä@A.k+®¿’/|èh2òzTø_ò‘é[ `"zLzÅ^9ŽY±Çí©Öè2a'Âiû€ñ.š÷9Y oDÚÅÙ‹Úö¼÷1Šˆ¿Û¦2¤u|þeÕæ¿·5êHƒTnßl»ÚvçÉÁ¢lù¼ŒŒ()BYnŸt#Ëÿäô¿=j‰ßXÃyÚ&M™1¢Þó7…9ÆJ`©€Þª?°Û×X%£¿ÕŒœ!4Büö‡%÷(EõÚ}Ÿü´ |Ô‰+ÚQ¢+ò8WŒ&qIˆÆKBíSæ/r/ÙyØð[q–®åzÁ—âyŠ—+¡)–ƒã…giÆž¥§É˜»Ëg˃[¡¸uË¢–CßȇÊÙQ«Ô†9'âõ=6]<8q,†à¼}•qµ æ“)á… ˜ê},sUR¥t5à×»°Ðy*kù›y•¨¥÷ŽNL‹F6‰)Óáú¦€IyÙr 0×’oÀ:îX%ÊßšäÃg Óz*¿Sر“fã­¢n"£Ã7 5nøÝFSõÂâ¯añ0Hòš›p" 'Ø„ÝèUA·(™ï·g7‘iVœ±éë¹h~îk6ÞRÚót)u«pE•úýsjr˜'QA»6–±A(”Zïó½j’´§~"¥àW•§yk‹kÝJ˜Ť.[ò'öÖ0FSòE­ªS±¨á?C¼ànFÁöwÂp:»í’o‚7¤ùr[Á|ÉG¶'æªODã72`|p¡§^GÁk˜\ãS6«Ÿ9Ch—IËMt3î´LrN*Û Ãôn ]ó|ìÄœmJ"Ú¡˜~â׫𲑯æ :.àA·ÜSaF#Ct–Ðþº^• tÎyN–Ð/Ý¡tÃàù-ÏŽ’àd:> stream xÚT 8”kÿÆ)1Q‘ÊÒÉb6†¬d߉Â95fÞa¼cf˜±"B–J¨d)*K¡Bª£tꈃ8i³'L¥QYâ{-mçÿ¿®ï»æºfæþí÷óÜ¿Gi³£‹‘{Cæ0­Ccõ€©«+°XM4‹G))¹ÒØþÐW;JÉ b²h0]ï‡S&Db#63 ´ƒéÀ:Èà4N[§£‡Å<«û5fê3R0ìÐÀ¦C,”’)ÌaÒ||ÙHŸ¯ YàtuuÔÒ1bÒÈ$:°#±}¡¤#™ä\`2 b‡üTBÅÀ—Ífèa0M `¡a¦‘ª:àÐØ¾ÀbAÌ`ˆæ){R´D R®¾4֢æ²9$&ƒ? ÑYHJ1Ò¸XÙD_ ¶] PK‡phÜ·rKÙó…hô…d™ 0HôÝPiþp0·E³¹lu@¢SæIþ,É'“hþ$o$`at0':Âp‰‹Ì¤1Ø,4‹æ?Ï3_9ætŠ)ÑÙ,Ôü|f4&DFÎ=³t¹~t˜CûЍ4:…:OƒÄÀì¢Óƒ +³¥Ä„únóØ€€Åb·kj(@\²/f¾kZpâæÍ‡ˆ0ÌT„A£BÈ*ŒE †›E„ýèø¡p8@¡‘ÙÀò¡ÑQß«#fˆºˆ‘ûgÒ¸À‹È°óŸoÿ~CFéþ!ßîcgâfg±sÛåoN˜ Â4p@¯©x- ­K?Wq$Ñ–¦À~Ï´¢Sa »8,rJ_^R€ÊÒz¨‚ŸkÙÈn! ò]æ^X–Œ|áþg±/¤üŸ¯ò_eþï‰Ìƒüýü*‹ÿÇO  ù‡,E º b#;`#›@ÿw¨;´¸¸v…ðo¯›„ì‘îãÿí i,s¢8ÒØdßm,šwÍï™?9Â,ÚüË4pXì¿|Èr‘ý׃…HrÁ!»ósÇt2L™_2–eÊUåxcÙŽÏ*^–WÄ6ʺS޶&ZIwÎJa®È¦»3:O ‘ls—©nœY' ]F  I÷ÛY3F#rkŽî,н½AªÖð¢wNœ‡R™øŒžsG£¨ÇÐé×èœ.òï©ÔÓn´]Þ“¾ÖÔyÕ:6µ¨¼CR¾^gâó4E·;áônÝ­5YoS³Ž?í“ÇÑ·6}?ùiOX’O{ý«÷7 0"³µBÅ¡W-ZždÔ*žéÉ Ò——axëK =ÐoçÒ„—]ä…;‹–§+=êï¼Å3Üq&ƒ—{vÓ—9S^pxZ †wìAOâŽ'ßj›ç*¬I}XûŸ[¾\+®yNMobNäú• '0 ͆kÌ1É‘Õ1éªFQâ^ÂiFë[t†ƒË$ÞÙîNp(ÜW•wS€Pöª«bÍ–E`Ï´Þ ÐñZÖ¾V0Uq"²YøÐ¾‰!AE¯¦Í‚'‹ã]¤-çïæ|þ€{³áéÈrþåƒh§[×´«4knÛ˜œå©_¿9—×e´ÿÒE™ƒ"#ç^tQ×=fwèÔ´mÿª*ŸòOôÊVÛÞc!ƒÓîÓù!žGDÝ¢“+íE[S‚|~«ÞZÿúH±“ÒúóDâe»‹2j œ»¢§=5¹µ{¶Ö9ÇÚ½©UùûÔ%1çvEã¡SÙƒ3Ó‡?…´o1už"Öçx¼`جOôM‡íÒÖ°LüãÆ÷Íeô¦)GLA§ê¬Φdâ Œ³×\?Ú±îŽÜº– 7쀃Ý.‰v(ŒŒFev´ÊÇÜ É‚Âcw£  ǽ;þ:ˆÖ¯ 5(í†fnzˆZT߬æé(äTŠÜUšhÈ5fÌù¥M•¬žêðä …®'Ý@ÆÈú|ðØa…xÎ ÛkË‘Ø2†Íã^Ô”ß+p<¶83fj³²ÆúñÂn!Á†åM'‹ÿŠžkr endstream endobj 254 0 obj << /Length1 1682 /Length2 15641 /Length3 0 /Length 16676 /Filter /FlateDecode >> stream xÚµºuT[_Ÿ=Œw×àRÜ¥…âînEƒ“àîîVÜ)îîîVÜÝ][Šxé÷™ùÍÌ3óﻲ’›óÑ}öÙ笻nBM®¤Ê$l 6J€ANLl̬ü9y°­ˆ•Ihîlcä`gfeåD¤¦u9Y‚AbFN@~“@ÑÄé=÷=‚••‘ Þ¦cw€<ÐÉHÍÝÈ 3úg vtb26r|wAæ– ý{Š(ØÎÝÁÒÜÂéo &¦¿•þf‹0dŒL¬Á®ŽÖ–#)@†Yž v}7ZèÀ €1ÐÂÈÆ 6¨µêªâ*ªIEu%Uzæ÷ªÎvv`‡ÿÀ"ªª¦.ÉVP5’êªj?Õ€ wü挵wÿß>ïÓåÅÕ„Õ´•ÄÙXþÎÀp:8ZþmûoØhÞ‘þ Ú{ª™ØöŸ: '';~WWWfsgG'f°ƒ9³Í?øÔ,,®`kÀûÕhü‡gé;NÀø»*9K Èø7Iü/§í;•ïIïv§ÿì§¿5mþpÿG #Çrå””ä¶F– ' Èdòèdääì0üÇöþšÒþ  êìàð·‡üºþ_›ÿ„.~Ÿ™ž§·‘뿯˜ÈÙÑã¿qó?§m9Z::9þ«"`fiü‹ÞñïšY‚þ±É +HKˆ«ª1ɽ Ä$~gÄìäæôOôßzÂbrü^Vn'€õ]¤â SQ°­í;jGÄ¿ô‰Y¾óävpgùß¶]Ažÿ‡ÃÌdjö—{Sg;u¥½3PZì?ÂßMˆÿe3:X@{ÐÍÄ‚åoÃôò×Ìö×üN„·§Ø`fdãô¶4¾_=\€'g ·çwüÏ"ÀÔÒÄé]êïÛñŸêÒ 30€ï_æw$ÿéúÐý³Uéß÷©)dã0š!²(€Þ%A÷ÿÏNû·^Î66 F¶@ºÿÅé¿ÙZÚ¸ÿÏÐ ÑþEK§v°5²ù7Ÿ¥£„¥ÐTÉÒÉÄâ_ÔþË.ídô®a¹ ð}Yþ1©ÿÝR6ïÚ}?,ÿ_&6Nîó½ËÒÄttpþ+ øNÄ¿!~gÿ/^‹º´¸’¦ôÇÿ-›âÄA&`SK9€‹`äà`äŽÈú®v..€'Û»°MnÿˆÀ ;½§ìœ¼f`Ä¿ ÊÆÃ`1w¶´±Ú‚l€fNýÿrñòü7׿Öò¯ïâTú»Wÿ!ëÿC쟱ª“بiiú~€ÿ·y£÷’nº¬ï b{·¿¿þó›þÿh@ý_âÿoÙ""`7O&NV;ßû|9ßµËÆÆÎãý?rMþužü£Þw†ÿsüw3€@7  âÊ"ØD È*¥)¤ÔG<º –šù¼WPK&f%}ºƒ_,w—(Tàßâ—AS–“â×÷IòiQáØ¼n¶&VNý6Uþ²gä#ïC„*.<ž£Á¬!¿ìWÖEA"“ó]»˜s6£-¾ >~*Ê×ÑýÍ>ù†ñ+™B¯¬m=Öµpž­ÛÁÓm°“hyºÒéí;6ʨOx…aÎð{î¸ œ]o7Ö>dT¡ÐŸHºý þ,qºGûÍUõ“ºáŽHÄ$¾TÄeæ’Úozˆ¸®éýòxIÐaS¨ñŽ]Îþߥ§Ei³O 1f–Ÿø8n¼´¿¨­¤ˆŸ¯õ§XSñ§ÙJz¨d„˜· 5»}FrHbÄeäÉÔ=ÉóNd0Þ:?l¿ÔëØj#¾îÂ?4®ÂG$’‚2κ™¡ÆóC^.YdÅù“QüF!Eê·‰îYÌÑ¿BcÈã“XñÅAëpÿ¬¸’8*Ágˆ„ËŠÀe-„é¦ÔHÎ)v;ˆoÞÃ7@‘UÝjóöŽnsCþDomµ’¢k-$Ö0¸’ùI€×xE%øßð͹½M•ðv‹G­ÑÚKñ³ÒôËaÉ+¯©ž:8,>®…Àâ|ÕÇÇÚI[VYcfr½ˆæÙMs޹nä–ñúL.0gÎÈ£¶=rp¾<¡£…š«A8FW¡ïJ¿U\;õc4º…¾·î”M¡Qn«6Rc%âÏ\ÂïUéלÌ?‰X^\OÁŽ"q1Sò@8SEŒ7óš*<{šýmí¥¾Rá\¢eç×Jº/R$›EöÏýÊ„îWB8‚4Ë_$eÍZXÇtÄõòª»j©Þ8€•rk;ˆx51ü’tŒ‡ØHfógãºÐòCëú6] â4\¤Úß%Îâû‹sç>¬Ý*÷é¡N¸wí_ >¨¢(¾&w[õür-É×tÁçÞOûE^´qR]9}ÏVeg'S\ÈTnÄQE:%¬wr¿!Ê%H""ÝÀ@¿4’tEyÃ~&2¸)ƒ¼™‘Æh }=î `'’nþœ%˜9С&—ÿ= ’)r¢BúwÕ“=$ìWÀDj@\‘ÑK–£Ã¿횘DyÖx±Eg©ÕÎyzñ—êZ9u¿Ä£•!]º-S‘`!B±1ɵ_§òÕØáüJôƒöÈ>zÞæâ¬¢à¼[­­öHÏ5Vz‹@(x¯ßóž ×î4w$}ÿûÑö´Á¥}”Cb3†_Yá{!JšíŸõ.äy‡_4§°¢Râ&Öc]'ˆ‹X–ªÝ•OVîjšG~^]cê‰ÛS§ˆ´µeL#ÝKæ‹Fæ_ ŠÛW¨D©mƒvÓ¤Í$õ©XGÎ"”¯ÖGS`áæ‹ÝÌ ˜¸Ö“Ãé’ÓºTÝ8tŽZ $\¥"*GÀàHÅ¥®ò¹/£Ëº\ I¨âÛh.Y^1„5®¢éëMÊ'ÛúiDlOÖÙ¹a8 \‘³'Þ#€¥QŒ,ɨ´·ëÐá¯K¯ŸwÁ'D¬Ôúä9ø:G¬oé”´ÅÅðô’¬Ì[[}®±$1x¯¢RfŸ\°îÅí]~BãÉv'I+ ÀÈŽ¹*ÜP‘„ø1 ^H~µZ‹åö¤9Ö¨Q¤á Èü–Œ‹ÏXxl3þhÿºI½÷ëÓv'6¿)äŽî05‰„¼`§JË+JCçíÐ']\¨îžB¿¸]'O”%Do«Y›H¹¸;¾l¿×Æ™D»$Š¢¸Ÿà"ü­¿¦jQ?·‡×în¬×u`úËÄL ¡{5xz¿µÐ~ 4BpƒfW §-eµûürÿ:ÐtÀàÿ°iJ*_Pè\ռЕЊËK˜|/ч°*+)Pœ¯y£x1çlý8>EKcRñ¸ë„0ˆÏÍ_Úî–&T*Û<6€æB÷Œn+öÚ1àö@¸úÈ ×m¾=›ÆIÓ˜ð ¦')÷ËšïóúCh3ìÝßî ™ï±««Ä„óš•墻¼ž»§ô*Õ!”ƒK~R„Iv‰ÖÆSt/‹°#ó­lMI¤Š.Ó÷ƒpÙ&mï]¼]c³’ép¯³ ßêÃÚåÁÜ—ÑR1Îí·)kÒ{¿iÐ’{WC£\Çè‹wÆ'ßô#âH|gΊ±SM"yŒä¡zâ>â:Cô©8.ˆ‹ÙůL“fèz]ûDc;‚IQ3ÉñsÕ×ôõ„Cù xÌž >/µz_?æa?òg|&( * O² L…·Ç ¾lËs^:f¢“hx͈»<‘XDol«3CÝßÂ:‡ØÏ'Í™t@½8„Í@¥˜“È[—+6¢ “˜‘;õ'«½ö¸ÏYçMÏ<Ä0º4à{¼®éÌ1Aé3·èÝ;Ò{ÛðKP,ÝL¯§RRÛDE h#ؘ(YÔXxyW¿‰“ªùõÖãÛ*ïgæ¯VõR9Ývð®ö²ÇcQ÷h Aú{sd˜äßo, uä…}²æ?;@ý\nàÝl›ë›W®£SÕx}6â\èîŠ ãðŒ R¸ž ç:_lw´¸íïu8|UÕôóp}°ÌE— ¤¨óL7ë,´÷¸r »8qSy]$#Oâ]ÆWy°n6¾§œøn†ß–$z]’)M,ú]öUÍdÔ(yíÿXÍó¦Ñ…‚üˆ”ë.Šê+18 ´D“'–È6·Œþ42¹5&³-…×Ó‘LÑ€äç7Θ¨Ò0.Eªl×Ñ1û“P÷¿¹:ÈáȃÑ!›  ör½Ñ2/ž4i”i÷8¤º¿¨n ÅYò°($;œ™k®î»"-"¸)@#Ÿ˜zÔ°u‹Zì0^ØéhQv[õqFJ´ë׿¸ßÄ2Çý1Œ·©6ÊÓsûæÒCç1¯-UGaØ)E¨Öð»«ì5¬Ù©d‰€$ýÀ¤Þã8D¯È$LàxnÉKWÖÒ¢”‘îå•¡ËÀCÜҦϥ•…Y2ƒ˜"aܲly¥btg® ‚˜‘bŽ†Ù°žÉ}xèÂ~’¢¥á› ûYùº—ãZŒC—Á?Ã!2Ì0ºG±ø ¤1)‰õªxžñ%òܨò+ö½@ÝÜ¥ ™ÀÕQ`åÃ÷ vhxq ^ë@Ú¹Òåt—ÇÅ„„‹ô’éU¯J\ð,(…“× m§ØwÌ‚¡`_ãÝwü:ô-,ªYÁ,·¹¼T±øQ¢Ø“ø”\kËê‹ûÊG%Ÿ‹ $iyã6E¯ý&yʦ§z{ESG[æp˜Ö?ÍMì; ×MñÌÖ©å³S÷†GèhC#«Žùkuîø÷¹×e&YðpŠÕZ5úÏÛ>©‹fõ§ ž Ò•™ñØÉYÚh#ýº Ó=ÔÉÑ4cô–€ áÏ–tÏ5 ×Oä"¬­o…Èêw.y-–h}\5¿à­„ª$<¸XTå»·R0­²yî>–¥ 4ŠÝk6™ ç ð½  „hAÓ‚†¿¤‡¸HdË'Ž]OŸ¯ü©ê@ìnhÌñN|ã8e÷ÜSiXè5‡¤ÑãDx³¹éá…WŒUô.i¨º\¡Âiœ¯ítçVßÈV««íïË£NQqP{Ö’†$Z?H¥™ÅÝLÈúªÖO¬“ÈGÀ¦º|QÖZaþ&Fߨs\NqÎå¿ëÜ‘x~æ©ìv‡iÁÇ’c“5nàÄ´UÒ’“6ðsÆøŒ~=|@£KâØé.› Œ1›Y¶›âvˆ¡ûÊwO¬“öMÉ©±1_¹ðFÔ¨JE…:Ò/äRs¢M}.±Ü¬x`®œñÉôËÒ±¼€]©zç ¥¡˜°%ñz…!€ékóvcþꎿýŠx ÿò“÷Ì@Å´SósFAx‹Ç'+@LfM=šÇ@c•1ûØÌÓÁ$CÅÄ6pþâliŠ+1nh{ *BƲÙk¬G‘k€âˆÄ§ûsºüÕÈ¡/xfãÔñ,ƒ˜5='—é~ ÉI,{‚sŒìªY CQza0Ò?jõ™·$F_&I[B9˜sU¢>2¥àRE«ì‘Á?y)rƒN&–I0«†«³.—ŠÆ™F› KÕ‹H¤ü#瀿Էæ/“w(`vb‚¬èÎlÇýóOâBÀÓ–âׇU¼É–‹Ó|KÁvö¯gPþ ‹Ân¿WZXÞhõɸ?ldÏ|«üÕ'[(.¥ØÓIhþƒÀËÜ9¯¹éCW™×£?Ëj'sU±º¼ëØÜ[Äï‡ Z/ºÌ¶Zz N¤\±¬N~#8Ø7/½qìPëóê l¾ôOXF¼} ½ý¡$·³O×zYcœBýš^~ÀxœìOáŸÜ†êaÔ|.*ƒº”ÕÂbN»Ô|%­‚QP¿èª|î¯7G_,òà‰~ßÒª–SꙤ܀úlmh$²_'vh,êhu Ê*B¸Œl_f…]>+¢’÷m "œáK‘cÌ㈰£ EyA\èâmreå…ú£R•Z\ŠTÙš:¤€Fc!38•Bp%Dü ] Þ”wtG»üV3Pi-‡}†K“ÒÖ¸.f]*øðiè:ñäBG½µ[¦ï8 •…fjCËÐ÷Š»ª±õn¨ï¢nU€"žC!pƒ˜6¡""€ç^(Kí’XôÕ!;‡QYƒ&¯'SÒ³®B8ÙDv>çÿ±·‡ˆšDIž™Ô)^ü«»`Zlᬪ¨îŧÉ?œYö«F²L`êx•T…„ÀK¡/>=æŒÎ»± µxõ€þ¡fL2Âʺ"j†IkJ[`&Š´XWެßϘ¡Q u7Õÿ¤<‰7£LYáƒhVú§œp{½U‡qâ .®{·;¡®8ûÒ$]Îu`‹õ¬þÈ–ƒ5þÂ;Ä‚Z±v)o_‘Ìè aU›2ßÞ¯t§÷+®Ò¥ÔÛ‰b/Šú[”+îHŸ×ifBŒºž˜æª?)Æ7{Rìhµá}Üã5Ú‰¨æ—ftåþ¿´s¼xÐq8_ÍÌ Ðú•8Ë­õÖeQÄýcº7õG Œª¿1“-5{j¤0ÀWo,bè<{µ{¸úö9zR€ÚÃbXÇ8`ÁÀDtw—T‘íqÙrçסߵƒ¶FÒ™?âNU#Ôi^tÞü§e_n¢Q¨¯ö i©Žèû\O ôke¿¦þ)Ûòó Î\¬rÑ6ŒxÓ“`ŽRu ¢ø_ö+»t;—kîdàSNhõ ÂKÝ3!Ë-Þ]9ôU95ÊTaTOš=ùTŠû䫳r\þ÷?«FzBd¹´oÒþŽ9¼ØD‘²ˆ¸³¨ƒƒ»ÙHcrT9ça`,¢ôSõ+*µÎ:€“2a¦†~ - (+ÙíŸYÍÐÜb ƒ3òX{AQ¥ºs =u\f¡]‹Î|1Z„|’Gì˜vG[‹än6 3™´½™l`è4õ©m*$&¦ ¿^È"زþüOùÉmäQ÷Ja46‚¥ º+Ã%¾á¬«xr…E,^™¨´e³›ñç³vGH1Fu'îÌ@ô㕦U¥’öäÕ¬F^K=1Àh´ßø—ÉWºh¦ücÍÁß6¹æ9¥Tµ¾I?)Ì¿N™ˆS9]lø^döC?8XCxœMÉ#@÷€€eçhè !—¡$šÍÏo‚kÄ‹R ¯¯ðQ rx›6†oû}2£Ý¡2u8£'÷ aìµÌ—:à I„ºe¾Ìð¸ÃEÅùs›×2,ð®f¦– Ù¹"­aH䉽o4NÇ RQ]lßúdx»6ÍÇvk›R)7¢lT4Ò)NÌð¡hܳ¯@1Ã@o¢Sr-!5"57þ+–ŒdA^¡®YåíÞWéý¸JºÚéuXŸÝ¯YWȈ“}êÓéšPO׃@~'H8ªL]äàÛ-_O:esJ¢1y‘Ÿ^µ—ZÂxü7mEZX³Ý»¾ëdÜŸÉÙ ;Ã_s¨;6j*ºsЭE2{°¸mR°XòþhCúqWÜëg?íi("‰5ì熶" ©F¦Œõe9ÌTFáAù§"»ri)Ì,”Ôƒf== RšK±¸Xª˜l´í§1|”eN Š(Yÿ–y=È ½¨–¶¸ õŽÙQ91à—k±w—îk”›ºfºÙÅ\Œàžˆš¤AxwsÁTâ—m_×£‘Ï]\ž°B—¶P~<¯šß>ÈQv¥zÓC%¬rÕú5üô=m‚Ý@Ò9Ü,eY­Þ¸üUÅfAñhnÏ€0¨ñ˜e‹èc‹æÐÛ¦‰KŸ°¬á‡»O„ÂYÛk<`,Ê7P¼3`°8xôSÔö¡-¶‡5ì›WLºp"zÅÒ¶ûva¢®aÕgÑm‰øSN–qÊ­¢.‘ò)—lË Ãi©8‘%Ê3b¸V©KÿCyµ/Êl樒ˆýM%ȼÚÐ 2¢Ž’ë4M×",_rq± |™õ¼ ˜|³÷©nû}îI_£uæ$†ÝQhÚN'm®¢[«± é,¡°k‚bƒW›,ç/À©sМó9Æq)Vù–1éª}ÙÈùåßèUR XñG c(ÇS õÌg™ :…^¸…pXßnuuC¾¸¡"¢#6ã<)FžÀ19 ÆÀּ⾊T <Ô><ûº:¶`|Þ : œ…®BÉÎë*8Ü;ò"qÓ`Ø-mÀaïgÝ °ç`6mwêDg‹•:ÅÓöÜ3ìúªçyÉ'ÔE &ZïIY?Dí‹@YåæÄhkÉþêóEüèÀ­Ý•ziÊ)Ð^Ódü[ßzc„†Þû¥¥Ì•0ï]nÌijðÞ>àún òaºþ“aë=Ôêšr9kl·‚ö¡†Zý§"¼¥+ìG¼\vcs^jæÏm„ Pö Éuëäp>½òm–KžÊkHÊTB¦µdy4x‰äA»ZøtØ R.Q`dê`58J& )Su¯VÏŒMɛ瘎FU.ŸÂnvékÍ(kq\)Êlꂃïà‹\ `_›£Oèpt³ŒHᵡģ’OÐíì ^Ôn±)Ž\EL(Ì SƦQï‰ q%Ú€X¡LÁŽ­•*Ó3CNÛÄh-’r$ìTy¤Òtþ¸ð¶5<ÚÏ ¼–W*$<ŽÔ£%uz­‹÷¢Æô“+)<¡*g#šåB,H»t6¡w¢³bO©PC­]–‡TPfàèñ õÁ|)W[…ƒÛ‡ø H~ ¦Pܲ‡lÔ©­‘jÂmôZÓH6ßõ¾(;Ýž»ÍÔñ¤á@ËÂkEf`ÆJ£BÅÅ  Mzô+–azÈe­DþH… â%»Î£ë„½»·ãÄ~P5‚w)ªšY{i–Q-ÕÆp›@9+4 ®Ö cº—xTÒ­ý ¿'³ËÅo¹MÃÁu¶CYÿ·¨“}rC!B¹~OlÓÆ0ƒivÏg7xe«åkÈ·@ÛÔNhêÓw7}8Jùùaãi:R ²ïèÓ&«_ä!6«9[ûØ·ˆÀ¦ðX;6&©Á$žZ-–?lrUJÔx°ª´ÖãP “˼ñ ™<ÑÑ…ß‘½úY‹8š….¥»4YˆÊDfÔÊÅàa[ç!’ÜN´¬'qáϵý«±:Ÿ 䈪:-4k¬É!ò~˜ >F§–¼Êåêømýi«|%|ಞ¼ì¼6Ô±ÏÞbv,in‰!ÄŒ²Àð5ƒrìÁÐl̬§“ûˆ¯‹?Fáâ!äÝ™ª`N±xz=Ub>Ü,(®Œ{ãX¹bL·'Þ¸{5Mέ¹o8šü©a¹* dñlƒ.l×^ŽlæuãÞß‘9Ûâß>%˜§²^7”ú‘â‹J!òÂñïašmû8pïÉ 5ÙûDºËÔ­½lñ‡›FÅ™òUsôûœ¦xj=ƒ ¼ÁÏK5Ã1D™Ðð6‰óȾl÷­”×ʤy„Û¶Ì×IÚFQÎU$¥‹{~ÁÚº^@/²ÒõTh²îG#Ò{’ó%;Ø|\(Ksfq-{¹¨c'Cä®­í9᪲´ÑéMè»ø¬â(¥)7õM´r\{ˆá[GÌœbÃæ¬Íñ‘óHb Á6ä»[òÇU®yÍÂð|zŠyÎŒ}a[ÒÛÄL`.ËúüJå'œ#’Á·8 o‚s…½^ví£Êúífæ…³»u-‡./ý©l]®uj)äì^·”œ7¿_q…Å×´¡H1u²¸¼Üó—µFÓ£[‡'Õ°^§kº~5I°…8ò‰F9=ô\Š'¡·ï• г¢àužä³¦ÍÉ€âÊ–g>ÒNXöݺ*æ4á±þùº°x&ÕxÌÁO(!ü“'e'×ËÆ }œ|Û”¨”Ù±¬Üß«˜’ó©-zާŒT27JçK-|…Yæf,¥e¦Hšñ*ùgÄ-(¤+¬ƒ@ÖtÖOgë®n+åKQHU,DhžCÇlåI}äœ) ´+Ë™~e²ü¹z z/'JÂ"¨@p2WUúœ_†½»ÂXw»«Çú1¹ÞÝh^ÇÕâU1h ÕºŠŒ¹VGª'tö;lCŹ0Ñ{*,SpÌÒÝJ:±)6 Ìad©£¦Ï÷W=f3x3#ú1æ–´v §².ôö› ›ª¼†4ÓœC¸{´Mƒûs^S¼ÀÞr«Y&k„‰Æ^¦Ù¶m¯ZñÄDä²!€Õïͤ–â’´Ï`•ÜòÅ4UjÖéáw·{ÜRÖa,ª/³šˆMB¯B\ h´²Óv^Ý å´a¼‘½ˆEfLƒè¥îJ\#W§/Q+ò5eÑË«dU &kõƒLUý\áyB¶]ÕՖͪ(¥_ð*…þ”¼©½8¸e·qþ0Ì)D ³nï?â¡)ÿÆ)^U lyx=¨Ud"4;GÊ|7½ññM0þeNVÏ¥47Úè'Wˆö•ø@fßtàÛÞEg€¼¥<¼…gÎ,·xYhýÑŒrµDTMÞàû†„ Õ2ÿRÙ’—zú£ÜôáïeS·œ;’:&*oš=Ö¹¦Þ½¯Šîˆ®/S¡F¥‚âÏôxîþ²mûäx¶”ñYµšÇ^7G˜E‚š[C<Øœß+Ä2RÉ×ñÉúÕe¯Ç厇Á¸ö …Õܸ™ºV­(¥é„ïha~{¤0}‹¦b5—>¦0¢ô MH ni¿kƒðzñìÍpÒ(Àƒç´¼äöê}²X]õnƒÁ£YŠùs‹¡²éÐHö±I ˆ§‹*[¢=`áSõºÚŽ©Õ^|Ø‚:„Ð…D‡¡ ‹Xð±æ&–B9ÀC¤î‚ïì“WvUý¼£Ô€wBäH`Ë‘¡ Wò ˜x¢äÁÐCƒiØXÈ(—IRÒ{,¸‹ÒC‰d1Ò©ÄbæPZñëâµ,êë6ÎÓàŒÇøi.Ù±Vïüê;–bî’ÄŸgUøã²Þ#ú§¨OM|«0²oœ`z¹ _Øó®IJ7šQ•ºM´E‹hwXWîµhb†H·ð‡^ã1 [C²ªOj“Ʊ•uWô°‚"jžuëè â5¨0G‡b¨@‘…Uüe‰S(ªešvKvÃtó=¸»û¾ ¹•?+ÂWzÄèt^Í¡W·Ù! Å i¾» É⡯õÕ)GÔ‰ƒø¹Ð_xm72n: ô ™ƒëj{pâ¨ÃÙX‡4n ÒyÎs£"ÿ¤§i¼ü‰—ÍÃNEf'ª Á‡™i)yÛëèf˜—ò,k¾òš!îWEé¶ëIDWÕéÛU¢+œ·1_ {+xѸƽ ÓÐ1P‘7^ I²^ͪ2sŠŽH0¯ !n×ÜrK±3FwH¿Y²U)ØvCÿ(w–qyæÂ,$ ’w‡rþœæ yŠƒ/XOÕÆE8K]ðÂè/­Å’ð“ƒê&âÉ-“â´ fyÆßä´§È-­â1/8’†¬|Pb\–l8i’‚¥ûüºe-K:ctž+­5©a#ºàªˆŸW‰^ŠïžB"i…#›Ü‘êßns®î'Z8'´Œx¾¤Â_Ô¨Ô@Æ)ÛBù-ýœ…ðˆw0f÷É'É1có{ŒéfØŠ  ¼Ö™’kV‹3€>;‡óK,Ÿ©D± ¾ýÍ“mÆô=bÜOÊŸ©[ixãJ'%T Îd·Ý»ïĪšZÈwS$z4O·µ PÑ»+6û{, ËíYrʨ¢Mbj%/»áÔ¹£b(=œ«+½ß–6ÑKsY¸{ÀÅuƼSêœHTí T¿ÏÉbù<̽Ù7/2¤’÷¦Î:þ˜õ¤¯»N™ñÚÜϺ––ª—¹C§¡hóù¢¢}è_9v2‰ëމ<0Çí<M”Æݧ=%ç*—û8šðšÿ¥!é‘þͲd|FCï¦Å F½“„È½Ñ ˜óHackßÇÞÒR÷¨f1A:Ãí97°èäMÀ…ú©']vyÍK¼È²Ä’ã¡F7»Fî²³W¾ÇŸ6¶¼pUO1ä'·<ß)tÆÎÏ6Q6µtôÊGY1&QØ_Dòøh¾,3æü6{µ_4ëv”ÌÝ€ª-qÎÚ¥'ËYø!”ÓÚr|ú±"›°¿ÊÞ•°ÀeÐ^ªƒ5=RTv)uõEf:c×Ú”dùq‚ˆ8™¥˜èÍÀîŸ$áNy.»”˜ÞP˜ç@Šœ‘ó ˜®¤nª}çŒ:ÞDUÜÇßaÈö?®UĪnÒ"R¾ MFè¯ÕN—4;?§d6JËÍ$å­A‹/0¶ÊЍš§ÍjN=T@ÂÉfˆna®Ñ<|Çö0‚ ؈NÂü°4X\禋ˆñIhÔf„ËÂöõ¦.j‘! Ÿú€RÞ¦½_)Ýx‰ø*`jQY>rõ’&¸æÇìäB@4ºà¨pÌ•5H~ThZup ,ѽ2àYÌ&Öξa¥Àªðþå}-–ã¯ý µ”N!an„¥znRÙ.wÍzx†a' ¶1Ýv8YSÍÚÔ¢=•×"ÐĹZr;€Û.Š'|@UoïÞ›LµRÿ €1²NÈeñ0­]Š•%1ÐX” ˆ¤jO o[:Ò/Ýý‚u=fs©™îœúØŸnÈ/B.8rÚmºÓ’(›¼ÈÕØ…-Aà¾ÂçAŸg >¹Ýùm« 5ëãJOÓ92ó@–tÛå¢*bÛrÖÌœ•×ñ:1‡c!àÔÍd¤§µÑUªÇUgÙ§tÊ"*•x96¤Þ– È+¼ýôý«¹ÑlÆz³nfcÿçu+̺ŸÓ2¢<²+¤CÔÄÒgÇJ÷ç”éKÖ—3Zk»ë²yëäÖLðâûÍU)tŠÓìòÔ6¡K¢¯*cõdá4À¥º é¤í@ãÜ›o;E•~¥—.ä–‡’øõdy–äãµáÓySanr©xsðÖ§ãæ¯Ý:w2Mvì¦yË‚øüç‡ÝGçYC6róª»\aæA éô\›ui§„V{Ìpûdп&Û!P5| Ñ;O.—D.ßõÞ|&ë¿=BÃŒ'‹zi|«†yóÉþn¯Ik·oÞSìƒøÙ¾ˆî‚QM«jYZêç0Þ êw‚´ØÖ¹_ïwíX÷;F·,•ˆ­þv'/¸QPÁd“Ê?i4ÎÈšnR)ðǃŸfºÕ»®Ò†²Ô£ ,=ñr|Lp_‰(M©Äù¿7-Šß<¨9íR§ñ°{ ^X˜;9v”¥Çs2Jgçè±uÇ*Y¼f;/àzÇñcó^6*J[,5<}P*¦œD)~.:Sì:6ˆV¥*Y?M/ó=8Ú*uPdK7β½~¥iqo*Þ)êÊåÙàáΚNtE&$ r¥RIjZ½vÚpó½ì1Yœt =GçÖ6«fD\)ÃvF /mVu|I½áMà†ëÛ°†$ÇÁI,ÞÐã=2£<: QsS>>&NÆœ›Jµ¾§ ¹1WѬ`74p™)Hãct˜þþ¤ÂM=1‡òºíŸÉÛl²sÑ»$³ÇtéÛŽ­SõÁÔ“· +ýñªt†Â;7ZeÝSîÐØžŒùx†šù¡øU¨·y|æB¥«È\±«¾’ŠùFûÒš~†Ô£T²JgÈ&~û P•þ2Ê£‰¥5`~ ]Jãhé5‡‰2ãk÷uº§ôZ^Aœñƒ2«qôwçEiIy߲æ>eÇWäEBÿ$q—F.<ÏÒòÐ9u솞€o¸G­¡Ë·ÑGéÅ͈áºÕ7cî WŽ=ãs7ïÇÎçŸêñuŽ˜ûtRˆ†©íIÓ¾ x~Þª™ñ7/„Ï1\b Õ:,‰j–3Ñÿë7ªø >Ÿ€Ú÷ç?Gl«;+ØNRQl̉X¢r¶Rlfôc’o y’Á˜óõÔÆÄ$èäuŽ(1`#öàb¬\X'Ã7V¼Œâ¨C¤SÓ‘­{r&û\ë%¼VC…8—Á§c}ãÐlY_tžˆljvgm ƒç¸vͶ-t‚8¤¥-G!HZ¿jдx7Ô3­ÁýòR*y–4› â ½óó0‰³A¬÷üínš¡D°\”Ü~o)¾TÌ"VÔ ç"¿óD–¾ˆM_ª2¶°¤' ÊpŸÅ®[2—jÈ]„š#âTãK·Œ£\Ô€¬ce+7–~ƬÑBZ Riö*¹Øó6̳Dc½°ú®jÚ3nÙÒ÷úãç_Ú–•'Cæw×\>\ŸÆ »M¥û‡´ô4\k?p[ þ±å‹BÝŽ3˜!§öGó… C胛ÉTë€îE+Ô›ž"ìÜ•)¿ïþ02˜v­ü€Oö}5¦îÚ½ø†ògžï³|îÝPeô[2Há¬ÈdˆŒ~“ÕDÔ|>*5E1BérOsè\/¸³Öû ‹=jZˆ2 ±æ6Ï[ÐápÉÆCšmoquA‘ð}¬uÆózg;g_ƒpàW£çÅn½@R±¨f¬œÑ/‰[VG†Ÿã¼`=(+ÇJå~jâݾ>èTX¸Ò[Ê;Ƕ¨ß9wôŸÌgÊtî ‰qÄß<©^Ì *õÞAùOT4¨ˆ²¸ê|‰ kç -óÆ+ /•–¹W´2&KÏɧâËI™ú¶…BÚæS“ËCìZùóòs½hù;£ã—•¡·jïÔm*Áh¢r÷ÜÄÕ-Û˜Ö>]².vtuskf,®3½´ Å[±ÂÄÈ ­!cµ{WÌ:C—™Êz«¦m$þb<ú¦§wÇåÄ!޹)Û®hRòBOï¨×Æ„UÚµQÔ}v£Ë—rŠlV”˜‚Á§U¼Á`9Ó†¶È÷û//%Þä&ו÷£¡õN‡ü)Uý@><ŠvJ¨}—þÍ P“m͉ ßL·a{Œý ñud½ëüUî’9 ÊÙ_õ‚§½Çµ-8#ËÛ©ƒœyôKܸѸZ‹]óhªÓöÈh¢BUåûÒ58Û°¾p:ò‹ÅÏLU²tu¬I¿Ò1)®p<Ù–Üù®”î¾hFn\æyþÛK¥/ßtG­`S,4à,–ÏÇgž²¡øï)Eè„jfœÃb¬5?eZßL™¡šØZÍêBˆ*K8só%šAxyVÍÎÞ¼å2 ÉY&Ë~ädÐÚÂ33WBÕr#׸påáÔ6KéÏëÓþ´* u©<£‹íˆìyà. p­+ôüQžÎöáÖ cž@uî­“0æAέ¢4x,0L¯5®ÞeÕL¢<>±îQèÿø¿ÑÅ%ù8nÊlaSf«¶°R¼šNrs,(;)lVçx,— Sר©+†Åñ;%®º9(Ü_»€(æ6“UGïîí5¥+Ø+*ä Ù£+ù-1€ƒ^"²°õ@YÃf™ôä~£Ö ‰M¼ä5SiW½±DøqíŽbmH4úÎXÕ¼Ð_ž™ Í9ÔÅÆ¬¿”õ[‡â»”ë~tü÷X~WïHqƒ{Õ²£Q VxÜÌÖ>9ycyÆÃ7X#çi8.n¯Ön^ÆÖ¢²»49H½ha/dŽ3µæïÔ´K—¿D–ªâNeŽÚ8´+X¶~ælÙNµ£‡õäkþêjo…¡"(Ęªs¨ž¯˜ä ÒÂ>âî3 t»>QÖÅ>~>"ûô5\€XPóí‰O÷í¬\„Q:+œoÎȶ‹Æu– ™¢dX…ö{*‚:¿"“LÖ BÍ#$ÃE6Òпl)@O™úËaš‹Z†4ôè{hìVgdô‹ë×·bç; h”R©^ÍÚ È䇠~ÀÄæ84)jDýÄO­ßQ,9š¢ˆvÚ>æÿ”>æ…šÿ±Â¨aŒÀÏÉßÔ¢ˆO%NûB˜0†x¶–¥=Ä5¸ÌMòO­BÜÞVÝ Dʰà*!ù=5§(6,~7š‘I’ìŒH ëdÿ1?yh“Aí×j–ÂDLÞ'±mÓ0þŠþ¡´FÖGêµ¹prnôle+)³D`´þFY«êâvàSåä¹ñĈ3ž£Éº¡ÿç ù–Ö;mˆŠó%Çœ$™…©n~i:Ù 2e˦ aÔ—›œa‰çÂboãmoÁN rÀO[d½™ÀEš°Ïúˆ³À'¿²WfÁàú‡óx÷ÔÝ•áöm³ƒ¡ES:Ö’·"æ¡èì_lÕFa˜ ŠøûíØÆ.o|ÔÎ\VVŠo˜C#ŽL«”¶Ñ žRX¨Ú«ûVî•’o bÕ(`”‰0½-7@$Ðá'usO¦3xw4`¬ë÷¯Ûâáý6Û”/Aõâ?àÖNbO>n}zxíÅ¿~vJÛ[GJQ2ïÃHè‹MEÖjºÀȈ\ÜëG,H·E)‚еd-Íjõ±ÓÓ(¬'šýl‰}½Á¡„ ÞŽåÒý¸æ,óZUÕå%ŽÔFÀb´%m-08p@âÿ‘ŽjNNü¨õ<4c0üeÏÐWñƒ÷ [²‡Aà¥Èn×ÁMŽÈÓ(Zw` |,müVÁ/¿*°›Û2AÁR½½»,­°p0…½³ËÓér|Ë5Ôºl ¼Æ¬ˆú¦tC½Ô8UÛ—¼ÉÍËÆÁj|e“'‰{ªZ²½èúªâHs£:ÆýåOëgÜ–ÇßäI^~s¦~ÝÂÍEØ»’øJ6±ü‰0ÑqãŽZÎRhšC™Aüii$†,YÀ5“DÜ«øç†º`ã8­õ§ë92¥t'Ò-F1ÅË™DGJ[³æŽ‹.’éÆÃ-ïu° ãȪ¸ƒ•C>RÂÎâNU·8ú0U9»írS¤|6,%UÈOxX~x†àË1¸IM¦öDÆ'Ô–ŸÙG:+KÆ…e&#WÅ–wñɬ- hSA‡K·ù7&„xíudÆÚ :Öož»;#ôõB2˜íÓ&².õ sú쳇ŠÓ $ˆ/*À„³p+};x ˜°*JÀ¼П†œX@¢UOõ°aJ‹S Ç Æ“iˆWž‰B—¼Kø¹æöÄxPø‰>”›v”½ŒÃ¯NÔ¶ƒ\ÄËQN¥ãüdè:²`Ç÷q ‹:(‡Ñ˜³N5ß6`».¤æ¸{ïwÙÕÄ¡žx¾Kvx¼êý¯Çƒr-ô#1î¼¹ìäÆã‚i¸ 9à5š”ÐËtœ£~õé3ª#åÞC»ô]Èa¢‰¹:m§§G’aψr ¾Í—VÓÖüì¶ ÃLÝ_L$´xÌÇ`‘5(¤ßÓ§èGbe «37Ư¨äj“ ¤>hƒo¬5òØÞŒ¢ž‡ÊmøyZž¬ ˆ ŸÈÀC*':(J¡H_œß ¢1¨uR†(EG¾d£¡GAÅë¡´ö¿Ë{+Ô’¯i =µ³—s™à Óke+rtÊŽ¼Ù’V+?Dbs³‰ÄbW A=¿gߘ#”yÁR<"…È3ÌbR^ÉOítt¿!Rö ÓÒ™]¯×iBQúƽY5ÕÆ [óÉ*yÈ7U:*w7¾~¹ýÖÒw¦%ÚMœP*mõÏéS&Rþ€ùQ,”)¦~õæv7xĦ›”~¢UèŽôéñKù•xœ7»ú¢Âa~èxîø½­µnúO4´¯dªò #;I5Êõe*þ¬·ßV¼bªß\ÔJÂÜgxcnb¤hÝ`påghH›ø‰ΰ=ä û‘?YîªÄÅÁºètlõîŸ@£â_ä óÝ7Tê†ÄxÓê^‰Â23W®&„¿ûßÔ÷5+¥ì2Ú#š-* ªY¬;Ó s= ó~㊿i9¡½¯Ì'׌Ë!vÿ?Ý\W endstream endobj 154 0 obj << /Type /ObjStm /N 100 /First 897 /Length 4270 /Filter /FlateDecode >> stream xÚí[[o9²~ׯhà–6°ÊÑ*@¢£¢)m?†B³rÉFÒòä‘ô=•,R{24¬’)Œ¶à!­Æ -ua ¦°c-Ñ&tˆ;4ŽÀTÀ޵¢¤ROCŠUÊ’J…Õ‰´…%x<ÙŽÐQ0 Бàö ›”u0‚ÕqÀHHĦ‹>ô4èœÅ&µŠ@hèê©HÑÂPVpô`;i¡¸&›É` !I–耭²Ú<°Æàh `b7ä3ÐÈ÷49&hŒœ)À&šÀ× ûÓÎ_A-Me¼%ôh,FvJò6òH2 •äh0“²„¹òÔ3&ö°_ô,Ü9`‘up òB;4y(í P `Èo`åd"·¥`!4•¤ž±Ô³p_Mþã¼”½Ç{b§ø€EÄ7…xÿÛï¤U!9(_¯ñåhô±÷ÜHlc,@»±R%@¿-´ô1µ‰ŸMÆóâñãB<£ š¼ìY$ ×ýŒP=.èü€"œjª P~P2ƒDO$¦“Áa5/>â`çY!Žªoób¹‡£¿.*LôO«žØÆ~ªñ|†å‘–÷Ä›j6¹œªg%Ú¯Ž‡ý­É·â©é’+5¬­*cúiý)Xdò'ãñ?pò£-u$ó|O^~šóóÞpü¥'¶&ÓãjÊäGñBìŠípB}¤=  Œ±²¤Lã’,%œ®QzüõR—ÞÐ=ah ñ|r4)`™/N&“9ÄU¥– ›¦ÑBÓh&»Ž3ðs…ê…7@"ÝŽX{ìRÆïC%¤;б’âoï´Ü¥émi8Rù¡ízM£`ó‹¤Çûx•÷+^åí]¼ª˜wmtòúZ»u‰ÉH4¥SzóÈlBÝ­ uJœ¯1HÝ»âä*žñ¾x¦ â Mü|{± ¾L)ÞŽX…PZm6¶TÛ8k"äÎ6+6n#D×Í”!ï*³˜1UÒ%ÎR[º¤#^ËPjƒV–I]›1O†§—S¤ËÐL—÷LÜZ—TâéX:Ä#ŒJÕ›,]únގݼüñß%æ¼ 8PáÝŽXG["Eߎւ±L·$Ö¡”ú–»@Í]ù½m,N§VCì§ÇÚ”ÖŠ³ÅbZ‰ îAµìáørPM‹ÏöŠçg“Ù|6˜/æ½~ÑÓª?NÆ;ýyU<Øù;n ‡*éø“Ô“òo ÛŸ„YMHÔîþAqQ‡YÔÉpT£ËÓá¸xW¨§ç§¿ŠƒjŽ}ý<œÎN«Ùl\MÁãh8íq69¯Ä×ãþøsÕ‹ù´ÿµ?‰þt>Œª™ÀÌ?ßTc(ýÏ£i8‰‹þ窼˜=lº@Œäï&1êÿÒó…éA®¯6šnqåúŸþø×þ@º£Ã݇kùïkÀw”HïA<° ôvÙÄC£PšôÿBk$‚ÕNÅ2™teŒKˆ ó³á§þåh.¦Õà¬Â1P±˜ûÐKÔÒÑ&âÀ§WRÐÑõïÛ7'„ ʱâ›òëµÄ.š’ÞßÝŽØ:Tœ÷»=(­øµÓÍï`nÎXœs%EÚ½T#â2m¡ »"âž /Mé°éH´Üfë4õ œ´0ÎÓl >9ÄëÚ€‡µgûbÄã6UDíÑæ‘„ìC…îd±žÐX¦ê6Åè– r¿Ii•!e¸­i³ÆYŒ7¹Ý§mî-·µ2R•¡nóHV>8µP[)êk‚ÒV¬5w¦4Q3èðp ½7I€/Õ45gæP÷wžßG-À­år«$½öl xÔ[¦Æj¿3®-ØèвM v÷’ü*ÓMÇ4MúLc•e¦¥›³Y¡Üç–<  =Ò+ÓÂiˆR%9{´!8|`™A-…ÖAhÿ“-íB#ºþûÙôÃvgŒ”¥bä0K¶¤ïq|I'?Ïr€­k#{Ÿõ¨½ ­ Š2bnk „`¤¯<àyD¡9gf dA áÀ~Iþºè³|¦±’¼2·™csÖ8¢_p»i§·ikž6ËjÒä‘` %IqSëìb$bÔ;Ò8Š£Lg"ã¡ ÒÃëdcjpb®y}-^§ÙBµ„LÉmJħ9âKjàÚD¥©S!›±Ý–O5Þ˱æÍ–˪=§ óÓji±Ú{L½š½-Ñ9¸akl«Å© ¾±\´ô3)ò9Ý#·åC8™ÀžHÖÊ”ôê,pÕA§´¥¯kÁµ‡‚Íá^ÎØÞ¨ûLíRN.–‘žlÿÕ6*’o9ÂR¶¨aDµeÖŽ&Ç ©eÙˆ*-ÛÌ&É+–¹ß¤´\Õm-¶É‡ ’&·û´Í½e)Í6$õ«@Ñó OGK°Š“†&DZRZÉÃ@°*\ÀÙíùˆÊ4™sæPKÁ%Öç Í22·JI6[cÈû.´«ýÜæØr‘n˜ÄÞ³ÅçÇvó–Çë$Ï· «:•ã”cœûõ8sÈ}ŸWežéŠ[nc¦Qµ‡ý÷ôúwŸ”ì~zŸËLS·:‡UvZ8a÷rc zÒœÓy =ç Æ%ÇHàëÃUK$YÌU¯Ie8&rËì›sí]·±u½²‹Ì5ª¹Í#¤Z|leµ¸”ôQ’»æƒ0RùJtÆçãâJO€“òõ|=Ækkîuãd™ù» gª9ì¯íö0³Ú~Ãz<Ú²©¾âQ›Âµ©3…áÄmr • Ò˜Í ä~n¯|BIÉGäµÎÓÜpâÒ ë@Db ›æÏ»ÏÉñ?èByë](׌‹‹œ^TC<î3vœÐG¡IkÖ–G<@žÀOìË^`Ȳ<[&pÞÏRqÑÏ„u ÇI–]‰’=ǽŽB6^ùeË•êÒôþ®dk‡bWÊ×·›\ ¾cc¢Ü©ÕôK©ú¼bM4UÜæ‘`,ß°©X |vs´Bc#,qik˜Ê8¾tJÃ+5# mÙl4Ÿùå•5o-³£.xýîNJ¿|p¨î,oñjÓííç'bcq^êFO'¾É.çy‘E~Žª^»¤Ês&Jni»ÜØü ¿Quk]d/NÄ-ÏJ…xÊý<{Ÿ6ói¶Y–5T<å6‘èBo < XÏÕ-ER$cH~y‚¼©)&‹›}æ@·|œoE<_såÕu(àdT’«¨P¿zYðKìZ#ô~AµXí7G2gË5y³¯¿ûjÐÔkó8456AóQÃk›<™fa7®ð¸Ï³/mé}âN•¿nœLóûÅWýs̼ßÿloû§íý-%1>êŸÎ › ¶ø›ˆG^4ŸQJQ¢¯Âgú" ¨'¶û/ªáé£ï ’BsMîÎû£áàÉøtT`8¯ÎßQì‰÷õ"äð8ëOé¥äñDl‰mñT<»âg±'öÅ+q Þˆ#ñV¼}Ñ\Î+ñI Ä`2šŒÅ±¨3'âdøµ'“Ë©8§Ó>ÎÄPŒÄ¹‹‰˜Œ+q!.è+”Qu2Ͻ)/½¨¦ÃɱøCüqYÍøåó—“y•'§b&fÃob.ægÓªó?'âR|ßÄ_3NÏè;U­có«ïÁ~°óû󗻀}ûp{ ðÊ.p¡;.ÄmÜÍîr èA707ª‰ùÐÎXÒ‡Œõ¯â} mÂùxžýuqVëgK°úÈ[Øî ÒÇN'üÇ~½tíwpî+×þ4í¾Ts¶oÝÏF†©Ž‡£Q_ †ÓÁåùɨúV'Áäü¼/9ž`Ýl6\æ êü¸?;Õ˜ÿ #Ñ¿¡à”›FÝôÔ§/u¦‘¨®ª[f¬v¢ªÎ‡y³ê+Sâšh3Ýôõ'%0ñ/ñ¯j:ißobü½­»[Gl|}½ñ §1E/;~ŒíÝ ‰ŒŽJWUœp%L/ê4Eʯ*¼QâÞ~þôÕ»—¬ðšàE–bo§Ÿ»›n­°[£°3M…eSágpï#ÎÔ9C/RVÇ+ºéÊn”Ÿüövëéi¼FaéJëbâ°>¼ßsTÀŽm…6Ê¿ûû/^¿yG Å5ôË“Wþ…üZ…ö•ÚeMÎ-ðà›Ê˜5ñ?_[žØrúûwûo^¢£ÝuIݸ¥Õí:¤|\ ÓvÐs _ÆÎéuTCuÔ¤E…òµÇFiîùóWÏ^ï1ñ{p$ùƒàf-Ÿ¯*¯¶Vå²W{û¯þ…´:Z{tç²Ë™pŸ²ëv÷Öòè~Î?(ißÍÃû7²ÿ9¬;ëE6óûóáè¸B—âbö…ŽøþôÆc¾u¦_XR/Ï?a'ÃÓÛÞ1:Çôšúr| ®ƒÉ´ºé¬v›•Ù[ïöŸ?ÍæÖë Oz7¡é刻¿¹×ŸÕƒ:Ç}aOž7nk¸Qf»ûôà×ÝŸöößLÎûc%½©N/Gýéß6T—Òe¬âÿÝ ÇÔÚtßÂôôÅdu>É>¸|bïh«|M¦~:LއãSlbxrRÁ«èwƒTº‘íÇUÜ?Œ§Aìp«?«øçFÝW-”ùúñŸ §³9©U(¤Â½þâAƒ×¯ÃãùÙŒÿÃàµV»Iúʸ#ߨù©%_6äëÍå¯\B»òMW¾•MùT.ä«´¹üέ°+Ý­hO1ØŸâÃæâ;·¸®ø°*¾¾m€o7—Þ¹Ft¥¯¸žm¹žò é~séš¾#Ý®8žIë ¯ï€|»¾î _õº¦ð²Õœ¾U we»ÛG¼ºìÝ"³+~Õçt ÷¦îrsñš®+}5ÝI¿6ÞïïºÅWG¾[õ:׿éóæ–ï]ñ+~—ܺSqsñ7œÔݸó~3í«ú?m.NKþ?áõÖþ¬Þn endstream endobj 274 0 obj << /Producer (pdfTeX-1.40.21) /Author(Vincent Danjean)/Title(FxT : manuel d'utilisation)/Subject()/Creator(LaTeX with hyperref)/Keywords() /CreationDate (D:20200925122400+02'00') /ModDate (D:20200925122400+02'00') /Trapped /False /PTEX.Fullbanner (This is pdfTeX, Version 3.14159265-2.6-1.40.21 (TeX Live 2020/Debian) kpathsea version 6.3.2) >> endobj 257 0 obj << /Type /ObjStm /N 37 /First 296 /Length 1147 /Filter /FlateDecode >> stream xÚ•WMoÛ8½ëWð¨Å~  Š-6›M{(rp]556±[^ìþû)†¢d=Ø”çãÍJR€FÑxÞ ØH½PF ë…–NX-´µÂJa”dcú¡°FWÚ g•ÐZx²Þ5BYÑ8- ô‡”ArX-€S!%ÆF °8 ‘™içY¯ˆDCªH‰ÁKò³@4‰Z š/ÈNõSšÂFøFÒ<1Fç°Bë¨(Mä©yŠ("»;)”Ò@ ”æ)‡tÁ\" ªË˪þüßs+꫇öPÕowÇm'lE÷û–®X4)>Uõï›oñ…"ÑÕß }¡ #š0’,4ÞWWW¿œ” 1Hô~$ ÃsÚ˜Ã6?ËaNæp1‡ü› ¥Œ£ýYlpI’CcŒif|?»ÇÍ–Ýßmö‡Nè@çfE×Ö‡›A˜ÁqÓ=¶"TYÕo„%¤’¢ÛÇ}û/b¾»šäŠg\Mœ¼mÿM\Æq`ˆ“üBœÁ3„±SÏвÞSÏz†œrÆS%Oy†;꼤/ÞwíÓB\“!Š]½Ì`Â븾ÙüHê¼b~"M,øÐ®»Ínû*4}‰²ÈØ”(—¤&(×¥a–$qN˜¦É^-(BsdPȪ.@® ǵŞ÷x²ør¹é)ºK¤E\±DJgLQGMaÇ=Ú·jð<~MVp‚kO¡°žÒͦI!5ÍÔh­¦0 ¡§2Ã){øìÆX7ÚøÍ>SûÓSUõ¹  \â1x <58114B336EC7FC876CDA4F4B1D191258>] /Length 673 /Filter /FlateDecode >> stream xÚ%”»NQF÷?ÌŒ  W¹ßrQPDä~? ‚‚ˆ…‰ÑX˜XøV6´0ÑÂÆÚXX˜ØøƘø,4AÖg³òÍ·÷ÌÞ³gBûQQ°0r7†²#ˆÀ])Ä`š®””€ÌЕ\p®˜”ÀYÏŠ¸<ò錮Ëp”.¢#EàÏ¡Ó=”Õ<—ާDÚ;õ<:=^/SNw”ŽD ’®„N[«Õt¥tÚ} ¨¥+£ÓkÕzº.:½yh¤ë£Ó‘4f­B¡Ž¸gò  Ò@;è'@'8 ºÀ)Ð Nƒpœ½ œçA?¸Ú,Ø=­q °îU° nu°Åè%0-$=ºmŒ0å&é2åR«]`Œ[(ø£Û&Á,X+`ÞBÅ.‚%° ֻв2£š² 8¦hÝBç7u×À‹+mr~’U[Û²ÐûWó¶ïí2YÚîXèÒèmº]K¿áÒùŒŽ/žX˜z«ŽÏíZˆG¹ÜÝèèùÖ^k::šy‘…íOêŠ-<ø¨„k.×$H¹…;ý@8—phæÒ ¹\r5ðZüü_\¾4Y¸ÿX÷¢”7[x˜¯K|ñV‹ç;tٰɱÉ1Ç;-^lÔ(J99ú8–x·ÅÙ÷E$×á`˜#’c˜óy}\úà•|qña KÄ%"ù8ÀŸ°x}L MZüì¹Ò”ÅŸ'”¦-þúNiÆâßíJ³–d[”æ,yôJiÞ’—KJ –|x£´hÉÿßrÉÒ̆Ҳ¥£úmùŠ¥O÷•²–¾PZåˆs,ýµ£¤”ƒ P ª@5¨µ Ô}£FКA´Xús/Xº7þWŒØ endstream endobj startxref 456267 %%EOF fxt-0.3.15/doc/PaxHeaders/Makefile.in0000644000000000000000000000013215007143522014270 xustar0030 mtime=1746716498.237983821 30 atime=1746716502.832089853 30 ctime=1746716504.789879473 fxt-0.3.15/doc/Makefile.in0000644000175000017500000004040315007143522013757 0ustar00samysamy# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2024 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@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) am__rm_f = rm -f $(am__rm_f_notfound) am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd 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 ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/amx_silent_rules.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(am__dist_pkgdoc_DATA_DIST) \ $(am__DIST_COMMON) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac am__dist_pkgdoc_DATA_DIST = manuel.pdf 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 = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \ } am__installdirs = "$(DESTDIR)$(pkgdocdir)" DATA = $(dist_pkgdoc_DATA) am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) am__DIST_COMMON = $(srcdir)/Makefile.in DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AM_LFS_CFLAGS = @AM_LFS_CFLAGS@ AM_LFS_LDFLAGS = @AM_LFS_LDFLAGS@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CSCOPE = @CSCOPE@ CTAGS = @CTAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EPSTOPDF = @EPSTOPDF@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FILECMD = @FILECMD@ FXT_LIBS = @FXT_LIBS@ FXT_MS_LIB = @FXT_MS_LIB@ FXT_MS_LIB_ARCH = @FXT_MS_LIB_ARCH@ GREP = @GREP@ HELP2MAN = @HELP2MAN@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LATEX = @LATEX@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ am__xargs_n = @am__xargs_n@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ pkgdocdir = $(docdir)/@PACKAGE@ @EPSTOPDF_TRUE@@LATEX_TRUE@dist_pkgdoc_DATA = manuel.pdf @EPSTOPDF_TRUE@@LATEX_TRUE@LOCAL_TEXSOURCES = manuel.tex paje.eps FxT.bib @EPSTOPDF_TRUE@@LATEX_TRUE@CLEANFILES = paje.pdf @EPSTOPDF_TRUE@@LATEX_TRUE@DISTCLEANFILES = $(dist_doc_DATA) @EPSTOPDF_TRUE@@LATEX_TRUE@EXTRA_DIST = manuel.tex paje.eps FxT.bib 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 ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign doc/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign doc/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__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \ 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 $(am__aclocal_m4_deps): mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs install-dist_pkgdocDATA: $(dist_pkgdoc_DATA) @$(NORMAL_INSTALL) @list='$(dist_pkgdoc_DATA)'; test -n "$(pkgdocdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgdocdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgdocdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgdocdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdocdir)" || exit $$?; \ done uninstall-dist_pkgdocDATA: @$(NORMAL_UNINSTALL) @list='$(dist_pkgdoc_DATA)'; test -n "$(pkgdocdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgdocdir)'; $(am__uninstall_files_from_dir) tags TAGS: ctags CTAGS: cscope cscopelist: distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$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)$(pkgdocdir)"; 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: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: -$(am__rm_f) $(CLEANFILES) distclean-generic: -$(am__rm_f) $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES) -$(am__rm_f) $(DISTCLEANFILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." @EPSTOPDF_FALSE@clean-local: @LATEX_FALSE@clean-local: clean: clean-am clean-am: clean-generic clean-libtool clean-local mostlyclean-am distclean: distclean-am -rm -f Makefile distclean-am: clean-am distclean-generic dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dist_pkgdocDATA install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: 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-dist_pkgdocDATA .MAKE: install-am install-strip .PHONY: all all-am check check-am clean clean-generic clean-libtool \ clean-local cscopelist-am ctags-am distclean distclean-generic \ distclean-libtool distdir dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-dist_pkgdocDATA install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs maintainer-clean \ maintainer-clean-generic mostlyclean mostlyclean-generic \ mostlyclean-libtool pdf pdf-am ps ps-am tags-am uninstall \ uninstall-am uninstall-dist_pkgdocDATA .PRECIOUS: Makefile @EPSTOPDF_TRUE@@LATEX_TRUE@doc: manuel.pdf # See # http://www.gnu.org/software/automake/manual/html_node/distcleancheck.html#distcleancheck # for explications @EPSTOPDF_TRUE@@LATEX_TRUE@manuel.pdf: $(LOCAL_TEXSOURCES) @EPSTOPDF_TRUE@@LATEX_TRUE@ $(MAKE) $(AM_MAKEFLAGS) paje.pdf @EPSTOPDF_TRUE@@LATEX_TRUE@ for f in $(LOCAL_TEXSOURCES) ; do \ @EPSTOPDF_TRUE@@LATEX_TRUE@ test -f $$f || $(LN_S) $(srcdir)/$$f $$f ; \ @EPSTOPDF_TRUE@@LATEX_TRUE@ done @EPSTOPDF_TRUE@@LATEX_TRUE@ -MAKEFILES=LaTeX.mk $(MAKE) -f /dev/null MAKE="$(MAKE) -f /dev/null" $@ @EPSTOPDF_TRUE@@LATEX_TRUE@ touch $@ @EPSTOPDF_TRUE@@LATEX_TRUE@paje.pdf: paje.eps @EPSTOPDF_TRUE@@LATEX_TRUE@ epstopdf --outfile=$@ $< @EPSTOPDF_TRUE@@LATEX_TRUE@clean-local: clean-latex @EPSTOPDF_TRUE@@LATEX_TRUE@distclean distclean-generic: distclean-latex @EPSTOPDF_TRUE@@LATEX_TRUE@clean-latex distclean-latex:: %-latex: @EPSTOPDF_TRUE@@LATEX_TRUE@ -MAKEFILES=LaTeX.mk $(MAKE) -f /dev/null MAKE="$(MAKE) -f /dev/null" $* @EPSTOPDF_TRUE@@LATEX_TRUE@distclean-latex:: @EPSTOPDF_TRUE@@LATEX_TRUE@ for f in $(LOCAL_TEXSOURCES) ; do \ @EPSTOPDF_TRUE@@LATEX_TRUE@ if test -h "$$f" ; then $(RM) "$$f" ; fi ; \ @EPSTOPDF_TRUE@@LATEX_TRUE@ done # 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: # Tell GNU make to disable its built-in pattern rules. %:: %,v %:: RCS/%,v %:: RCS/% %:: s.% %:: SCCS/s.% fxt-0.3.15/doc/PaxHeaders/manuel.tex0000644000000000000000000000007412377072114014240 xustar0030 atime=1746715490.257509348 30 ctime=1746716504.790940015 fxt-0.3.15/doc/manuel.tex0000644000175000017500000007002312377072114013723 0ustar00samysamy\documentclass[a4paper]{report} %\usepackage[top=2cm,bottom=3cm,left=3cm,right=3cm]{geometry} \usepackage{pdfswitch} \usepackage[latin1]{inputenc} \usepackage[french]{babel} \usepackage{alltt} \usepackage{remark} \usepackage{url} \usepackage{xspace} \usepackage{boxedminipage} \def\linuxversion{2.6.10} \DeclareRobustCommand{\FFxT}{F\kern-.1667em\lower.5ex\hbox{X}% \kern-.125emT\spacefactor1000} \makeatletter \DeclareRobustCommand{\FxT}{F\kern-.18em% %{\sbox\z@ x% %\vbox to\ht\z@{% \lower.5ex \hbox{\check@mathfonts% \fontsize\sf@size\z@% \math@fontsfalse\selectfont% X}% %\vss}% %}% \kern-.27em% T\spacefactor1000} \makeatother \title{FxT : manuel d'utilisation} \author{Vincent Danjean} % \newenvironment{etapes}{ % \newcommand{\etape}[1]{\item \textbf{##1}} % \begin{enumerate} % }{ % \end{enumerate} % } \newcounter{etapes} \newenvironment{etapes}{ \setcounter{etapes}{0} \newcommand{\etape}[1]{% \stepcounter{etapes}% \paragraph*{\arabic{etapes}.~##1}\hspace{0cm}% \bigskip% } } \newenvironment{options}{ \newcommand{\option}[2]{\item[\code{##1}]~\\##2} \begin{description} }{ \end{description} } \newcommand{\name}[1]{\textsc{#1}} \newcommand{\code}[1]{\texttt{#1}} \newenvironment{shell}{% \begin{alltt}% }{% \end{alltt}% } \newcommand{\note}[2][]{\par\smallskip\noindent\llap{\textbf{Note \ifthenelse{\equal{#1}{}}{}{(#1) }:} }#2\par\medskip} \newcommand{\FXT}{\FxT\xspace} \newcommand{\FKT}{\name{FKT}\xspace} \newcommand{\FUT}{\name{FUT}\xspace} \newcommand{\marcel}{\name{Marcel}\xspace} \newcommand{\mad}{\name{Madeleine}\xspace} \newcommand{\linux}{\name{Linux}\xspace} \newcommand{\pmm}{\name{PM}$^2$\xspace} \newcommand{\Paje}{\name{Pajé}\xspace} \newcommand{\ie}{\emph{i.e.}\xspace} \newcommand{\cf}{\emph{c.f.}\xspace} \newcommand{\etc}{etc.\xspace} \newcommand{\fktrecord}{\code{fkt\_record}\xspace} \newcommand{\fxtprint}{\code{fxt\_print}\xspace} \newcommand{\sigmund}{\code{sigmund}\xspace} \begin{document} \title{{ \huge Fast Traces \\[1em] \Huge \FxT \\[1em]} Manuel d'utilisation} \maketitle \tableofcontents \newpage \chapter{Présentation} Aujourd'hui, il est très difficile d'observer et de comprendre finement les performances des applications reposant sur des supports d'exécution multithreadés, en particulier lorsque la plateforme de threads utilisée est complexe (ordonnancement multi-niveaux). \FXT est un environnement permettant d'observer précisément le comportement des applications multithreadées donnant ainsi accès à des informations telles que le nombre de cycles consommés par une fonction donnée ou l'ordonnancement exact des threads utilisés. \FXT est composé de deux parties indépendantes (\FKT et \FUT) pour la récolte de traces ainsi que d'outils pour l'analyse et l'exploitation des traces récoltés. \paragraph{\FKT} \emph{Fast Kernel Trace} permet de récolter des événements relatifs au noyau \linux grâce à un ensemble de macros insérées dans le code source du noyau. Cette récolte est réalisée de manière très efficace et non intrusive. \paragraph{\FUT} \emph{Fast User Trace}, très similaire à \FKT, permet de faire la même chose (récolte d'événements) en mode utilisateur. On peut les utiliser indépendemment l'un de l'autre. \paragraph{Les outils} Un ensemble d'outils permettent de manipuler et d'exploiter les traces générées par \FKT et \FUT. On peut ainsi les parcourir mais aussi les fusionner pour générer une unique \emph{supertrace} décrivant pour chaque événement sur quel processeur, dans quel thread noyau et dans quel thread utilisateur il s'est exécuté. Il est alors possible de générer une trace au format du logiciel \Paje afin de visualiser ces traces de manière graphique et interactive. \bigskip Pour de plus amples informations sur le fonctionnement interne de \FKT et \FUT, le lecteur se réfèrera à \cite{DanWac05TSI}. \newpage \chapter{Installation} \section{Récupérer les logiciels} \FXT est disponible sur le site \url{http://savannah.nongnu.org/projects/fkt}. Pour bénéficier pleinement de \FXT avec des programmes utilisant des processus légers utilisateurs, vous aurez également besoin d'une version récente de \marcel disponible sur le site \url{http://runtime.bordeaux.inria.fr/marcel/}. %Remarque~: %\FXT pourrait également fonctionner avec d'autres bibliothèques de %threads utilisateur, mais aucune autre que \pmm n'a pour l'instant été interfacée %avec \FXT. L'installation de FKT nécessite de patcher le noyau. L'installation de FUT et de la libfxt ne nécessite pas de patcher le noyau. \section{FKT} \label{sec:install_fkt} Les étapes nécessaires pour installer \FKT dans un noyau \linux sont décrites ici. On supposera par la suite que les fichiers du projets \FXT ont été rapatriées dans un répertoire appelé \code{FxT/} ci-dessous. \note{à ce jour, seule l'architecture \code{x86} contient les routines assembleurs de \FXT. Un travail de portage serait nécessaire pour utiliser \FXT sur d'autres architectures.} \note[bis]{Pour une machine dédiée où un programme utilisateur n'utilisera pas plus de threads noyaux que de processeurs (par exemple, un programme utilisant la bibliothèque \marcel), \FXT n'est pas réellement nécessaire pour observer le comportement des threads.} \begin{etapes} \etape{Récupérer les sources d'un noyau \linux} Le noyau original \linuxversion{} est parfait. Une version patchée devrait également convenir, au moins pour la partie générique. Les patches de recueil d'événements pourront ne pas s'appliquer directement~; il faudra alors les corriger manuellement. La partie générique devrait s'appliquer sur n'importe quel noyau 2.6 récent, mais les patches de recueil d'événements doivent parfois être modifiés. Dans ce cas, vérifiez toujours qu'une nouvelle version de \FXT n'est pas disponible avec les patches adaptés à votre noyau. Le répertoire contenant les sources du noyau \linux sera appelé \code{linux/} par la suite. \etape{Installer la partie générique de \FKT} Placez-vous dans le répertoire contenant \FXT. \begin{shell} cd FxT/ \end{shell} Modifiez \code{Makefile.config} pour indiquer où se situe votre répertoire contenant les sources du noyau \linux, ainsi que la version des patches à essayer (indiquez la version exacte de votre noyau si elle est disponible, la plus proche sinon). Les versions de patches disponibles sont les numéros de version des répertoires \code{linux-patches-...} dans le répertoire de \FXT. Installez les fichiers génériques (indépendant de la version du noyau) à l'aide de la commande suivante~: \begin{shell} make install-fkt \end{shell} Ceci copiera les fichiers \FKT, \ie les fichiers \code{arch/i386/kernel/fkt\_header.S}, \code{include/linux/fkt.h}, \code{kernel/fkt.c} et \code{kernel/fkt-mod.c}. Tous ces fichiers sont indépendants de la version du noyau. Il faut ensuite modifier (patcher) quelques fichiers du noyau. Cela s'effectue avec la commande~: \begin{shell} make install-sys \end{shell} Si le noyau utilisé correspond exactement à celui déclaré dans \code{Makefile.config} (même numéro de version, aucun patch supplémentaire), alors cette étape doit se dérouler sans aucun problème. Dans ce cas contraire, il sera peut-être nécessaire corriger l'application des patches en les appliquant à la main. La figure \ref{fig:patchsys} peut aider à ce travail dans ce cas. \begin{figure}[htbp] \begin{center} \begin{boxedminipage}{.9\linewidth} \newcommand{\fichier}[1]{\item[\textnormal{\code{#1}}]} \newcommand{\raison}[1]{~\\ #1} \begin{itemize} \fichier{arch/i386/config.in} % \fichier{arch/i386/Kconfig} % \fichier{arch/i386/defconfig}% \fichier{arch/i386/kernel/Makefile}% \fichier{kernel/Makefile} % \raison{ajoute \FKT au système de compilation. En cas de problème, l'application du patch est très simple à réaliser manuellement. % just added the compilation of fkt, it can be easily done % by hand if it didn't merge. } \fichier{include/linux/pagemap.h} % \fichier{mm/filemap.c} % \fichier{fs/read\_write.c} % \raison{ajoute quelques fonctions utilitaires. Pour les anciens noyaux 2.4, \code{sendfile} est également modifiée pour appeler \FKT comme il se doit. Facile à appliquer manuellement. % added helper functions, easy to apply by hand, but also % tinkered in sendfile functions to have fkt's called (not % needed in 2.6 kernels) Also removed the useless copy of % fkt pages. } \fichier{include/linux/mm.h} \fichier{include/linux/page-flags.h} \fichier{mm/page\_alloc.c} % \raison{définit un nouveau drapeau pour les pages \FKT afin d'avoir un compteur de référence non null si elle sont \code{Reserved}. % defined a new flag for FKT pages to see its usage % counter vary even if they are Reserved. } \fichier{include/linux/fs.h} \fichier{include/linux/buffer\_head.h} % \fichier{fs/buffer.c} % \raison{ajoute quelques fonctions utilitaires, facile à appliquer manuellement. Quelques prises de traces sont également insérées, mais elles ne sont utiles que pour le déboggage de l'écriture des traces \FKT. % added helper functions, easy to apply by hand. It also % adds some probes, but they are only useful for debugging % fkt flushing. } \fichier{kernel/sched.c} % \fichier{fs/exec.c} % \fichier{include/linux/sched.h} % \fichier{kernel/pid.c} % \raison{ajoute des prises de traces nécessaires aux outils d'analyse pour suivre les fonctions \code{fork()}, \code{exec()}, \code{switch\_to()} et \code{wait4()}. % added probe for the analysis tool to follow fork()s, % exec()s, switch_to()s and wait4()s } \fichier{arch/i386/kernel/entry.S} % \raison{ajoute des prises de traces pour tous les appels systèmes ainsi que quelques appels systèmes pour enregistrer des événements sur demande des programmes utilisateurs. Ces modifications doivent être fusionnées en faisant bien attention en cas de problèmes. % added probes to every system call, and a few system % calls to be able to add probes to user programs. As % long as user programs probes are not needed, the last % hunk failing is no hurt. But previous hunks should be % handled carefully if they didn't merge. } \fichier{include/asm-i386/unistd.h} % \raison{ajoute les appels systèmes cité au-dessus % just system calls adding, same remark as above. } \fichier{include/asm-i386/hw\_irq.h} % \raison{ajoute des prises de traces pour les IRQs. À traiter avec attention en cas de problèmes. % added probes to every irq. To be handled carefully if it % didn't merge. } \fichier{include/linux/interrupt.h} % \raison{ajoute une \code{softirq} pour \FKT. Facile à appliquer manuellement. % added a softirq for fkt, really easy to merge. } \fichier{kernel/timer.c} % \raison{ ajoute des prises de traces pour nanosleep. Peut être ignoré en cas de problèmes. % added probes to nanosleep, can be skipped if it didn't % merge. } \end{itemize} \end{boxedminipage} \end{center} \caption{Résumé des modifications apportées aux sources} \label{fig:patchsys} \end{figure} \etape{Insertion de prises de traces supplémentaires (facultatif)} \label{sec:install_fkt_patches} Si l'on désire instrumenter plus en détail le noyau, il existe déjà des ensembles d'instrumentation prêtes à l'emploi. \emph{Cette étape est complètement facultative.} Il est inutile d'appliquer ces patches si les événements enregistrés ne sont pas intéressants pour vous. Ces ensembles d'instrumentation ne sont disponibles que pour le noyau 2.4.21 à l'heure actuel. Si vous utilisez un autre noyau, vous aurez probablement à gérer des conflits manuellement lors de l'application de ces patches. Pour appliquer ces ensembles d'instrumentation, il faut donc positionner \code{KERN\_VERSION} à 2.4.21 dans \code{Makefile.config}, puis utiliser une ou plusieurs des commandes suivantes~: \begin{shell} make install-fs \end{shell} ajoute des prises de traces pour les opérations du système de fichier~: \code{lseek}, \code{read}, \code{write}, \code{ext2\_getblk}, \code{ll\_rw\_blk} %will add probes to file system operations: lseek, read, write, ext2_getblk, %ll_rw_blk \begin{shell} make install-net \end{shell} ajoute des prises de traces dans la pile TCP/IP. Différentes couches peuvent être sélectionnées grâce au masque d'enregistrement (\cf \ref{usage} à la page \pageref{usage}) % will add probes to the whole tcp/ip stack. Different layers can then be %selected or not according to the recording keymask (see README). \begin{shell} make install-netdriver-3c59x or acenic or tulip \end{shell} ajoute des prises de traces dans le pilote de la carte réseau correspondante %will add probes to the relevant network device driver. \begin{shell} make install-scsigen \end{shell} ajoute des prises de traces dans le pilote SCSI generique et le pilote CD SCSI % will add probes to the generic scsi driver and scsi cd driver. \etape{Compilation du noyau} Une fois adapté, le noyau \linux doit être compilé en validant le support pour \FKT. Allez dans le répertoire \code{linux} et configurez votre noyau~: \begin{shell} cd linux/ make config \emph{(ou} make oldconfig \emph{ou} make xconfig\emph{)} \end{shell} Vous devez valider le support (éventuellement en module) pour \FKT (\texttt{CONFIG\_FKT}). \texttt{CONFIG\_FKT\_TIME\_ONLY} permet de réduire la taille des traces en n'enregistrant pas les paramètres, mais ce mode est à réserver à ceux qui veulent profiler le noyau (et non pas profiler des applications en espace utilisateur). Il faut ensuite compiler son noyau et l'installer. Par exemple, avec : \begin{shell} make dep \&\& make clean \&\& make bzImage make install \end{shell} \etape{Pour les utilisateurs} Il est également nécessaire de créer le fichier périphérique \code{/dev/fkt}, par exemple avec la commande: \begin{shell} mknod /dev/fkt b 60 0 \end{shell} Pour les personnes ayant choisit de compiler \FKT en module, elles pourront ajouter à leur fichier \code{/etc/modules.conf} la ligne : \begin{shell} alias block-major-60 fkt-mod \end{shell} de sorte que le module puisse être chargé automatiquement. Pour restreindre l'utilisation de \FXT aux utilisateurs d'un certain groupe \code{group}, il est possible de modifier les permissions du fichier \code{/dev/fkt} : \begin{shell} chgrp somegroup /dev/fkt chmod 440 /dev/fkt \end{shell} \end{etapes} \section{FUT et les utilitaires} \FUT et les utilitaires de \FXT ont besoin de quelques bibliothèques externes. Vous devrez probablement installer, si ce n'est pas déjà fait, le package contenant la bibliothèque \code{libbfd} (probablement le package \code{binutils-dev}). Il suffit ensuite d'utiliser le classique \begin{shell} ./configure make make install \end{shell} Cela construit tous les fichiers nécessaires à l'utilisation de \FUT ainsi que les utilitaires qui permettront de récolter et analyser les traces. Pour plus de facilité d'utilisation, vous pourrez installer les programmes dans un répertoire de votre \code{PATH} ainsi que les bibliothèques (fichiers \code{libfxt.*}) dans un répertoire lu par le linker (\code{/usr/local/lib}, \code{/usr/lib}, \ldots) ou présent dans votre variable d'environnement \code{LD\_LIBRARY\_PATH}. \chapter{Prise de traces} \FXT permet d'obtenir des traces précises du déroulement de l'exécution de flots d'exécution. Ce chapitre explique brièvement comment placer des mesures dans les application et comment obtenir les traces. \section{FKT} \FKT permet d'observer le comportement du noyau. Il y a deux objectifs à cela : observer le fonctionnement du noyau lui-même et obtenir des traces utiles pour l'observation de programmes en espace utilisateur. \subsection{Instrumentation du noyau} L'installation des patch de \FKT (\cf partie \ref{sec:install_fkt}) dans les sources du noyau \linux insère les prises de traces nécessaires à l'observation des programmes en espace utilisateur. À savoir, des traces sont récoltées pour \begin{itemize} \item chaque changement de contexte ; \item chaque création/destruction d'un flot d'exécution (processus ou thread noyau) ; \item chaque changement d'espace virtuel (\code{execve}) pour enregistrer le nom des nouveaux processus ; \item chaque transition noyau/utilisateur (appels systèmes, interruption matérielle, \etc). \end{itemize} Il est possible d'instrumenter plus finement le noyau. Quelques patches sont fournis avec la distribution (\cf partie \ref{sec:install_fkt_patches}), mais pour des besoins particuliers il est parfaitement possible d'instrumenter soit-même le noyau en utilisant les mêmes techniques que celles développées ci-après pour les programmes en espace utilisateur. \subsection{Récolte des traces noyaux avec \fktrecord} Pour enregistrer les traces récoltées par le noyau, l'utilitaire \fktrecord est fourni. Il s'utilise de la manière suivante : \begin{shell} fkt_record [options..] [--] [program p1 p2 p3 ...] \end{shell} Si le programme n'est pas donnée, \fktrecord démarre un fils qui se contentera de consommer du CPU. Les options possibles sont : \begin{options} \option{-f output\_file}{sauve la trace dans le fichier \code{output\_file}. Si cette option n'est pas fournie, \fktrecord utilise le contenu de la variable d'environnement \code{TRACE\_FILE} et en cas d'absence il crée le fichier \emph{trace\_file}} % \option{-k mask}{masque à utiliser pour la récolte d'événements. Par défaut, \fktrecord utilise la valeur 1 qui enregistre uniquement\footnote{Les changements de contexte sont \emph{toujours} enregistrés par \FKT, quelque soit le masque actif.} les transitions noyau/utilisateur (appels systèmes, irq, \etc)} % \option{-S System.map}{si ce fichier est indiqué, son contenu est fusionné avec celui de \code{/proc/kallsyms} ou \code{/proc/ksyms} en vérifiant qu'il n'y a pas d'incohérence. En effet, les symboles du noyau sont enregistrés au début de la trace pour permettre l'analyse de la trace par la suite} % \option{-s size}{taille des blocks. Par défaut, la taille des blocks du système de fichier est utilisée. Option à réserver aux experts.} % \option{-p pow}{alloue $2^{pow}$ page mémoire pour contenir les traces avant écriture sur disque. Par défaut, 7 pages sont allouées. Il peut être nécessaire d'augmenter cette quantité si on enregistre de grosses quantités de traces en un très bref instant.} % \option{-n}{aucun programme n'est lancé. La prise de trace s'arrêtera lorsque l'utilisateur interrompra (avec \texttt{\^~C} par exemple) le programme \fktrecord.} \end{options} \section{FUT et \pmm} \FXT fournit des outils pour permettre l'instrumentation des programmes utilisateurs, mais ils ne sont pas aisés à manipuler directement. C'est pourquoi il est conseiller d'utiliser une bibliothèque de processus léger intégrant déjà le support pour \FXT. \pmm et sa bibliothèque de thread \marcel sont parfaitement intégrés avec \FXT. \subsection{Instrumentation des programmes} Les traces utilisateurs proviennent de l'instrumentation des programmes. \pmm propose plusieurs manière de le faire. \begin{description} \item[Instrumentation manuelle~:] un ensemble de macro est disponible pour prendre des traces automatiquement. Il est possible d'enregistrer tout types d'événements. Les macros nécessitent un code unique (qui identifie le type d'événement) et acceptent un nombre variable de paramètres, actuellement de 0 à 5, mais ce nombre peut être augmenté jusqu'à 254 sans difficultés. L'ensemble de ces macros est disponible dans le fichier \code{fut.h}. \item[Instrumentation automatique~:] en utilisant l'option \code{-finstrument-function} de \code{gcc}, les fonctions des fichiers objets compilés ainsi auront automatiquement une trace générée à l'entrée et une à la sortie. \end{description} En outre, deux fonctions sont à utiliser dans le programme principal~: \begin{shell} void profile_activate(int FUT_ENABLE, int fut_mask, int fkt_mask); void profile_stop(); \end{shell} La première permet de démarrer et choisir les masques d'événements pour FKT et FUT, la seconde permet de stopper les traces et de les sauver sur le disque. \pmm sauve les traces dans les fichiers \code{/tmp/prof\_file\_user|kernel\_\emph{login}[\_\emph{node}]}. \note{le n\oe ud n'est sauvé dans le fichier que si \pmm est utilisé en réseau (\ie avec \mad).} \note[bis]{\pmm active lui-même FKT si nécessaire. Il n'y a alors pas besoin d'utiliser le programme \fktrecord.} \subsection{Récoltes des traces avec \pmm} Pour récolter les traces avec un programme \pmm, il suffit de le lancer avec une \emph{flavor} contenant le support \FXT. Pour cela, au moment du choix des options de la \emph{flavor}, il faut : \begin{itemize} \item inclure le module \code{profile} \item prendre l'option \code{FKT} du module \code{profile} si l'on veut utiliser \FKT en plus de \FUT \item choisir l'option \code{gcc-instrument} pour chacun des modules \pmm que l'on veut instrumenter automatiquement avec \code{gcc} \item choisir l'option \code{profiling} pour chacun des modules \pmm afin d'utiliser les instrumentations manuelles déjà présentes \end{itemize} L'exécution du programme ainsi compilé générera automatiquement les traces (à condition de bien démarrer et arrêter la prise de traces avec \code{profile\_activate} et \code{profile\_stop}. \chapter{Exploitation des traces} Une fois les traces recueillies, il est nécessaire de les analyser. \FUT fonctionnant sur deux architectures différentes (64bits et 32bits), il est nécessaire de prendre en compte cet aspect pour utiliser les programmes : le format des traces binaires récoltées ne sera pas compatible. \section{Analyse des traces récoltées} Dans un premier temps, l'utilitaire \fxtprint permet de convertir une trace binaire récoltées en une trace au format texte. \begin{shell} fxt_print [-f trace_file] [-d] [-o] \end{shell} Les options disponibles sont les suivantes : \begin{options} \option{-f trace\_file}{lit la trace dans le fichier \code{trace\_file}. Si cette option n'est pas fournie, \fxtprint utilise le contenu de la variable d'environnement \code{TRACE\_FILE} et en cas d'absence il lit le fichier \emph{trace\_file}} % \option{-d}{permet de demander à \fxtprint de ne pas essayer de nommé les événements et les fonctions, mais d'afficher les identifiants (codes) tels qu'ils sont stockés dans la trace (utile surtout pour le débogage pour inspecter précisément le contenu d'une trace)} % \option{-o}{permet de demander à \fxtprint d'afficher non plus la date des événements, mais le temps écoulé depuis le premier événement (les dates sont décalées de sortes que le premier événement survienne à la date 0)} \end{options} Cette conversion de la trace au format binaire en une trace ASCII doit être faite sur la même architecture que la machine qui a récolté les traces. \section{Visualisation graphique} Les traces en ASCII peuvent ensuite être visualisées. Pour cela, elles doivent être mises en forme, éventuellement fusionnées (si on utilise \FUT et \FKT), triées (les événements ne sont pas nécessairement enregistrés dans le bon ordre), \etc C'est le programme utilitaire \code{sigmund} qui est responsable de cela : \begin{shell} fxt_print [--user user_trace_file] [--kernel kernel_trace_file] [--paje] \end{shell} \begin{options} \option{--user user\_trace\_file}{indique une trace utilisateur (\FUT) à traiter. Cette trace doit avoir déjà été convertie en ASCII avec \fxtprint } % \option{--kernel kernel\_trace\_file}{indique une trace noyau (\FKT) à traiter. Cette trace doit avoir déjà été convertie en ASCII avec \fxtprint } % \option{--paje}{génère une trace complète au format \Paje} \end{options} \sigmund trie les traces, les fusionne si on lui en fourni deux, insère les événements d'ordonnancement manquants (prise de la main au début des traces et déordonnancement des threads à la fin), insère des pseudo-événements (création et destruction des threads/LWPs/processeurs/\ldots), \etc Pour l'instant, il n'est pas possible de choisir un sous-ensemble d'actions à effectuer. La prochaine version de \sigmund le permettra. Enfin, par défaut, \sigmund affiche cette super-trace complète. Avec l'option \code{--paje}, une étape supplémentaire est générée de façon à convertir cette super-trace en un format de trace acceptable par le logiciel de visualisation graphique \Paje. \begin{figure}[phtb] \centering \hspace*{-2cm}\includegraphics{paje} \caption{Visualisation d'une trace avec \name{Pajé}} \label{fig:paje} \end{figure} Sur la figure~\ref{fig:paje}, on peut observer un extrait du déroulement d'un programme multithreadé. Sur cet exemple, la machine a quatre processeurs physiques (il s'agit d'un biprocesseur \name{Xeon SMT}). L'application observée (nommée \texttt{traces}) utilise deux threads noyaux pour ordonnancer ses quatre threads utilisateurs~: trois threads sont destinés aux calculs d'un produit de matrice (nommés \texttt{calcul1}, \texttt{calcul2 } et \texttt{calcul3}) et le quatrième assure des communications. Les informations sont représentées dans trois zones matérialisant les points de vue thread utilisateur, thread noyau et processeur\footnote{Si tous les threads noyaux et tous les processeurs du système sont représentés, seuls les threads utilisateurs de l'application espionnée sont observables.}. Détaillons ces différentes vues~: \begin{description} \item[Informations sur chaque thread noyau~:]~ \begin{enumerate} \item identité du processeur physique utilisé (lorsque ce thread est ordonnancé par le système d'exploitation)~; \item identité du thread utilisateur qu'il ordonnance (si le thread noyau exécute l'application observée)~; \end{enumerate} \item[Informations sur chaque processeur~:]~ \begin{enumerate} \item identité du thread noyau exécuté~; \item identité du thread utilisateur exécuté (s'il s'agit de l'exécution de l'application observée)~; \end{enumerate} \item[Informations sur chaque thread utilisateur~:]~ \begin{enumerate} \item identité du thread noyau propulseur (lorsqu'il est sélectionné par l'ordonnanceur de l'application)~; \item identité du processeur physique lorsqu'il est réellement exécuté (il doit alors être aussi ordonnancé par un thread noyau)~; \item emboîtement des appels de fonction et des événements tracés dans l'application. \end{enumerate} \end{description} \chapter{Perspectives} Le programme \fxtprint et la bibliothèque \code{libfxt} vont être étendus pour permettre de lire des fichiers de traces produits sur une machine d'architecture différente. Le programme \sigmund va également être étendu afin de permettre de mieux manipuler les flots de traces : filtrages en fonction du type des événements, de dates, de l'émetteur des événements, \etc. Cela permettra de choisir facilement et précisément les informations que l'on souhaite visualiser dans le logiciel \Paje. Les outils pour instrumenter les applications seront étoffées afin de permettre de décrire facilement, rapidement et de manière générique quelle représentation on souhaite dans \Paje pour chaque type d'événement de l'application. \bibliographystyle{fr-plain} \bibliography{FxT} \addcontentsline{toc}{chapter}{\refname} \nocite{*} \end{document} % LocalWords: patches patch fxt-0.3.15/doc/PaxHeaders/paje.eps0000644000000000000000000000007310271436741013665 xustar0030 atime=1746715490.257509348 29 ctime=1746716504.79201042 fxt-0.3.15/doc/paje.eps0000644000175000017500000203573310271436741013364 0ustar00samysamy%!PS-Adobe-3.0 EPSF-3.0 %%Creator: GIMP PostScript file plugin V 1.16 by Peter Kirchgessner %%Title: /home/vdanjean/travail/articles/2003_RenPar_Traces/paje.ps %%CreationDate: Fri Jun 25 02:58:18 2004 %%DocumentData: Clean7Bit %%LanguageLevel: 2 %%Pages: 1 %%BoundingBox: 14 14 488 488 %%EndComments %%BeginProlog % Use own dictionary to avoid conflicts 10 dict begin %%EndProlog %%Page: 1 1 % Translate for offset 14.173228346456694 14.173228346456694 translate % Translate to begin of first scanline 0 473.61259842519695 translate 473.61259842519695 -473.61259842519695 scale % Image geometry 888 888 8 % Transformation matrix [ 888 0 0 888 0 0 ] % Strings to hold RGB-samples per scanline /rstr 888 string def /gstr 888 string def /bstr 888 string def {currentfile /ASCII85Decode filter /RunLengthDecode filter rstr readstring pop} {currentfile /ASCII85Decode filter /RunLengthDecode filter gstr readstring pop} {currentfile /ASCII85Decode filter /RunLengthDecode filter bstr readstring pop} true 3 %%BeginData: 538532 ASCII Bytes colorimage JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$LAq7_r;ZgBkl1a_'-+i>s+13$s/5mI~> JcC<$LAq7_r;ZgBkl1a_'-+i>s+13$s/5mI~> JcC<$LAq7_r;ZgBkl1a_'-+i>s+13$s/5mI~> JcC<$P5c!YME_dW$RSoBlMpnWg\q0Q,O#.0&c_niJcC<$JcDYJJ,~> JcC<$P5c!YME_dW$RSoBlMpnWg\q0Q,O#.0&c_niJcC<$JcDYJJ,~> JcC<$P5c!YME_dW$RSoBlMpnWg\q0Q,O#.0&c_niJcC<$JcDYJJ,~> JcC<$PQ)#l&HEN+c-r70!!Tn3s8Duu,O#.0)uot)JcC<$JcDYJJ,~> JcC<$PQ)#l&HEN+c-r70!!Tn3s8Duu,O#.0)uot)JcC<$JcDYJJ,~> JcC<$PQ)#l&HEN+c-r70!!Tn3s8Duu,O#.0)uot)JcC<$JcDYJJ,~> JcC<$PlCla!< JcC<$PlCla!< JcC<$PlCla!< JcC<$Q2_!N%0-BXqu6`$!2ohrrVupCJcC<$JcCW-J,~> JcC<$Q2_!N%0-BXqu6`$!2ohrrVupCJcC<$JcCW-J,~> JcC<$Q2_!N%0-BXqu6`$!2ohrrVupCJcC<$JcCW-J,~> JcC<$Q2^i6rVurHqu6`o3P#.hrW!-I^dJ\;/#rLH#L-U!#RVtrh#@ JcC<$Q2^i6rVurHqu6`o3P#.hrW!-I^dJ\;/#rLH#L-U!#RVtrh#@ JcC<$Q2^i6rVurHqu6`o3P#.hrW!-I^dJ\;/#rLH#L-U!#RVtrh#@ JcC<$Q2^tE!!!3#p&G!k#7")PFT;CB_YsKDNroABaMK>*$F'R1o\9?F"<7C@gK4@S#)MmN]a17h JcC<$JcE.XJ,~> JcC<$Q2^tE!!!3#p&G!k#7")PFT;CB_YsKDNroABaMK>*$F'R1o\9?F"<7C@gK4@S#)MmN]a17h JcC<$JcE.XJ,~> JcC<$Q2^tE!!!3#p&G!k#7")PFT;CB_YsKDNroABaMK>*$F'R1o\9?F"<7C@gK4@S#)MmN]a17h JcC<$JcE.XJ,~> JcC<$Q2^pq!!!o/s8;p!i;`$?!!$7&rsQXD!!(@Fs/l>%$/kg_rVup;rr38g&HDeAhYT JcC<$Q2^pq!!!o/s8;p!i;`$?!!$7&rsQXD!!(@Fs/l>%$/kg_rVup;rr38g&HDeAhYT JcC<$Q2^pq!!!o/s8;p!i;`$?!!$7&rsQXD!!(@Fs/l>%$/kg_rVup;rr38g&HDeAhYT JcC<$Q2^pe!!"27s8E!#'*&"1rVupPrr34!!!!<'s8V*X!!%-?s8Duu)u]d:SGiKj2/s)cJcC<$ JcE(VJ,~> JcC<$Q2^pe!!"27s8E!#'*&"1rVupPrr34!!!!<'s8V*X!!%-?s8Duu)u]d:SGiKj2/s)cJcC<$ JcE(VJ,~> JcC<$Q2^pe!!"27s8E!#'*&"1rVupPrr34!!!!<'s8V*X!!%-?s8Duu)u]d:SGiKj2/s)cJcC<$ JcE(VJ,~> JcC<$Q2^pq!!!o/s8Duu,6%WA!!";DrrWu9!$)" JcC<$Q2^pq!!!o/s8Duu,6%WA!!";DrrWu9!$)" JcC<$Q2^pq!!!o/s8Duu,6%WA!!";DrrWu9!$)" JcC<$Q2^tE!!!3#p&G!k!$hLCrVupCrr3''!!"5BrrE#s!!"JIs8Duu)uT^9bl%MA`.@r>s+13U s*t~> JcC<$Q2^tE!!!3#p&G!k!$hLCrVupCrr3''!!"5BrrE#s!!"JIs8Duu)uT^9bl%MA`.@r>s+13U s*t~> JcC<$Q2^tE!!!3#p&G!k!$hLCrVupCrr3''!!"5BrrE#s!!"JIs8Duu)uT^9bl%MA`.@r>s+13U s*t~> JcC<$Q2^i6rVurIqu6`ZS%J\"rVupCrr;rt!$hLC!u:k:*<,s JcC<$Q2^i6rVurIqu6`ZS%J\"rVupCrr;rt!$hLC!u:k:*<,s JcC<$Q2^i6rVurIqu6`ZS%J\"rVupCrr;rt!$hLC!u:k:*<,s JcC<$Q2_!N%0-BZqu6_G!0.!XrVupCrr;rt!$hLC#>kI$#lal(ir/oXG5hO@!!!u:rr^pYUcJDS !1SQ>JcC<$Zi>O~> JcC<$Q2_!N%0-BZqu6_G!0.!XrVupCrr;rt!$hLC#>kI$#lal(ir/oXG5hO@!!!u:rr^pYUcJDS !1SQ>JcC<$Zi>O~> JcC<$Q2_!N%0-BZqu6_G!0.!XrVupCrr;rt!$hLC#>kI$#lal(ir/oXG5hO@!!!u:rr^pYUcJDS !1SQ>JcC<$Zi>O~> JcC<$PlCla!<<\erVluU%N+a8s8Duu,Q@`B!!"8CrsQ^F!!(CGs/l>%$K;!arVup;rVm-o?iSmi !!!c&JcC<$JcE+WJ,~> JcC<$PlCla!<<\erVluU%N+a8s8Duu,Q@`B!!"8CrsQ^F!!(CGs/l>%$K;!arVup;rVm-o?iSmi !!!c&JcC<$JcE+WJ,~> JcC<$PlCla!<<\erVluU%N+a8s8Duu,Q@`B!!"8CrsQ^F!!(CGs/l>%$K;!arVup;rVm-o?iSmi !!!c&JcC<$JcE+WJ,~> JcC<$PQ),n&-*H,cI/$r&B=bMptPcJ"!64sg\q0c*o$Mjs-!Nb43>>f!"6.5s7G(F!!sLsr8F=a cN!0XrVut3gO]BUs+13Xs*t~> JcC<$PQ),n&-*H,cI/$r&B=bMptPcJ"!64sg\q0c*o$Mjs-!Nb43>>f!"6.5s7G(F!!sLsr8F=a cN!0XrVut3gO]BUs+13Xs*t~> JcC<$PQ),n&-*H,cI/$r&B=bMptPcJ"!64sg\q0c*o$Mjs-!Nb43>>f!"6.5s7G(F!!sLsr8F=a cN!0XrVut3gO]BUs+13Xs*t~> JcC<$P5bgTMEV^U#qC#Xrr2uAqZ$WnqZ$WBrr35J?Q]R[-uIi?rrB8"!!27-rW!!!A,?7Ws+13$ s0_lW~> JcC<$P5bgTMEV^U#qC#Xrr2uAqZ$WnqZ$WBrr35J?Q]R[-uIi?rrB8"!!27-rW!!!A,?7Ws+13$ s0_lW~> JcC<$P5bgTMEV^U#qC#Xrr2uAqZ$WnqZ$WBrr35J?Q]R[-uIi?rrB8"!!27-rW!!!A,?7Ws+13$ s0_lW~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$q#:Eor;-?d!r;Wer:gNmq"X^^r;HWBrrAtp!.k0$s+13$s5 JcC<$q#:Eor;-?d!r;Wer:gNmq"X^^r;HWBrrAtp!.k0$s+13$s5 JcC<$q#:Eor;-?d!r;Wer:gNmq"X^^r;HWBrrAtp!.k0$s+13$s5 JcC<$q>U]tp@.>.j5T/!jTFT(j5U(!roF@Km-jQ@r;G.F!qY.frW'_5!5&66JcC<$JcDVIJ,~> JcC<$q>U]tp@.>.j5T/!jTFT(j5U(!roF@Km-jQ@r;G.F!qY.frW'_5!5&66JcC<$JcDVIJ,~> JcC<$q>U]tp@.>.j5T/!jTFT(j5U(!roF@Km-jQ@r;G.F!qY.frW'_5!5&66JcC<$JcDVIJ,~> JcC<$rVn)?r:ojJhpB9R\$iiX]=YV_\$icV\@]>b_o^6YiTg"/r;G1G!$hIC^]+9YrW%NLJcC<$ VZ2/~> JcC<$rVn)?r:ojJhpB9R\$iiX]=YV_\$icV\@]>b_o^6YiTg"/r;G1G!$hIC^]+9YrW%NLJcC<$ VZ2/~> JcC<$rVn)?r:ojJhpB9R\$iiX]=YV_\$icV\@]>b_o^6YiTg"/r;G1G!$hIC^]+9YrW%NLJcC<$ VZ2/~> JcC<$rr3Z/o^(Pf`j;4mJUMilIt<6%I!U);Hk_$ZJr#GVWOKjtiTp+0q"a^[qu$EKrr=;C!5JO6 ,Q7[os+13$s/,gH~> JcC<$rr3Z/o^(Pf`j;4mJUMilIt<6%I!U);Hk_$ZJr#GVWOKjtiTp+0q"a^[qu$EKrr=;C!5JO6 ,Q7[os+13$s/,gH~> JcC<$rr3Z/o^(Pf`j;4mJUMilIt<6%I!U);Hk_$ZJr#GVWOKjtiTp+0q"a^[qu$EKrr=;C!5JO6 ,Q7[os+13$s/,gH~> JcD#8"o\Arqu$E_s"3p/fuC@rPC7"@:.n2R9MeY_91h`K9M8,S:K1G)DLIYC\&m1VioK4`lgjiL hZ!R#rW(%>"8gskFJcC<$_Z,,~> JcD#8"o\Arqu$E_s"3p/fuC@rPC7"@:.n2R9MeY_91h`K9M8,S:K1G)DLIYC\&m1VioK4`lgjiL hZ!R#rW(%>"8gskFJcC<$_Z,,~> JcD#8"o\Arqu$E_s"3p/fuC@rPC7"@:.n2R9MeY_91h`K9M8,S:K1G)DLIYC\&m1VioK4`lgjiL hZ!R#rW(%>"8gskFJcC<$_Z,,~> JcD&9#Q=Ggn*fiBrUp1Frqu9EafCMLCLC(-2)mNO3Ari[3&NTL3B/iU2E!TU4[r+MDLdqGYdLsP ^rkEspAO+Q#4?4D"t,uerW)uu!/(4M![I`Wr;ZgBp&><5;]5fH-<[#;rr35J?Qf[^-u@] JcD&9#Q=Ggn*fiBrUp1Frqu9EafCMLCLC(-2)mNO3Ari[3&NTL3B/iU2E!TU4[r+MDLdqGYdLsP ^rkEspAO+Q#4?4D"t,uerW)uu!/(4M![I`Wr;ZgBp&><5;]5fH-<[#;rr35J?Qf[^-u@] JcD&9#Q=Ggn*fiBrUp1Frqu9EafCMLCLC(-2)mNO3Ari[3&NTL3B/iU2E!TU4[r+MDLdqGYdLsP ^rkEspAO+Q#4?4D"t,uerW)uu!/(4M![I`Wr;ZgBp&><5;]5fH-<[#;rr35J?Qf[^-u@] [/Y]ajKo6"Y,.YSQCOeSZhUmaZa$X.Q@s*R5;OrB.OcYk-RC/f-n?\l-6joe,q()d-R0ob,qLf2 6;1erlkB.$ul7I=2@o;!.=%p il:rt!t7#R:At4rP2tZQ_YsN;+5tngrVus@hu;L3h>c7KgU")aVP9fYTq\6TTqJ-QTVA-RU8+Wc Y-PBb["5U9ZiR$QU]5i~> [/Y]ajKo6"Y,.YSQCOeSZhUmaZa$X.Q@s*R5;OrB.OcYk-RC/f-n?\l-6joe,q()d-R0ob,qLf2 6;1erlkB.$ul7I=2@o;!.=%p il:rt!t7#R:At4rP2tZQ_YsN;+5tngrVus@hu;L3h>c7KgU")aVP9fYTq\6TTqJ-QTVA-RU8+Wc Y-PBb["5U9ZiR*TU]5i~> [/Y]ajKo6"Y,.YSQCOeSZhUmaZa$X.Q@s*R5;OrB.OcYk-RC/f-n?\l-6joe,q()d-R0ob,qLf2 6;1erlkB.$ul7I=2@o;!.=%p il:rt!t7#R:At4rP2tZQ_YsN;+5tngrVus@hu;L3h>c7KgU")aVP9fYTq\6TTqJ-QTVA-RU8+Wc Y-PBb["5U9ZiQmMU]5i~> [/^05!Lf8OQ2?dDPl?mGP5:ICQi<6DPQ$[BPQ$gGQ2[-KQ2[$IQ2[$EQ2[$IQi33KQi<9KQi<XO*n]0#rW!!@h;&"crS@S4U](6,SDiGdSH-^kXT8D%]]\LM!!!;Mrp0L_!laTUrW!'l lg*gYrVur^roX=EU](5tdcJdT!!9P,iV``X\_b:(!!G[EgY1B\!!=:pf[p*&"Wc1EeCE+Ke-sgQ R$!2QGB@nIFE2L&Et322FE;PIG^Y=+PaS)7T)PA]SbJZHSc5/YS,J]QQ2?pBRJiZDS,SuWTDP/X RJiWLRerHNRJNBLQi36LQi<9LPP:@@Oo(=@PPpdGQN!0KQi3EQSGSlUS,SlQSGSfTSGerVSGo)U SGSfPSc5,XSG/NPSGJ`SSGJfUT`1P^SHGUZBF:O7J,~> [/^05!M#GRQh6RBPkpaGR.Q[CP5:ICQi1;0J4t/r%8a:.OHJe +udcJdT!!9S-ir&iY]&1L+!!G^FgtUQ^!!")>g&:sQ*nT!BeIU0[e^W!9P_t!:G'%kLFE[Y+ s)\ZlFEMeQIYa&NR\$1Frh9=`qORVWoUl,Srgj"Vrg3VOrgEMMrLNJKrgj%\rLs+[rgWYPrL<\Q pRD&KrKmMOrg3VLrKmDIrKI#AqNq2IrgNeVrgs"ZrLNqXqO[STrgs(Zrgs+]qO[STqOdbXrgrtV rgj%[qORVWqOdYYrgs:gU1jt0s*t~> [/^05!L8cFP5C==OSb+8OoCO9OT(7>N&/1`;'/M&J) .k)bi+s/!O+XJQh/hAY13`'XFO-TR.rK[AK!m&L*rlYMibKS2Uc?0$c!kH^hr;ciG!7^uJ"!6(G g&:sQ*o#HKh#6%0hP'oK(7X7?iLBnfj/`7]!4q=UScA`rc0FW\r;ZoXM*Rt);rR),%cBXBBH?=.GE,ff9 rbr?cE,fi:F*2e^MNO0kR[X5FrgN\MrgEDIrgEbPrK[8Crfd)AlBhLFrg!>G qiq&Brfd>Drf@#?qiLc:plGB9rf[8Brg!GKrg [/U37TpP\EpQtZBrL)i8rg*PMrK[AHrg*PMqO%8Krg*MJrg*PKpQkQ=nWs$XN*nf6FgAfn3gtb6r !!CpRi!\:%cJh:n!!hNEjNIN&")6u_l2CYb%dWHErW!'Ll0.=RrW)u[s5XRJ5l^ltiS`W*!!$!t h>RBV%GTUfrW!'If@JO'rW!$@e'lbE!!OCid*L%`rlk\j`J8bNrf[8EoTK07rfQ`6pQ>!-rK$r [/U37UR1nGpQtZBrL)i8rg*PMqN_&Grg3JKrg3VMrK[AJrg!5DpQb97qNq2Lrg3SPrKmtYOFq=G 5!DhZJrc2pQoC=lLjjGX=%5%p+!2LH+so'-6q0^=92&)S8kDQG8kDTF7RB6s0.J=m+!;UK+WhpQ -9bjeNKjC-pQks&aiXP)rlb>c#gG"&!"7-"d1-'TrmLksrW!$@f%8OQ!!44pg&9Y)gBQHh5l^le g&Bn;gHoT0!6rfI)@rfI,AqNC`;pQPTArKclcK m@+$DrL*PMqO.,G"-@C^"/GmH~> [/U37SX',=qj$f>rKlK.rKI5DrfmDIqNh#DrKR;Hrfm/BpQXs.rg3VMrL!PL$^?['C/@)X:hkN? PPg_*P`CNJF(JBA2('If*?ZOP0g%fm84Z?G:.n/L84cBD8Ou9:4>nfA-6XHR*?cRJ,9eHt@"!ut rK[5FrfmQ)aN4A&s2tAbs3(^$!!!DQcd3.#!<(CG!!=7lf%0g#!Zp%Irn.;*rnA.B5l^leg#(]F g-!X=7K [/U06OSFh7N;\b8NrG%;Mu&D3NW,".Nr+n9OoCF=OSt@APQ$jHQi3:RMNn+*)jZYFIr](#7QE"G*uc:I.l9Fa>%MD`D/F0.D>e8hDJa6+ BOtLN:..)q.3]fW+WhpQ,s>U_M3*ntOo:C@N<$cn`;dgV`rF*Za9)hN!#Y^Z!#kh:rQtND!$2'g rVup=rn%2&$ea7fgY3;?!#OMLhu;R6i<'_n!#bds!8d\T"#]9*kl(P^*rbL)!!FJ0l0'8h!!)0\ jUU>a!!"%rh;'%N!$0tRh>RBS*<+^l!!",?fDsP&!!"&=ec#OM*R`C8d1XgOcHrfmAErfd)@qj.2Ipm1Z> qNh,Jrg*;FnWj';qi^rCqNCiBrKI,Crfuu>qj%/DrK-c9plP?5qiLQ4rf%#BCGQ!ds*t~> [/U37P)fI"rf$i7rJ^`9rf-o8qMbE5oT/j.qi:W;rf6l;qNCiCrg3AHrL3_QrgN\Mqj.)Drfm;G rK[AFrfd;FrKRbSM0E)`-71cVGD_X`Q5YpEIr](#7l`.I*uc:I.l9Fa>%D;^D/F0.D>e8gDJa6+ BOtLM9g^oo.3]fW+WhpQ,s>U_Ll_CprK.#rp'I_",-hDg-\dNKTQmQhQg9Qhm$9Q2QpGP5CC6P5UOBP5^[EPkpR;Pl$aEQKOP4Q i<9EQLU7=PP^OBPPUIAPPp[APQ$j:QMZsHP3nA*O8G%8NW+t;N<>;Z1BF9NJ,~> [/U37NK!Fdrf-o8regH.kDfG%rf-f8rK.#ArfmDIpQtiGrg3VPrg*;Drfm8CrfmDIrKI,@rKI2E $^-hNr"k9NrFt;^]).N`;dgV`rF*b$ig8EbKS0KrW!&Hd*U,+AkNMmF!$;.)rW!'El0.=RrW)rZs5XV%!!"%q h:rtM!$0qQh>RBV*8B6%rVup>rn%5&rW!$@e^`1K!$!$-dEp:fd*BnY^Og8t3AE0=/M8S+/M&M* /1iFP/dsR$93>Y?Fa\t%OHYq&Q2[*GQi!'IPl6mHPl$[CPl$[COo(7>O8Y18Ont1:P5:=?PPUI1 Q26aEPPURDQN!-CQ26aEPQ$gGPPp[AOSY+=OS=n:P5^[7Q2?dEORnP4NrG+6NW+t;NW"h5NW+h< OD$?LU]5i~> [/U37Q&GU#$_Z&=m55me_4ZPAN,TR^8&Io6[%M9Ku,UtK*3BK>!49.JB4:=533]T)T0InLo*#JPfrtP\T ,;2&A62j4K62Nn\O.2W0SY)RJTq\g\q0U*n])q*W?'=dK@nDcia%C!s6EZ_u9W< )Sj)#rW!'>\[f2YrW!$ [/UcGQA^`^NfKd]lLt%p^5A,;P*#[*!Kr]GQ3)A98,P[J5jq"o6Ms.E6MNkA5l48q>M4$#D_2Dd*<-QsHGr=o8H"W8O<3 Boh/6M<\YO.;`2SY)RJTq\g\q0U*n],r*W?'=dK@nDcia%C!s6EZ_u9W<)Sj)#r W!'>]",;ZrW!$+mm$_8iBR9/"&j,rP5^R_OH5B\O,f[-Z*]USLld[ZO H5?[R]*KuOH>9[rK7_UP+&>S[#gE-Pa.W'ODluVU]5i~> [/UcGOG]!UNJsCRk482`\qlN3OcTI&!0[;G!d\$>r':$Ao0E7=r'Bp@pd+jFr'C6Gpd*_$r'(TT 4utAA'b1]g+tu&Ar]_5^3A`62*>fG$%LimX&JlK6.PN_>3]]>arB(*B3rM/?3X@`(1b^F-+<)*p '`SmO)'^dp5=,98p-9:PS"#t>StD[LTqeCb!!!e4W2UU4!!B@+YH\!+!u\JR[f-7;)7dAk]Y2"n ^VRbh!!!nVrl5Dgb0%p1!!!tbdF$>?!!=Frf@^'&!$;-orW!'Bf[n[prW)uH"4>KA"8Diu!lW$p rW!$=^V7D\!!F4N\[T'I!!=+EZ*F9.0GpjkWiE"rVl-;B1as=S%M'!Y%LimX%1WgV%LimX%1a'c (`abG.P [/UoKSs#7uP+q-r]Z=Ba4Zb_d4?l84 @;Bn*oQ:jkVms7I\[oAa]=bhj$ig8C^qml)rW)r;!6>'="!#J,ao28A*6un0ciDJmdKJ#2!!!f6 edU0_g"G'm!!!klh;6c_!!>(:ioC"<"!?UcjSf,^+62A?+8u9?h[SGuh%0Pd(r*i"^:h4mrmq&K "!,k=df'4L*RE'Wc2I\F*6QFErW"bo`l5m7_ns:,^7Ah00ch8R)&jM3)]KY6)B'P4)]KV4)B0eC -S7/>8lf;0C2Ip3GC"Xbr-n6epjMIUpNlIZr-J-co6U1YrH\-`oQeo3rH[[Pr-8!\rH89_@UFWa OT1=GNKB*o[A]IPre_&0NfK0]N2*eZR#V*&$@7\kOcbTt[A]IPre^r.O,oBfDDD9gs*t~> [/UoKTotS$P+gsdXIkoHTWaB;P*1rjP*Gp."("2fB)H`FGl2jcGPH@ZFo6FXFo?F[G11U/F8'\j De;s0,T7RH4&os6FE;;1=\1S&+WVI"(^V3/0L&99@r-+(q/lFQ$#jg!BOb:H9LCuB3sRl478dQ0 Ecgqr!dCTQrji'?%(j0b]tOmT!#EAd_AN7Prl+rYrW!$?b0.p+!!4.cci28kdJhPsdh)Q[(B2kn f@\d0g(OGd(u=$)fDYaP1u[HSrW!$BjQ5J%!!FD(io2'Z!<:pchVI!!!!!kN^V7Fq]tF?qrW!$@ e'c\D!!F=gcd'f7!!=4`b/aJ]1`OHR`5KR1_SNsWAPFm#)]T_7)]0M5)&jJ4)]9S6(`F;3+ [/V2SRZ`epOIY.JSW&8TP,aA#OHPZdOHP`hOcj!7:1jEEo6:.VpiZLVr,qdVrH%mZrH%mYr,_gY r,_gYr,qUQoQ'hK(2d\^3[>U^,W\n:DfTi5@ou;^.NofMrYPq],VVDV>@MAeE;akVEr9qVEYNJ2 CM.*\<(fP@4$#Da5"/@XCN=LqFS9hjVmj1G\[f;_]=Y_h$ig8C^qml)rW)u;!QN1Z!!=4`b/sV_ !Z]M2rm:Yl"k(j3!!!f6edU0_f\+sl!!!klh;6c_!!>(:io9q;!$D4$rW!'Cj5T&?rW)uU$/XLo &-)\I^V7G]]`>_Ef)>XO*RiHarVup [/U`FSs#;#NS_mf`Qc5oMi*XANV\_?O^(+ZG^0.3r-J-bpjDOWr-J$5'8@VTq. Hi8?cH3L%R]",A_rjrNM]tQ#t!"$HW_$p;Crl#,^"TSN=b0%t[?CB4#],ZjMk#rR@q5IH#C:3OQ]%BAP5T_,Ad [/UcGSs#;#N7Ye@\\b_6FaK*lNKA%o!H@5X=rI=`or-T*)H['XKBOP1N>$5'8@VTq. Hi8?iHi&*iU:L97s1AaiV'l!!4+Z`W!af_SO(%Q=s8_/ghqi,:"HX,9eE4,9%gO+s.gD)&a>1 *$-CY3']r-;HR7:C2\*7Fa!J&o6("Tr-.UPr-/*_r-/*^r-.FNrHJ0_rH8$]r,qs]r-/*_r-/*a o6KqRoQ^:Zl?`DUr-J [/UlJRZWbpLWuueXL>!O?>G:9MiEdZNW+tBOBatWGB`t0r-A'`pjD4Mpj)d`r-\Hio6g=[msP"Y ,'Rm+4XCs`,s>CKGBn4D>"CS#*>f\4)BL+T4%rjkDg$DQmX,RmH$44EBOP1N=]eg3@;9e+r-J'^ ';;tJ\[f;_]=Y_g]ds-`$,F?m%/p56`5T^8"TSN=ai_0n!!+(brQc>-daHUo56(Zcce$e$^g=%p 7K)"A86"$FED[!G33rFFQR`DG3X;-Fo6F]GOp(WH2)XVGNsGJHM)LiE.jRCPEhAdRC/%REW'h\ B98F7R?DUf>6f+[P*Uij[>k0*$?0?ZE+Y)mP%60HU]5i~> [/V/RW0NX4`ndoBi9/t2PAbhpGEJ)RPa7T"H9YkaH2DjXH2W*bHMi'dHh;XUHi/9iHi/9iHi/3g HhVj]H2)_/H?X4/4XD$d,s5:EE,B)c6nol*)&O;8,qV&E;djK`GOTkRH2i*kFE)59rbVUO")r@+ H2N!dHi&*nR(9f?]=bfU^&PeHD>jM:Wktn:!"-`da2fA'!!^NfN;`eb*6umVd*U1ge'lg9rW!_" f@\`!!km@VAbEH6/EH@,=5rI"NkmsO_QpilLVo6:.Yr-7@Mr-\Hio6U@^r-\EgmsOnVo6^+U pj;sc!Ip1/QNE;WQ2,n5D0hD-[64:A'o6^QP`W;<1Gb#?:bsnjD0hD2B.sC^s*t~> [/U06WW&/"_UG0lg>^_gHsUl=GEJ)RPa7T"H9YncH2DjXHMr3^HMi-bHLH4YI/SEiI/SEiHMr3^ HMi'`HQ[WYD-9"J)]L(c=DDel@obuP+rhI;)^$FY2apYRCiagiGkuadGmne7Df'<-D/O61FE`$. HMi-fH3S_a]"5Mc]`#PD^&W$L!!91;Xo/8!`s9[.!!!5EbDcE#$QRIGi8N\p!!",?j8K#]+6);=/H,VQf\Lulfp2O:$)lP0fpM;8O>W<4=3-P4?Yhi4#o,L-R'WN)]BP5+=/Ki 2*+#q;HmXFDK0]=G'\L`IJ83hI/JH^I/SEdHMDa[G5ZXZGl;pcGij>II.M[_Hi/9hHgc@WHLlLU HMDgjH@'sbIujPp!g'gRq0W?]H'=>t48L]IL22+!OL:9-15gNT1,=r,HBOP-0ES$LJ,~> [/V)PUQ^q+]#Kc8e(i9CA5$]YFcV]LPEh>qGs>a'Gl;sdH2)X^HMr-eGl;pHHMi$dHMi$cH2)XY H67?J=ZduL)^RUKC2duujM:Wkkh9!<0tC`ub9]#0=rGrW!gD983oH=4T@JC4T7GB4@VAaE,frAH$\\%r-J [/V8UUR[jCjgDMNnF>\aOCVO6@?QqBQ'ISu=\sBfF`r"SquHS;iH>0DpAk5;rrDS6pilX\q>gG< rrE"Br-.mY*cl's4!bgb,s"t4?W]r`/KkuJ)BL1Y3^uqNAo;^8rHeBepj2[^!df6>r-8?iH[G70 !fjk(rk&]R^:q@s^q1ro!(3GJ"TAB(\&$/-A,ZH0>D"F)!!X:Ha3i;_df.]7eCA@8!#Lj-K*c;I gY@8\!&LgY,6/(BiSrY0rW!$>`8nl9!!F7Xh;W#F!"t$i,!Xo>>Q=aGRCA>!/^N"p\GcI1)7@o" rW!*=ZHCJ;AGuQ1>(S7'!#6$>'5r`]>),?e5P,:>-'5=eXP=Bf0DC2\0;GPHFXH2W!cH2)^aHh2RYH2Mp^HLlCVHMr-eGh@68Gk67[He*TE HO#.\QC!o&U87a9r-SWk?'(eVrA4C-#)7>-OJ8P!r\Fq61,:bLG@-MqBJ9L_s*t~> [/V8UVOX0Fi2!3umI&uJH#9KgF`r"SquHS;iH>0DpAk5;rrD)(q>gGQ.h+=X.*Q=B/-e4uFo<+rqR?)&aJ7 +`bYSHN#W,JMAl:NceZkO_HKNU]5i~> [/V8UT:DF?f92B@l0@'/@mrb!?'(;9Pa%Aq=\s?eF`hnPquHS:hf\Yns*"DBk]crLq>gG;rrE"B r-.pZ+*DU<@0KM[">@hYmGPugbGj]k[H$FRXr-86es*FHfqg&=& \[qdP%D9Bf^:q@o-NF-6TgT%_!!KdIaN7rk!!6AW.fKDP(p_30dF-JBdi6feC]FGOPI6#LC>7Lu Iff[,YGrfI$D$/7gqs$j!uo2>`;T`>)oCFiAc;ZBL9;^bh:u68!$@WT.fKD_(TG*e`5BI/_82+SEGAof>$5$4=^(f--!4;R=BAHs7QiU[,U"0G)&O82 )^$@Q0/c!a:f^\&?tE*JEcAM+%Zs*t~> [/UfHT:MREp8P[]mdKARK4I_W8!KPCT)Y>^8o+BT!.OnIs0Me,[.8\@J,FcgI/^MQ!;s2,I!W0, HMi'`HMi0cHN+!D[/L((I/gSQHi/3bGoq9RCKESC(`4JW92\GK1asLa)&aVL3_34VB5_m:H$T@7 pj)dapj2jcrHn-`qgB-/]=Y_g]tV4q^qde'[8IV?*-iM%!!I&Yahg.=!!*q0qu?_UrmCeqrm_>+ f@Qfi(^(.!MZ2B?h;5J:*!QZn@E%6dj0eaa!9!_S(V&MW?l]CQ'MZ[*hVFP`&H`@kEmWIkX8;ks d/*eGW6`c.48o3\(nUX*5(pnn`5BL0_L[&XFDu,8D/F0-DJa6.D/F0-Ch[Hf=&)1G1Fj^k(`=/+ )B'P;+sns$4?c&$9ibY8Dfg5LqKg>4r-eNkr-eKjrI+9bo6pRbpjMper-nEjr.+`qmst=cr.4fu o76I_"b;)QJUrp^Rf]%]MYqVpF;%-PH7j_i8rg'3F^k>'$8+#qIWS2@QYA,SU]5i~> [/UfHTq.dGm?Xj+lg3Z8DcK,%7Zs;@T)Y>^8o+?SrW)u*!#WF<*j3UFEi(V rHe6ao6^C_rHn-`qgB-/]=Y_g]tV4q^qmk([8IV?*-iM%!!I&Yb/-7>!!*q0qu?_UrmCeqrm_>+ f@Qfi(^(.!MZ2B?h;5J:*!QZn@E%6dj0eaa!9!_S(V&MW?l]CQ'MZ[*hVFP`&H`@kEmWIkX8;ks d/*eGW6`c.48o3\(nUX*5(pnn`5BL0_L[&XFDu,8D/F0-DJa6.D/F0-ChdQi=AD:H1Fj^k(`=/+ )B'P;+sns$4[28':0(b9Dfg5LqKh:OrI*sYr-nTmr-nQlrI4ZmpjE$hpO3!fpjMper-nEjr.+`q r.4Kjr."WqrIXWkoR@$pIt3*$OT(^NR]_G?E"bg(Y(nTeOGegIGV+;^8WBm.E*rPq#qh [/U06S,Sohi.@KGkNL`o>"(;C6BIY,Sc5,`8S`g*I=H\E!<9D,!4;WOr-\-br-\EhrI"Tjrj;\* r3QTQH*jr(pNZIZrH\qC*!'Z(T`5KR2_SLbKGB@eADJa6.D/F**D/=',D/fY2 ()e)1+!N$a2EX/h7nlujB5_m:H0oqUHi89cI-u [/UcGU6(@orh$C;iSDD?I$.`'4c0-!s,R4FE-M8*rW!&-H$QdoH2N!eGl2mdH0oqX!!'CoHMr*d H2)ad!!0HQrd"MD!4;]LpilIW)g,t!4!Yaa,;VSK1FO@c(_mo300i??Ao2O1G5?F\Gl;sdH1Q@W Gk#t`X15[M\[oDc]`,SJ^;%Fu_8?2hs2=rV%`ZQ1WKO!sb0/#Qc-=PZrm1qudaHUneC<%!rmqA, g">!2g=lP]rnRY4hr"@iq;M;1#iFLqh;-lAgY;_]rn.;'rmh)"rmV)"da?Ihrm)A*c-=JVbK@uL WKEjm`l?!:`5KR1_SQ5e"gW>rG'8$*FSp4YFe=/0lAZ)]Tb6)]0M9+snWa/291T ;I*gKDf^)IoQpI`r-S9fs*Ocls*O?cr-nTor-nTor-n6eoRZUcr.4fsr.4fspj`3jl@8b_mXO\S r-eNk#*P:;P`rM$r,qs[#&ch^[ [/UcGUl^Usp55EVgX`fcBm`ZC4G`lr!^:RIrHS;A"13?![/5.HHMr*dHMr-`HM;dd!!'D$HMi-f HMr*dH2)ad!!0HQrd"MD!4;]LrHIgW)g,t!4!Yaa,;VSK1FO@c(_mo300i??Ao2O2GP-4ZHMi'[ HMDa`GP?@^G6k7Z\@K/]]=bfU]`l-b^VI_'rkecT`W!j_a2k6CU<1U%bl5ifcHlL:#gq)Ke'umt e^j`O#2%V]g"G*5rnRM/!oDhlr8@D0rSRt=hVR)Egt^Z=rn@A)s4@;%!7h(u!RoKrd2C0ES$LJ,~> [/V)PT8ehhl>qiieBY".Se]Y2%o^VI\%_SX4/`5T^8`lP-AU<(L"bPo`ccMu5jd/VK1daQ^q e^`7&f@\d/g"G*5gY:N=h;-rEhtu@1iV_X5hu2C2h#H./gAfk+fDsP&ec=8"e-+7KdF$>?cQCHW c-4DTb/qc)OeB\5`l5p7_ns:,_8*k$Z#t22FE@"n-#mj=B4>+F9L:Wg,U"0I*#]\6(`OM?-71)j 0KDU#>[qMdEclX!H1ZF^Hi89jHh2X_IJnWdIIhs`Jc1,sJbXipJGjuqJGjumIe/!_IcZ(JIJ\Bu H[:%%Q'@Jq[;u%X#%g)N[;mdWrG*3M.sPYiJ@0E5CK`5=/VRtUAj1d4AhF.[s*t~> [/V5TTpD"0p6Cf:ZD`e5P,V_H6\pe_NfK*Y6Z[?lG'A00!!'D)GQ.XCGPqO@GPhI>H2i-f!<.6@ !<%0>GQ.XC[/>(H!<73A!!%0@!<70>!<7-@Fo278FoMFBZuu=jrrE(ArrE(AquHY;q>^eAB`J,Y !!"/nqu?p<)B'b!!*9(!s*+DA!."?arH[gTrH@sYr-%pZ#ai*2\@K2^]=\'Ts1J]P^V@S"_84"+ rl"iU"3/C&aSs9^b00e.rltMjrm:_ormMA,e^i='f@\d0g=k<9gt_nb!oDhlo\f`+"Q%tjgt_n` '&)$lf\"g-f%/C$eC2mpda?Fgrm1Vis3:Sf&Bi5efD-mKlT(`=20*?#h:*@!3t78I&pB5MU0G'SB*HMDabG6`;5EH#l:FE[G'rHA*_ rH7mZr-8!\o6C4ZpNQRZr-/*_o6:.Xo6U=]rI"NipjE!drI"3brI"NlrI=ir"+>NFQN!9QQ`g(' #%1&aY&Z.SrGi3L/q.2"MQUu?;uA6RM/luqMND^9%AWrR~> [/V5TU6_+1mX]bITp9kGQ.XC[/>(H!<73A!!%0@!<73?!<.-=!;Ud;!!0HLrHA2@s)n>As)n5>r,qi9#]aVZ!$hOE +YETl"rJ6s+TMLCrW)tBr;ZhCpiua_r-/'`pil[[piZLXqK3(2\%&rY]"5Mcrk/9E#en'g^qde& _ScAks2>)[a2l@$aT9Q-rlkAe!7:_m!7Lkq%b0%[f%8O+g"G*5gY:N=rnRY4hr"(arnm_3s4mV. '&)$lf\"g-f%/C$eC2mpda?Fgrm1Vis3:Sf&Bi5t9aRDf8JO/cR@-LMgBfMNDd<%AWrR~> [/U06SGnc_j(r7QO+C_?A:d0)5DK)q#E1uiFEM_MGQ%RB[/G4K!!%6A!<.3?!<%0BGPqO@GPhI9 G6q/lW:!4;ZHrrE(@rrE(AquHY;q>^eAB`J,Y!!"/n qu?p<)B'b!!*0!us*">@!-n9_rHRaSk]I#q\%&rYrON!@rk/9E#/7je^qmk(rkf5a`Poj;a2l?D ai_fMbfp(3%F>aiVWFa2c3>`Pf^4_SX.g^]D3?qK;a[pie*1GB\1MD.mB^ :I[H(0J"Us+<249)&aJ5)B9bB00)Hr=C>]UE-$0mGkcL_Foc`,rbqpYFERP*mrePOpilXZlZ`)H rH8$]rH8$]oQTnQr-SBir-J-cr-J [/U06U]-Mog5U/qI>3TIX.21$9oGC0T:hmO?[[P(K`(oMK`1rPK!bLWs+14Nrj;\*rIY%LrNlWX !!*#*rrE%Lr."m#!!'D(Jc>]N["82V!J.WW!!e(^!!'BW!!*#*rrDnGrr<),JGjut!!]f[!!'BU !<0A*!<%EI!<0A*!!09h.K11FaRi)]B_8)&X2.+=/Ts5"AFP?tF+lF*)SKpNQOYr,i [/V8UV3[F4dXYb8C2n?JR"dFJ9T#4.T:hmO@"!Z\KS>)4r;chMrVutN[/L(*JcGfM[/U.)K)YiL ZiYgZ!<0A*!<.QIJ-1?&!4;ZTrr<),Jc5WMJ[GCV#D'5^!47:W!<0A*!;_6G!!0HWrI=hI#./j[ !474Urj;\*rI=hIrj;\*!O-SA!"(A-!%T?A!!"8q3;rmYG-LrG"FmcY!4;BHo6g=_m!K_/]=Y_g ]tV7s^qmn)_o'F2`Poj:a2l?DaN=G(s31Je!7(Si!7:_m!7Lkq!S#[!ec=>$f`'S(g'?BfgtgfC hr"CjrSd\6rSdb6rnmb4s5!_1s4dP,!SQ-)fDjG%eH==Me'e6Cs3LkocHa]6bQ#`baT]c+a2Z-< rl"iRs1n\lqK_^XrHTi:GBIk@B4"e>9h.K11FaRi)]B_8)&X2.+=/Ts5=\RR?tF+lF*2\NGkcL\ G5QIhFE))-@U`qcEHL\mrH%aUr,_dXrGqgXpiZOZpNHL[r-.IOpNcO[rI"NirI"NiomHacrH\Hj rd=Zmr-\Kj%=3;CF``&!QC!u*RqQ4,-O>*,6;WN.BIA-*:(9o`-Z;=JLmr'H-RUHur[.r"6;`W% E&nQ*s*t~> [/V8UTp1h,_f/@H`K ZiYdY!<0A*!;V*HJ,fSVr.+eI!ORFW!!.VWrW!1RZiC*5J,fTK[/U.&J,]KK[/>FR!!]f[!!'BU !<0A*!<%?G!<0A*!!09KUH76,U=ggrZ_Yn4\^ZmCcN'%s*t~> [/V/RW0EO3SZ-FEQ):X]Q9QQFEJBU?Pa.JuH";,EHi86j[/L(*HiF*G[/YLQ!!0HRqZ$i-I!bno [']gZrrE)+s*F\F!OR1P!<%3C!!'D(HN*s][!;WO['Y,Z!49+\!!'A+!49+\HiO/Rqg/8B!4;ZM rr<50H2mrPHM[[U[!6fq!49+XGQ7`ICB+>l-mpShqZ%.&5YqF\WO$gL!49+W!!'D$GOK\PG5-=W GPQA&Y.(pN\[f;`]=bei]t_=r^VIY$_SX4.`5Ta9a2l@$aU$&4bKS2UcHji9ck+UQdaQ[peCE.$ f@S[.g"P0Zg]-(-h>Q41hZDZlhu2F3h#lHggt_n`%bfUhf\"g-f%/C$e'umrrR1_ns3L_js3:Sf !6bAa!6P5]!6>)Y!QE"V_u@LQ[eY4DHMr3gI/\I?H$4:JChR?d=&)+B0.A7r,U+9J)]BV:+t#!$ 5=e[V@VKb$G'J=[rd=KhrHo!"H#dP#:et5*EHup)I/&0gJ,Oi]I/&'dHMi,qHjb:HG&hP?E,p&E H@,@5#^^f:CM.:+P`l$4!f_S9q^2T!:-!$GNdUXM'k'+:MiE*\-Rj^W?mdFE3GFD:F#j`)s*t~> [/U06WrA7nS"X4sIZg+aJ2eZ%DhaAOPll;BGBs+5!4;_*s*ObGs0VfQrr<),Hi!dI[![6$!49-4 HiF*G[/YIP!!0HQrW)nBrr<&+r-JAC(pnPg!49+Z!!'C5HiO/R!!'C5I!bno[!V^srr<),Hi89j !!T`V!!'BQqZ%;:G^'2g['Y(&!!'3@M;bEcu\RHiAEfIf4X%H[0XE=\qmsATM9k^3bbH$44IDfB`= GC"W0Hk(LJEbf<#HBaV\Q^l,fOInDY3M2ciW,o'`FB8MRn9dM0<>[/R(E&VEeQ$#.sU]5i~> [/V,QUQ^n+QBbPcBJ1DTBnMJ1PEh>rG@YoBr-A@MrW)tErrE)+s*F\F!OR1M!!]fXHiO/R [/PCO!<9G+HN*sG[!M]OrH\DC!4;ZLrr:\\@B)[]"5Md]Y2#X^'29e^qmn)rkeoX`Q#p=aSs9bb0.uPbg$.4'@5%PdF-Ile'umt f%/I)f\"m2gA]k,h#6(/h>lC1hZ)L5hYl74gtgc@rn@e6g"G$1f@SU)e^XQHs3gqps3Uel#0tK< bfn8RrlP5_rl>)Zrl"lUrPJ`S_83SUGkcRZHiA==G]e(FCM.-`<_Yq@0.A7r,U+9J)]BV:+t#!$ 5=e[V@VK_"Fa&+Wrd4Efr-JitEbANO:K_7JG^=^`pjDjbr-nTmr-S?hrHnHgrI"$ZrHn-`msFMN r-SBgnU(^kH$44IDfB`=GC"W7I/J?kHjG(DEbf [/UlJSXQ"8Qa1!r?@6im//od-J<6+`QMm'LCO,o'r-/XW!!%6D!46roFoVNLrW)u*rr<81G'3ic [!)Fmq#CK'G^04ps*+Wk!!'D(H2djS[!D]P[!?os!47#s!!'D%!!0HOr-A;B!OR.NHN*sJ[!McQ [/L(*[/U+0[!-]o!4;`Lrr<;*AH2]c)&OCn!#$eTR]`5Y[^;%Fu_84"+_o0L4`Q#s=aN2KFb0'_,%*Zu@cHab^d*U1fdaS3Frm_,%f@S[S f`Km^g]$".h>Z:1hu)F/huDR4h>Z40g]#n,g&BY(f*'[Te^W+Je,RkrdJqQ1cd'h\bfe2Pb/qcH aN)<>`Pf^4_SX.*Sc3osGlMt@D,YDK'W: FEM_Lpim0iEG&9:0ekji@W$;aFo?F[Fo?FWEr:%WFo?FWFo6=CFo6FXGOp(XHMi0hHi/3bHhVgu H$4.@@9cu??=dhhF*2\NH$T=6%s`A [/UfHT:24:QE=Fb;/'K/.2j@&IZToqQN*3RQ>:bjGB`t0#.+@1GQ7`NrceAB!4;_*s0Ve+"giJt !!'D)GPM4?[!6ip[/Y@QGlRiOr-A;B%^^N^!47#s!!'BOGlRiOq#CH&Gl2mf!!'D(HN*sJ[!McQ [/L(*[/U+0[!6fq!4;`Mrr<;*AcMfd)&OCn!#$eTR]`5Y[^;%Fu_84"+_o0L4`Q#s=aN2KFb0'_,%*Zu@cHab^d*U1fdaS3Frm_,%f@S[S f`Km^g]$".h>Z:1hu)F/huDR4h>Z40g]#n,g&BY(f*'[Te^W+Je,RkrdJqQ-cd'h\bfe2Pb/qcH aN)?@`l5m6_u@LQSc3osGlMt@D,YDK'W: F`qqPpim0iEG&9:0ekji@W$;aFo?F[Fo?FWF8U.XFo?FWFo6@VFo6FTFo6FXGPud\H2W'aI/J [/U-5rgF@bQ(_/B6WHoB,T%RlHB+?jPm3J[!-`n[/P=M!!'D(GlIaR[!;WO[!?os!47#s!!'D%!!0HNr-A;B!4;ZLrr<2/H2mrP rW)u*rr<50GBX#e[/P:L!!fT:!!"bl(`iSU'.GaTR]GA2p^V@S#_8=(,`5KX6`lH-@aN;QHb5TQcbg"E3c4J=Kd*^7hdaQ[peCE+# f@S[Sg&B_)h#H4-hYc=.huDR4h>Z16gY1B7g"=sVfDjG%eH"+te,Ri(dEp7dcHa\Zbfe/OrlGVj a2Z-<`Pf[3_SX.*SGmcqGQ2h:F`MJ@ChI3\:e*f74?,)H,p+$C)&F22+!iEm4@N"F>@D,YDK'W: F*)MHpid0iE+W*70ebaf@W$:1Fn9_RF7XGDFSKqPFRsYRFSp:[G5-:UGl;sdHf]PcH$4.@@9cu? ?=dhhF*2\NH$T=6%s`A$OB^Ee]Zk3!,lTJ,~> [/U06U]-YlQB%,67lDY7+"0j-NL-$!rKRGIQ$`=Q#(-CNZiC*5rd=_G%C?*8['Y2\!47-$!!'D) I/X-C[/,(NGlRiOr-A;B%^^H\!46uq!!'BOGlRiOrW)i&qg/8B!OR1OGnU1b[!;WOZiC*5[!;WO [!R-"!4;`Qrr=+>A,lT_)&aXu!%^)c!!&$rF8u_m[![6$!4;]Qr-mp\kCEbl]Y2"mrkAWP _84"*_u@RS`W!mWa8a3aai_cLbKTq0#gUcBd*^7he'n* rnm_3rnR\3gY:H]g&K\.f@JO'e^XTIs3gqp!7:_k$-pf?bfn8Rb0%j*a9fo,`Pod6_o'?Drd4Qh pj)=Qs*#i5EGT5q?!:<-9LLlo,p4-C)&O20)]p@W1d"0!;-RLBCMn'0Ecu^'H4,">APFp&+"fue D0bu*rHeBerHeBgo6U@\ms+bSpj2j`ms=bUr-J [/U06V>cknQ&Ui,6o6,/*@=C$N0fourKRGIQ$iCS#(-CNZiC*5rd=_G%C?*8['Y2\!47-$!!'D) I/X-C[/YLNH38Em!4;ZLrrJVo_32$0QQJ,~> [/UiITpV48Q&12l4YIor)C%[kMjKcrrKRGIQ$`=Q#($=MZiC*5rd4YF%C?*8['Y2\!47-$!!'D) I/X-C[/YILH2djE[/>1K!"QA\!!'BNGQ7`NH$KAi[/L(&[/51L!!0HQrHJtU['Y&X!42_+['Y)Y !47&u!!'D*HiF'eWFPu/0,YZN!!"Q01&q<7Ci]RV[!I#u!47&u!!'D)IJeQVJ,"QlJ,+TtLV1=6 ^AbkI_#D1M_Z.OR`;dgV`W4'Ya99W-b0/$-bm;V@cd:(edaQ\EeGn)!ecsaYf\+s3gA]k,h#H4/ hYuF(i;VX5hYu=5gtUT;rn7>("kV>Ve^`1Ke,Rkrd/_PmcO%nAc-4DTbK@uLrl>Dd`l5p8`5BL0 K)U)oH1-"OG:.NQCh@*]>$"Tq6ocnH+<)+7(`422+!iHp4@Dh>>%)&YD/O93Fa3_.$[?]&9JIY3 /OWcYGPZXaH2MpPHLuIRGPl^aH2MpCHMi-bI/SBhHh_nbH$=4=<_#D=5"&(E?"@S`D/aQ>H$O^^ H$!b%5rCo,@sNonPECKA:e=5J4YnZUD1dh-JTaj]8Obj!/O=-$LPL;#:e=5J4YnZUCO_/*Cbl-f s*t~> [/U06VZ*"mR#m&ZFCm0]7:^UuOT(CNOcYWcOHGTaLjF1DrcJcq!!'A+!46om!!'C5!!'BLr;ch@ rrDt@rW)qApNZ]&s4.;&eC;tHdMC6Wd*L%`c-=JVbKJ&NaiMQD`l?!: `;[XSWS2_KH[9jWEc>u6BOOq95Vsr8+WVOA(E+86,:G-"3^c_D>[CiMC2eBDIt7HJ%"EJ79e[V/ -95">H%>dCoRH:XrI"NkrI=`nrI4KjpjW!frI4ZorI4KjrI3^T;LWn/>=1+p-mpQ&4[r4I>$YWP Dfp>RJ:DfXXEbREm79k+qPa7MnJq%`P2*"*1G_qWL RV+8TU]5i~> [/U06W;`4oR?3,YF(6gW6=P(nOT(CCOo:@GOcYT[H?B5eFV&`s!42_+[!-]o!49*5!46tK!<.3B !;q'?!<.3:GlIaD[/>.J!"ZG\!!'BMG5qWMGBX#e[!2KLs*+6_rr<),GlE!g!"$#XGlRiO!!'BQ r;ckErW)tFrW!>#>6"XP)BL7+!(AgE!"O1!!!'BRI/j8SIXV7s[.Jh4J,FiqJc(,tJc10&W4p!\ rkJ]R_SX4.`;[^U`r=!_aN;THb0%p,bRMhBcHjh`d*^7he'lgrrm_#"rmqD-g"G*4g=k<\h#H4/ hZ)L+i;VX6h>lI4h?)Ngh#?(.gAfk+f`'M&ecXIPeC4EF(=CLUcd0n]c-4DTbK@uLaN2EA`l5p8 rke`8oR-Rbm!L7/H?OCNE,]W,@9-)f1b'^n*?6"7)B9bB-nR596r$cf?=@D[E-HYYJGas,Is5R# 0HM5]3E'[[-4";[;;/hAXS"#RrJT,3Y3CI+uNL60&P(nO,Ai)J7>'GdeQB[A[IVr[Q3($knLm+*mBeTU` s*t~> [/U06UAgSiR#ZfMCKr>@4^<#^OT(CNOcYWcOHGTaLjF1DrcJcq!!'A+!46om!!'C5!!'BLr;ch@ rrDt@rW)S7rr<&+r-//@&%$N\!46ro!!'BMG5qWMGQ%UBGPHF_!!0HNrd"MD$++u'!!'A+!47(N !<7BE!<7BE!"5N)!!"Gd*[^pf75k)E%X*1!!47-$!!'BTIK0AToR?(Tr.+`sr.=itrIP$Irk8BI rkJfU_SX4.`5T^8rl55aai_`Jb00e.%F*2Dcd0tbdF$Cke'unHeH"2"f*Bs]g"P-5g=uV^s5!Y1 s53M-rnmb4!8me4!o;YernIJ,s4RG)rn%2$#h@GSe'c[ld*Vd<&^JYGbfn8Rb0%iIaN)[CiMC2e.)JG=WmIdVXZI/SNlI/SK]Ie\EkIf+]oIeS?jIf+]oId2D\IX,g86SU&=-S.);7Sd#f ?"7SeFa8CcIs>[-4";[;;/h>WS!oInIV`FJ2F1GhMjKm#OG&+"?njN' [/UH>U7IiiC1h$^LarF?(CQ^45DZMX\([C!=ro=";rSdb6s53b2s4m[gfX2I$ Za-j?YcO[kOFV=Z;b9881+F[u+oWl4/i#O[<*W^;Bl\`bS#!*hZ*^pHZ`9:28hhbG5@K;>Y^s4M [4nndQ?5_N-n6Pm0f;3h;H?q2EIa%:V6-u"OD$a%+<2js [/UK?Un+&kC1h$^,AAS,ObB)Q6DAXA^SX0VX'!k#DBqZ-Z's0_h+!4De+!4;a5r;ci) qZ-E!rr<&+r3cP)&@AhF!49/A!!'C6[/^36[C,l3qR-/"#dq%H[C#u7['fl5!4De+!joACr;[55 !!&F4!!"5g01&V:!!$:'!"Pj0!!'C6[/^36[C#u7[)TKR^&H^`gAfq+h#?..hZ)L4i;MX6ir8!; jSe3=k5OQCkl'cElMTuFm/QGQm/68Gm/62IlMp,Ikl0cDk5FE@jSn3=ir.j8i;_^4hZ)C3^"B_- ['R'CYct4*S,E385ri"@;0b4O.2rGYd(RC[BlluE_8&8/3dQtTWj!T m^4aSWg7a!/LW(q.5<\F92\enA9!-ZRAI$iViYRS,Tn'V5uqH0CM@?e=&;Xf:KCn:rb2LKA6r>8 r_j,,Ao)@&CMIKj>5_;(=CZ&\C7Aum!i,dG~> [/UH>St)@g-D0Q(G"]qu?f+[']]1s0Vg6rVur+rVur*rjD\)rjDV' ppL,%!4;[3rr^f/['[6K!!'C6rVur+rW!#,[C,r5$afs7 R<\c4,9nj.;uQas>lF^5V6Bq"['d:A!49/A!!'CG[/do>g&9Y)g\oq,h>Q41hu;R4iVqj9j8S-< jo+?@kPj]Dl2BoFlhg&Km/ZMNmJ-&Glhp&Jl2BiFkPaQAjo4??j8S':iVqd8hu)@2h#P.@[2$'T ZE^X[:cPEe'4?UoU`)['d:GZJ[OpR .^H(?F@n,5.OHT!2*af4<`rsQJ;otnXg"^bBKRO_*%F6T@;0FgA6i20r_*Yu?Y3tcBkLs^ [/UH>Vj_6T2E!BJ1]9*,2#fE61c+qas#'_]s#'fVr3ZG]!&sna!&jh`!&jg8rNuP_qm?A_r&4R6 s0VY\s0Ve`s0Vb_s0Ve`"Z3Tn1c7/fZiDu\2#=QZ1]901[/Vr]ZiDo][/Ml[[/U+?P9:Pj,mt1s (`6%<5SRUXS1uh,[/Mo^[/Mo^[-ojC1As')1%R.+0lrVGQ^F/.Rf8fVSH>CTT`1W!U8+Q]VP^;k WN*##Xfeh2Z*:L>Zi7?>[^`iX]">Vf]tV8\^]D9grl"iUs2G&ZrQ"u\rlP;ab/sS(rlG2^a8X*X `riQF,XK/D%WW&e$VPKu^TqJ'(0E!We0D$st0buGr /hAFu+Wh[A()%5g$Od@L$OR:P&,m+X&eu9)+sn`i/hf"81GLC((CgcZ%Mg08/i!8ZrA"($r%@ar r%@q"r%.:gpal1ir%%^qo-jMdoI9\fr@.Igr?qn"-R0QB$OI1>#m(A>$iUPN%MBNp*[2pZ-mT`E $OR4O)C-d_/1rM,r[eL2/M8\00eY791,1Ta1'09j2Z#<41,CZa0`Ed11,+`21]aBOJ,~> [/UH>W1%?U2E!BJ1]B*/1Aj!/2$#Niq)&+/r3ZJ]rrDu(r\aa8rj2Y`rj2Y`r\se_r\s_]s#Bp7 s#9tbq_eD\s#'h`r\a__s"ss:['VYI2>a`\2>]6,ZiDo\2#jr_1]F`]1]Fc\1]=]\!#1V>'J(O<% MT`s:I[S`@"On'1UOOg2#jr^2#jrO2"NO%2#&fs1CGpYQ'Rc(R$jD4S=KSM!M?%aTbO5rV5:&dW 2ZbrX/rG+Y->18Z*Ue9[0j@P\@K2_]Y(ql^])"L_8?2is2G#X!6>&Z!6P5_!m/U,r6##\!Q`=\` r%0.4-2[*#TM*&.K!U$47.J$k.j>c>$477Y+=Jisr%n:+p b;UupauCrr@Rpumk+;cpaZ1mr@7Ceo.'\fpaZ"cr?qn"-R0QB$OI1=#ltA@rX9MO&f)?++sn]d, T@@($47:^,Ut;q0)dI&/dj<`/h\k40JP:;0f/e`!]2enq_S@01GSk_r\4R40TL?6!Mf[F~> [/UH>URGgP2)R3H1B'!.1Aj!/2$#Niq)&+/r3ZJ]rrDu(rAOY^!&jh`rAOV]r\jY\s#Bj5s0VY\ s0Ve`s0Vb_s0Ve`"Z3Tn1c7/fZiDu\2#=QZ1]901[/Vr]ZiDo][/Ml[[/U+?P9:Pj,mt1s(`6%< 5SRUXS1uh,[/Mo^[/Mo^[-ojC1As')1%R.+0QWMEQC+&-Rf8fVSJn)lTV8$PU8+N\VP^;kWN*## Xfeh2Z*:L>Zi7?>[^`iX\[oGd]tV8\^]D9grl"iUs2G&ZrQ"u\rlP;ab/sS(rlG2^a8X*X`=Tr( _SO%&^V7Co]t:ke\[]-J[KX(FZEga>riQj8XK/D$WMcYkV50l]TqJ'(0E!WX0E*X90.nh,-m^#X )]0;&%h/mSr<`T6%1iFL)%mW#*?c^W.kND.0f(O7+r:^r$4[dm-nR.N1&Wg$0DmEs/Gq*p/H%0l /GLaj.f:gq.e>%Z.K([i.J"nl-mg,V&ISmPrWrW3$4HhA-4UY()'0tK-n$>Z&ISmP%iQ]B.k<2& /M/M)/M&M-0/,%50JY@ [/U68S7+%$Wp?Z!Vk&NK3@,jr00)0W2(g7,7;RsUVn&f.Z.&^%rmh#!s4@5%rn7>*rnIJ.rn[P0 s53h6ro*k9ro(!4'qN 1T@=LT:2"(KR7]L=%PV6/L`"i,U4Ta,pauh1."iFC3P>lR@pCNQ?u^m-6js$=a?1)WI_)=W[+O: PBpCu2`*0>-R0r`,:"E[/Mo[e@X3rtM/5^7,9o!FI[R(bWWU:`1]aBOJ,~> [/U68Smj='Wp?Z!Vk&NK3@,jr00)0W2(g7,7;RsUVn&f.Z.&^%rmh#!s4@5%rn7>*rnIJ.rn[P0 s53h6ro*k9ro(!4'qN 1T@=LT:2"(KR7]L=%PV6/L`"i,U4Ta,pauh1."iFC3P>lR@pCNQ?u^m-6js$=a?1)WI_)=W[+O: PBpCu2`*0>-R0r`,:"E[/Mo[e@X3rtM/5^7,9o!FI[R(bWWU:a1]aBOJ,~> [/U68R:%RsWp?Z!Vk&NK3@,jr00)0W2(g7,7;RsUVn&f.Z.&^%rmh#!s4@5%rn7>*rnIJ.rn[P0 s53h6ro*k9ro(!4'qN 1T@=LT:2"(KR7]L=%PV6/L`"i,U4Ta,pauh1."iFC3P>lR@pCNQ?u^m-6js$=a?1)WI_)=W[+O: PBpCu2`*0>-R0r`,:"E[/Mo[e@X3rtM/5^7,9o!FI[R(bWWU7]1BF9NJ,~> [/U68ULc64Wp?YmVk/WO3@,jp-nHnurZq^s6Yh[RVmr`/_:-o`rmh#!s4@8&rRq5)rnIG-!Srn9 !!(pTi;V^7ir8!;jSn9=k5FK?kk+-:kl']Bk5XQAjSe-=ir7p8i;_^6hYl:1h#?(.gAT\*fYbn4 0rV"GTq%O4LOF,O=%Y\7/h87p.4$2`+!iHo4@N+UEIj%3QB6W-67a?,01BB&RAHm6Wq!)7WMQ,E G@XiS90tTm/0uMc+XA9X.PX4lF+o6c9edtA1f\slV:V^Lr2_aVU]5i~> [/U68Uh2H7Wp?YmVk/WO3@,jp-nHnurZq^s6Yh[RVmr`/_:-o`rmh#!s4@8&rRq5)rnIG-!Srn9 !!(pTi;V^7ir8!;jSn9=k5FK?kk+-:kl']Bk5XQAjSe-=ir7p8i;_^6hYl:1h#?(.gAT\*fYbn4 0rV"GTq%O4LOF,O=%Y\7/h87p.4$2`+!iHo4@N+UEIj%3QB6W-67a?,01BB&RAHm6Wq!)7WMQ,E G@XiS90tTm/0uMc+XA9X.PX4lF+o6c9edtA1f\slV:V^Lr2hjXU]5i~> [/U68T4Kg0Wp?YmVk/WO3@,jp-nHnurZq^s6Yh[RVmr`/_:-o`rmh#!s4@8&rRq5)rnIG-!Srn9 !!(pTi;V^7ir8!;jSn9=k5FK?kk+-:kl']Bk5XQAjSe-=ir7p8i;_^6hYl:1h#?(.gAT\*fYbn4 0rV"GTq%O4LOF,O=%Y\7/h87p.4$2`+!iHo4@N+UEIj%3QB6W-67a?,01BB&RAHm6Wq!)7WMQ,E G@XiS90tTm/0uMc+XA9X.PX4lF+o6c9edtA1f\slV:V^Lr2DOSU]5i~> [/U68Y\>tGWp?YiW1],d7P,i.rZ_^q+XJ^$*rnIG-"5VG? )ZB^:hu2L4iVqj9j8J' [/U68Z"Z(HWp?YiW1],d7P,i.rZ_^q+XJ^$*rnIG-"5VG? )ZB^:hu2L4iVqj9j8J' [/U68X_9SCWp?YiW1],d7P,i.rZ_^q+XJ^$*rnIG-"5VG? )ZB^:hu2L4iVqj9j8J' [/U68Y\>tGWp?Z!WMGf->!",W,pXcc.l'CkDhsmZWOJl2\'rjVe^aWLs4@8&rn7;)rnIJ.rnRPq rW)uUro!b6ro3n:roF%>r9!n>n`]o6r9""?rT*q;ro3n8s5 [/U68Z"Z(HWp?Z!WMGf->!",W,pXcc.l'CkDhsmZWOJl2\'rjVe^aWLs4@8&rn7;)rnIJ.rnRPq rW)uUro!b6ro3n:roF%>r9!n>n`]o6r9""?rT*q;ro3n8s5 [/U68X_9SCWp?Z!WMGf->!",W,pXcc.l'CkDhsmZWOJl2\'rjVe^aWLs4@8&rn7;)rnIJ.rnRPq rW)uUro!b6ro3n:roF%>r9!n>n`]o6r9""?rT*q;ro3n8s5 [/U68Y\>tGWp6SsW1JuirT*q;ro3q9rS[_5rndY1s4mS-s4[G)!6)^Q-`O#= SX5FqK7JAmCgg402_cg/,pOZa/2&b;5Y4^B4"MU%1f\pkV1GZ7WZe@?Vkp5aT9tatJU2BO>u!R: -R0ib00)He1+4S1=+-L5f;\rNUGDtHs*t~> [/U68Z"Z(HWp6SsW1JuirT*q;ro3q9rS[_5rndY1s4mS-s4[G)!6)^Q-`O#= SX5FqK7JAmCgg402_cg/,pOZa/2&b;5Y4^B4"MU%1f\pkV1GZ7WZe@?Vkp5aT9tatJU2BO>u!R: -R0ib00)He1+4S1=+-L5f;\rNV)&1Js*t~> [/U68X_9SCWp6SsW1JuirT*q;ro3q9rS[_5rndY1s4mS-s4[G)!6)^Q-`O#= SX5FqK7JAmCgg402_cg/,pOZa/2&b;5Y4^B4"MU%1f\pkV1GZ7WZe@?Vkp5aT9tatJU2BO>u!R: -R0ib00)He1+4S1=+-L5f;\rNTeZ\Es*t~> [/U68Y\>ulWnRIR!34cQ!hYuF3i;MX6ir8!:jSe3;k3V:.k5FE@jS\';ir7p8i;_^6hYu@1h#?(-gA]b* d(?;'W2?;]S=>n0Ne;Lh=\M+=/0uMc+X83X/2B@Z5;+<01/E%VV1GZ2WZ8":V4sTOQ]d8VDd,Xb ,pOWX-SdP1,:,3JI@6taWWW0o1BO?OJ,~> [/U68Z"Z)mWnRIR!34cQ!hYuF3i;MX6ir8!:jSe3;k3V:.k5FE@jS\';ir7p8i;_^6hYu@1h#?(-gA]b* d(?;'W2?;]S=>n0Ne;Lh=\M+=/0uMc+X83X/2B@Z5;+<01/E%VV1GZ2WZ8":V4sTOQ]d8VDd,Xb ,pOWX-SdP1,:,3JI@6taWWW0q1BO?OJ,~> [/U68X_9ThWnRIR!34cQ!hYuF3i;MX6ir8!:jSe3;k3V:.k5FE@jS\';ir7p8i;_^6hYu@1h#?(-gA]b* d(?;'W2?;]S=>n0Ne;Lh=\M+=/0uMc+X83X/2B@Z5;+<01/E%VV1GZ2WZ8":V4sTOQ]d8VDd,Xb ,pOWX-SdP1,:,3JI@6taWWW0m1'46NJ,~> [/U68VIM:VWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<;\k%ooHrPD=[;IY!97Q(4SHWNrN*Z..;& ec+/"fDaG$g&Kb2gWWk;"X8dErW)uTs5+UMUI>k"&O<,NioB(YN&hUT"rf[=cfP#cqu?^(roa(W !Z^@%r;Zm@jlQL&#Gsp(";*qqir7mChhjE,"9oc*B#su-rnRM-s4[J*!SF]gW["LAVl$;eTpq:' I;raq6T$JD+XA9W,pP'168'Q-/P'`=TrIsi!<;\k!*+TMql1X7V59lXSX#"V@7W7-,p=K\.jlPd 10&^iV5gQqoVqmkkc+abV)&.Is*t~> [/U68W+.LXWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<;\k%ooHrPD=[;IY!97Q(4SHWNrN*Z..;& ec+/"fDaG$g&Kb2gWWk;"X8dErW)uTs5+UMUI>k"&O<,NioB(YN&hUT"rf[=cfP#cqu?^(roa(W !Z^@%r;Zm@jlQL&#Gsp(";*qqir7mChhjE,"9oc*B#su-rnRM-s4[J*!SF]gW["LAVl$;eTpq:' I;raq6T$JD+XA9W,pP'168'Q-/P'`=TrIsi!<;\k!*+TMql1X7V59lXSX#"V@7W7-,p=K\.jlPd 10&^iV5gQqoVqmkkc+abVDA7Js*t~> [/U68U1,eQWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<;\k%ooHrPD=[;IY!97Q(4SHWNrN*Z..;& ec+/"fDaG$g&Kb2gWWk;"X8dErW)uTs5+UMUI>k"&O<,NioB(YN&hUT"rf[=cfP#cqu?^(roa(W !Z^@%r;Zm@jlQL&#Gsp(";*qqir7mChhjE,"9oc*B#su-rnRM-s4[J*!SF]gW["LAVl$;eTpq:' I;raq6T$JD+XA9W,pP'168'Q-/P'`=TrIsi!<;\k!*+TMql1X7V59lXSX#"V@7W7-,p=K\.jlPd 10&^iV5gQqoVqmkkc+abUG2eEs*t~> [/U68VIM:VWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<;\k%99C)U7[mBR@Bb@V5L;rWWBWZrmgtu !8%2%rn7>*#Lk4'!)Bmo"TAE$hZ)ILCB+?5\5NA-H/diDA,lU;[_J%G!3G;DqrS(%63%!*aSt?* `Zf32`r5r?*9Q+srVup?rT"6$!!$$2;ZHfBro"5o!!$?2]9+!3VVU),h#?(.gA]b*\[&4UWMcPa R#crEAlV;\1,1F6.3gQ<8Mqh>.m[d(T;_[f!<;\k!*+TMr2Ld:V4jHJR?s2"L3I3+5;+?-+s\BW ,r/JKRAHp`s7E;k [/U68W+.LXWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<;\k%99C)U7[mBR@Bb@V5L;rWWBWZrmgtu !8%2%rn7>*#Lk4'!)Bmo"TAE$hZ)ILCB+?5\5NA-H/diDA,lU;[_J%G!3G;DqrS(%63%!*aSt?* `Zf32`r5r?*9Q+srVup?rT"6$!!$$2;ZHfBro"5o!!$?2]9+!3VVU),h#?(.gA]b*\[&4UWMcPa R#crEAlV;\1,1F6.3gQ<8Mqh>.m[d(T;_[f!<;\k!*+TMr2Ld:V4jHJR?s2"L3I3+5;+?-+s\BW ,r/JKRAHp`s7E;k [/U68U1,eQWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<;\k%99C)U7[mBR@Bb@V5L;rWWBWZrmgtu !8%2%rn7>*#Lk4'!)Bmo"TAE$hZ)ILCB+?5\5NA-H/diDA,lU;[_J%G!3G;DqrS(%63%!*aSt?* `Zf32`r5r?*9Q+srVup?rT"6$!!$$2;ZHfBro"5o!!$?2]9+!3VVU),h#?(.gA]b*\[&4UWMcPa R#crEAlV;\1,1F6.3gQ<8Mqh>.m[d(T;_[f!<;\k!*+TMr2Ld:V4jHJR?s2"L3I3+5;+?-+s\BW ,r/JKRAHp`s7E;k [/U68VIM:VWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<;ho%_o$9W`?'uW2HMhV5L8kX/Z05rRLr! rn%,$rn.>+HN!mG`8&9/!<1gTT)J^&cJZqI!!9Oeg'%HVg>h8TXoPO#jo++HN!mG`8&9/!<1gTT)J^&cJZqI!!9Oeg'%HVg>h8TXoPO#jo++HN!mG`8&9/!<1gTT)J^&cJZqI!!9Oeg'%HVg>h8TXoPO#jo+jojZZ!!#prjoemSk3W-I!!"#< jo,5[+9(='5l^ltro+(m!!$$Wao28I;6ns5gRlaHh;$fag]-"-f`8miWYh_5Un*g2KRJ&aC1Lgh E+`$-.4IStMP$gEWW<(pWWg0;/#oULJZA^L+/u*,NH\r<<`E(!=']6C=%G8",9J!O-TtspT;S]h s7rYu^],gaW`A8_"7`3C!Mf[F~> [/U68ZYDGrWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<;kp"i('fWiB'lWW9j6ec+/!fDaG%fa-:e !!!D]gtWD=!<1gW5QCcsrnmqk!!$$YbPhJI;mtWFiM=uajSe3>jojZZ!!#prjoemSk3W-I!!"#< jo,5[+9(='5l^ltro+(m!!$$Wao28I;6ns5gRlaHh;$fag]-"-f`8miWYh_5Un*g2KRJ&aC1Lgh E+`$-.4IStMP$gEWW<(pWWg0;/#oULJZA^L+/u*,NH\r<<`E(!=']6C=%G8",9J!O-TtspT;S]h s7rYu^],gaW`A8_"7`6E!Mf[F~> [/U68Z>)>qWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<;kp"i('fWiB'lWW9j6ec+/!fDaG%fa-:e !!!D]gtWD=!<1gW5QCcsrnmqk!!$$YbPhJI;mtWFiM=uajSe3>jojZZ!!#prjoemSk3W-I!!"#< jo,5[+9(='5l^ltro+(m!!$$Wao28I;6ns5gRlaHh;$fag]-"-f`8miWYh_5Un*g2KRJ&aC1Lgh E+`$-.4IStMP$gEWW<(pWWg0;/#oULJZA^L+/u*,NH\r<<`E(!=']6C=%G8",9J!O-TtspT;S]h s7rYu^],gaW`A8_"7`-@!Mf[F~> [/U68Z>)>qWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<;nq#/C0g!33&!ri5krX/Z."ri-%:e^aWL s4@8&rn.S2%0-AHgYCR(rW!MdSDFhX!$0jdTG.A+*T>okr;Zp-6&XRsjSS$HC&e5Z4/g]#n-fu3E\quFI2(TF=/TU_F8 P)Y=gtD=*^"'W;NXqs8&`"^],eaWiB(uWW3%qWWN7$WW;IeqZ,o]!!'a5+/klsH [/U68ZYDGrWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<;nq#/C0g!33&!ri5krX/Z."ri-%:e^aWL s4@8&rn.S2%0-AHgYCR(rW!MdSDFhX!$0jdTG.A+*T>okr;Zp-6&XRsjSS$HC&e5Z4/g]#n-fu3E\quFI2(TF=/TU_F8 P)Y=gtD=*^"'W;NXqs8&`"^],eaWiB(uWW3%qWWN7$WW;IeqZ,o]!!'a5+/klsH [/U68Z>)>qWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<;nq#/C0g!33&!ri5krX/Z."ri-%:e^aWL s4@8&rn.S2%0-AHgYCR(rW!MdSDFhX!$0jdTG.A+*T>okr;Zp-6&XRsjSS$HC&e5Z4/g]#n-fu3E\quFI2(TF=/TU_F8 P)Y=gtD=*^"'W;NXqs8&`"^],eaWiB(uWW3%qWWN7$WW;IeqZ,o]!!'a5+/klsH [/U68Z>)>qWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u#6+\'^],eari,ruri,qurMfhtVlBg8 e^aZMrn%/%rn.MY!!"%ogY0*PU@bh#6"-g&]mFn>ZHgrMfht^oA6NV4jHJQ^3o$OcG0F G%tA`:/P89M4:?@r2Kbsri-2&!33g6.ffRK!*0#urrDtsrrDAb!!),\!!'a5+/b`jD+,s%-R0oa +t"op0.ee-.kW_K>B>aoVQ$Sqs8K#&rrB(6s!n*KWW6&uWW3%tWW3%hWWVdf1'+0MJ,~> [/U68ZYDGrWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u#6+\'^],eari,ruri,qurMfhtVlBg8 e^aZMrn%/%rn.MY!!"%ogY0*PU@bh#6"-g&]mFn>ZHgrMfht^oA6NV4jHJQ^3o$OcG0F G%tA`:/P89M4:?@r2Kbsri-2&!33g6.ffRK!*0#urrDtsrrDAb!!),\!!'a5+/b`jD+,s%-R0oa +t"op0.ee-.kW_K>B>aoVQ$Sqs8K#&rrB(6s!n*KWW6&uWW3%tWW3%hWWVdg1BF9NJ,~> [/U68Z>)>qWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u#6+\'^],eari,ruri,qurMfhtVlBg8 e^aZMrn%/%rn.MY!!"%ogY0*PU@bh#6"-g&]mFn>ZHgrMfht^oA6NV4jHJQ^3o$OcG0F G%tA`:/P89M4:?@r2Kbsri-2&!33g6.ffRK!*0#urrDtsrrDAb!!),\!!'a5+/b`jD+,s%-R0oa +t"op0.ee-.kW_K>B>aoVQ$Sqs8K#&rrB(6s!n*KWW6&uWW3%tWW3%hWWVdd0`e'LJ,~> [/U68W+7X[WW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u"oeS;s!n*JWW6&uWW3%tWWrO(WW9%! WiH$urMohsrMohsrMoktrMoktrMohsri-/&WW9'!!!)kq"9>G%WW<$u"ot['!3-#!ri-&#WW3%u WWrO(WW9%!6e21e",2N^M>l0-f`que!#jVHg`6:n#i1s+&HDeJ_i=W5#ERg%iRN`W'E%n29).HU jlAK'!$_FfBE,WKjSf,]*9?2?rVup?ro4+j!!!n!rl#2)`5J>+hpR9:')_e38DN#"gB?5mg5\c' Wr<"tWWE1#!;rhs!<&o&!33%!WW9'!rW)nsrW)nsrW)nsrrE"trrE"trW)qt!W]5#nuOJ [/U68X(3s^WW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u"oeS;s!n*JWW6&uWW3%tWWrO(WW9%! WiH$urMohsrMohsrMoktrMoktrMohsri-/&WW9'!!!)kq"9>G%WW<$u"ot['!3-#!ri-&#WW3%u WWrO(WW9%!6e21e",2N^M>l0-f`que!#jVHg`6:n#i1s+&HDeJ_i=W5#ERg%iRN`W'E%n29).HU jlAK'!$_FfBE,WKjSf,]*9?2?rVup?ro4+j!!!n!rl#2)`5J>+hpR9:')_e38DN#"gB?5mg5\c' Wr<"tWWE1#!;rhs!<&o&!33%!WW9'!rW)nsrW)nsrW)nsrrE"trrE"trW)qt!W]5#nuOJ [/U68VIVFYWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u"oeS;s!n*JWW6&uWW3%tWWrO(WW9%! WiH$urMohsrMohsrMoktrMoktrMohsri-/&WW9'!!!)kq"9>G%WW<$u"ot['!3-#!ri-&#WW3%u WWrO(WW9%!6e21e",2N^M>l0-f`que!#jVHg`6:n#i1s+&HDeJ_i=W5#ERg%iRN`W'E%n29).HU jlAK'!$_FfBE,WKjSf,]*9?2?rVup?ro4+j!!!n!rl#2)`5J>+hpR9:')_e38DN#"gB?5mg5\c' Wr<"tWWE1#!;rhs!<&o&!33%!WW9'!rW)nsrW)nsrW)nsrrE"trrE"trW)qt!W]5#nuOJ [/U68W+7X[WW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u"TJK%.ffLI!*0#u!!)tt#6:d(!!'%! !WHJc5WL-2us#j8beN!"Fece%DmFj9>Sa(ZaZ(rW!]Uj5T&_!!!D'iSgTjQ(t#+Ct7C4 gjf;'!ZBeKrn@_4OH7/V!33%!ri-)$Wi?%!ql0VrrMg)&Wi?%!Wi?'uWWN7$WW<$u!s#@$! [/U68X(3s^WW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u"TJK%.ffLI!*0#u!!)tt#6:d(!!'%! !WHJc5WL-2us#j8beN!"Fece%DmFj9>Sa(ZaZ(rW!]Uj5T&_!!!D'iSgTjQ(t#+Ct7C4 gjf;'!ZBeKrn@_4OH7/V!33%!ri-)$Wi?%!ql0VrrMg)&Wi?%!Wi?'uWWN7$WW<$u!s#@$! [/U68VIVFYWW<(SWWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u"TJK%.ffLI!*0#u!!)tt#6:d(!!'%! !WHJc5WL-2us#j8beN!"Fece%DmFj9>Sa(ZaZ(rW!]Uj5T&_!!!D'iSgTjQ(t#+Ct7C4 gjf;'!ZBeKrn@_4OH7/V!33%!ri-)$Wi?%!ql0VrrMg)&Wi?%!Wi?'uWWN7$WW<$u!s#@$! [/U68W+7X[WW<(SWWQ3#WrMmp!-7M-!-7n8"&o9#s7WGmEqH@3EqZL6;ulZm!<<%us8N*M!;ibr !Y))1G^jC1+t.)+XJEa7;IjRVu!Cns8K%urrFVMql0Wrri-#" WW<$u#QUk)Wi?'!WW;ss!!)bnqZ-Yr!!*"u!s#@$!E4_WW<(uWrN)".ffIH!*0#uquH_r!!*"u!!*"u#lq!*!33'uTJ6MC s*t~> [/U68X(3s^WW<(SWWQ3#WrMmp!-7M-!-7n8"&o9#s7WGmEqH@3EqZL6;ulZm!<<%us8N*M!;ibr !Y))1G^jC1+t.)+XJEa7;IjRVu!Cns8K%urrFVMql0Wrri-#" WW<$u#QUk)Wi?'!WW;ss!!)bnqZ-Yr!!*"u!s#@$!E4_WW<(uWrN)".ffIH!*0#uquH_r!!*"u!!*"u#lq!*!33'uTeZ\E s*t~> [/U68VIVFYWW<(SWWQ3#WrMmp!-7M-!-7n8"&o9#s7WGmEqH@3EqZL6;ulZm!<<%us8N*M!;ibr !Y))1G^jC1+t.)+XJEa7;IjRVu!Cns8K%urrFVMql0Wrri-#" WW<$u#QUk)Wi?'!WW;ss!!)bnqZ-Yr!!*"u!s#@$!E4_WW<(uWrN)".ffIH!*0#uquH_r!!*"u!!*"u#lq!*!33'tShL5@ s*t~> [/U68W+7X[WW<(sWW7&:WW3%krr<&sWW7&:WWQ3#WrMsr!cg7#m]$ [/U68X(3s^WW<(sWW7&:WW3%krr<&sWW7&:WWQ3#WrMsr!cg7#m]$ [/U68VIVFYWW<(sWW7&:WW3%krr<&sWW7&:WWQ3#WrMsr!cg7#m]$ [/U68W*V"OWW<(uWWR6#!3?'u!!)Zk!qXEBk-=#VC/Lhk&S;5T^:6#pNBUPlBD>g;p8ori-&#Wi?'rWW3%qWW3%qWW3%uWW3%u WWN7$WW;pr!!)eo!!)qs!s#@$!)O,8F9H[0sfKo_XrW; [/U68X'R=RWW<(uWWR6#!3?'u!!)Zk!qXEBk-=#VC/Lhk&S;5T^:6#pNBUPlBD>g;p8ori-&#Wi?'rWW3%qWW3%qWW3%uWW3%u WWN7$WW;pr!!)eo!!)qs!s#@$!)O,8F9H[0sfKo_XrW; [/U68VHteMWW<(uWWR6#!3?'u!!)Zk!qXEBk-=#VC/Lhk&S;5T^:6#pNBUPlBD>g;p8ori-&#Wi?'rWW3%qWW3%qWW3%uWW3%u WWN7$WW;pr!!)eo!!)qs!s#@$!)O,8F9H[0sfKo_XrW; [/U68W*V"OWWW:$EB*pt!3?'u!!)Zk!n^ii(krr8@\7U]00PU#>q-!1j,GrnS4BQe^A\gY:GqWi?%!Wi?'!WW<$u!s#@$!;`\q !;`\q!!Y)) 1G^jC1c.'O7osDONLQ`Cq5OGpoVqmkri,quri,quri-A,Wi?'!WW9'!!33%!ri,quql0Vrpo4;o rMfhtri-&#Wi?'uWX/[*WW9'!!33%!_5\0JW2HJgVPU)_T:217Q^F22TqnX_WW<(kWW6&uWW3%q WW3%uWW3%uWX/[*WW9'!po$%NU]5i~> [/U68X'R=RWWW:$EB*pt!3?'u!!)Zk!n^ii(krr8@\7U]00PU#>q-!1j,GrnS4BQe^A\gY:GqWi?%!Wi?'!WW<$u!s#@$!;`\q !;`\q!!Y)) 1G^jC1c.'O7osDONLQ`Cq5OGpoVqmkri,quri,quri-A,Wi?'!WW9'!!33%!ri,quql0Vrpo4;o rMfhtri-&#Wi?'uWX/[*WW9'!!33%!_5\0JW2HJgVPU)_T:217Q^F22TqnX_WW<(kWW6&uWW3%q WW3%uWW3%uWX/[*WW9'!po-+OU]5i~> [/U68VHteMWWW:$EB*pt!3?'u!!)Zk!n^ii(krr8@\7U]00PU#>q-!1j,GrnS4BQe^A\gY:GqWi?%!Wi?'!WW<$u!s#@$!;`\q !;`\q!!Y)) 1G^jC1c.'O7osDONLQ`Cq5OGpoVqmkri,quri,quri-A,Wi?'!WW9'!!33%!ri,quql0Vrpo4;o rMfhtri-&#Wi?'uWX/[*WW9'!!33%!_5\0JW2HJgVPU)_T:217Q^F22TqnX_WW<(kWW6&uWW3%q WW3%uWW3%uWX/[*WW9'!pnfkKU]5i~> [/U68W*V"OWWE,Zp&Oabp&G4@;uirurMfm=3;rpGWr;u!3-+tt"&o9#s7WJl!!,'"r2Kd<3;rpO WW?'!pSn5noVqmkri,quqPjMqrMohsrMohsrMohsrMoktrMoktrMohsri,qurMoktqPjMqrMokt "KDI%WW<$u!s#@$!fE]i1f/fhk/f`hVOdZr8%D."dP;+gWcu%WWN7$!!)tt rW)qt!!)kq!!)kq!!)ttrW)nsrW)nsrW)nsrrE"trrE"trW)qt!!)bn%B6;(V5:&dUR[fV0W2KQi!iMurpo4>ooVqmkri,quqPjMqrMohsrMokt"8JfP!Mf[F~> [/U68X'R=RWWE,Zp&Oabp&G4@;uirurMfm=3;rpGWr;u!3-+tt"&o9#s7WJl!!,'"r2Kd<3;rpO WW?'!pSn5noVqmkri,quqPjMqrMohsrMohsrMohsrMoktrMoktrMohsri,qurMoktqPjMqrMokt "KDI%WW<$u!s#@$!fE]i1f/fhk/f`hVOdZr8%D."dP;+gWcu%WWN7$!!)tt rW)qt!!)kq!!)kq!!)ttrW)nsrW)nsrW)nsrrE"trrE"trW)qt!!)bn%B6;(V5:&dUR[fV0W2KQi!iMurpo4>ooVqmkri,quqPjMqrMohsrMokt"8JiQ!Mf[F~> [/U68VHteMWWE,Zp&Oabp&G4@;uirurMfm=3;rpGWr;u!3-+tt"&o9#s7WJl!!,'"r2Kd<3;rpO WW?'!pSn5noVqmkri,quqPjMqrMohsrMohsrMohsrMoktrMoktrMohsri,qurMoktqPjMqrMokt "KDI%WW<$u!s#@$!fE]i1f/fhk/f`hVOdZr8%D."dP;+gWcu%WWN7$!!)tt rW)qt!!)kq!!)kq!!)ttrW)nsrW)nsrW)nsrrE"trrE"trW)qt!!)bn%B6;(V5:&dUR[fV0W2KQi!iMurpo4>ooVqmkri,quqPjMqrMohsrMokt"8J`M!Mf[F~> [/U68UL>hQWWW:$8L498r2Teto`"mkr2]es"scd@;uiruql0^<2urBH!WY3#ql0`t!36(mWWE/[ EqlX9E]='mWW?'!pSn5no2V'U!s$$cfDaG$g&9Y(g]$"+h>Q4/hu)F.iVMO8s2DtU`W=&url+lT !93k6qV_A1r8.G/rS7G-!SY9cWW3%%WWT5sTq21N(n@4hR#clJH?jgaH[U?nLQ7^mUSXicW2]Wn !<;XjJZ@V-!<;Xjkc+a]V)8=Ls*t~> [/U68V-u%SWWW:$8L498r2Teto`"mkr2]es"scd@;uiruql0^<2urBH!WY3#ql0`t!36(mWWE/[ EqlX9E]='mWW?'!pSn5no2V'U!s$$cfDaG$g&9Y(g]$"+h>Q4/hu)F.iVMO8s2DtU`W=&url+lT !93k6qV_A1r8.G/rS7G-!SY9cWW3%%WWT5sTq21N(n@4hR#clJH?jgaH[U?nLQ7^mUSXicW2]Wn !<;XjJZ@V-!<;Xjkc+a]VDSFMs*t~> [/U68T4'DMWWW:$8L498r2Teto`"mkr2]es"scd@;uiruql0^<2urBH!WY3#ql0`t!36(mWWE/[ EqlX9E]='mWW?'!pSn5no2V'U!s$$cfDaG$g&9Y(g]$"+h>Q4/hu)F.iVMO8s2DtU`W=&url+lT !93k6qV_A1r8.G/rS7G-!SY9cWW3%%WWT5sTq21N(n@4hR#clJH?jgaH[U?nLQ7^mUSXicW2]Wn !<;XjJZ@V-!<;Xjkc+a\UGDtHs*t~> [/U68UL>hQWX&R(WbkI(`n14BrRq2(rS.;+rS@D.rnmS1pu284#3!LuW2HPlqksFj qr.D0rSRP0rS@M/rn@IqY5>4!!3`CGWMH&ILOai&K8YeQOGo$RMiX'eQ^O85Tr"Z`Tq@sNV5a?l !*/UjJZ@V-!*/Ujkc+a]V)8=Ls*t~> [/U68V-u%SWX&R(WbkI(`n14BrRq2(rS.;+rS@D.rnmS1pu284#3!LuW2HPlqksFj qr.D0rSRP0rS@M/rn@IqY5>4!!3`CGWMH&ILOai&K8YeQOGo$RMiX'eQ^O85Tr"Z`Tq@sNV5a?l !*/UjJZ@V-!*/Ujkc+a]VDSFMs*t~> [/U68T4'DMWX&R(WbkI(`n14BrRq2(rS.;+rS@D.rnmS1pu284#3!LuW2HPlqksFj qr.D0rSRP0rS@M/rn@IqY5>4!!3`CGWMH&ILOai&K8YeQOGo$RMiX'eQ^O85Tr"Z`Tq@sNV5a?l !*/UjJZ@V-!*/Ujkc+a\UGDtHs*t~> [/U68UL>hQWW<(tWWI$/X8T$u!;-9l!3?'u!-/"=s/H0#!36(S!!?1#WrLiS!E9&MWrK*u!<&nu [E\^'rRq2(rS.>,r8%;-r87A/jl-'orSRP0r8%A-!o))1q5ODpYc8qIV4 [/U68V-u%SWW<(tWWI$/X8T$u!;-9l!3?'u!-/"=s/H0#!36(S!!?1#WrLiS!E9&MWrK*u!<&nu [E\^'rRq2(rS.>,r8%;-r87A/jl-'orSRP0r8%A-!o))1q5ODpYc8qIV4 [/U68T4'DMWW<(tWWI$/X8T$u!;-9l!3?'u!-/"=s/H0#!36(S!!?1#WrLiS!E9&MWrK*u!<&nu [E\^'rRq2(rS.>,r8%;-r87A/jl-'orSRP0r8%A-!o))1q5ODpYc8qIV4 [/U68X(O9dWW<(rWW9*uWW3%krrE,#r2KatrMfs!!36(s!9O4\!<3!";uirrs8)frs82lps8)fn s8E!!;uhKLp8S5*d+I"Lg&B_(g]$"+h>?(,htc3riVML0hu)@0h>Q+0e%2BU%&fk`H6Q]$-*CNkW'V5]$GgStLXV4jNRTr"a:WWW:$2$'KPJ,~> [/U68X(O9dWW<(rWW9*uWW3%krrE,#r2KatrMfs!!36(tQfA)FVZKftWr2ks!<&8_!<2uu!;uis !<&8[!<<'";uhKLp8S5*d+I"Lg&B_(g]$"+h>?(,htc3riVML0hu)@0h>Q+0e%2BU%&fk`H6Q]$-*CNkW'V5]$GgStLXV4jNRTr"a:WWW:$2$'KPJ,~> [/U68W+RsaWW<(rWW9*uWW3%krrE,#r2KatrMfou!35tshuEjY!36(s!<)rh!<)rl!!-%!JZAFD "1ce2f_sM&gATe*h#-"*hYc:,i9T@ui;;F0hYl:/g]>m8V5as&Tp'e+5rUYW3'p;:r_jM2?"\/+ LQ@aiS=Gq(H#.8?M4(3>JZ@J)#H=PnT:_gRWR@dKs/.[SU]5i~> [/U68X(O9dWW<(S!!?1#WrMtsjo5;\rr3%!!35tsqZ-ZrquHZpqZ-NnrVusu!.h0BWWKcYf_sM& gATe)h#-"+hYZ4(i:Q"&i;MR0hYl:0g]>m:UT+d$T8d\V.jcVg-7^f.1]B-C3C6A?AT<.5WWW:$2$'KPJ,~> [/U68X(O9dWW<(S!!?1#WrN$airK(V!`T0"r;Q`srKmH_rr2rur;Q`srKm<[s8N+!!.h0BWWKcY f_sM&gATe)h#-"+hYZ4(i:Q"&i;MR0hYl:0g]>m:UT+d$T8d\V.jcVg-7^f.1]B-C3C6A?AT<.5WWW:$2$'KPJ,~> [/U68W+RsaWW<(S!!6+"Wr2nT!!?1#WrMtsrVuHhrVuTl!E9&MWq<:m]$T+.g&B_(g\oq*h>H., htH"#iV2:/htl4.h>Z11e%DHU%B#hXD+,s%-R0rg0f:cd1(uZ7935\EH$t=#K5js]6WJ,aSYq%= go:[[Un!X.NK]m.WRIjLs/.[SU]5i~> [/U68X(O9dWW<(h!;$3j!;lcu;uiruquGjY!!*#u!`T0"r;ZWos8Vusr;ZWoqu?Wq!E9&MWq*.j \]t*+rn@>*rnRD,qqh5-jP]pmqVM/+!o2/5TrJ?qT8d\V.jcVB,8qjW,pOZY-S$`*6;:B[?Y="R 5:S*C=F$+*WI_);WX>`(Vkp5eV5:)gWVib(WMQ,EHYmVFMOUHAe>`WNW\jgPs*t~> [/U68X(O9dWW<(iQgk(QVZTluWrN$airK(V!`T0"r;Q`srKmH_rr2rur;Q`srKm<[s8N+!!.h0@ WWBZTrRq2(rS.>,qq_/+qqpJmqqq8,r7qG0d(,jM#H+2RD+,s%-N55.,q1,b,U"Nc/2]ag;cd== B37AJ.6:RVPG>+.WpZkoWMl_kV5C)cVl6TmWXGf&S;hl4D0_#.V5_tE"95AY!Mf[F~> [/U68W+RsaWq$,T!!6+"Wr2nT!!?1#WrMtsrVuHhrVuTl!E9&MWq*.j\]t*+rn@>*rnRD,qqh5- jP]pmqVM/+!o2/5TrJ?qT8d\V.jcVB,8qjW,pOZY-S$`*6;:B[?Y="R5:S*C=F$+*WI_);WX>`( Vkp5eV5:)gWVib(WMQ,EHYmVFMOUHAe>`WNV_eFLs*t~> [/U68X(O9dWW<(h!;$3j!;lcu;uiruquGjY!!*#u!`T0"r;ZWos8Vusr;ZWoqu?Wq!E9&MWpm"h [)`1!rn@;)rnRD,qVM)+lJVQsqVM/+!o1o)T;j39Tp'e+5rLJM.4$8h,pOZY,pOQ\/28q:4%2b1 1F47u7;%CHW.Cu;WZ8"7Tq.U>R$a;1SY2gXWN)tsTp'e,7R^C"NM!0!WWW:$2$'KPJ,~> [/U68X(O9dWW<(iQgk(QVZTluWrN$airK(V!`T0"r;Q`srKmH_rr2rur;Q`srKm<[s8N+!!.h0> WWBKIrn7;)r7h5+qq_,*qVUSrqqq8,r7qG0ag@\?-)dN$HV5UAnWi2VTH [/U68W+RsaWq$,T!!6+"Wr2nT!!?1#WrMtsrVuHhrVuTl!E9&MWpm"h[)`1!rn@;)rnRD,qVM)+ lJVQsqVM/+!o1o)T;j39Tp'e+5rLJM.4$8h,pOZY,pOQ\/28q:4%2b11F47u7;%CHW.Cu;WZ8"7 Tq.U>R$a;1SY2gXWN)tsTp'e,7R^C"NM!0!WWW:!1]aBOJ,~> [/U68W*CbJWW<(h!;$3j!;lcu;uiruquGjY!!*#u!`T0"r;ZWos8Vusr;ZWoqu?Wq!E9&MWpZkh XM3'7rn@;)rS7;+qVM#)o\fK$qqh5+!n4ocSZ4!8V4C;^4e>`WGX#:$Ss*t~> [/U68W*LhKWW<(iQgk(QVZTluWrN$airK(V!`T0"r;Q`srKmH_rr2rur;Q`srKm<[s8N+!!.h0< WWT?:d+SEPr7h2*qq_,*ptt`%pYYl)qqV>&^T=!+-)m`2NH\o7:e*`/2)d?I0eP(-,pac^,pF]g 1,Ua5,:,3IH'P4WWpm#/WMH&ILOaf"I"$U"Ng#p(Uo(&^MeYX1.Qq!`Q)3!1"8JrU!i,dG~> [/U68Ug,;EWq$,T!!6+"Wr2nT!!?1#WrMtsrVuHhrVuTl!E9&MWpZkhXM3'7rn@;)rS7;+qVM#) o\fK$qqh5+!n4ocSZ4!8V4C;^4e>`WGWAOaPs*t~> [/U68W*CbJWW<(h!;$3j!;lcu;uiruquGjY!!*#u!`T0"r;ZWos8Vusr;ZWoqu?Wq!E9&MWp?Yf ZGY/FgAK_(h"ok'h>uNjkhl6nr7qG*`3Yl3-)m]1P(nC-D.?jS=&i*n91D'#.jHAf+XA9Y.kE"j +Y6&sMkI&#Wq*/3WMQ,EG@auZ<)lq#?u't;MNaR$R>#08-RCH;CQ"gaeZ&`HX#:$Ss*t~> [/U68W*LhKWW<(iQgk(QVZTluWrN$airK(V!`T0"r;Q`srKmH_rr2rur;Q`srKm<[s8N+!!.h09 WW]WFe(WORg\oq(h>5t/hqmSSqVM/+!nP;rRAqR4Un!U&I?4^' [/U68Ug,;EWq$,T!!6+"Wr2nT!!?1#WrMtsrVuHhrVuTl!E9&MWp?YfZGY/FgAK_(h"ok'h>uNj khl6nr7qG*`3Yl3-)m]1P(nC-D.?jS=&i*n91D'#.jHAf+XA9Y.kE"j+Y6&sMkI&#Wq*/3WMQ,E G@auZ<)lq#?u't;MNaR$R>#08-RCH;CQ"gaeZ&`HWAOaPs*t~> [/U68W*CbJWW<(h!;$3j!;lcu;uirug].FU!36(S!!-%!pSn5noVqmkJZ8gY_U7*8g\oq)h#ZBg ptku,!<;`L!T(QdhYl73e&8VYW[FdBTq.U8NerC=IXHHcEGAiV5rLST/1Deg,pjo^+XT*MJ!m47 WrM^k!*+ZO+/klsH@ho-MMlso5qF<03E^csVu [/U68W*LhKWW<(iQgk(QVZTluWrLiS"&o9#s4dST;ulZm!<;\k!*+TM"1,klgAK_(h##n.hVIt` rSIVTp"of,^A6Xah#c'D[$@X=WMQ;ZR?NYfK7JDuH?X@D?V`sG2)-X2,9nK],pFKZ2HbNtVlHcs oVqmkK;p#lTp'e+5rUYW1c7*O78[9#FFf=-Iq(bq,pt]UI@$l1WW<(kWW6&_WWW$t2?KZRJ,~> [/U68Ug,;EWq$,T!!?1#WrLiS"&o9#s4dST;ulZm!<;\k!*+TM"1,klgAK_(h##n.hVIt`rSIVT p"of,^A6Xah#c'D[$@X=WMQ;ZR?NYfK7JDuH?X@D?V`sG2)-X2,9nK],pFKZ2HbNtVlHcsoVqmk K;p#lTp'e+5rUYW1c7*O78[9#FFf=-Iq(bq,pt]UI@$l1WW<(kWW6&_WWW$q2$0QQJ,~> [/U68VJ%jaWW<(h!;$3j!;lcu;uirugo:HU!36(SWW?'!pSn5noVqmkJZA^L"0]A[f)=A%h"ok" h>mTJh>k7ehYu=5fZUt3OfBb-W2HJgTq@jDR@0D-Oc=p7B3S;.5rC/=+X&$Q+!E1+EKHooWrM^k !*+ZO+K(ikD+,s%-R0oa+t"rs3'U&AD/sDs6S0H)01g#>TW.pj!<;\k!*/6_"8nrN!i,dG~> [/U68W+\'cWW<(iQgk(QVZTluWrLkS"&o9#s4jUT;ulZm!<;\k!*+TMri-((]ZSh(g\oq(h=]V) s7G.J^&6adh#l^+sA$O/4acBU8b0moVqmk K;p&lT8d\V.jcVg,pjf`/MT4L93lCTCKs4Y+X&L1D2b-eri,tuoVqmkkc+a_V)/7Ks*t~> [/U68UM)O^Wq$,T!!?1#WrLkS"&o9#s4jUT;ulZm!<;\k!*+TMri-((]ZSh(g\oq(h=]V)s7G.J ^&6adh#l^+sA$O/4acBU8b0moVqmkK;p&l T8d\V.jcVg,pjf`/MT4L93lCTCKs4Y+X&L1D2b-eri,tuoVqmkkc+a^U,)kGs*t~> [/U68VJ%jaWW<(S!!?1#WrLkS"&o9#s4jUT;ulZm!<;ho"M^t/W`=VMqPj_(]u\[Wg\oq%h>5t. s7kFZk2+hK]\_N$h:0Q[ZA>LaWMl_lV5F6g(n[4[M1Beb [/U68W+\'cWW<(S!!?1#WrLkS"&o9#s4jUT;ulZm!<;ho"M^t/W`=VMqPj_(]u\[Wg\oq%h>5t. s7kFZk2+hK]\_N$h:0Q[ZA>LaWMl_lV5F6g(n[4[M1Beb [/U68UM)O^WW<(S!!?1#WrLkS"&o9#s4jUT;ulZm!<;ho"M^t/W`=VMqPj_(]u\[Wg\oq%h>5t. s7kFZk2+hK]\_N$h:0Q[ZA>LaWMl_lV5F6g(n[4[M1Beb [/U68VJ%jaWWE."pT"8oo`"mkp8\9p!36(SWWQ3#WrLkS!E9'nWW<(pWWg0;/#oULJZAFD"fo#D `m307h"TY'h>mTOh?i?EX52C#a1es^JZAUI$`U&!T:(ae>X'bc+oEDe,;ib\SYrLfq5OV5s!t+L !Y))1,C[;.O?;`*[<-f1,1R@0..qg/k9T0S>WBes7rYu^],gaW`A8_"8nrN!i,dG~> [/U68W+\'cWWE."pT"8oo`"mkp8\9p!36(SWWQ3#WrLkS!E9'nWW<(pWWg0;/#oULJZAFD"fo#D `m307h"TY'h>mTOh?i?EX52C#a1es^JZAUI$`U&!T:(ae>X'bc+oEDe,;ib\SYrLfq5OV5s!t+L !Y))1,C[;.O?;`*[<-f1,1R@0..qg/k9T0S>WBes7rYu^],gaW`A8_"8nuP!i,dG~> [/U68UM)O^WWE."pT"8oo`"mkp8\9p!36(SWWQ3#WrLkS!E9'nWW<(pWWg0;/#oULJZAFD"fo#D `m307h"TY'h>mTOh?i?EX52C#a1es^JZAUI$`U&!T:(ae>X'bc+oEDe,;ib\SYrLfq5OV5s!t+L !Y))1,C[;.O?;`*[<-f1,1R@0..qg/k9T0S>WBes7rYu^],gaW`A8_"8efK!i,dG~> [/U68Y@0-^WW<(mWW3%krrE,#pSn.fcTL^Pr!9L3\!8jgS!5tlDWMlSYJQjuW,9ct,#9u08LS(KEs8&`"^],eaWiB(uWW3%rWW3%uWW3%u WWE1#Wr)kOWW3%eWql\rWW;.\!!)tt,cRW1NH\r<<`;jk7mAja.3g)^,pa]\-R^;b+XT'DFH<,p WrMpq#/C0g!33&!ri5hqnYu]hYW)ZYs*t~> [/U68Z!oEaWW<(mWW3%krrE,#pSn.fcTL^Pr!9L3\!8jgS!5tlDWMlSYJQjuW,9ct,#9u08LS(KEs8&`"^],eaWiB(uWW3%rWW3%uWW3%u WWE1#Wr)kOWW3%eWql\rWW;.\!!)tt,cRW1NH\r<<`;jk7mAja.3g)^,pa]\-R^;b+XT'DFH<,p WrMpq#/C0g!33&!ri5hqnYu]hZ8hr\s*t~> [/U68X^Nm[WW<(mWW3%krrE,#pSn.fcTL^Pr!9L3\!8jgS!5tlDWMlSYJQjuW,9ct,#9u08LS(KEs8&`"^],eaWiB(uWW3%rWW3%uWW3%u WWE1#Wr)kOWW3%eWql\rWW;.\!!)tt,cRW1NH\r<<`;jk7mAja.3g)^,pa]\-R^;b+XT'DFH<,p WrMpq#/C0g!33&!ri5hqnYu]hXuHHWs*t~> [/U68Y@0-^WW<(mWW3%krrE,#pSn [/U68Z!oEaWW<(mWW3%krrE,#pSnoTJ,~> [/U68X^Nm[WW<(mWW3%krrE,#pSn [/U68Y@0-^WW<(lWq*4bWWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u"oeS;s!n*JWW6&sWW3%tWWN7$ !!*"u"9>G%WiH$urMohsrMokt!NH/!WrE(qWWN7$!!)ttrW)qt!W]5#r2K_sql0Vrri,quri-&# Wi?'tWW3%8WW<(uWWiD&^],earMfitr2K_srMfr"WW3%uWWW=%!33'u!<&qs!<&qt!!0)"ri5tu qPjVtWW3%tWr<"tWWE1#!;rhs!<&o&!33%!WW9'!rW)nsrW)nsrW)nsrrE"trrE"trW)qt!W]5# oVrV'T8mkd4#AT?.4Hc(7qI=@V5^Kpri-/%!5JOa!<&nt$!$! [/U68Z!oEaWW<(lWq*4bWWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u"oeS;s!n*JWW6&sWW3%tWWN7$ !!*"u"9>G%WiH$urMohsrMokt!NH/!WrE(qWWN7$!!)ttrW)qt!W]5#r2K_sql0Vrri,quri-&# Wi?'tWW3%8WW<(uWWiD&^],earMfitr2K_srMfr"WW3%uWWW=%!33'u!<&qs!<&qt!!0)"ri5tu qPjVtWW3%tWr<"tWWE1#!;rhs!<&o&!33%!WW9'!rW)nsrW)nsrW)nsrrE"trrE"trW)qt!W]5# oVrV'T8mkd4#AT?.4Hc(7qI=@V5^Kpri-/%!5JOa!<&nt$!$! [/U68X^Nm[WW<(lWq*4bWWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u"oeS;s!n*JWW6&sWW3%tWWN7$ !!*"u"9>G%WiH$urMohsrMokt!NH/!WrE(qWWN7$!!)ttrW)qt!W]5#r2K_sql0Vrri,quri-&# Wi?'tWW3%8WW<(uWWiD&^],earMfitr2K_srMfr"WW3%uWWW=%!33'u!<&qs!<&qt!!0)"ri5tu qPjVtWW3%tWr<"tWWE1#!;rhs!<&o&!33%!WW9'!rW)nsrW)nsrW)nsrrE"trrE"trW)qt!W]5# oVrV'T8mkd4#AT?.4Hc(7qI=@V5^Kpri-/%!5JOa!<&nt$!$! f)HH?c-";Wd*U1fcd:%ee(!"'gu%)Nro=+CnG3(d['*mlql0Yrgo:HU!36(SWWQ3#WrLkS!E9'n WW<(uWW`>%s!n*IWW6&sWW3%tWrE)!WWrO(WW3%!WW<$u!s#@$!%s!n*IWW6&sWW3%t WrE)!WWrO(WW3%!WW<$u!s#@$!l: EF;jD91VTJ=`&eWU8b/ms8K#$rrE'L!;rhs0a,p=?PrZMIl4(F)=VuQar"TJK% .ffLI!*0#u!!)kq!!*"u%03E.!!'%!!33'sYW)ZYs*t~> f)Gm/c-"8VrR(Vk%FW_Tf@es:iT&tZjlc./rr]X5@PI\Z!<:iS"&o9#s4jUV;uirugo:BS!;EJn s8K#$rrE'L!;rhs5ci =&2I[8536(K9i72WiH*uWW`>%s!n*IWW6&uWW3%qWWiI'WW9'!! f)Gm/c-"8VrR(Vk%FW_Uf@es:iT&tZjQQ+/rr]X1@5%MX!<:iS"&o9#s4jUV;uirugo:BS!;EJn s8K#$rrE'L!;rhs5ci =&2I[8536(K9i72WiH*uWW`>%s!n*IWW6&uWW3%qWWiI'WW9'!! h#Ao"`PBC.^qdh)`Q$!@b0/)Vd*^=lf%8R/gtgiFiSrq\lg4!+rVuo)Y[B-]WW<(SWWQ3#WrLkS "&o9#s4jUT;ulZm!<<%us8N*M!;ibr h#Ao"`PBC/^qde)`Q$!@b08/Vd*^=lf%8U0gtgiFiSrq[lKdg)rVuo)Z=#?_WW<(SWWQ3#WrLkS "&o9#s4jUT;ulZm!<<%us8N*M!;ibr h#Ao"`PBC.^qdh*`Q$!@b08,Vd*gCmf%8U/gtgiFiT'%]lg4!+rVuo)X^ i;YJ#]",D]\\#Je^VI_(`Q$!@b08/Vd*^=lf%8U/gtglHiT'%]kNV9tmI9YpZX>H`WW<(SWWQ3# WrLkS"&o9#s4jUT;ulZm!<<%u!rjbNqPjNqr2K_srMfhtri-&#Wi?'uWr)krWr2qtWW3%uWW3%u WrE(qWW3%uWWE1#Wr)ksWW3%qWW3%qWWiI'!3-%!!ZYjUnO i;YJ$]",D]\\#Mf^VI\'`Q$!@b0/&TdF-Lof%8U/gtglGiT'%^kNM3smI9Yo[9tZbWW<(SWWQ3# WrLkS"&o9#s4jUT;ulZm!<<%u!rjbNqPjNqr2K_srMfhtri-&#Wi?'uWr)krWr2qtWW3%uWW3%u WrE(qWW3%uWWE1#Wr)ksWW3%qWW3%qWWiI'!3-%!!ZYjUnO i;YJ#]",D]\[oGe^VI_)`Q$!@b08/Vd*gCnf%8R.gtglGiT'%]kNV9umI0SnZ!T0]WW<(SWWQ3# WrLkS"&o9#s4jUT;ulZm!<<%u!rjbNqPjNqr2K_srMfhtri-&#Wi?'uWr)krWr2qtWW3%uWW3%u WrE(qWW3%uWWE1#Wr)ksWW3%qWW3%qWWiI'!3-%!!ZYjUnO j8UpZZF$pD[C`(Vkp5eV5:)gWV`[qs8K#!561MZ!*0#u!!)hp !!*"u!!)tt!!)bn!!)nr!!*"u!!*"u!s#@$! j8UpZZa6sD[C`(Vkp5eV5:)gWV`[qs8K#!561MZ!*0#u!!)hp !!*"u!!)tt!!)bn!!)nr!!*"u!!*"u!s#@$! j8UpZZF$pD[C3TV]"G_k^qmq-`lQ9Ebg+P]daQ^sf@\j5h;@/Lj5oFdkj%O%n*oE!fXecoWW<(S WWQ3#WrLkS"&o9#s4jUT;ulZm!<<%u!C$S[WW6&sWW3%tWW3%uWWN7$WW<$u!!)nr!!*"u!s#@$ !`(Vkp5eV5:)gWV`[qs8K#!561MZ!*0#u!!)hp !!*"u!!)tt!!)bn!!)nr!!*"u!!*"u!s#@$! k5PG3riJ/`Yd1UC[^WfZ]=l"q_8F73aN;TJcHaebe'ut#f\5-:hVmGQjQ>XilKdj*nDrW^dHToR \>lS/go:HU!36(SWWQ3#WrLkS!E9'nWW<(kWW6&sWW3%tWW3%uWWN7$WW<$u!!*"u!s#@$! k5RQoXf\b0Z*L^D[^Wi[]Y2(q_Sa@4a2uKIcHaebe'ut#f\5-:hVmGRjlP[ilKdj+nE&]_d-0`P \>lS/go:HU!36(SWWQ3#WrLkS!E9'nWW<(kWW6&sWW3%tWW3%uWWN7$WW<$u!!*"u!s#@$! k5RQoXfee0Z*L^D[^WfZ]=ktp_8F73a2uKJc-F\`e'uq"f\5-:hr3PRjlP[ilKdj+nE&]_d-0`P \>lS/go:HU!36(SWWQ3#WrLkS!E9'nWW<(kWW6&sWW3%tWW3%uWWN7$WW<$u!!*"u!s#@$![jF,cciWrM^k!*0#u!!)kq#6:d(!!'%!! kl3iJWMuo!Xfo"8Za@0M\\#Mf^VI\'`Q$!@b0/)Ud*gCnf%8R.gtgiGiSrt\kNV9tmI0N)j4M`C l0I^&f)OO*"&o9#s4jUV;uirugo:BS!;EJns7E;k&!!iM) !sbp/#Q:_*"pYA2X:GO?#HS-2X9T!3"08H%!!)kq!s#>$!<&qs!18Y,n]&WW<(kWW6&uWr)kqWW3%uWW3%tWW3%p WrE(qWW3%tWrE&%WW9'!! kl3iIWMur"Xfnt7ZaI6N\\#Je^VI\'`Q$!@b08,Ud*^=lf%8R.gtgiFiSrt\kNV9tmI0N)j4M`B l0@[&f)OO*"&o9#s4jUV;uirugo:BS!;EJns7E;k&!!iM) !sbp/#Q:_*"pYA2X:GO?#HS-2X9T!3"08H%!!)kq!s#>$!<&qs!18Y,n]&WW<(kWW6&uWr)kqWW3%uWW3%tWW3%p WrE(qWW3%tWrE&%WW9'!! kl3iJWMur#Xfnt7['d?O\\#Je^VI\(`Pop?b08/Vd*gCmf%8U/gtglHiT'"\kNV9tmI'K)j4McD l0I^'f)OO*"&o9#s4jUV;uirugo:BS!;EJns7E;kpUn!3)uu!!)kq!s#>$!<&qs! lMj/GV5C2jWi`D,Yd1UC[^WfZ]Y2(q_Sa@4a2uKIcHaeae'ut#g"P6;hVdAQjlPXglKdj*n)WK\ d-0`Zm-a?Ain^U:;uirugo:HU!36(SWW?'!pSn5no2YXes/X_P!!iM)ql?9h"TMV.>$:f-$X$Y: =^#"1Xfen5ZM1[*[.gm,[.^g/Z*1:2XT#9uWW3%.WrB'iX:;;7Yd(OB\@]Gd\$<'9ri,tuo2W,s !!'p:'rdsrLN-a,='/dCEHltgPFSJKWiH*j lMpm\5GtHZWiW>+Yd1UC\$ro[]Y;.r_8F72aN;TKc-F\ae'ut#f\5-9hVdAPjlP[hlKdj+n)WN] dHKi\mI'HBin^U:;uirugo:HU!36(SWW?'!pSn5no2YXes/X_P!!iM)ql?9h"TMV.>$:f-$X$Y: =^#"1Xfen5ZM1[*[.gm,[.^g/Z*1:2XT#9uWW3%.WrB'iX:;;7Yd(OB\@]Gd\$<'9ri,tuo2W,s !!'p:'rdsrLN-a,='/dCEHltgPFSJKWiH*j lMj/GV5C2jWiW>+Z*L^D\$ro[]=u%q_Sa@3a2uKJcHaebe'ut#g"P6;hVdAPjlP[hlKdj*nDrW^ d-9f\m-a?Ain^U:;uirugo:HU!36(SWW?'!pSn5no2Y[f"0&5sVZ!=qVPU,dV5:'fV$5cj>?=p5BlSBILQe7)WN)uuo2Y"S "8T&X!Mf[F~> m/KMIU84W_W2ZeuXfo"8ZaI6N\\#Je^VI\'`Pom>b0/)Ud*^=mf%8U/gtgiGiT'"\kNM3smI'K) jk%lCl0Ia)mf2eGk230@;uirugo:HU!36(SWW?'!pSn3noDemnX8K%#Y-5+]ZO%\[[C!9FYck:: S[0,E)]BY7)B9_8*#fe8)BH2m\@TAh_84"d_>V4O_8?,drPATO_Yh4Y_SO%$\[JlNZ*1=4XT#7# !5GQ5X8T+&Xfen5ZMLm-[/70A[CEi__8OIAdE]bDZ)k"+W`AWj\#KE.ri,qu_Q"0GU7%'rJ:E'' N00EpT;&3^ri,ruo)S!S"8&]R!Mf[F~> m/KMIU84T^W2Zi"Xfo"8Za@0N\\#Je^VI_(`Pop?b0/&Td*gCmf%8U/gtgiGiT'"\kNV9tmI'H( jk.uEl0@X'n,MnHk230@;uirugo:HU!36(SWW?'!pSn3noDemnX8K%#Y-5+]ZO%\[[C!9FYck:: S[0,E)]BY7)B9_8*#fe8)BH2m\@TAh_84"d_>V4O_8?,drPATO_Yh4Y_SO%$\[JlNZ*1=4XT#7# !5GQ5X8T+&Xfen5ZMLm-[/70A[CEi__8OIAdE]bDZ)k"+W`AWj\#KE.ri,qu_Q"0GU7%'rJ:E'' N00EpT;&3^ri,ruo)S!S"8&cU!Mf[F~> m/KMIU84W_W2ZeuXfnt7ZaI6N\[oGe^VI_)`Q#s?b08,Ud*gCmf%8R.gt^cEiSrq[kNM3sm-jH) jO_cBl0I^(n,MnHk230@;uirugo:HU!36(SWW?'!pSn3no)LeLVPU,dV4sTPR@0D.R?s;/R$j>/ R?s8.Q^F2.R@'A0Q^=,,R$j>0R$a;.Q^O2-R@'<@QBdc(Sc56mR[KS2R@'A0Q^=,,R$j>0R$a;. Q^O2-R@'D0R$j;-R?s;/R$j>/R?s8.Q^F2.R@'A0Q^=,,R$j>0R$a;.Q^O2-R@'D0R$j;-R?s;/ R$j>/R?s8.Q^F2.R@'A0Q^=,,Qq[)O1mXAeM1^8*I!^9hI=6HgH?jg`H[U9iI=$9dH$XgaI=-Hk H[C-gKT21^S"-+EV5:)gW;s]5$`U)&VPU/dV4jNORf/WUQ^F0>Qi mf,\GT:hpSUo()iWiW>+Z*L^C\%&u\]=ktp_8O=3aN;TJcHjhbe'ut#f\>3;hVdAQjQ5RglKdj* nDr]`dHKi[mI'EBro!n9al$,"!36(R1:rj)d9\@]Ji_#;+L_A0u*_SO%(_SsXAdF?h)ioT1P a1/=RV5jLp^o@mCUnOUSXicW2\=I"8&]R!Mf[F~> mf,\GT:hpRV5C2jX/rG,Yd1UC\%&u[]=u%q_Sa@3a2uKJcHaeae'ut#g"P6;hVdAPjQ5OglKdj* n)WT^dHKi\m-a?Bro!n9al$,"!36(R1:rj)d9\@]Ji_#;+L_A0u*_SO%(_SsXAdF?h)ioT1P a1/=RV5jLp^o@mCUnOUSXicW2\=I"8&cU!Mf[F~> mf,\GT:hpSV5C2jX0&M-Yd1UB[^`l[]Y;.r_Sa@4a2uKIc-F\ae'ut#g"P6:hVdAQjQ5RglKdj* n)WT_d-0`Zm-a?Bro!n9al$,"!36(R[< #CUrHH[C-eHN&6rI=$?gH[L0drd+luH[L0eI!^2=HPLsTGlVl*FErFlLPC>.I=$?gH[L0drd+lu H[L0eI!^2=HO"tGI!^3fH[>[<#CUrHH[C-eHN&6rI=$?gH[L0drd+luH[L0eI!^2=HO"tGI!^3f H[>[<#CUrHH[C-eHN&6rI=$?gH[L0drd+luH[L0eI!^2=HPCmTH[9mWD.HjO nGbqNS"61EU84T^W2Zi"Xfen6ZaI6N\[oDd^VI_(`5]j>b08/Vd*^=lf%8R.gtgiFiT'%]k32*r m-jH)jk%lCl0@X'mebE5d>?f^!34]P!35Dd$N^D5#6tG<#6kD<#5nc/"pYA;o;i(sYHY:;rj*$? [^j)e_8=(,`llcZrRCo!pXK8ppXK8ppXKf*e^i=(g>(KeH"1peH"1peH"1peH"1p eH"1peH"1peH"1peH"1peH"1peJ?`de^i:%f@es;j6#Ibk2k^cj5oFckPjWDjTX`*jlY^groX7B !p&D'roOsTh:L0*d*9\O_S<^l[Bm3EZ*:C5Xo>F$X4OBOX8T+NXfen7\%9;g^qmn,aj&5^e'upu f%&@'f%/C$eCN:-i8j"^lKms+jO1fKXF[D0WX#N%Vkp5fVl7qA"8&]R!Mf[F~> nGbqNS"?7FU84W_W2ZeuXfeq7ZaI6N\[oGf^VI\'`Pom>b08,Ud*gCmf%8R.gYCZDiSrq[kNM3s mI0N)jO_fCl0I^(n,(N6d>?f^!34]P!35Dd$N^D5#6tG<#6kD<#5nc/"pYA;o;i(sYHY:;rj*$? [^j)e_8=(,`llcZrRCo!pXK8ppXK8ppXKf*e^i=(g>(KeH"1peH"1peH"1peH"1p eH"1peH"1peH"1peH"1peH"1peJ?`de^i:%f@es;j6#Ibk2k^cj5oFckPjWDjTX`*jlY^groX7B !p&D'roOsTh:L0*d*9\O_S<^l[Bm3EZ*:C5Xo>F$X4OBOX8T+NXfen7\%9;g^qmn,aj&5^e'upu f%&@'f%/C$eCN:-i8j"^lKms+jO1fKXF[D0WX#N%Vkp5fVl7qA"8&cU!Mf[F~> nGbqNS=Z@HU84W_W2ZeuXfo"8Za@0M\\#Je^VI\'`Q#s?b0/)Ud*^=le^rI-gtgiFiSrq[kNM3s m-a?'jk.rDl0@X'n,(N6d>?f^!34]P!34]Ps.o^mrM9UnV5:'gV%oc!St)4:R$a2%N.cV,H?sdT B3eP1G^dC1Gq*J1,:RE78Huf?"@bnH@Uj5 PF%],SY)XOV5:&eVuE[JWWK/uVu.H[0aNA6`8>=&i6!;u]].;cQn!;GK_H2Dd0> ,pFTm>Ci9@JZ@Y.#H=Z"V5:)fW6_IGoW'hMU]5i~> o)D5IR@B_+Z*L^D[^WcY]=u"p_Sa@3a2uKIc-F\ae'ut#g"Y< o)D5IR%'V;T:hpSV5C2jWiW>*Z*L^D[^WcY]=ktp_Sa@3a2uKIc-F\ae'ut#g"P6;hVdAPjlP[i lKdj+n)WT^d-0`ZmI'H=n,_p\WiH*"s/Z@*Y-5+9jg4uo5IS,7^;.S$_SaC:d+-^ue^iF1j6#Ic k2kaejlY[dk2kafjlY[dk2k^ejlY^ek2k^ejlPXdk2tdfjlYahl2KuOl/gm^j8S.hk2k^ejlY^e k2k^ejlPXdk2tdfjlPXdjlY[ek2kaejlY[dk2kafjlY[dk2k^ejlY^ek2k^ejlPXdk2tdfjlPXd jlY[ek2kaejlY[dk2kafjlY[dk2k^ejlY^ek2k^ejlPXdk2tdfjlPXdjlbgklg4'+m-a6-m-F$< m5+1sm-a6-m-F$*mI'?-md0?-lg4$+md00"j5f7Xgt:3+c,di?_7mRn\$iZMZa-j?Y-$EZ/?Q(Z Z*L^C['dEU^rO[He'lgtf\GEGjQ#=_jlY[ekN:pgjQ5Odkj%R&m-alA"R+IS[&ehYVQ'ajY;ZKW s*t~> o)D5IR@B_*Z*L^C[^WfZ]Y2(q_8F73a2uKJc-F\ae'ut#g"P6:hVdAQjQ5Rg lKmm+n)WT_d-0`[m-a?/R?s8.Q^F2.R@'A0Q^=,,R$j>0 QBdYnLP(#'I!U!WBO+X;;Zfok69+p"#;e1l1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1DM`% 1G^[;/1E"r.l9@P3AWKK1,LdBr\Fd91,C^A1c$od1C#`l1G^dC1G\qc#;e1l1GUdC1B''71bpjC 1,LdBr\Fd91,C^A1c$od1C#`l1G^dC1G\qc#;e1l1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od 1J0JZ1G^dC1GLO5.4-2b,pO`_,q1,b,U"K\,:4]_.4$2a+XSK[-7're,pOZY-S7)42E3ok9i>,) D0C5RJVArAP*MB$S"61GV#7%mVPU/dV5F0e"fA,nV5:'eV$3`mVPU,dqP?!BT:D=;Q^3ntLOF/S ?!191;GK_H2`3NO1GgjC1+t@;1cI9J0eFh#,UOZV+!E43HC(IZWhucuoW'hMU]5i~> oD_@PQ^O>5StD^NUnsreWN3,&YHbC>[C3TU]=bhl^r"%/`Q-*Cbg+M\dF6Uqf@\j5gu%&KioK4a kj%L#n*f>sf?iaGlg=-.q!\=QfW;(ZXKJe5ZaIrU57'lg*p*m-O0,m-a6-mHj9-m-a6,md0?.m-a6,md0<.m-X3,md0<.m-O0,mHs9.m-O0, m-a6-mHj9-m-a6,md0?.m-a6,md0<.m-X3,md0<.m-O0,mHs9.m-O0,m-a6-mHj9-m-a6,md0?. m-a6,md0<.m-a oD_@PQC=;5StD[MUSXleWN3,&Y->4<[C3TU]">Yj^qmq-`Q60Dbg"J\dF6Urf@\g4gtq#Kj5f=b kj%L#n*f>tf[/jHlKms-q!\=QfW;(ZXKJe5ZaIrU57'lg*p*m-O0,m-a6-mHj9-m-a6,md0?.m-a6,md0<.m-X3,md0<.m-O0,mHs9.m-O0, m-a6-mHj9-m-a6,md0?.m-a6,md0<.m-X3,md0<.m-O0,mHs9.m-O0,m-a6-mHj9-m-a6,md0?. m-a6,md0<.m-a^0Ts*t~> oD_@PQ^O>5StD[LUSOccWN*&%Y-G:=[CYj^qmq-`Q60Dbg+M\daQ^sf@\g3h;7)Kj5oCc kj%L$mdK5rf?iaGlg4'-q!\=QfWD.gWMQ;[R?s+uM1^;+H[C0fI!^3fH[>[<#CUrHH[C-eHN&7& I=$@1rYEHc\TJVArAPEu06r0[VQR$dl>r0[VQR$dl>r0].'R$a5,QC!ktM1^8*H?XIJ A6;Ji2`3NO1GLI1,paud,pji_-6XWZ,q1,c-N,.q,p=?P+Y6?4Q_f85VQ'alW&4UNs*t~> o`+rW8!o^6S=Z@GU8+N]W2Zi!Xfnt7ZaI9O\[oGf^VI\'`Pom>aihrSd*^=lf%8U/gtglGiT'"\ kNV9tm-a?'j4DZAl0@[(n+Q5NkcUomY-b^O^r"%2bgFo4eH"1peH4=Pec+,/f\>9AjQ>Rck2tjk m-al?!UK.PmOISjmHj9-m-a6,md0?.m-a6,md0<.m-X3,md0<.m-O0,mHs9.m-O0.n,;a#n*]Z4 md9B/m-O0,mHs9.m-O0,m-a6-mHj9-m-a6,md0?.m-a6,md0<.m-X3,md0<.m-O0,mHs9.m-O0, m-a6-mHj9-m-a6,md0?.m-a6,md0<.m-X3,md0<.m-O0,mHs9.m-O0,m-a6-mHj9-m-a6,mf)PR l0/-/s5aFFj5oFckPjWDjTX`*jlY^groX7B%HQR2k3)!om-O')mHsBAm25-Pk2kacio&VFf[eU% d*9YN`5BL0_SO%d_>h@T_ns:,_#;+L_?@cn_SO%d_>h@s_ns=/`5p0MeCE.%g"YEEkN_I%lg=*+ md9H0lg=*+md0<.rp:<`m-X0-m- o`+rW8!o^6S=Z@GU84T^W2Zf!Xfo"8Za@0M\\#Je^;.S&`Pom>b0/&Td*gCmf%8R.gtgiFiT'"\ k32*rmI'H(j4DZAl0I^(me6,MkcUomX0]=K^r"%2bgFo4eH"1peH4=Pec+,/f\>9AjQ>Rck2tjk m-al?!UK.PmOISjmHj9-m-a6,md0?.m-a6,md0<.m-X3,md0<.m-O0,mHs9.m-O0.n,;a#n*]Z4 md9B/m-O0,mHs9.m-O0,m-a6-mHj9-m-a6,md0?.m-a6,md0<.m-X3,md0<.m-O0,mHs9.m-O0, m-a6-mHj9-m-a6,md0?.m-a6,md0<.m-X3,md0<.m-O0,mHs9.m-O0,m-a6-mHj9-m-a6,mf)PR l0/-/s5aFFj5oFckPjWDjTX`*jlY^groX7B%HQR2k3)!om-O')mHsBAm25-Pk2kacio&VFf[eU% d*9YN`5BL0_SO%d_>h@T_ns:,_#;+L_?@cn_SO%d_>h@s_ns=/`5p0MeCE.%g"YEEkN_I%lg=*+ md9H0lg=*+md0<.rp:<`m-X0-m- o`%LJQC+)0S=Z@GU8+N]W2Zi"Xfeq7ZaI6N\\#Mf^VI_(`Pom>b08,Ud*^=le^rI-gYCZDiSrq[ kNM3smI0N)in)TAl0@X'n+Q5NkcUotU6UanIX6-RAR/A;;cH[o<)i`n"B8;u<)i`n!*&qr5uLHL 69@%[1G^dA0J"Rp,U4Ta,pOWY-6jc_,:4`]-7'l`,U=]]-70o`,pO`^,UO`_-6ac_,:4Z]-6ji` +X8-.+*8VL+1G^dC1Gq*J1,1I=1GUdC2)d?H0.\S!,q1,b,U"BW,q:K% 1G^sN5=J4@;,^V(A8QC3H$FX]I!pEjIK"QuH$XdaI=6Kkrd+lqH?sseI=-JBHiA:)GBIe7>ZFd& :JF>E2_QX,,q1,c-N551,Uk#c-6jf`+XA9Y.4$5d,:4lk.jZ>]+turCRAPP8VQ'alW&4UNs*t~> p&G#W$CI9OS=Z@GU8(?grW"b[#R_kTT!Yr8\\#Mf^VI\'`Pom>b0/&Td*gCmf%8R.gYL`EiT'"\ kNM3smI'H(j4Kn4rVuu"n+H/Mm]WWF[`$;6e(31*hW*_Zk2k^ejlPXdk2tdfjlPXdjlY[ek2kae jlY[ekNM6um-a6,md0r?!:TpS.I6?flKRKok2kaejlY[dk2kafjlY[dk2k^ejlY^ek2k^ejlPXd k2te)joXc3mJZMRmW7j`l0%3kjlPXdk2tdfjlPXdjlY[ek2kaejlY[dk2kafjlY[dk2k^ejlY^e k2k^ejlPXdk2tdfjlPXdjlY[ek2kaejlY[dk2kafjlY[dk2k^ejlY^ek2k^ejlPXdk2tdfjlPXd jlY[ek2kaejlZR(&*2a.h:gK3f%&=#e(*%#fDaA$eHOIOe^i='rmq,")V!6df@es;j5f:`kj7a) mdBK1m-O0+m-Ep!roPWiinrPEf@JR)f%&:"e^`7$f%8L(e^W+!e^i:%f@JO'eC<%!f%&@'rmhq= gY_&RjlPXfl0@U&mI'B-mHs9.m-3]oroFCIjlYagk2k\'jULA4i8E__mdBE#cb-K_JZ>TI"88`Q !Mf[F~> p&G#W$C@0MS=Z@GU81HirW"b[#R_kTT!c&:\\#Je^VI_(`Pom>b0/&Td*gCmf%8R.gtgiFiSrq[ kNV9tmI0N)in'_2rVuu"me-&Lm]WWFY.i!'e(31*hW*_Zk2k^ejlPXdk2tdfjlPXdjlY[ek2kae jlY[ekNM6um-a6,md0r?!:TpS.I6?flKRKok2kaejlY[dk2kafjlY[dk2k^ejlY^ek2k^ejlPXd k2te)joXc3mJZMRmW7j`l0%3kjlPXdk2tdfjlPXdjlY[ek2kaejlY[dk2kafjlY[dk2k^ejlY^e k2k^ejlPXdk2tdfjlPXdjlY[ek2kaejlY[dk2kafjlY[dk2k^ejlY^ek2k^ejlPXdk2tdfjlPXd jlY[ek2kaejlZR(&*2a.h:gK3f%&=#e(*%#fDaA$eHOIOe^i='rmq,")V!6df@es;j5f:`kj7a) mdBK1m-O0+m-Ep!roPWiinrPEf@JR)f%&:"e^`7$f%8L(e^W+!e^i:%f@JO'eC<%!f%&@'rmhq= gY_&RjlPXfl0@U&mI'B-mHs9.m-3]oroFCIjlYagk2k\'jULA4i8E__mdBE#cb-K_JZ>TI"88fT !Mf[F~> p&G#W$C@0MS=Q:FU81HirW"b[#R_kTT!c#9\[oDd^VI\'`Q#s?b08/Vd*^=lf%8U/gYCZDiSrq[ kNM3sm-jE(in0e3rVuu"n+H/Mm]WVuP'1YM=&Mgc5r^_Zr\FX31c$od1C#`l1G^dC1G\qc-T!S7 1GUdC0J4b#,p=T],:4Z\,U"BW,q1,d.4m801,LaB1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od 1BoZk1GUR5,lJel+X8-W.ki_61c$od1C#`l1G^dC1G\qc#;e1l1GUdC1B''71bpjC1,LdBr\Fd9 1,C^A1c$od1C#`l1G^dC1G\qc#;e1l1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1C#`l1G^dC 1G\qc(Gmm'1GUdD1H.sK!<)lt#^.3]r`3ad]6W.CtGWWVsn2$'KP J,~> p\t68rK[eXR@B_V4O_8?,d7)R!cc-XqhfA5KLkND*rmd0<.m-a<.md9E0m-O'%kN:pik2tddjQ5LcjlYag k2k[bjlPXdk3(mhjlGLajlY[ekNDj,&*`BGmd0<.m-a<.md03$jSn6Dk2Y=Of)F2:f%&@'f%/C$ eCE+!e'lt/lL43+gW-e+X+@:JWWW!o2$0QQJ,~> p\t68rK[eXR@B_;T:hpRUo++k1jlEq6N@@7[^WcY]Y2(q_8F73a2uJq.4Haoe'uq"f\5-9hVdAP jQ5RglKdj*n)WQ]d-1H/!NY\]n,`!jZ)U.!cJ%7=k3(smm-X0-m-O0,m-a6-mHj9-m-a6,md0?. m-a6,md0<.mI0N2md0<.m-X3*l0%3jjQ,@ZgXt-/e^jKF!7pnp!7pnps4.>)g>:oTrp'gRkNCm^ g"4gOeH"1peH"1peH"1peH"1peH"1peH"1peH"1peH"1peH"1peH"1ueHj[Qd*9_Q`59Ch_>V4O _8?,drPATO_Yh5<_o9aBd*pLrh;dY\kNV@$m-O0,mdBH0mHs?.m-Eluk2tjhk2k[bjlPXdk3(mh jlGLajlY[ekN:pgjQ,Fak2kagkPjTSl0@X'm-O0,mdBH0m-3]oroF:Fj5/J?rm_k:e^i@'f%&:" e^`0ue(E[Fn*fMqa1&4PJZ>TI"8AcP!i,dG~> p\t68rK[eWR[]h=T:hmRV5F4l(430R6N@@8\$rlZ]=kqo_8F73a2uJqr[Ac5e'ut#f\5*8hVdAP jQ5RhlKdj*n)WQ]dHLQ0!NY\]n,`!jZDpHpEDK"b1GU[:90etRE2)@'E1GUU< 1,LpI1GgjC1+t@;1cI9J1bpjB0/50o1GUO2-6X]^,:+QY,pO]e0Jt]d1Bog*9iG%l<;ohr;$0`s ='#<#$s?Y,4"2 q#:?,r0@\WR@B_;T:hpSV5F4l(430eYUfbVNjlR2]=kqo_8F42a2uJerW!kbe'ut#f\,'8hVdAQ jQ5RglKdj*n)WN\d-1H/!NY\[n,U>3W\23JkNV=#mHs?.mHs9.m-O0,m-a6-mHj9-m-a6,md0?. m-a6,md0<.lg3s%kl0`EjUL;/gtC<0e'l^hai207rP8]T_84")_SZ8f#/\3m_SO++rP9Sm_84") _SX.*_SX=9db*=0gtC?1d*'GH_SO(*_8=(f_$7cm_8=%*_Yq:T_SO(*_8=(f_$7cm_8=%*_Yq:T _SO(*_8=(f_$7cm_8=%*_Yq:T_SO(*_8=(f_$7cm_8=%*_Yq:T_SO(*_8=(f_$7cm_8=%*_Yq:W _SO((^:h.g[^>h9!4;L,!4;R.%^`[S]"Pkp`QHQXf@f!>roF^RkNV9tmd9E0m-a<.md0<.rp9sV m-X0-m-O0>m0DtDmHj9-m-al?#OCaDm-a6,mf)SblgF3.md0<.lg3s$kN(LQf)F2'eBuL[_nuDh s2#Jf_SX.)_83q'_oUBflg='"e%i;kJZ>QH"8A`O!i,dG~> q#:?,r0@\VR[]h3W\1I!hrj=nmHs?.mHs9.m-O0,m-a6-mHj9-m-a6,md0?. m-a6,md0<.lg3s%kl0`EjUL;/gtC<0e'l^hai207rP8]T_84")_SZ8f#/\3m_SO++rP9Sm_84") _SX.*_SX=9db*=0gtC?1d*'GH_SO(*_8=(f_$7cm_8=%*_Yq:T_SO(*_8=(f_$7cm_8=%*_Yq:T _SO(*_8=(f_$7cm_8=%*_Yq:T_SO(*_8=(f_$7cm_8=%*_Yq:T_SO(*_8=(f_$7cm_8=%*_Yq:W _SO((^:h.g[^>h9!4;L,!4;R.%^`[S]"Pkp`QHQXf@f!>roF^RkNV9tmd9E0m-a<.md0<.rp9sV m-X0-m-O0>m0DtDmHj9-m-al?#OCaDm-a6,mf)SblgF3.md0<.lg3s$kN(LQf)F2'eBuL[_nuDh s2#Jf_SX.)_83q'_oUBflg='"e%i;kJZ>QH"8AcP!i,dG~> q#:?,r0@\WR[]h=T:hpRUo++k(430eYUfbVO12[2]Y2(q_8F72aN;SfrW!kae'ut#f\5-:hVdAQ jlPXhlKdj+n)WQ]d-1H/!NY\[n,U>3W^1nn0J"Us,pac_,:"T\-70o`,pO`^,UO`_-6ac_,:4Z] -6jia+snT\-RU>o/i#4<1c.-U78-QX='8g=D00uJrd+luH[L0eI!^2=HO"tGI!^3fH[>[<#CUrH H[C-eHN&7+H#[M$9h.WA92AMmBQ89CI!^3fH[>[<#CUrHH[C-eHN&6rI=$?gH[L0drd+luH[L0e I!^2=HO"tGI!^3fH[>[<#CUrHH[C-eHN&6rI=$?gH[L0drd+luH[L0eI!^2=HO"tGI!^3fH[>[< #CUrHH[C-eHN&6lI=(sA#D%SbO-5fqR/NEQR/WHOR/NEQR/WHOR/NFTR$NqrM1^;)F(nr[:eO2; 1c7*E0J"\%,:+W\,pOW\,:+Z[,U4Ta,pal_,pjc\,:+cb,pji_-6XWZ,q1,d-6jf`+XA9Y-mKo\ +XJEZ-RL2m0fMEm;uTc%QH"8AZL!i,dG~> q>UH9qj%SVR@B_;T:hpSV5F4l(4<6fY]KjF0XnU)]=kqo_8F72a2uGdrW!kae'ut#f\5-:hVdAQ jQ5RglKdg)n)WN\d-1H/!NYYanG_DFn,hQp<;iir<;``r<;3Bm<;``r<;`cq<;iir<;iir<;``r <:Hn8^#\SKmd9H0mI'9'k2kaejlY[dk2kafjlY[dk0)lKjlY^ek2k^eroFpUi835Af@JL&eBuO_ `P]O-^V.7h[^>_6"(egFAbWM3AS1\C%CWg\_SsO7`59=&]!o'6ZNt/SZXm`\AS5Z@ZNFjHZY&C, !,(r1!,)8:!+to1s02[1Y-"i)X9)L,=T)A'XB=tn+g%oOZ*LaF\\5hsNm#eue^`:)gYUrOk2tji l0@U&m-O0>m0DtDmHj9-m-al?#OCaDm-a6,mf)Sulg4$*mb-spmHs9*lg*g!k2kacinq5td[J4o _SO%']t1\[r3HE9BDSqC[_0]6k3_U#h93C5X+@:IWWW!o2$0QQJ,~> q>UH9qj%SVR@B__6"(egFAbWM3AS1\C%CWg\_SsO7`59=&]!o'6ZNt/SZXm`\AS5Z@ZNFjHZY&C, !,(r1!,)8:!+to1s02[1Y-"i)X9)L,=T)A'XB=tn+g%oOZ*LaF\\5hsNm#eue^`:)gYUrOk2tji l0@U&m-O0>m0DtDmHj9-m-al?#OCaDm-a6,mf)Sulg4$*mb-spmHs9*lg*g!k2kacinq5td[J4o _SO%']t1\[r3HE9BDSqC[_0]6k3_U#h93C5X+@:IWWW!p2$0QQJ,~> q>UK:Q2HpTR$jG6StD[MUnssf!#Bp`YHW*K!&1mm]">Yi^qmq,`Q-*CP5YG"dF6Urf@\g4gtpuJ j5f=bl0@U$mdK5sf?ia\!!0.hq=+CBrU9mIH;sjCr`&fq!*&]m!*&lr!*&lrr`&irr`&irr`&fq !*&Hf'SSCi,9\9U,UFZa0/57<1G^dC1G\qc#;e1l1GTk)1B'(D1bpjC1,LjG3B]]!9Mn\d/R?s75Q^CF5R@'A0Q^=,,QqL)?R$a;.Q^O2-Q]mD]H$"(IG'\Rj Mij0R$a;.Q^O159:5TL;43c/R?s8.9:2,?R@'A0 Q^=,,R$j>0R$a;.Q^O2-R@'D0R$gU6R?s;/R$j>/R?s8.9:2-7R7ip8Q^=,,R$j?@R0f@RStVpU V5C)cqGINo;Pg4eV5F0eDPj8,VPU/dUnOENS!K4sKRJ&(BjXqA;bp+X5rphY1,(@4.OcSg-6XWZ ,q1,d-6jf`+XA9Y.4$8e,:+Z[,U4Ta,pal_&gebI,:+fe-nHu+1G^sN59is,13%PbH[U?qMia6l R@0D/91kP;rL"+^PD3sL0dItq7;.RNWI_(GWWW!m1]jHPJ,~> qYpQnqN_JTR@B_;T:hpSUo++k(430eYa>Cj!j0#$2\lf*&2o9_a2qZprW)s,(jacbW^RO-(KAH8 jQ5OglKdg)mt;he*J==k"0:j4$N:#,n=p?i!".]SnDWm+X&Q+!<;rm!<2utt<;ufWWB9\rU1'Zl0%3ii7lo8f([\pf)F2"X8CEIf)=,8eC2dh b/_K=_SX.)^:Un`['R*EZ*:C5nZ2^npoFHuoW/+tZ*O>8"LGD,X8lE#X:28<^!>L! md9,e`3l^uWhcWsn#/&EU]5i~> qYpQnqN_JUR[]hufWXl)Jk3D:!lKRKojP\eFf%0TG!7q/"!3?"I!7q,!(Y$p\ c-")G_ns:,^qRFj[^go!*&os!*&Eeri?(#:p$q+Za=V\]YD8!`5TgAd+$Usf\,$9iT0+_kN:pgjQ,Fak2kag k2tddjQ5LcjlYagk2k[bjlPXdk3(mhjPf(Uh:^E2e^DdgOMnrG\$Z+?!jSr3qQ'["qlC4/Zb=Z@ l0ds#f#4tuJZ>NG"7W6H!i,dG~> qYpQnqN_JUR[]hCj!j/u$2\lf*&2o9^a2qZprW)s,(jacbX$mX.(KAH8 jQ5OflKdj+mt;he*J47j"0:j4$N:#,n=p?i!".]SnDWm+X&Q+!<;rm!<2utt<;ufWYD3m+!2UK-S$i*2*FH);,U@l;cH`n;Zp&u;^tcD;]8V6 <)lt$?"7SeF*N"XI=Hj*Ng#csR@9Y qYpP\qN_JTR[]hM&=gJB3WK/*a2uJerW!kbe'us8!s!]%:&l!N jQ5RglKdj*JH,[`c#kB_SLkXK#5C@_1R?V K#,=?_SZ8f&]0-N^O!K%CUIf]ZXpGJYcb,,X9;V*X/].uWWH/"Wr>usWW?)!r`&`or`&otr`&ls "&u:"WrB'sXT)?%X8]-u<;rm$<2rotW`8hp"&u;#<;NTp<;rm%<2urtW`2srWr>utWr>ruW`8tt r`&ls"&u:"<;iis<;NU!<2urtW`2soWW6#sWW6#tWrH&sWr>usWWH/"<;NTp<;ig!<2rnsri-*# W`6!ur`&irr`&ls3NH4`XB_s5ZEppF[;U/4^qmn+Mij@Pe'tGLXk)%$eCE*NeZ@BRXOYhMWn#\N XOl%)eYoFse^gf#efCfgT[(d'`e];"^:\T,C9h3LXK5Q-=KAL&<2rnsri,rtr2L4,Ydqd*jm;C" i6K$@X+@:HWWV^g1]jHPJ,~> qYpP\qN_JTR@B_M&=gMC3WK/*a2uJerW!kae'up7!s!]%:&l!N jQ5OflK[d)JH,[`c#kB_SLkXK#5C@_1R?V K#,=?_SZ8f&]0-N^O!K%CUIf]ZXpGJYcb,,X9;V*X/].uWWH/"Wr>usWW?)!r`&`or`&otr`&ls "&u:"WrB'sXT)?%X8]-u<;rm$<2rotW`8hp"&u;#<;NTp<;rm%<2urtW`2srWr>utWr>ruW`8tt r`&ls"&u:"<;iis<;NU!<2urtW`2soWW6#sWW6#tWrH&sWr>usWWH/"<;NTp<;ig!<2rnsri-*# W`6!ur`&irr`&ls3NH4`XB_s5ZEppF[;U/4^qmn+Mij@Pe'tGLXk)%$eCE*NeZ@BRXOYhMWn#\N XOl%)eYoFse^gf#efCfgT[(d'`e];"^:\T,C9h3LXK5Q-=KAL&<2rnsri,rtr2L4,Ydqd*jm;C" i6K$@X+@:HWWVah2$0QQJ,~> qZ$AW$CI6NS"?7FU8+Q^rW!(JXfen/rW!Fk\U>$Z^U6*&!-uW,b*)`()U[$`es?I=HeM3p'[#P! kNV9sm-]E)!,0YrrW!&#n*mFX!<;NgXSr2"iV`0GmSs(`!*&os!*&co!`Z1!r2K`rq5ONrWiB%t WWQ5#W`8tt!*&os!*&os"]VL$WiB%sWrH#uC]5Cd+X]'39Mm H[L0drd,T4HTjWC6A^[mPY.=19:;9ATqnN^V5@1iWN&qsWWH/"Wr>usWW?)!r`&`or`&otr`&ls% TKH-Wi;qpV5:&cV,C6jri5rsri--$W`6!u<;NTs<2urtqPjNpri-0%WiB$u<)igrr`&otr_rou< ;ros<;rm"<2rnsrMolsqPja!WiB$u<)i^o!*&os!*&rts&Arsr`&ls!`Z1!qPjNprMfs!W`2ssW WZ;$<2utt<;iir<;rmoW)HTj:nXAJR?s5)7n#anI!Kip2D\`D<@Lcn;cP>KNG"7N'B!i,dG~> qu?GW$C@0MS=Z@GU84W_rW!(JXfnt5rW!F`\Z_gB^;,L(!$92&b*)`()Ud*`e///ca5!*`!*81B kNM3smH>&\!4gCurW!&$mdR=W!<;NgXSr4sn,_M2rMolsr2K`rq5OKqW`8nr!*&fp!*&osr`&ls !*&rt!*&os!*&oss&9?*<)fksWiB$uYIXZ%&+8E/ccKYkW[_8*a/]!lL_Za4/HY["<3 qu6Y]q3DATR@B\:T:hpSV5F4l"FI8RYd"*,%YqU!V7jXZLB%;qa2lAcrW!kae'uh`!!('qRK*=g jQ5OglKdj$%fcU?cHH1e"0:kZXSr5"n,TQh!;l6diTL0>s&Aor!*&co!`Z1!r2K`rqPjNprMoir ri,rtri,rtrMfisrMols*NE(?S%1=KG[)X8Jst<;rlt<;rm!<2rpsWWlG&W`6!u<;K#,:?KYtZ[K##3S_81fA_h>kA]m.,tCp^OTA$N7CXfPR'W`8tt$<4%*<)flt<2urtr2L40[ _gJNl0e!%fZ(D'X+@:HWWVah2$0QQJ,~> qu?GW$CI6NS=Z@GU84W_rW!(JXfen4rW!F`\?D^A^;,L(!$92&b*)`()Ud*adhi&b`nd'`!*81B k3;0rm,nlZ!4gCurW!&#mdR=W!<;NgXSr4sn,_M2rMolsr2K`rq5OKqW`8nr!*&fp!*&osr`&ls !*&rt!*&os!*&oss&;=b<)fksWiB$uTctO!+!WmB?ZC?U6]FW/QV3a69:2*79:)&>R$gT?R$a;. Q^O2-R7is99MM.P:f4&e;Pd9hW2]]p!*&rt!*&rt!`Z1!ri-0%WiB$uW`8bn"&u;#<;rm#<2urt <;T2;>];lQcrri-<)WiB#tWiB$u W`8qs%]Q+bH!NG"7N'B!i,dG~> r;Qbppm)8SR@B\;T:hpRUo++k"FI8RZ)[d'%[+B.?RQKp#QOi,a2lDdrW!&Je'tT#!"IZ;XT/>4 j5oIflK[cNrW!#HcK"m("0:n[XSr5"n,TQh!;uJ'!*T)u% 9T^5X&c:$<2urtWiB%nWWlG&W`6!u<;W["<2urtWiB%nWWQ5#W`8tt"&u;#<;3Bm<;``r<;rm(< 2urtWiB$uW`8kq!`Z2"r)EZq!*&rt"&u;#<;rm"<2urtql0j"WiB$uW`8tt"&u;#<;rm"<2urtp o4EqWiB%tWW6#qWW6#sWWQ5#W`8nr!*&rt"&u;#<; r;Qbppm)8SR@B_;T:hpRUo++k"FI8RYc@[&%[+B-?RQKp#QOi,a2uJerW!&Ke'tT#!"IZ;XT/>4 j5oFelKdiPrW!#GcK"m("0:n[XSr5"n,TQh!;uJ'!*T)u% 9T^5X&c:$<2urtWiB%nWWlG&W`6!u<;W["<2urtWiB%nWWQ5#W`8tt"&u;#<;3Bm<;``r<;rm(< 2urtWiB$uW`8kq!`Z2"r)EZq!*&rt"&u;#<;rm"<2urtql0j"WiB$uW`8tt"&u;#<;rm"<2urtp o4EqWiB%tWW6#qWW6#sWWQ5#W`8nr!*&rt"&u;#<;J2GU ]5i~> r;Qbppm)8SR[]e4 j5oFflKdfNrW!#HcK"m("0:kZXSr5"n,TQh!;u r;ZMW$C@0MS"?7FU8+N]rW!IUXfemp!!!)'\1@U[=hBUk!!C9`b*)`("4>TIT)J`i%0-e8!sd<: k3;0smB?Kh!nP`^rW!&$mdR=W!<;NgXSr4un,VGHn,VqTWW6#sWW6#qWW6#tWW6#rWW6#rWW6#r WW6#tWW6#qWW6#sWW6#sWWlG&W`6!u<;rm1<-@'dnF5;O['R3JA$<% r;Qb^pm)8SR@B_;T:hpSUo++k%stF]Ya5=i!j9$a!!$06MuE\Ya2uGdrW!&Ke'sug!<3K.$iU55 e)f`VlKdf?rW!#Nd-(B."0:kZXSr5"n,TQh!<)BeiVr r;ZMW$C@3NS"61EU84T^rW!IUXfemp!!!)'\1@U[=hBUk!!C9`accW'"4>TIT)J`i%0-e8!sd?; kNM3sm'$Bg!nP`]rW!&$mdR=W!<;NgXSr4un,VGHn,VqTWW6#sWW6#qWW6#tWW6#rWW6#rWW6#r WW6#tWW6#qWW6#sWW6#sWWlG&W`6!u<;rm4<('%p*Zm^pQC!c#9qS.XV57(eV5=,gs.oirV5L7j po4 rVlkapQc/RR@B\;T:hpSUo++k$%&eXY]9^D0t3JJ!!9IAMuE\Ya2uJerW!&Je'tN!!"IT9hVdAP jQ5RglK[`NrW!#Jd,Y**"01eYXo8;%n*lqJ!<2HfiV`0Gi)K]U!*&os!*&iqqc*No!*&os!*&iq !*&rt!*&iq!*&os!*&os+&o8?<2urtWiN5&\ZbJknESH>_SX*3\@-+YZY$PMAcB"EB="sWZa-f@ XfSV)X8T$u<;rm(<2urtWiB$uW`8bn#ump(W`5utWiB%tWWlG&W`6!u<;HE"88iT!Mf[F~> rVlkapQc/QR@B\;T:hmRUo++k$%&eXY]9^D0t3GI!!9F@MuE_Va8sDGrW!&Je'kGu!"IQ9hVdAP jQ5OglKdfPrW!#Id,Y**"01eYXo8;%n*lqJ!<2HfiV`0Gi)K]U!*&os!*&iqqc*No!*&os!*&iq !*&rt!*&iq!*&os!*&os+&o8?<2urtWiN/"X-VZ.k0piDZambm\@-+YZY$PMAcB"EB="sWZa-f@ XfSV)X8T$u<;rm(<2urtWiB$uW`8bn#ump(W`5utWiB%tWWlG&W`6!u<;HE"88oW!Mf[F~> rVlkapQc/QR@B_;T:hmRUo++k$%&eXY]0XC0t3JJ!!9IAMuE\Ya2uJerW!&Ke'tQ"!"IQ8hV[;O jQ5RglKdfOrW!#Jd,P$)"0:kZXo8;%n*lqJ!<2HfiV`0Gi)K]U!*&os!*&iqqc*No!*&os!*&iq !*&rt!*&iq!*&os!*&os&QGd1<2urtWi;klN@,hi+"CLoGm]!fNKHi"QqNd69E(=f9:(uHE"88cQ!Mf[F~> rVuSW$CI6NS"61ETqnN^rW!7OXfeiW!!J@lM>dJV[_R@k!!C9`acuc))UZKPdhDc^\(oiuFB[be k32*rm-"r[!4pP#rW!&#mdRmg!!;6NKDklMn,VGEn,QGeWW6#sWW6#mWW6#rWW6#sWW6#qWW6#t WWuM(XB2I&W`8qs&ll$7XfYd.X]_d.=fnc0Y-skgrpV#qi8*&7SB8d,_nq)C_1KM=_1]\CK>>6G Eji?\Yck5/X:8=6XBAZ,XB2I'<2urtpSn3mri,rtri,rtri-0%WiB$uW`8bn"&u;#<;rm"<2urt pSnEsWiB$uW`8tt#umq)<2urtWiB%qWWQ5#W`8hp#?7_'<)flt<;rm"<2urtri-9(WiB$uW`6!u <;rm"<2urtri-0%WiB$uW`8kq"&u;#<;rlt<;WZq<;ig'<2urtWiB$uW`8tt"&u;#<; rVlk_pQc/QR@B_-+i/XfYa.XBMX)L"beUiRQ&ncdA9)`e_OLKYbKV_8*m?_S_#A ^NX_,['Hp>Y5YL3=fe]-=KJT*X/f4"W`8_m!*&rt!*&rt!*&rt##qV&<2urtpo4EqWiB%tWWQ5# W`8_m##qV&<2urtri-9(WiB$uW`6!u<;WZt<2urtqPjd"WiB#tWiB%tWWQ5#W`8tt#umq)<2urt WiB%tWWQ5#W`8tt##qV&<2urtql0`tWiB%tWW6#qWW6#sWX2Y)W`6!u<2urtri-'"WiB%nWW6#s WW6#tWWQ5#W`8tt!*&rt"&u;#<;rm&<2urtWiB#tql0Wqri-'"WiB%tWZ5! rVuSW$C@3NS=Z@GU84T^rW!7OXfeiW!!J@lM#IAU[_R@k!!C9_b*Dr+)UZKPdhDc^\(oitFB[be k3;0smH>&\!5$V$rW!&#n*n!h!!;6NKDklMn,VGEn,QGeWW6#sWW6#mWW6#rWW6#sWW6#qWW6#t WWuM(XB2I&W`8qs7THOkXfYd.X]_d.=fnc*U6./T+!)LP5"/4K0l1nmGC)K"I6E",Hou_#4ahlK 7Zs+,SY2aSVPR1eV,C3fVGjFm<2urtpSn3mri,rtri,rtri-0%WiB$uW`8bn"&u;#<;rm"<2urt pSnEsWiB$uW`8tt#umq)<2urtWiB%qWWQ5#W`8hp#?7_'<)flt<;rm"<2urtri-9(WiB$uW`6!u <;rm"<2urtri-0%WiB$uW`8kq"&u;#<;rlt<;WZq<;ig'<2urtWiB$uW`8tt"&u;#<; rr2tdp6H&QR@B_;T:hpSUo++k%stFK63%77\$r=>!!$T-/,fMNa2uH/rW!kHKHA^)!<>X:h44kB j5oFflKdj*JcGdac#$A&0XKAU.Xf\\+=oGH'XBGJ' !ElN'XoDT(=oPN0>$5"2Za[DS?!7-.2m-`#\\#M!]Y&L%]Qh*"ZsR1Tg[FY$n*]K'jM9R(Yh.I, f%&usWW6#nWW6#sWW6#tWWQ5#W`8qs r`&irr_s-&<2urt<2rpoWr>urWr>usWXi(/W`6!u<2urtWiB$uW`8tts&9B+<2urtWiN1%XK5S( X9)O,=oGH$=U(s1XBAZ,=oPN%=oPK&=oPK/=fe]/Z+.Zsgun\("mFdg^pU=rWh??om]&)EU]5i~> rr2tdp6H&QR@B_;T:hpRUo++k%stFK63%78[^W1X:h44kC jQ5RglKdj*JcGdac#EX^$**I`kRIRmONT*P!!;-KnGM8Fn.+8W>$A&0XKAU.Xf\\+=oGH'XBGJ' !ElN'XoDT(=oPN0>$5"2Za[DS?!7-.2m-`#\\#M!]Y&L%]Qh*"Zs6e;_VOGAk2YF[j1sI'Yh.I, f%&usWW6#nWW6#sWW6#tWWQ5#W`8qs r`&irr_s-&<2urt<2rpoWr>urWr>usWXi(/W`6!u<2urtWiB$uW`8tts&9B+<2urtWiN1%XK5S( X9)O,=oGH$=U(s1XBAZ,=oPN%=oPK&=oPK/=fe]/Z+.Zsgun\("mFdg^pU=rWh??om]88HU]5i~> rr2tdp6H&PR[]h=T:hpSV5F4l%stFK63%77[^W1X:h44kB jQ5RglKdj*JcGdac#EX^$*3L`kRIRmONT*P!!;-KnGM8Fn.+8W>$A&0XKAU.Xf\\+=oGH'XBGJ' !ElN'XoDT(=oPN0>$5"2Za[DS?!7-.2m-`#\\#M!]Y&L%]Qh*"YZFSL7ircn+!W9j2'5=_-VmYi ;cHaH.k4IG;,\qq@5W+QIYEcDQN!6[8kYLDR@?sFV,OCo<;3Bm<;rlt<;iirusWW6#nWW6#sWW6#tWWQ5#W`8qs r`&irr_s-&<2urt<2rpoWr>urWr>usWXi(/W`6!u<2urtWiB$uW`8tts&9-$<2urtri#uuVl!Ak V>a?mVZ*Fk;?isqVG^ rr;YW$CI6NS=Q:EU8(BhrW!H6#RVbRT!Yr8\SMBK!$Z+U!$Mc;aieWB!spBJf%6Z^&-Wb0U>k7q kNV9tm-a=p+9W^;rW!6Vf^AP\E^BhQe]u8.Fe&fE(]EGpaaO&K:fDsV&fE^$X`jDeJ^Y\tZ"n1mHmHWp7k8<@Ck2k^c jQ5OdkN:meiS<)9e'Q7W_ns7g_?Y_/^:^q\Y,eS&!*$e7rijr"Kei2Z*OA8!4;U/ "15D@[/.*2['R*GqQgmCZa7$GE4s9>hWO:qmH36N_6pJIJZ>BC"7E0G!Mf[F~> rr;YW$C@0MS=Q:FTqb6frW!H6#RVbRS[>i7\829J!$Z+U!$Mc;aieWB!spBJf%6Z^&-Wb0U>t=r k3;-qm-a=p+9W^;rW!6Vf^AP\E^BhQe]u8.Fe&fE(]EGpaaO&K:fDsV&fFZZa`jDeHXi'2al0R^$mHWp7k8<@Ck2k^c jQ5OdkN:meiS<)9e'Q7W_ns7g_?Y_/^:^q\Y,eS&!*$e7rijr"Kei2Z*OA8!4;U/ "15D@[/.*2['R*GqQgmCZa7$GE4s9>hWO:qmH36N_6pJIJZ>BC"7E6J!Mf[F~> rr;YW$C@0LS=Z@GU81EhrW!H6#RVbRT!Yr8\SMBK!$Z+U!$Mc;aieWB!spBJe^pQ]&-Wb0U>k7q kNM3sm-a=p+9W^;rW!6Vf^AP\E^BhQe]u8.Fe&fE(]EGpaaO&K:fDsV&fJqL4`3ZM@ImP4u+!2^Q,:Y?#0eY:<1,LdE 2`*9E0JbOC4@N"D='oZ_GC"U^H$Xd"ItEH;RA-X[WW6#7WWfB#Vl$;fr1sRoV5:&cVYm7oVPU,d V5F0e"fA,mVPU0fV$3`mV5C)dr1sRoV5:&cVYm7oVPU,eW2\IM'WJ%/V5:&cV5C)cUnXKPS!]S0 Q^I]=!1<_O!1<\P!1<_O!1<\P!1<_O&=,e=EEY[`,T\6e7:CV0TW*LBTW/+^W&"ILs*t~> s8N)Eop/+7R@B_;T:hmRUo(&hWiW>+Yd1RA[^WcXYEYft_8=11a2lEHc-F\`e'uq"f\5-9hVdAP jQ5OflK[a(n)WQZc04EWm-X6?n,qddam\fi8`/7WgXt-1g"P69f[nd/g>(H8f@\d1gtUK5f\,$9 hVI#Ehr!ALh;7/Sm-E]dg=Y'2g>1cPl07Ktm-3j$lKd^!fXn8cWjpd^mgedQmd0?/mI'?-md0?- li-8lmd0<.lfmQTbJh&uXf^0Uf@JNPda?@\^:(8IX/c"ql`0e\o;_Xdk,JD\eZ/YMn>lbpY-5+9 rNcL2pTjk,pTjk,pTjk,pTjk,pTjk,rNcX4Z*1=4gT1LZY->5.ZO+"I\%98f_84"*rkSTMrk\QM rkSTMrk\QMrkSTMrk\TN#/eB?cI_%>rp9pQgs3^DYH*5ST;i"]W\aaOs*t~> s8N)Eop/+8R@B_;T:hpSUo()iWiW>+Yd(OA[^WfYYEYiu_8F41a2uHIc-F\`e'ln"f\,$7hVdAP jQ5OglKdg*n)NNZc04EWm-X6?n,qddam\fi7GlhSgXt-1g"P69f[nd/g>(H8f@\d1gtUK5f\,$9 hVI#Ehr!ALh;7/Sm-E]dg=Y'2g>1cPl07Ktm-3j$lKd^!fXn9bWY3&"jm20smd0?/mI'?-md0?- li-8lmd0<.lfmQTbJh&uXf^0Uf@JNPda?@\^:(8IX/c"ql`0e\o;_Xdk,JD\eZ/YMn>lbpY-5+9 rNcL2pTjk,pTjk,pTjk,pTjk,pTjk,rNcX4Z*1=4gT1LZY->5.ZO+"I\%98f_84"*rkSTMrk\QM rkSTMrk\QMrkSTMrk\TN#/eB?cI_%>rp9pQgs3^DYH*5ST;i"]X>L$Rs*t~> s8N)Eop/+7R@B_*Yd1RA[^WcYYEYft_8F41a2uKIc-F\`e'ut#f\5*9h;I8P jQ5RglKdg)n)WQZc04EWm-a?An,qddam\fi8`/7WgXt-1g"P69f[nd/g>(H8f@\d1gtUK5f\,$9 hVI#Ehr!ALh;7/Sm-E]dg=Y'2g>1cPl07Ktm-3j$lKd^!fXn8cWfKaN+"nia,:4Z\,U"K\,:4]_ .4$2a+XSK[.4m:m)''nJ-n&"C;,L7A=^5HVJs2b%WN,eol`0e\o;_Xdk,JD\euJbL"fS>sVPU0f V%';uV5C)dV59lXS=>q7rg3YP!13VOrg3YP!13VOrg3YP!13VOrg3YP!13VOrg3YP!13VOrg3YP% @ s8N(eop/+7R@B_;T:_gQUo()iWiW>*Yd1UC[^WfY]=kqo_8=11a2lEIc-F\`e'ut#f\5-9hVdAP jQ5OflK[a(n)NHVbNJ-Tm-X6,n0.8dmHj-'lg3s)m-C[fZh:E['-U;XT,?\WrB'lX9Pf0YHY:;ZMh*0[/%$:['mKU]t_A!_SX4- _Yq:T^qmn)_ns:h_$7]k_SX4-_Yq:T^qmn)_ns:h_$7]k_SX4-_Yq:\^qmn)_ns:,_8*ds\@/d? ZN.B,ZN.B,ZN.B0ZOsXU]=u(s_SO(*_Sa@6c-XqirRM,%eC2ptqpko#eC2ptqpko#eC2ptrRV##% ,0S"lgF90k1n4r[BG.]SZ2eRY;QEVs*t~> s8N(eop/+7R@B\:T:hmQUnt#hWiW>+Yd1RA[^WfY]=ktp_8F41a2uKJc-FY_e'ut#f\,$7hV[;O jQ5RglK[a)n)WTYbNS3Um-a<-n0.8dmHj-'lg3s)m-C[fZh:E['-U;XT,?\WrB'lX9Pf0YHY:;ZMh*0[/%$:['mKU]t_A!_SX4- _Yq:T^qmn)_ns:h_$7]k_SX4-_Yq:T^qmn)_ns:h_$7]k_SX4-_Yq:\^qmn)_ns:,_8*ds\@/d? ZN.B,ZN.B,ZN.B0ZOsXU]=u(s_SO(*_Sa@6c-XqirRM,%eC2ptqpko#eC2ptqpko#eC2ptrRV##% ,0S"lgF90k1n4r[BG.]SZ2eRY;QEVs*t~> s8N(eop/+8R[]e*Yd1UB[^WfZ]=kqo_8F41a2uHHc-FY_e'lk!f\,$7hVdAP jQ5RglK[a)n)WQXbNJ-Tm-a?.n0.8dmHj-'lg3s)m-1,V'O4\]I5M3jm1qP=7jV5F'b!iDfkq5".iV5F'b!iDfkq5".iV5F'b!iDfk q5"@oV5C)cVPgAljJr3Yrhodm"/_okVYm7nU7\!GRf8`SQiEEQQi*6YQBR>cK7JH!H?sl9HO"tH I=6KhH?oL:#CUuJI=-?eH2`-qI=-HkI!U*ard+luI!pEjH?sl9HO"tHI=6KhH?oL:#CV&PM2mdc R/NHPR/WEPR/NHPR/WEPR/NHPR/WEoR$jA/PE(HMI=6HhI!U*_F)>Go=]A9r;,^Fp=&r="rD s8N(`op/+7R[T_:T:hmQV5C2jWiW>*Yd1RA[^WcX]=kqo_8=.0a2uKIc-F\`e'uq"f\,$8hV[;O jQ5OflKdg)n)NHVbNJ-Tm-X6+n-&1JmdBKAmK;qGmd:#A"7P[GmJcMUn*]W2rpK^Q!q>[JrU1?f n*]Q-m-3j$lKdWmh:^K6g&0J*f@7dHX8An9^XCijhW*b\kN:mgjlPRajlY^gk3)!pmd0<.rp:Kf md0<.mHs9+m-Ecgd`K>:[^V7K_#_EhrPJQM"iJ=$cI15@ec+,&g"bKEjS\0?jTOW)k2ke)k5XNGj5f@akPaQC jTOW)k2ke)jpUA:m-jB0khOFt[BG.]S>l\QY;QEVs*t~> s8N(`op/+7R@B_;T:_jQUo(&hWiN8)Yd(LA[^WcX]=ktp_8F41a2lBGc-FY_e'uq"f\,'8hVdAP jQ5OglKdj*n)WQXbNS3Um-X9,n-&1JmdBKAmK;qGmd:#A"7P[GmJcMUn*]W2rpK^Q!q>[JrU1?f n*]Q-m-3j$lKdWmh:^K6g&0J*f@7dHX8An9XM3'7hW*b\kN:mgjlPRajlY^gk3)!pmd0<.rp:Kf md0<.mHs9+m-Ecgd`K>:[^V7K_#_EhrPJQM"iJ=$cI15@ec+,&g"bKEjS\0?jTOW)k2ke)k5XNGj5f@akPaQC jTOW)k2ke)jpUA:m-jB0khOFt[BG.]S>l\QY;QEVs*t~> s8N(aop/+7R@B_;T:hpRUo(&hWiN8)Yd1RA[^WfY]=bkn_8=.0a2uKIc-F\`e'uq"f\5-9hVdAP jQ5OflK[a(n)WQXbNS3Um-a<,n-&1JmdBKAmK;qGmd:#A"7P[GmJcMUn*]W2rpK^Q!q>[JrU1?f n*]Q-m-3j$lKdWmh:^K6g&0J*f@7dHX8AnOJ6>K85rUSS0JYF>1c%!J1bpd=1,1@0,:+Z[,U4Q] ,:+Z[,U4Ta-7:T<=_rMDOd>s4!1<\P!1<_O!1<\P!1<_O!1<\P!1<_O!1<\P!1<_O!1<\P!1<_O !1<\P!1<_O!1$^6[0 L4au)IXHHfH2`.$I=-HkHZsOIA6iAAsK!<)lt#@VMkGC+adI!p?gH?jg_H[U s8N(aop/+7R@B\;T:_jRUo()iWiW>*Yd(L@[^WfY]=bkn_8F41a2uHHc-F\`e'uq"f\5*8hV[;P jQ5OflKdj+n)WNWbLkM>prRi@`pBgtgc@h;$lBh;$fAgtpiBgt^`@hV?rBgtgfEhV?rBhV?rC gtg`>e&8f%Zi.-3YG%#/Hh_geEb8JM<.%f#OdVrDXf\\*XK/A"W2cr$YHP4A_og0IdFHq(g"b96 h:p],4K7\Z+K7el2KnY/3Jq8N+K8"u4KnG#0JV&N,KnP/6K7ec,JqJ]0 KS>,4K7\Z+K7el2KnY/3Jq8N+K8"u4KnG#0JV&IZJUi)hDJ<]oAc?<@B)lQBAc?<@B)lQBAIN0` BP_U1H@:?rJqSaTKE$U9L5V1]TVA<]VlHi#Y,n\*X/`+sX0/e>^W4F9b0A2Wc-+ATbK7iKc-=SZ bK\5RaiMZMc-OYXc-+;PaNMiQccsYXbKJ#KbK\;Xc-+ATbK7iKc-=SZbKS,PaM>?mY,\CuWiQ-# #Hk21Wi)eqX8]1*Y-"e*Vl6VrriAYnXfSP#Wi`P9_9'mDc-+;TbKS;[f@eg3g=k?8g=b$0gY(B9 g>(B8g""d1g"b<8gtCE7e_/^1gtLK;g"Y<:h:KiZRXSpUJQ/.="TRSe2?BTQJ,~> s8V_W8!fX4S=Q:FU8+N\W2ZeuXfnt7Za@0M\@T;c^;.S&`5Tahs0/QgtpiBgt^`@hV?rBgtgcBgtgc@h;$lBh;$fAh;I/Fh;$lBh;-lB gY:2q\ZrL>Ylq8(O+M`RGQMnt=nu$EtXK/G'Wi2krXKA\0Z+7cpbK\Gbg"P-7g"G39 gY196gXa]g[A9+ILPCJ9KnG#0JV&N,KnP/6K7ec,JqJ]0KS>,4K7\Z+K7el2KnY/3Jq8N+K8"u4 KnG#0JV&N,KnP/6K7ec,JqJ]0KS>,4K7\Z+Jd?pXHZX.>An>QQB)ZECB)QlXKAY,X/rA%W2Qc"ZamikaN)HJc-OYXc-+;PaNMiQccsYX bKJ#KbK\;Xc-+ATbK7iKc-=SZbK\5RaiMZMc-OYXc-+;PaNMiQccsYWb0.lA\[/H=Vl6Vrri?@- XfSP#W2cotX9Yo1XK&1sWiQ-#8?T(rWi)l!Z+.WlbKJ/RbK\5ScdC@tf\G37gtCE7e_/^1gtLK; g"P-0g"Y38g=k?8g=b$0gY(B9g>(B9gtUZ:bI s8N(aop/+7R@B\;T:hpRUo()iWiN8*Yd1UB[^WcX]=bno_8F41a2uHHc-FY_daZh!f\,$8hV[;O j5oFelK[a(n)WNWbLtS'h;7&Si@`pBgtgc@h;$lBh;$fAgtpiBgt^`@hV?rBgtgfEhV?rBhV?rC gtg`>e&8f%Zi.-3YG%#/Hh_geEb8JM`g &eP`j&eYlp*@39o3'05$4T@SD56!eE4T@SD56!eE4T@SD56!eE4T@SD56!eE4T@SD56!eE4T@SD 56!eE4T@SD4pF/65!_V-9)D6]9(tsY9))$_8k;E=69tN6!BiXG4o[VJ4#o2T0.m/R""G`J./k[p .L[gW-mg/\*#fk9)&O1h)$_&t)B0S4(`3/h#9"Hu)]BS2(]G9W)AsG4)AsA.rYYqZ)&aG4)&O1h )$_&t)B0S4(`3/hru)(\+!N$[.P(KJr[Ijq!\#TLr[Rmrs!Rpt.P(KJr[Ijq#Uq5R.Oc_i*uk.r !#khS!>cON'/1"2&ePci&ekrk'+kii&JGci'G;#l&J>]g'+tol&eYii&eYci&eP`f',i,N5>"_& <1Hnjs5g@?!Mf[F~> s8V_W8!o^6S"61EU84T]Vl?\tXfnt7Za@0M\@T;b^;.S&`Pom=aihrSd*^=ke^rI,gt^cEiSrq[ k32*qmI'H(j3l,nbKS5Xd-B%1_oTa8_o0R4aMZ$8`5]^9_oBU4`l#m8`l#a7_8YaPKnfS\#(qJUI"$TurIkH.JUVuqJ:mfS#(qJUI"$TurIkH.JUVuqJ:mfS #(qJUI"$TurIkH.JUVuqJ:mfS5(eE8I"$TrIWT+#9LqW@7n-$@84Z3<6q'L67S$*A84H!8779[< 9iYP7EHck^JV&K)K7\]/L5_@iVlHr(G-%sU[CETL['?p?Xg5@E]th\._T9mAc,RfI`lQ3;aNDWL `lH9BaN)0=b/qoJa32KDa25p?aj%iGbJqWD_T9mAc,RfI`lQ3;aNDWL`lH9BaN201\@&TCYHkF? Za7-K['?^9ZE^dCZa[?LZ)k.7Z*^jD8%5n5Z)k1:[Cj>tai;NE`luHCbK%fLa32QFbJqWD_8j[; bK.cJ`lQ3:a2u?EaN2QEaN)-;ai;NFaNMTEaM56^M./Rj%Y4VM!!Q@%jf^QCU]5i~> s8V_W8!fX4S=Z@GTqnK\W2ZeuXfen6Za@0M\@T;c^VI\&`Pom>aihoRcdC4jf%8R-gYCZCiSrq[ kNM3rm-a?&jO22mbKS5Wd-B%1_oTa8_o0R4aMZ$8`5]^9_oBU4`l#m8`l#a7_8YaPKnfS\#(qJUI"$TurIkH.JUVuqJ:mfS#(qJUI"$TurIkH.JUVuqJ:mfS #(qJUI"$TurIkH.JUVuqJ:mfS5(eE8I"$TrIWT+#9LqW@7n-$@84Z3<6q'L67S$*A84H!8779[< 9iYP7EHck^JV&K)K7\]/L5_@iVlHr(G-%sU[CETL['?p?Xg5@E]th\._T9mAc,RfI`lQ3;aNDWL `lH9BaN)0=b/qoJa32KDa25p?aj%iGbJqWD_T9mAc,RfI`lQ3;aNDWL`lH9BaN201\@&TCYHkF? Za7-K['?^9ZE^dCZa[?LZ)k.7Z*^jD8%5n5Z)k1:[Cj>tai;NE`luHCbK%fLa32QFbJqWD_8j[; bK.cJ`lQ3:a2u?EaN2QEaN)-;ai;NFaNMTEaM56^M./Rj%Y4VM!!Q@%jf^QCU]5i~> s8V_W8!fX5S=Q:EU8+N]W2ZeuXfen5ZF.-M\[oDd^VIY&`5Ta;aihrSd*^:kf%8R.gt^cDiSrq[ k32'pm-a?&jO22mbKS8YdH].2_oTa8_o0R4aMZ$8`5]^9_oBU4`l#m8`l#a7_8 s8V_W8!o^5S=Q:FTqeE\W2ZeuXfen6ZF.-M\[oDd^;.S%`5Tdaj%iGbJqWD_T9mBDpHJIa25p?aj%iGbJqWD_T9mAc,RfI`lQ3;aNDWL `lH9BaN)0=b/qoJa32KDa25p?aj%iGbJqWD_T9mAc,RfI`lZEHcH45L_T0a;bK%WIai_Z@a2l9D a2ZBGb/_B>aMuED`m)WJa25m=`r=.6b/VWF`luHBb/1s-\@AoQ[Bm0CXKSt9[^L$JH2/>"fhU\UGDtHs*t~> s8V_W8!fX5S"61DU8+N]Vl?\tXfen5ZF%'L\@T;c^VIY%`5Td=air#Td*^=lf%8R.gt^cDiSrq[ k32*rm-a?'j42E;l0@X&me-)CdK5DjNW"k=NKK5!NWP3&NW"kUNKK3\NfAsIEa2*t4$,Vf4ZbSX -lNL"$3pq:#QY)0kl:to&/Q6)*?6"aj%iGbJqWD_T9mBDpHJIa25p?aj%iGbJqWD_T9mAc,RfI`lQ3;aNDWL `lH9BaN)0=b/qoJa32KDa25p?aj%iGbJqWD_T9mAc,RfI`lZEHcH45L_T0a;bK%WIai_Z@a2l9D a2ZBGb/_B>aMuED`m)WJa25m=`r=.6b/VWF`luHBb/1s-\@AoQ[Bm0CXKSt9[^L$JH2/>"fhU\UGDtHs*t~> s8V_W8!fX4S"61ETqeE\Vl?\tXfen5Za@0M\[oDd^;.S&`5Td s8V_W8!fX5S=Q:FU8+N]Vl?YrXfen5Za@0M\@T;c^;.S%`Pom=aihrScdC4ke^rI,gt^cDiSrq[ k32'pm-a?&j42E;iT'"]kP"*?nC%:)!7Li8!7LhY!&jeg!&jeg!&jeg!&jeg$8oK/]"'#iY-"f2 rN-5/XK/D%!<&nt!<&nt!<&nt!<&nt!<&nt!<&nt!<&nu"0;F&!!iJ(!!`D'EsJeLY-8bL[C<_0 ^qmn(8A`6]`*(IAjQX\Pm-X2[md9E0`pN-Xm)eV^mHr*`mHj,YmHj9.aR8E^m(r&Um-_s^md0>] lKmp)bO+]bm)\PYm-Vg\mHs>]mHj-)amAH_mE=k`m-;XYm-a5SkN(adZ2WkjkI'I6j5dN-roPfA k2tdcYN=m.k-X@:m-M^Zm-O/[m-a6-b3\Q`m`t4em-Da[mI'>]md0?-_Z&qHm`"DPjQ3c2kN:m5 jlPRaZ0(33k-F.2jlEQ*k2tj6jlY[dYN4g-k.'R8k2io0jQ5O3kN:mgZ/t'-jg=15k2iu4kNV?X mHs9+a6i6]m)JJ\mHh^VmHj8]m-a9.a6W*Zm*"b^md80`lg4#Ymd06&[-$K3&a$@[jPes[g"=p- L"=f(dsfjHed@,^f%&8teCE.$L&TX-eUGuse^fHRedL#WdEKVF.']nSWW s8V_W8!fX4S"61ETqeE[W2ZeuXfen6ZF%'L\[oDc^VI\'`5TdioB(]kP"*?nC%:)!7Li8!7LhY!&jeg!&jeg!&jeg!&jeg$8oK/]"'#iY-"f2 rN-5/XK/D%!<&nt!<&nt!<&nt!<&nt!<&nt!<&nt!<&nu"0;F&!!iJ(!!`D'EsJeLY-8bL[C<_0 ^qmn(8A`6]`*(IAjQX\Pm-X2[md9E0`pN-Xm)eV^mHr*`mHj,YmHj9.aR8E^m(r&Um-_s^md0>] lKmp)bO+]bm)\PYm-Vg\mHs>]mHj-)amAH_mE=k`m-;XYm-a5SkN(adZ2WkjkI'I6j5dN-roPfA k2tdcYN=m.k-X@:m-M^Zm-O/[m-a6-b3\Q`m`t4em-Da[mI'>]md0?-_Z&qHm`"DPjQ3c2kN:m5 jlPRaZ0(33k-F.2jlEQ*k2tj6jlY[dYN4g-k.'R8k2io0jQ5O3kN:mgZ/t'-jg=15k2iu4kNV?X mHs9+a6i6]m)JJ\mHh^VmHj8]m-a9.a6W*Zm*"b^md80`lg4#Ymd06&[-$K3&a$@[jPes[g"=p- L"=f(dsfjHed@,^f%&8teCE.$L&TX-eUGuse^fHRedL#WdEKVF.']nSWW s8V_W8!fX5S"61DTqeE\Vl?\sXfen6ZF.-M\@T;c^VI\'`5Td-6jf:,:4]_!$rm;,60#7 -7&X@,pXf;,pac_!$s'?,QK&8,pNC9,q1,?-6jf_!%'!<.0(V?,:3CF2)R/i1B0-h0E,U!.>1,^rh 0eY:<` 1G:=-!$id8.0(Y@,:*=5,U4T8,pal_!%&j7,60/=,piU<-6XW7,q1,c!$`g@0*!a`1bo%g2'k=N !)$'a;#jNo<`]9$;c-Bl;,^Fp!*3)u;#jHj;cE`u<`N&ur_X&&!*a)WJH217Wi?'tWW3%tWW3%t WW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%t WW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%t WW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW3%tWW`@\TeZ\E s*t~> s8V_W8!fX5S"61EU8+N\W2ZetXfen5Za@-L\@T;c^;.S&`5]j=aihoRcdC4jf%8R.gYCWCiSrnZ k32*qm-a?'j42E;iT'"\kP"*?nC%:)!7Li8"k'NSXfVm.XT>L1rN-)-XT#=*#d(51XU+p.!iuL) ri,qurMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMg5*WiE,#"K\`. YSXVEZ[Wq$Za@+l_91^m-`m-a6+_!'qBjK[k0kN9)4jlPR*jo4CaWnl=XeUuH) f%#E'e^W*!f%/I(K%AK&e:#luf%5Q)f%&<"eCE.$L=Xo+eUZ0!e^fH+f%&?&e^W+!K@\Z*eV2T- h;bp*k2kX,jlPXeZfgK5jfIP)jlWo3kN:p3j5f=`[-$N6k-X71jQ3Z/j5/LGf)F2,JCN&ob?Ms( _no"E_$@bD_84"*8](JC!(6b%#Js$K_SO&V_#D.M8cHR3_*YlI[^$=Bri,qurMfhtrMfhtrMfht rMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfht rMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfht rMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMg##i1i(0U]5i~> s8V_W8!fX5S"61ETqeE[W2ZeuXfen6ZF%'L\[oDd^;.S%`Poj=aihrScdC4ke^rI-gt^cDiSrq[ kNM3rmI'H'jOMQ>ioB+]kP"*?nC%:)!7Li8"k'NSXfVm.XT>L1rN-)-XT#=*#d(51XU+p.!iuL) ri,qurMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMg5*WiE,#"K\`. YSXVEZ[Wq$Za@+l_91^m-`m-a6+_!'qBjK[k0kN9)4jlPR*jo4CaWnl=XeUuH) f%#E'e^W*!f%/I(K%AK&e:#luf%5Q)f%&<"eCE.$L=Xo+eUZ0!e^fH+f%&?&e^W+!K@\Z*eV2T- h;bp*k2kX,jlPXeZfgK5jfIP)jlWo3kN:p3j5f=`[-$N6k-X71jQ3Z/j5/LGf)F2,JCN&ob?Ms( _no"E_$@bD_84"*8](JC!(6b%#Js$K_SO&V_#D.M8cHR3_*YlI[^$=Bri,qurMfhtrMfhtrMfht rMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfht rMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfht rMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMg##i1i(0U]5i~> s8V_W8!fX4S"61ETqeE\W2ZeuXfen5Za@0M\[oDd^VI\'`5TdL1rN-)-XT#=*#d(51XU+p.!iuL) ri,qurMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMfhtrMjlQ^3g8I;2bM!&,rM,QK&8,pNC9,q1,?-6jf_!%'!<.0(V?,:*=7-7'r<,pXf^!$rj: ,lfA?,UNL;,pO`:,q1,c!$`d9,60#9.4"s@,:+W9-7're!$im9,60#=,pb\S,:+Z[!$`d=,lf8: ,piU;,:+c=,pji_!$NR2,6/r7-6`F:,:4Z9-6jid!&$&`2ZPTf0/4g3'g.:;>sNN!*<<2B)m!q H$KC:H[U;BH[C$a!-rp s8V_W7[KO3S=Q7DU8+N]Vl?\tXfnt6ZF.-M\@]Ad^VIY&`Q#s>aihrScdC1ie^rF+gYCZDiSrq[ k32*qmI'H'jO;?9iT'"\p#lGGdeN;3deKgB!;NPo!;NPo!;NPo!;NPo!;NPo!;NPo!;NPo!;NPo !;NPq!33'uX8T+"#Q:_3YI(pZbBhjuj5oCcroP9.jlPO`k2kdgk-a@5jl>Fajlbd5k2tdej5f@a kHt6Ns5aCDjQ>R4rT=.A"QSS*ZKM2Ks5aCDjKmt2rT=.A+f%,B#eCE+Kef35lK@SH#e^`0sbf s8N(aop/+7R@B\:T:_jQUnsugWiW>*Yd1RA[^WcX]=ktp_8=.0a2lBGbg+S_e'ut#f\5*8hVdAP jQ5Ofl0I^(n)NNYbNImFjQ>Y!kQ12$q!\:3po4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;o po4;opo4AqWiH'!rN#u(rN$C1[(F6!HJ.08jlP\)jrUkjjl>Fajlbdg[H?T4j5f@akN9/6k2k^b jQ>Re[/T4fjTOW)k2j&Mk5XNGj5f@.kPaQCjTOW)ZfUBKk5XOCj07\.l0@[&lg4#Ymd0<.mHs9+ m)\P]m-O0-mHj/ZmHj9-m-a6+l+#pE _FVP]_SZ8f#/E[E_Sa7-rP8\*_8=(,_SZ;g.R_(g_SX4-_SO&W_8*n(_Sa7-_*l,U^qmn)_ns8] _oBmHe^i:$dsfitrmh>+f%/B!eCE+Ked'gXepu6!e^aZM)qWYne^N$ue^W!ja%jOh_8=%(^V%** [C! s8V_W8!fX5S"61ETqeE[Vl?\sXfen6ZF%'L\[oDd^;.S&`5Td=aihrScdC4je^rF+gt^cDiSrq[ kNM0rm-a?&jODE:iT'"\kP"*?nC%+$!7LYB!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo !!)eo$37*+WMl_kV5C'hrMsK)<)ls!4J,HN8A;rd+luI!pDCH?sl9HO"tHI/nY@H?oL:#CUt"I=-?eH2`-qI/n\DI!U*ard,C\I!pEj H?sj`HN8;2BO+V:;cQm!\7mSH$apc I=?^$MZB!,QC!r*rg#+1gH!1B7BrKdSQR/m5S!1<_O#+,C[T;&3]rMfhtpo4;opo4;o po4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;o po4;opo4;opo4;opo4;opo4;opo4Jsjf^QCU]5i~> s8N(aop/+7R@9Y:T:hmQUo(&hWiW>*Yd1RA[^WfY]=bkn_8F72a2lBGbg+S_e'uq"f@ep6h;I8O j5oFelK[a(n)NNYbNIjEj6#OukQ12$q!\:1po4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;o po4;opo4;opo4;orMg4*Xg#4E7)mHteCFNK"bY@Te'uqHecpiZe^W'tec+,,L"=i*eC2ptf%,QS ecs[Se'uq!L&KR+e^W'teV!eN"P)#Ne:@GI%FrtWJC`B-i8`nYjQ3ZGjp1)3k2kXaZK;)J.-KaT jl_:O8H$C)^]V9][ibLR"L>88%'B?,!!`5"!!i;#!!`5"!!iM(ql0Vrpo4;opo4;o po4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;opo4;o po4;opo4;opo4;opo4;opo4;opo4JsiitECU]5i~> s8V_W8!fX5S"61ETqeE[Vl?\tXfen5Za@-L\@T;b^VI\'`Poj=aihrScdC1ie^rF,gYCZCiSrq[ k32*qm-X9%jO;?9iT'"\kP"*?nC%+$!7:M@!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo !!)eo!!)eo!!)tt$EL;5[CScGbg=kirRM.)e^W'tec"&'L"=f(e'uqIed@,^f%&:!eCE.$L&TX- e^W'te^fHQecjURe'up#r72#$eC2otqpl5,eC/s!f\>?EjQ#=_Z2WkjkN:pgj5dN-roPWlk2tdc YN=m.jlPXbi7s@Ef%&@%e^i:$K%8B!cH=/F_SJ[X_Sa7-rP8n0_8=%(]t(SYZQ-m.*_>h:Q]t1Zpqm-F2YceJ;q5aQ#poFH#poFH"poFH#ri>pr!!)eo!!)eo!!)eo !!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo !!)eo!!)eo!!)eo!!)eo!!)eo"TRMf3!#fSJ,~> s8V_W8!fX5S"61DU8+N]Vl?YsXfnt6ZF%'L\@T;b^;.P%`5Td=aihrScdC4ke^rI-gYCWCiSrnZ k32*qm-X9&j4)98iSrq[kP"*?nC%+$!7:M@!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo!!)eo !!)eo!!)eo!!)tt$E9kmPDK9ZB3eS.F<*!'#;GK_H2`3NO1B90d1GCO=1cI8l1bpjC 0JP=>2ZPWj1,CaC2a9_2:]42l<;of*!**$'@r$+/H[Pm?H?oL:&q,.U!.9-@I>!TCQC.`>Q^F/, rL!Wcrg3YP!13\Q! s8N(aop/+7R@B\:T:hmQUnt#hWN<5)Yd(OA[C<]Y[lXjl_8F41a2lBGc-FY_e'uq"f@ep6hVdAP j5oFelKdg)n)WQYbin'Hj5oItkQ12$q!\:Lpo4;od&I'Gd&I'Gr2Tdt#Hb5:\%9;h_>V7M_#V:M _>V7M_#V:M_>V7M_#V:M_#qPF_SZ;g!5STMrPJQM!5STMrPJQM!5STMrPJQM$c'Tr`Q?BPe'lgs Jc=4*f@JO'e'upurmh8)f%/C#eGRi&eBuO_`PfX0_Yq=N_@48r^:Uqa['R(WZa7%4ZN@D8Xl6>] #3)]cY-5,(ZN.B3ZN(p@ZN.B,ZN.B.ZN@D8Y557!X7rUo!77_G!77_G!77_G!77_G!77_G!:Hii s5L:B!Mf[F~> s8N(`op/(6R@B\;T:hmQUo(&hWiW>*Yd1UB[^WcX[lXjl_8=11a2lBGc-F\`e'uq"f@o$8hV[;O jQ5OflK[a(n)NKXbNImFj5ost!V"P4n,VeLWW3%GWW3%GWW3%sWrK+)Xg#.@]"YtrrPJQM!5STM rPJQM!5STMrPJQM!5STM"2[UG_Z%@O_#D1K_Z%@O_#D1K_Z%@O_#D1K_Z%@Z^qmq-aj&5^e'up! rmh>+f%/C#eCE+Kecj[Vf%&7!r7))&dETeP`59@-rPANN%)K`n]=GAWZa1RVZaBG4!jSr2iN*"` iiE3aYHdf-!4;a3!#ka@!4;L,!4;R.!jSr3qQ0[spSn2nd&I'Gd&I'Gd&I'Gd&I'Gd&I'Gm]$Ei j0CWFU]5i~> s8N(aop/+7R@9V9T:_gPUnsugWiW>*YHbC?[^WcX[lXjl_8F41a2lEHc-FY^e'uq"f@ep6hVdAP j5oFelK[a'n)WNYbidsEj5oItkQ12$q!\:Lpo4;od&I'Gd&I'Gr2L:,Vk]lOOc"d?I!L$`H$ao; IK+WtH$Xa]H[Ga?s*FopH?jd_HiAHnHNeZpH$Oa`rdFfn"aPE>H$ao;IK+WtH$Xa]H[Ga?s*GB( H?jd_H[U@_SlGC"U_IK"R$H@('g Jr,JNQC"!>rg3YP!13VO#FCgGSY2aSVYm7oVPU,dV5F0e"fA,mVPU0fV$3`mV#[?hr1sRoV5:&c VYm7oVPU,dV5F0e#c=GnTUhLrg<\O!LNldRJrTQQN3EORJrTQQN3ENR1,UXU8=``V5C)c Vl6ThWW3%GWW3%GWW3%GWW3%GWW3%GWW3%eWW`@`Y;QEVs*t~> s8N(eop-J^R@9V:T:hpSUo()iWiW>*Yd1UB[C<]XNW&o-Xi&)ra2lBGbg+P^e'lk!W%0DMhV[;O jQ5RglK[a(n)WT\cKF0Gj6#OukQ12$q!\:>po4>pWr<"uWr<"uWr<"uWr2qYWW<+"rW)turW)qt !!*"urW(uY! s8N(eop-J^R@9Y:T:_gPUnsugWiW>*Yd(L@[Cpo4>pWr<"uWr<"uWr<"uWr2qYWW<+"rW)turW)qt !!*"urW(uY! s8N(eop-J_R@B\:T:_gPUo(&hWiW>+YHbF@[C<]XNW&nhXhr#qa2uHHc-FY_e'lk!W;\=`hV[;O jQ5OflK[a(n)WQ[c0+'FjQ>Y!kQ12$q!\:>po4>pWr<"uWr<"uWr<"uWr2qYWW<+"rW)turW)qt !!*"urW(uY!.I=)$ArW)tErVutHIJs3IH$]Dh*diB_I!pHrM3!me Q^O5/R$X5-Q^O82T:r$VVPO9hrVutqVZ$PqV>UApVl9Rpj/N+[Wr<"uWr;tuWr2qtWr2qjWX>]& VPU,dV5C)cVYm7lV?!Lm!<8np!!]^H$V5C)dV5:&eW2]0a! s8N)Eop.1rR@B_;T:_gPUnsugWN3/(Yd(L@[C s8N)Fop.1rR@B_;T:hmQUnsugWiN8)YHbC?[C<]XYT*Wr^Ve"/a2uHHc-FY_e'ln"S,NC'h;@2M j5oFelK[d)n)NN[c0+'Fj5oItkQ12$q!\9ppo4]%WW9'!!3-%!WW3%uWWE1#!9'ph!3-%!WW9%! Wi?'!!!'%!! s8N)Eop.1rR%'S:T:hpRUnsugWiN8)Yd(OA[^WcXYT*Wr^;In.a2uKIbg+P^e'lk!Rf3:&hVdAP jQ5OflKdg)n)NKZc0+'GjQ5RukQ12$q!\9ppo4]%WW9'!!3-%!WW3%uWWE1#!9'ph!3-%!WW9%! Wi?'!!!'%!!!1B5TR/iVA!1*\QrL*\Q s-WqYT:u4["/_okVZ!=nVPgAlrMgD/WW9'!!3-%!WW3%!WW9%!ri,qujJidlWW9'!!3-%!WW3%! WW9'!!9'ph!3-%!WW9%!Wi?'!WW3%!! rr;YW/XMloS=Q:FTqeE[Vl?\tXfen5ZF%$K\@T;_VS9j``5Td%WrN>%Ws/a. Ws,Q)"obP&"lu]a"oYJ-"fn](WW9'!!<0"t!9:'Z!<&nt!<&nt!<&qt!oTJ,~> rr2t`p6I:sR%'S9T:hmQUnsugWiN8)Yd(L@[^WcX]=FfQ^r"%/a2uHH`MT]^daQauS,NC'hV[;O jQ5OflK[a(n)NKZcKO6Ij5oItkQ12$q="CPpSn2nrMfhtrMoktri,u!Wr<"nWpHbd"oYJ%"oYJ+ "fn[-X/cF'WrN=aWrN>%WsAm0X/`0"Wi?'uWr<"YWW3%tWW3%tWW3%tWrE(uWW3%bWrB'tX8iM( X8iM(X8iM(X98d0#6kG0XT,?fWW3%tWW3%tWWiI'WW9'!! rr2t`p6I:sR@B\:T:_gPUnt#hWN<5)Yd(OA[^WcX]=FiR_8=.0a2uHH`hoc^daQauRf3:&hVdAP jQ5Ofl0@X&n)NKZc0+'Gj5oItkQ12$q="CPpSn2nrMfhtrMoktri,u!Wr<"nWpHbd"oYJ%"oYJ+ "fn[-X/cF'WrN=aWrN>%WsAm0X/`0"Wi?'uWr<"YWW3%tWW3%tWW3%tWrE(uWW3%bWX,T&Vl$;f V#[ClV$d:"VPU-iV5C)c!2]Yp#c=GpVPU,eVl8s^!!)tt!!)tt"ot['!33%!ri,qujJi1[rMfht rMfr"Wi?'uWr<"YWW3%tWW3%tWWiI'!3-%!! rr2tcp6G_S%/p5@=Vh/W@&9d#Wg#pg#RVb]YID&c$N:#-TYk4FrW!7V$31&I[aWf=$2sr)%1RpK j0_Gl$Q*$pn)JrWi?%!ri5tu!NH/!WW3%tWW3%s WW9*bX98m3X9o=6XT&Y,X9/g2X:"s.!".eg":D63$4?d6rsAk/Wi?'rWW3%[WWW=%WW3%uWrE(u WrE&"WW<$u!!))["9>I%!!*"urrE%urrDts!!))["9>I%!!*"urrE"t!W]5#ri,qujJi=_Wi?%! ri5turMfhtr2K_sjJi=_Wi?%!ri5tu#-%['WW9%!ri,qujJi=_Wi?%!ri5tu"KDI%WW;ss!!))[ "9>I%!!*"urrDtsrrE%u!!))["9>I%!!*"urrDts!!)tt!!))["9>I%!!*"urr<)"!<0"u! rr2tdp6G_S%/p5@=V_)V@&Bj$Wg-!h#RVb]Yd_/d$N:#-TYk4FrW!7V$31&I[aWc<$2sr)%1RpK jL%Pm$Q*$on)SBnrW!#[RgT,ps6'K(+8u6BYV?=kq="C?pSn>rWi?%!ri5tu!NH/!WW3%tWW3%s WW9*bX98m3X9o=6XT&Y,X9/g2X:"s.!".eg":D63$4?d6rsAk/Wi?'rWW3%[WWW=%WW3%uWrE(u WrE&"WW<$u!!))["9>I%!!*"urrE%urrDts!!))["9>I%!!*"urrE"t!W]5#ri,qujJi=_Wi?%! ri5turMfhtr2K_sjJi=_Wi?%!ri5tu#-%['WW9%!ri,qujJi=_Wi?%!ri5tu"KDI%WW;ss!!))[ "9>I%!!*"urrDtsrrE%u!!))["9>I%!!*"urrDts!!)tt!!))["9>I%!!*"urr<)"!<0"u! rr2tcp6G_S%/p5@=Vh/W@&Bm%Wg#pg#RVb]Yd_,c$N:#-T>G(ErW!7U$31&I[FrWi?%!ri5tu!NH/!WW3%tWW3%s WW9*bX98m3X9o=6XT&Y,X9/g2X:"s.!".eg":D63$4?d6rsAk/Wi?'rWW3%[WWW=%WW3%uWrE(u WrE&"WW<$u!!))["9>I%!!*"urrE%urrDts!!))["9>I%!!*"urrE"t!W]5#ri,qujJi=_Wi?%! ri5turMfhtr2K_sjJi=_Wi?%!ri5tu#-%['WW9%!ri,qujJi=_Wi?%!ri5tu"KDI%WW;ss!!))[ "9>I%!!*"urrDtsrrE%u!!))["9>I%!!*"urrDts!!)tt!!))["9>I%!!*"urr<)"!<0"u! rVuSW!LI[&!#/5%9`P0!W2YCT!(*f^*<77a\@SC5!!An3`/X`r#uS-&!!#=7f%6Dj!"[rDiSpI4 !.j?4!#=)FjI,uIs5O*TrW)r]!2f_q"%V1W!;Z-XWWE1#!<&nt! rVuSW!LI^'!#/2#9`P0!Vl>:S!(*c]*<77a\[nL6!!An3`/X`r#uS-&!!#=6e^g5h!"[oCiSpI4 !.j<3!#=)Fjd?#Is5O*TrW)r]!2f_q"%V1W!;Z-XWWE1#!<&nt! rVlk_pQbiHD>jML:S1>]!*uM%K*VHDXJ6d9+fr5cU&G#oTYeX,rW!7%[RgH!6.FH:S,NBuhV[;O TEG7Gk>M?qf&PhYrW)uY!2TSoroa?ZrW!$jh7*I\nFij`!3-%tWW3%uWW3%uWW3%tWW3%uWopGb% ]g0=X8ib.X9/s6X:G62!"S(k!Y2:ArN#u/r2]l"ql0VrjJi7]WW rVlkapQbiHDZ0VMMkGq-!">[%)#sZ!Yd%X;!)L,9U&G#oTYeX,rW!8/c&;W&%b&tZS,NBuhVdAN )?9ccl(S.X>N=e3rW!#[jJ;bTroa?ZrW!&(kjWurn,VD?WW<+"r;Zhtr;ZhtrW)turW!#"X/tHc !>;O6&cr`K')iREXT0%6XoB"6'B?2+' rVlkapQbiHD>jMLN1c%.!">X$)#sZ!Yd%X;!)L,9U&G#oT>JO+rW!8/b_uN%%b&t[S,NBuhV[;M )?9cclD"=Z>N=h5rW!#[jJ;bTroa?ZrW!&(kjWurn,VD?WW<+"r;Zhtr;ZhtrW)turW!#"X/tHc !>;O6&cr`K')iREXT0%6XoB"6'B?2+' rVlkapQbiHD>jMLN1Yt-!">X$)#sZ!Yd%X;!)L/9U&G#oT>SU,rW!8/c&;W&%b&t[S,NBuh;I8M )?9cclCn7Y>N=e4rW!#[jJ;bTroa?ZrW!&(kjWurn,VD?WW<+"r;Zhtr;ZhtrW)turW!#"X/tHc !>;O6&cr`K')iREXT0%6XoB"6'B?2+' r;ZMW!LI[&!!8^`SGiKhLQ)34$)k&5GlRgZ\@SC5!!Ak1`/X`r!m&TMrW!&Le^g2g!!D*8iOSpf #j1E]!!!VjjI#oHs5O*TrW)r]!2f_q"5W21deiM6n):8HXlQVeVb0LK_la!AJZ=:$JZ=:$fW#)S lDHH?U]5i~> r;ZMW!LI^'!!8^`Sc/TiLQ)34$)k)6GlRgZ\@SC5!!An2`/X`r!m&TMrW!&Me^p8h!!D'7iOSpf #j1B\!!!VjjdH)Js5O*UrW)r]!2f_q"5W21deiM6n):8HXlQVeVb0LK_la!AJZ=:$JZ=:$fW#)S lDQN@U]5i~> r;Qb^pm(rID>jM:S=c>N!!.k6rW!8'Yd&HR!#<#TU&G#oTYeX,rW!#@c'82-"4YlQRf39hh;@2% rW!5cl*gWm&`Vl>rW)uY!2TSoroa?ZrW!&Vkj[$tn,Vq9WW90^XokRo8=IH!!3LgPJZ=:$JZ@A& "TRea1BO?OJ,~> r;Qbppm(rID>jM:StD_U!!.FprW!8,YH`NV!!KgCU&G#oT>SU,rW!#Bc'82-"4PfORf39hh;@1h rW)s.!"Ai/!n-.trW)uY!2TSoroa?ZrW)u^!V"P7n,UboWW90\Y6%8rB_/D.:'gh!m]QXn#lXi( Y5q`2rW)Mm!3LgPJZ=:$JZ@G("TR\m3<>oTJ,~> r;QbppQbesrW!"kTV28a!IK7o!"#d3Z$lZQ"Lu%:rW!%n_ShH5!!:?gPl:XbeCN3?rW!&Vhr1I3 !<3N/%/p>1e)Znq!!;3AV#CAnkQ%LZ!<;6`nC%4'!7'W)!3P7a!_EE+o r;Qbppm(rID>jM:T:hkV!!.ForW!8,Yd/]X!!KgCU&G#oTYeX,rW!#Bc'82-"4PfOS,NBihV[:h rW)s.!"Ai/!n-.trW)uY!2TSoroa?ZrW)u^!V"P7n,UboWW90\Y6%8rB_/D.:'gh!m]QXn#lXi( Y5q`2rW)Mm!3LgPJZ=:$JZ@G("TReo3!#fSJ,~> qu6Y]q3D&JDZ0V;SY2MP!!.k6rW!8&YH`?Q!#2rSU&G#oT>JO+rW!#Bc'82-"4YlQS,NBih;@/" rW!5`lK[a(n)NJtrW!#Zj.ZGProa?ZrW)u^!V"P8n,VY4WW9-kY5jCX,P8/@J,s9PY5j%N!:?ri If9?HY5j%N!:[/lXF[C&We%1$WnaTWs6-gM!Mf[F~> qu?GW!LI^'!!8[_S,NBgLQ)34$)k)6GlRgY\@SC5!!Ak2`/X`r!mAfPrW!&Le^p8h!!D'7iOAdd #ik17m-a?&jI6&J!oi:7rW)r]!2f_qs6'LQderS7kN&WCXR`OpM#JXkY6'4TB(<&)If9?7Y5j%N !<0/%If9?:Y5kYTWe%1$We%2*WW`@c[5n>`s*t~> qu?GW!LI^'!!8[`S,NBgLQ)34$)k)6GlRgY\@SC5!!Ak2`/X`r!mAiQrW!&Me^g5h!!D*8iOAdd #ib.8m-a?'jI6&J!o`46rW)r]!2f_qs6'LQderS7kN&WCXR`OpM#JXkY6'4TB(<&)If9?7Y5j%N !<0/%If9?:Y5kYTWe%1$We%2*WW`@fZT%u\s*t~> qYpP\qN_/KD>jMLN1Yt-!"5R#)#sZ!Yd%X;!)C&8U&G#oT>JO+rW!#Cb`r),"4PfPT)J^#hTpr6 '`\6Nl0@V]?fU1DrW!#OjG!R5roa?ZrW)u^!V"P9n,Vn;WW93lYQ0.O!;*JrAomIG!.OnImB?S> rW)r%!.OnIn#uepNiEquZF@H\`5g'HdF?e%gu%)NjQ>[jlg4$,rU9^Q)XZnWlKRNqk2bO[hqd#= e^Mmib/V<5]!eoHJZ=:$N2d$\kd3>NU]5i~> qZ$AW!LI^'!#1BaM?!VaUSo%1!0OIi@K6C'\@SC5!!An2`/X`r!mAfPrW!&Le^g>k!"[r4L>N^G !5e!cm!<%!jJMnV!nZIdrW)r]!2f_qs6'LQdf&Y8mc:AJY48^rIf9?>YQ8?Wn?;nArW)>i!.OnI ricBOrW)Dk!3V?^(p1*Q]>);)bKeMbf@o$;iT'"]kiqF"mI'rArU(Tkm-Es$ki_*hio&_Mg=Xs) d*9_Q_S<[jZE8\XJZ=[/"TR\n3WZ#UJ,~> qZ$AW!LI^'!#1?`M?!VaUo5.2!0OLj@K6C'\@SC5!!Ak1`/X`r!mAiQrW!&Me^pAk!"[o3L>N^G !5[scm!<%!jJVtW!nZLerW)r]!2f_qs6'LQdf&Y8mc:AJY48^rIf9?>YQ8?Wn?;nArW)>i!.OnI ricBOrW)Dk!3V?^(o*L\LOXMeBjk4G:J4,B4?58R/hAG!,pW@2rui@+,:+Za.4[#)1H%6V5t+@? ;d!I qYpQnq3D"trW!X-TM5Cd>c4QP#67)mU)a4UWjoX6rW!%n_ShH5!!:?fPl:Xbe(*'_rW!\NN$.,G !<>dKlD=laj5\Am!!%hk.fKGIkQ%LZ!<;6`nC%:)!3>7^!3?"%!%Rru#:enp&=R`p&4L`os"Dqrq$2orW!5rp%7nLp%7qM q=Fd^o_&06s+13$s+14.rroG&l`2oEU]5i~> qYpQnqN_/KD>jML:S1>]!*lG$Jd29BXeQm:+0)i]U&G#oTYeX,rW!#Cb`r),"4PfP]`%mG`/Ght Q2ptYh!([BV;pR\$ig9`^af<`roa?ZrW)u^!V"P9n,TNOWW9*sYlH9Ped!\Uegf8%.[p>:&Lu?] f%)>%.b6*#egf6#f%)>MecRDQeggOI!1Nleq:5Tso_&4U!;6<_!VN\r!<2TjYPnM-o_%kKp%@tM p%e4^p%7qUJcC<$JcC<$i;Wt\s6HdG!Mf[F~> qYpQnqN_/KD>jML:7t;]!*lG$Jd29BXeHg9+0)i]U&G#oT>JO+rW!#Cb`r),"4YlQ]`%mG`/Pnu Q2ptYh q>UH9qj%8LDZ0VM=Vh/W@&9d#Wfogd#RMYZXgbf`$N:#-$?BS^rW!!.GR=?L*"8Llf6/,9$7`%7 j/bW\"Vj5%n)NHYM$a4_+FX4h!tMSX$N:#-%V,"VrpTp$k,JE`qQ^M^eu;%M!Z"W^f%(TCrW)s- !.4\t$e?r]eh/49&dedS^&HRj/uqGE";<7h][kZ&rW!Lh/d;\Vak##qo>"'7$Q31"rpp,mrW)rh !3Z;$rUU6/9b[sQ>LrQ?!;_9HJcC<$JcF^/"fhUgX#:!Rs*t~> q>UH9qN_+urW!X8('>C]V5L;lP=-/l#pEQU\%$SgrW!$-Eaf@S!!3RR$2soE%%u5(FrUSk.]D@f X@*X)'gA\ej5\[H$31&KIJs3K%^C*_rW!$1A+7qGn,U/aWW90tZ4&A:WC.@#(/ZO3eeSSk!<3K. Hi>W*eh5P)/gNgt$3_$TrmhH0X%!3p'.R5!f%-;h!"b,B"q+)Gf%)JF^eGLN)-b\ko)Prm!<2Qi Y5SG"o*3!)'FPd_f(\b9qLSZts+13$s5Et]WrMCe2Z]]RJ,~> q>UH9qj%8LD>jML=Vh/W@&9d#Wfogd#RMYZY.(oa$N:#-$?BS^rW!!.GmXHM*"8Llf6/,9$7`%7 jK(`]"Vj5&n)NBXM$a4_+FX4h!tMSX$N:#-%V,"VrpTp$k,JE`qQ^M^o>"'7!Z>2koCE_)rW)s. !0$n0$hH"Bo.D:_'FP'Vf)G7K0#CEf"Vre)earC8rW!M&1^=Fhjn&'ro>"'7$Q31"rpp,mrW)rh !3Z;$rUU6/9b[sQ>LrQ?!;`YoC%^)gS:G0N<)QUk:esh\9M7uL84Q0>770F/5sIRt4Zkee3B9&X 2Dm8P;]M9hnM];,U=l\o1h]\)q/s+13GrroG&m&;iCU]5i~> q#:?,r0@AMDZ0W&StMdPUnsugWiN8(Yd(L@[Ce@j5oItkQLD'nF4/BP!;V3GJcC<$JcFa0"fhUgX#:!Rs*t~> q#:?-r0@AMDZ0W&StD^OUo(&hWN3/(Yd1R@[CioT@skQLD'nF4/BP!;V3GJcC<$JcFa0"fhUgXZ$9Us*t~> q#:?,r0@AMD>jN%StMdOUo(&hWN3/'YHkI@[^WcX]=kqo_8F41`lQ9Ebg+P^e'ljuf@ep6hV[;O j5oFel0@X&n)NEYcJ5_>ioT=rkQLD'nF4/BP!;Wo"@IVI$5!1=&r=$<)QUj:ej_Z91qlK84Q0>6ps@.5sIOs4Ztkf3B9&W2Dm"6:4.17Ros>8kVfN9hnJ\:f:6k<>8J8=]np4?!UcD ?t!MS@qBA3X3U6ds+13OrroG&m&;iCU]5i~> p\t69rK[JND>jN%T:hmPUo(&gWN<5)YHbC>[^WcX]=bkm^r"%/a2lBGbg+P^daZguf\,$7h;I8N jQ5Ofl0@X&n)NHYcKF0Hj5oItkQC>&n%@e_!3c1($of((!5[3M!!#mHeX?C:psfo((]XQPeW^%6 ;:X,5!!&nqeH@poe^^)e!#3/tP5kRre^ZVu!!(aCVZ6^%naWa\!<2KgXo8>#nHnY'!!(aCVZ6^% p@/.WJcC<$JcC<$j8T:_s6H^D!Mf[F~> p\t69r0@>#rW)tj5bXsKV5L;lX0&P.Z*LaE\%'#]]Y;1t_SjF5aN;TKcHjnee(*(&g"Y<=i8N\U jlYajlKms-j5\_9kMbF]jlZ:#"7Xb-]]Q3oYP>F43#DVq_:=bM!)_:sRJm3]eIU+G!!'jcPQ1\\ e^GB9!2fbG"?MUoeX?C:'Y`+]!!!\_eMnKJ!8?t@!!$9onZDcjrp]ujrW)ug$1Af5!8?t@!!$9t nGr<7s+13$s+141rroG&l`E)HU]5i~> p\t69rK[JNDZ0W&StMgPUnsugWN3/(Yd(L@[^WcX]=bkm_8=.0`lQ9Ec-FV^daQatf@ep6hV[;N j5oFel0@X&n)NEXcKF-Gj5oItkQC>&n%@e_!3c1($of1+!8?t@!!$9onZDcjq!em`)ZTllnYZ?e >k.8&!!'\2nH;1QnaWa\!#4&TV>pT3naSRX!!(aCVZ6^%naWa\!<2KgXo8>#nHnY'!!(aCVZ6^% p@/.W\c7'G`LCjX@q/qT?s[/F>[(B7=BAO'Y:f1+h<)lq!=BSd1 >?kK@?XR;O@q9+]rauIMC27X2TZHVRs+13VrroG&m&;iCU]5i~> p&G#W!LI[&!(*nBL'p!3c.(!&FNR#h.>$!!!PZeX?C:psfAJrW!2PeYWoTJ,~> p&G#W!LI[&!<8ZVTqeE[Vl?\sXfen5ZEq!K\@T;b^;.P$`5Ta;aihrScd:.ieCW=*gYCZCiSrnZ jlksom-X9&jODH;iSrnZkP"*?nBL'p!3c.(!&FNR#h.>$!!!PZeX?C:psfAJrW!2PeYWoTJ,~> p&G#W!LI[&!(*9LTq\?ZVl?YrXf\h4ZF%'L\@T;b^;.P$`5TauThq!\:&rW!2kn@JZ#&b!^< !!)-[n-%t@nF3OY!!qu]X8i5$nF/75!!r#^])VgCn*mFX!<2HfXSr5"n,UH,!!_l\])VgCn+Q5N pV?fXkdQ@`C2%L_@U`bQ?=$oB>$5!1=&r=$<)QRi:esh\91qlK84Q0=770C.5sRUs4Zkee 3B/rV2Dm o`+rW!D*Oq!(%!+Tq\?ZVl?YrXfen5ZEpsJ\@K5b^;.P$_o9[;ai_lRcdC1ie^iC+gYCZCiSrnZ k32'pm-a?&jODKklBkG!3Z%'!&=HQrs\r9rW<5@eX?C:psfA8rW)s-!"8c.!QCW/ !!(LEeGu$:!<:RLRJm3deGq?'!<3N/%/p>1h=%HE!<2EeXSr5"mf9Tk!<3N/%/p>/h=^4:pjrHr s+13$s5j7aWrMCk3<>oTJ,~> o`+rW!D*Oq!(%!+TqeE[Vl6VsXfek5ZF%$K\@K5a^;%M%`5Ta;ai_lRcdC1ie^i@*gYCWBiSrnZ k3)$pm-a?&j4)?:i8`n[kP"*?klBkG!3Z%'!&=HQrs\r9rW<5@eX?C:psfA8rW)s-!"8c.!QCW/ !!(LEeGu$:!<:RLRJm3deGq?'!<3N/%/p>1h=%HE!<2EeXSr5"mf9Tk!<3N/%/p>/h=^4:pjrHr s+13$s5j7aWrMCl3<>oTJ,~> o`+rW!D*Oq!(%!+TqeE[Vl?YrXf\h5ZEpsJ\@T;b]thG#`5Ta;aihrScdC1ie^rF+g>(NAiSrnZ k3)$pm-a?&jOMN1h=%HE!<2EeXSr5"mf9Tk!<3N/%/p>/h=^4:pr<>) ba3Zt95=BAO'<)cdn:f'q_9M8#N8Ou?@77BU26:!k$4Ztnh 3]T/Z2`3EK1GLU;0E*U(0-Dr'1,LgF2E*TU3]fGe4[)(q5sdq,77Kd;8P2WK9MJ=^:]XHmr`(:H =BSd1>?tN@?XR;O@q0%\B4kmlC27X%DJsK6EcZ;DF`qtRS^)fdJcEIa"fhUhZ8_l[s*t~> oD_@PQC422SXuIIU84W`WMuu$Y->1:['mHR]">Vh^qdh*`Q$!@bKS8XdF-Lof@\d2gtglGiT'%] kiqC!mI0)reBR18j5f=apZM[tWW;4^!3Pq&!'1#Y!7CYn!1EfdpsfAHrVurGqpb\MrVur@qUGS6 rW)uK!1Efds4%*0rW!5gmHs?0mI'DBrW!&gmI%%S!<;He_>XE8l0\K oD_@OQC+,1SY)RKUSO`aWMur#Y-5+9['mHR\\#Ph^VI_(`Q-'Ab08/WdF-Lof%8U0gtprIioB._ kNV9umdK2reBR18j5]7apZM[tWW;4^!3Pq&!'1#Y!7CYn!1EfdpsfAHrVurGqpb\MrVur@qUGS6 rW)uK!1Efds4%*0rW!5gmHs?0mI'DBrW!&gmI%%S!<;He_>XE8l0\K oD_@PQC+,1SXuIIUSOcbWMur#Y-5+9ZaI9P]">Vh^VRe*`Q$!@b0A5XdF-Lof@S^0gtprIioK4` kiqBumI0)reBR17ioB.`pZM[tWW;4^!3Pq&!'1#Y!9s@J!3?)!r9jUPs6]m&rVur^qsFI%rW!5` mI'E0mdBJCrW)ud!3?)!s6]kIrW!5gmHs?0mI'DBrW!&gmI%%S!<;He_>XE8l0\KL_@UWYO?=$oA>?Y03=&r=$<)QRi:esh\9M7uL 84Q-=6pj=.5sRXu4Zkee3B9#V2)I-G1,1I9/hJ\/0/,+91GgsI2`NfY4$5Yi5!M>!6:4.07Rp!@ 8kVfN9hnM];,U=l?kH??=72N@q0%]B4kmlC27X&DJsK6EcZ>FF`qtSH$XgbI@&30 s+13frroG&m'8SOU]5i~> o)D5IR$sM8T:_dOUnsufWN3/(YHkI@[Cm&Bsarp0WarW)ub"R-[% !6+s(!I7uBli?L*s+13$s+144rroG&lE3&IU]5i~> o)D5IR$sM7T:hmQUnsugWN3,'Yd(L?[Cm&Bsarp0WarW)ub"R-[% !6+s(!I7uBli?L*s+13$s+144rroG&lE<,JU]5i~> o)D5IR$sM7StMdPUnsugWiN8)Yd(L@[^WcX]=bkm^r"%/`lQ9Fbg+P]daQatf@ep6h;@2NjQ5Of l0@U&n)NHZcfa6Hj5oJ"kQKt&J#WM3WW9I+[f>Jqm&Bsas6K`brW)ub"A'@/!6+s("F4;>m&Bsarp0WarW)ub"R-[% !6+s(!I7uBli?M%s*j%,H?a[XF`heIEcH&:DJa3+C2.HqB4b^c@q&kT?X@&E>?Y04=BAO'd4[)(q 6:+%-77Kd<84cHI9MJ;Y:f1+h<<#rP<`iL->$G6;?=.)K@Uiq[AS5XhBkhF"Ci+*0EH6)@F`hkO G^=[_I!pHnIt3*OjamG_s2b3DWrMCd2?KZRJ,~> nGbqNS"-+CTqeE[Vl?\sXf\e3ZEpsJ\@K5a]t_A"`5Ta;ai_iQcd:+heCN7)gYCWBiSihYk3)!o lg=0$j4;N=iT&t[kPFBB_u>,dWW;7_!3u1*$r;f_!(=oWPmEQ&e@GPY!kX.-qU?:>!<>O/e!13% eC9ce!'/*JF:c7;e nGbqNS"-(CTVJ(NAiSihYk3)!o m-a?&jOVW=iT&t[k5+9A_u>,dWW;7_!3u1*$r;f_!(=oWPmEQ&e@GPY!kX.-qU?:>!<>O/e!13% eC9ce!'/*JF:c7;e nGbqNS"-(BTqeE[Vl?\tXfen5ZEpsJ\%0,`^;%M$`5Ta;aihoRcdC1jeCW@+gYCWBiSihYk3)!o m-X9%j4DT>iT&t[kPFBB_u>,dWW;7_!3u1*$r<>n!)287V$Wm^lcoD/!md&RqWeod!<>gMlD4f] lg(GP!'o?(JJ-N!l`'j`s6BZarW)ua$rEDo!)287V$Wm^l`'j`rp'Q`rW)r`#b(hp9]#'2$)7"V !;+kB"50&iI/\F7H$=FSF`_\EEH#l7D/=$(BkV-lAn5F^@UWYO?=$lA>5hYT=&r=#;c6Ih:ej_Y 9M7uL7n6$<779I/5sRUt4Zkee3B9&W2)R3H1,1I9r[o$@0JG7;1c.'J2`NfY3]oPg5!VA"6:4.0 r^Zu[s%>"=9hnM];,U=l[C`D?t!MS@qB7bB4u!oCM[j*DfB]:EccDGG'A62H45.K IXcitJV/T.KqI.Os+13orroG&l`;uGU]5i~> mf,YDSY)UNUnsufWN3/'YHkI?[C mf,YDSY)UNUnsugWiN8)Yd(L@[^WcX]=bkn^r"".a2lBFc-FV^daQauf@em5hV[8Nj5oCdl0@X& n)NHZcKF0Gj5oJ%kQ'33IfZPLl)F`ao=,'*e=\u:"VWk`rR;!m)ZpBpTD?t@TKWnj'0)EYe-`3H 'Eo19Z..9<$2so+%"/H]!"KF1<9g\V&I&t5WTrbk$N:#-%^:'_rW!98Yj1MX71f_=4fRr9!<%KK JcC<$JcFs6"fhUfY;ZNXs*t~> mf,YDSY)UMUnsufWN3/'YHbC>[^WcX]=bkn^r"%/`lQ9Ebg+P^daQauf@ep6h;@/Mj5oCcl0@U% n)NHZcKF0Hj5oJ%kQ'33IfZPLl)F`ao=,'*lEE\h"r0;#rTXQ:*Wug$YPIGfYXK-.'g8Ppl3b1" ('YOE_s6N0$N:#,%Z1Vm!"KLC<9g\V&I&t5WTrbk$N:#-%^:'_rW!98Yj1MX71f_=4fRr9!<([P !p-,,rdQbQI!^0cH$FOUF`_\EEH#i6D/=$(C2%L_@prbP?=$oB>$>'2=&r=$<)QRi:JX_Z r_$*[84Q0>770C.5sRUs4Zkee3B9#V2Dd6H1,(C8/hJ\/0/51;1c.'J2`WlZ3]fJf5!M;!6:4.0 7n6*A8P;]M:/=\_;,U=llJ%^?t!MS@qB4aB4u$pCM[j)DfB]9F*)MHG'A1WH@($e IXcitJqJ]/KnbA=M5TKes+13srroG&l`;uGU]5i~> m/KAATVJ m/KAATVA6YVl?YrXfen5ZEpsJ\@T;b^;%J#`5Ta;aihrScdC1ie^rI,gYCWBiSihYjlbmnm-X9% imc38i8WeXkPjZFgA6:"WW;:`!4)4,!*R=j!*RY4!:tdAJcC<$JcFs6"fhUhZ8_l[s*t~> m/KAATVJ+!*RY4!;#(I'Yf1c73N3&s#]4$>bl5=%V&6UX@47n?3D91qrR:/=\`;H$Op<``C+ =^#$7?!^iF@:E_WA7]CdBPD8]Ca*b8E,fl=F*)PJGBeCZH[L6jIt*$$K7ei2L51S@MMmFQ_h%i= s3puOWrMLj3!#fSJ,~> lMj/AU8=ceWN3/(YHbC?[^WcW]=bkn^r"%/`lQ9Ebg+P]daQatf@em5hV[8Mj5oCcl0@X&n)NHX c0+$Ej5oIfebFUpWW;:`&%T9_\[f;^]"5G`]",A_?H1Fo?-h^7l%/kcs+13$s60IdWrMIl3!#fS J,~> lMj/AUSXlfWN3/'YHbC>[C lMj/AUSXieWN3/(YHbC?[C(2/h\k31,CaD2)[BR3BB5a4Ztto5lO(N6q.)Fs%*kr92&&T :Jand;cHas='/U.>$G82?41.L@UinYAS5XhBkmW`)K'J4EH-#?F`hkOG^4U]I!pHnIt<0&K7el4 reLi;Mi kl3fDUo:8nXf\e3ZF%'L\%92a^;%J#`5Ta;aihoRcd:+he^i@*gYCZCiSihYjlbmnlg=0$j42E; iSrnY_tJQ\WW;=a!3bt)!+Nss!+Pohroa=D%d3!:kN:pik2tjhkN:pirT4=Ik2tjhk3)^*#3Y.3 k3(miroO:Fk4aH,JcC<$JcG!7"fhUiZ8_l[s*t~> kl3fDUo:8nXf\e3ZEq!K\@T;b]thG#`5Ta;ai_iQcd:+heCW@+g>(NAi8NbYjlksolg=0$iml99 i8WeX_tJQ\WW;=a!3bt)!+Nss!+Pohroa=D%d3!:kN:pik2tjhkN:pirT4=Ik2tjhk3)^*#3Y.3 k3(miroO:Fk4aH,JcC<$JcG!7"fhUhZ8_l[s*t~> kl3fDUo:;oXKJe4ZF%$K\@T;a]t_A"_o9X9ai_iQcd:+he^rF+gYCWBi8WeYjlksolg=0#imc69 iSrnY`:eZ]WW;=a!3bt)!+Plg!9a.>#Nt74k3(mhkP"$1c70Mr]+@J4?Ykm5X@_'6UX@47n6-C91qrQ :JXea;H$Op<``C+=^#$8?=$uH@:E_WA7fIeBPD3tCi+'.E,fl=FEM_LGBeF[H[C0iIt*!#JqJ`1 L51SAM2R=PNK9-^OccdVs6d'M!Mf[F~> k5RHkVlHl%YHbC?[CRK!B^D/%s[s+14#rroG&mBS\PU]5i~> k5RHkVQ-`#YHbC?[CRK!B^D/%s[s+14#rroG&m'8SOU]5i~> k5RHkVlHl$YHbC>[CL_@prbP?=$oB>Q.bb=&r=#;c?Oi:esh\91qlK84Q0>6pj:-5sRUt4Zkee3B/uW 2Dd6H0ek=7/hJ\/0JG7<1c.'J2uYgH3]oPg5!M:u6:4.17Ros>8P;`N9hnJ\;,U=l[C`D?t!MSA7T:bB5)'pCM[j)DfB]9F)uJHG'J:XH@(!eIXcitJV/T.KnkG>Ll.+LLHIVHOcbfj Pa/k3s+14*rroG&m]SSNU]5i~> j8UpWXKJh6['mHQ\\#Mg^VI_(`Q-'Ab08/WdF-Lof%8U/gtglHiT'%^kj%I"mI0)re[E0]IfZPL lDaioo"4s;qJ-(GmV;f;o4n>@rbDLKoP;b5!:&eJ"a(=U!)!4grrc+,!"X)$rrKnGrVur-n,EE= $iU/)rrE*)oD\i=$iU/%rr`*n$Z=5h"8Pb$C?>HsCB9fRs+147s8E#erroG&k,L9?U]5i~> j8UpWXKJh6ZaI9O\\#Mf^VI_)`Q$!@b08/Wd*gCnf%8R.gtpoHioB+]kNV9tmdK/se@!![IfZPL lDaioo"4s;qJ-(GmV;f;o4n>@rbDLKoP;b5!:&eJ"a(=U!)!4grrc+,!"X)$rrKnGrVur-n,EE= $iU/)rrE*)oD\i=$iU/%rr`*n$Z=5h"8Pb$C?>HsCB9fRs+147s8E#erroG&k,U?@U]5i~> j8UpWXKJh6['mHR\\#Mg^VI_(`Q$!@bKS8XdF6Rpf%8U/gtglGiT'%]kj%I"mdK2te@*'\IfZPL lDaioo"4s;qJ-(GmV;f;o4n>@rbDLKoP;b5!:&nM+P)U75mRGj.#<\7LP7/^!!kT8IsufnH[9s_ GBS+OF*%>#)/sJ1Ci!j$BP1siARo:\@:3GK?=[NAl!#.Oo;c-@e:/+GU91hcH7n6$:6m2[3 !<51q4?ENE3&iiS1c.!D0eb75/M7h@rW)sT!];kpr]+ON&d'%95X@\&6UaF57n?3D91qrR:Jakb ;H$Op i;YM$[Bm9M\@T;a^;.S%_o9X:ai_iQcHt"geCW=*gYCWBiSihYjlksolgO>k[nn-GnUCS>!:$Qa ]CNW8E5p<+E6dJDjlZUB!!%6@rrL^Oe,TCI!4VCr!4Vq-rVllu#P.lp\,HC'rrC":!!)9UrrC(< 1Z/34_#=<6jRW i;YM$[Bd3L\%92a^;.P$`5Ta;ai_iQcHt"geCN7)gYCWBi8WeYk32'plgO>k[ne$EnUCS>!:$Qa ]CNW8E5p<+E6dJDjlZUB!!%6@rrL^Oe,TCI!4VCr!4Vq-rVllu#P.lp\,HC'rrC":!!)9UrrC(< 1Z/34_#=<6jRW i;YM$[Bmk[nn-GnUCS>!:$Qa ]CNW8E5po$5!1rW!Wq;c?Oi:ej_Z9M7uL84Q-=6pj9orW)s]%QlfQ!]W.t2Dd6H 1,1F8r[n4),5qTB1^5fq2`NfX/cG`,3Boeq6:4.17Rp!?8kV2U&.hW6;,U=lLl.+'!E5&@OcbfjPa.Q$ R$jDTJcC<$pAY0o^] h#Ar"_7@1k]t_A"_o9X9ai_lQcd:+he^i@*g>(N@iSihYlKdg)rVuo)ZqqgDnUCS>!:$TS]`<2p dK"F7io^:>!!&qqrrL^Oe,TCI!4VCr!4Vq-rVllu#P.lp\,HC'rrhj=!($VVrrBP-!8meZn0S-! rUTsg\,HC(rrJ@^JcC<$kPkS`rrDNf"fhUbW\jjQs*t~> h#Ar"_7@1l^;%J#_o9X:ai_iQcHt"geCN7)gYCWBiSihYl0I^(rVuo)Zqh^BnUCS>!:$TS]`<2p dK"F7io^:>!!&qqrrL^Oe,TCI!4VCr!4Vq-rVllu#P.lp\,HC'rrhj=!($VVrrBP-!8meZn0S-! rUTsg\,HC(rrJ@^JcC<$kPkS`^] h#Ar"_7@1l^;%J#`5Ta;ai_iQcd:+heCW=*gYCWAi8WeYl0I^(rVuo)ZqqgDnUCS>!:$TS]`<2p iW+,GipcsSp7mk8Ocb`dNK*l:1g,WhL4jFEJq8E$IXQTiH?ja[G'.qLF)l8>Df0E.Chm`uB4kgf A7K(W?sd5H?!LT;=]kY'$p@Qf;G^1c9he8R8kK"P"@Y^G68/<<'g=cC3rf=A3&`]P1bpd?0J>%1 /h\FJ!<4km2)dKS3B9&*!"_@Z5s[h)6q'U984Z?G2Z<\7:Jand;cHat<`iL->$G9 f)HWBai)3>b0/#RcHab_daQb"gYLiJj5oCdnG3(e['Nj]WptQ>WW;=an\,!L`mFd4c/Igb"TT8; !"$sMrrL^Oe,TCI!4VCr!4Vq-rVllu#P.lp\,HC&rrW&RrU^$h\,HBarrW&SrV?Hqp f)H!0aMc'UT)ZWAHQnUCS>!:$TS^&WK!d/\L;iTC.D!#5J6 $-rPM!S7>#s8Duu\*j7r\,HC+rrE*)o)A^!rW)`n!rCdPoD\g"rW(gT!rCgQq>UQjcI2XhrrBP- !.k0$s5*bW!5JU'rroG&kH[&JU]5i~> f)H$1aMc'WW;=an\,!L`o-oDc/J6n)"XAb Pa%AoOcPQ_N;s=d!!R4pKnO=DJq3iM."-JiH?sj\G'.qLF)l8?Df0E.Chmd!B4kge@q/tV?sd5G ?!LQ9=]kY''KoAm;,C(b9he8R8kDQD7R]a568/<<'g=cC3rf=B2`$G9=?=.)K@UinYAnPaiC2.O# D/O90@rQI0F`hkOG^4IBAUJrVIt1i(!!.e.reLr>Mi [/U99ZWJQSnUCS>!:$Qa^%/o-a8Z)Ga\`c])IVP(s*+qN!<3Q0 PPb@\K,":b"HOf3-C4W1$f,D<$k=tEpAb/e%K6>0e,Oq+rW!8"$ig8Qh#ID!$iU/+%geI"s2e+Q $lWO4JcC<$lMgncrrDNf"fhUeYr;]Ys*t~> [/U99ZWAHQnUCS>!:$Qa^%/o-a8Z)Ga\`c])IVP(s*+qN!<3Q0 PPb@\K,":b"HOf3-C4W1$f,D<$k=tEpAb/e%K6>0e,Oq+rW!8"$ig8Qh#ID!$iU/+%geI"s2e+Q $lWO4JcC<$lMgnc^] [/U99ZWAHQnUCS>!:$Qa^%/oBIc0/Ai8=TJ3"t!biA7K(W?sd5H>Vurl%5Rn_'Kf>m;*Pp' ":,u68k;KC7Rfd568/< [/U99ZWJQSnUCS>!:$Qa]CN`;K#Z1 [/U99ZWAHQnUCS>!:$Qa]CN`;K#Z1 [/U99ZWAHQnUCS>!:$Qa]CN`;K#ZXIK?i J78]_06qLN!#9EpF]88>)DuFe!!!6[C+]Jd.:m%"@q&hR?=#Ae!%_8&rW!?i;c5UV!%^h`!!bh^ r^R)\6pj9orW)p\&j&-73B/oG!WWlg/-l4].P<@urW!3B1`?>o+?;JqH$V2Ig5k"TTo]?kEAPASlr.f]PsIt*#T rW"$oL51Rm!WYuS1&qc8OckomQ'R`'R@9V8SXlCFTV9>Us+14LrrN29!:TpkWrM=e2?BTQJ,~> [/U99ZW&-KnUCS>!:$Qa\+7?%/p5,Q-R_VLsFfVlfS3L!8%7/rW!UEs478Ns8F;E!7_&K MuWiqs8TS-!!;EbXo8;(l2Rjc!#PJ2#5A`0!8[\4rW!>8s8!!!Z-s4@5M%`eVJ*<6*&s02P(@K6A:rW)]m!4Vq-']K)H!!!Z-rZqOE eGoQ-!!$p:s4dMQ"4R;M\,H@2h>aSW!"o51!4Vq-rr3<'*<6*&s02P(@=eH0s6K[d!<3&frroG& m&`2JU]5i~> [/U99ZVr$InUCS>!:$Qa\+7?%/p5,Q-R_VLsFfVlfS3L!8%7/rW!UEs478Ns8F;E!7_&K MuWiqs8TS-!!;EbXo8;(l2Rjc!#PJ2#5A`0!8[\4rW!>8s8!!!Z-s4@5M%`eVJ*<6*&s02P(@K6A:rW)]m!4Vq-']K)H!!!Z-rZqOE eGoQ-!!$p:s4dMQ"4R;M\,H@2h>aSW!"o51!4Vq-rr3<'*<6*&s02P(@=eH0s6K[d!5JU'rroG& l`N2KU]5i~> [/U99ZVr'JnUCS>!:$Qa\+7?-T?c6mLsFfVlhCDnjI;U+R$X,(Q'@GoOcYWaN<"*Y 9E"o)2M>rJJUr:`!!$YYH:%Z41Ndh=rW!"3DbL'0'Ob`H!!!=:A7K(W?sd5E"onWu=\\kq'KoAm #ljrr:,N"O*(`[k7n#g568/<i5=R@-!$"U(2Z<^U:^9ls<)lq"=?uic'N&16!!!73@h&J=uQ^=,/S"#t>StD[LU8-k%s+11PrrBh7n,EQk s6?XC!i,dG~> `;^YQle0FpZ`9ajR@';+R@U(:QZcZ+L4k0NIfZPLlDaiho"bs0qt-s8N)-rW)uu"1A10!Vu`qbl.SDq#C3i!!9Y0 dJa+MrVsns0qt-!rW)mrW!#Fs4@5M!lt>grW!6&s2P*> ')qp?rW)]m!4Vq-!rN#lrVuuEe,B=RpAb/p!!"&>s4dMQ"4R;M\,H@/qu=/)!<2uu\,HC,rrCIG !!`E%`rH)Prdk*#s6Tae!<3&frroG&m&`2JU]5i~> `;^YQle0IqZ`9ajR@';,R\$7s0qt-s8N)-rW)uu"1A10!Vu`qbl.SDq#C3i!!9Y0 dJa+MrVsns0qt-!rW)mrW!#Fs4@5M!lt>grW!6&s2P*> ')qp?rW)]m!4Vq-!rN#lrVuuEe,B=RpAb/p!!"&>s4dMQ"4R;M\,H@/qu=/)!<2uu\,HC,rrCIG !!`E%`rH)Prdk*#s6Tae!5JU'rroG&l`N2KU]5i~> [/UEtkIm>3Y+Uo-om["B!:$QaZ1>^2N;_Q2!!&VOg]4DS/FV?oN6^2Yo_AG%^71U\R$a5+Q'@Jq Ocb]bNK!p\MMX(e!!Q/9!.oc9rW!7LH[8Tj!"F'n;uQauE,SPO!!6qN9E"nsARo:\@UNPL9)\el ='8Q&!!58^6iI)c:(05b!!Pqb7n6$:6UEI*!<51d4?GSa3B/Vi!!tA80d-Ms"YMGPrW!!U1c,+2 !\QMhrW!!R5W/N@#X_'?!!!0p9/lhMs%itu;c?Xq<``BgrW!")?!I:.!Dl\n!"!.JBLi+'$uKlh rW!%-FELR^!!7@j=T/=#IfY(*rW!%SL59dI!#(9MD?'YDOHG`kQ'Rc(R@9V8S=TYO"JMQbUr7ia Jc>cO^] ao ao2 [/^0s!o_f$rTFC8_QK8VqL8OG!9pK`_=PMDOT!r5!!&SNgAmfD!:SYBOO)Y]h"gsnrM,mQS!ob4 QBmf#P`h/kOH5E]!-O0UK,Xdj"&AoJJ6r3T$%.)G?!dT)orW)tJ!J"JT!!@q0LLgAars/T0rW3mjP*;,rQC!u,R[]e:SY)OITq\ bl9*N^7Bb&It3-(L5:YDN/`m\Ocu&sR$sM,Ob%hDO-#KgQ'[o,R[&nfrI4jJ!9pK`\F[T=QI,WW rW!(dd*L%brm(SkrQkMjs3L\k!RK-lci;AlcN2CXrW)uFrm(\ncd:&9cNDP?c^)o2!:&\G!UHDrW!8us8T2$!$)%=\,H@/qu?Bh!!:IGfDYaOa8aKb!!)llrrBP-!;HKn\,H@/qu?Bh !!1BorW!8us8T2$!$)%=g\q0Te,THWrW)uu!4Vq-rr2u-rW)rt!71WE!;_9HJcFm4!W`6#n,EQk s6csI!i,dG~> bl9*N^7Bb&It<6)L51SBN/`m\Ocu)sR$sP,Ob%eCNf]EgQ'Rf*R[&nfrI4jJ!9pK`\F[T=QI,WW rW!(dd*L%brm(SkrQkMjs3L\k!RK-lci;AlcN2CXrW)uFrm(\ncd:&9cNDP?c^)o2!:&\G!UHDrW!8us8T2$!$)%=\,H@/qu?Bh!!:IGfDYaOa8aKb!!)llrrBP-!;HKn\,H@/qu?Bh !!1BorW!8us8T2$!$)%=g\q0Te,THWrW)uu!4Vq-rr2u-rW)rt!71WE!;_9HJcFm4!W^"9n,EQk s6QjI!i,dG~> [/U:"nDDgdq<.qCc*EZ6IfZPLl)F`no>:QorS%5N!1`-(!1a#gn(Ic-ce8BaqYqc.T:VRBS!o_3 Q^3o%PEM&jOH,?\!-O0TLj9C/!!E:RJSP/a$$^fC;?-\+F`gX^!!7.Z:]:=qCMHNA!<6U0@g$4J ?X?G*!!65) ci5`NXbCtEH@10kJV/W1LPUhINK93bPa7Z'S"#P&JU3TBO-5`mQC4/1SXuIFP_ssj!9pK`Xn0I6 =WR\dFoD@@Q2])6UI#P"'i)7;cNh6e*!Qcb1jAfB!FZ<6!<3H:GL+U164jP>::JQqFr^J]&!&:H $Ttt^0Er"`c.LZe&cMb5H6384J,\(3aBKYh$PbRJg">!1f\+p0g&BY(f`Bb&jo5>]fDY^M_Zg#> s8NQ-,ldqps8S#X!,_c9\,HC-rrBP-!<<'!\,HC'rs&91!!(jThu3T[\,Z@C!!(RKrrIa`q>UH( rW)co%K7XR!7_&KMuWips8TS-!!qK^f`2!aq>](G!!^LDr"oD6ec,ROK4Y)_])D[2s6Z3MrrBP- !#4Dlg&M*bq>MZ?!7_&KMuWips8UjQ!!C^Ms0qt-s8N).rW)rt!4r.0#QO1Yr"oD6ec,RLK4TW6 JcG'9!W`6#n,EQks6csI!i,dG~> ci5`NXG(kDH@10kJV/T0Ll%"JNK93bPa7W'S"#P&JU*NAOHPinQC+)0SXuLFQ&:'k!9pK`Xn0I6 =WR\dFoD@@Q2])6UI#P"'i)7;cNh6e*!Qcb1jAfB!FZ<6!<3H:GL+U164jP>::JQqFr^J]&!&:H $Ttt^0Er"`c.LZe&cMb5H6384J,\(3aBKYh$PbRJg">!1f\+p0g&BY(f`Bb&jo5>]fDY^M_Zg#> s8NQ-,ldqps8S#X!,_c9\,HC-rrBP-!<<'!\,HC'rs&91!!(jThu3T[\,Z@C!!(RKrrIa`q>UH( rW)co%K7XR!7_&KMuWips8TS-!!qK^f`2!aq>](G!!^LDr"oD6ec,ROK4Y)_])D[2s6Z3MrrBP- !#4Dlg&M*bq>MZ?!7_&KMuWips8UjQ!!C^Ms0qt-s8N).rW)rt!4r.0#QO1Yr"oD6ec,RLK4TW6 JcG'9!W^"9n,EQks6QjI!i,dG~> [/U:"nDDgdp#lS8^7KhS!9pK`Xn0I6=W[bfHN!mZS(ZHHW^RO-(/_j!g"FGN*,Q'@JqOcb`cNK!p\MM[.EB*8,5%t]@^&c_oDH[8$Z !&Jb?;uQauE,SPO!!6qM9E"o$ARo:[@:3GK>6Y'-9j(3i!#.Oo;$[.%5u(*H-QPcL7n6!96UEI* !<51_4?NO&%QH?P!!"K(0cC#l'.tp^rW!3U1bA\-"?8CsrW!E_5X,GQ!'*J;7jT0J9/lhM$;a>K ;H$OpH4rW!%,FELR^!!7Fl=T/=#IfY+-rW":!I8GY- !!%/$NK6[lOckomQBml)R$sM7S=Q7DTV8*TUnjlbW:#6:L&V2S^] df2/]XF5,3Fa&+WI"$QrJqSi5M2I7OO-#NhQC!u-S df2/]XF5/4Fa&+WI"$QqJqSi5Ll..NO-,ThQC"#/S<8qbH'OGPP*;,rR$jG7StMgQV5(.9kc+Wm ou%#K!!$TUA,ZHCQ-[d=!s!De8H9F7cd+BI.DX96-8YJD!1!N`rQbk6!s!De8H9F7cd.mU!"3Di ?2ss8B@^Ah!*9*N!1Nle%r0^/!!%;rf/3OXa4IdK2=oE"lK%sG!8%/K!1<`crr3DE$NOW3l7)ca mJm3qrW)uu!4Vq-s8N).rW)`n"cE?\IK+Zn!"6:9s/5qu;Xsam$F'@+!4Vq-q#:c?$NOW3l7)ca mJm3qrW!4HqJuW:NrT.2rW!GKs8T"u!)i@dZO3r:s5*_T!o]dtqYpQ)rW!X]s*=YFNrT-s$NOW3 l7)camJm4@rW!&Ls8TS-!<<'!\,HC,rrCpT!"@hZ,laeD!)i@dZO3pfs+149rrN29!:TpkWrMFf 3!,lTJ,~> [/U:"nDDgdo&p/4dP'ga!4_^?"_n#;C"?qr!#:sSf9ZR>Gh#If'>W5O2#o,Hf=*.cq:>V8rW)oK $^UqqGh#If'>W5ORf39pB%C8g!"NYm?2st+rmq.=rW!IDf4P'`H.UY*!%Q%@[jX-*f)Y+5ruUj+ T:VUDS=>t8R$O&'P`q8mOcPN^N<"*YM26qB;#UG*JUi8Z"TU3#E"i9dDKU)#rW!">Dbp?4!c)LC rW)t/s'lCF?sd5G1B7D+=XsCN'KoDn2#mUo8k_)E1J(,-7Rfd568/<<"$Sk248q5M3&`8f!#%%< #QP,[/h\FJ!!jDt(]XOY3BAqp!"L_K5Uug7(-tDF"#c/ @Ui(7!%2>b&HEGSD/N_[!!?SLF]A>?s*=ZIrW)tJ!J#.g!%2nh'8Tfm!%inaA-QS,P*D2sQC!u, R[]e;St;RITq\ ec.Z,_M`;NEH6/DGBnO_IXcm"KSG;>MN!OUOckooQ^F83Ocb3@Q&^rhPa.Q%R@Bb=TV8-WVm)Ai Y3Dqd_=tnQ^^L2CZd6&Y!#:dFbnpE\][)Z>!)Lq_!!"Xjcd.nfq9K&+rW)rD%*]Uh!5-X>!!#g@ c^"J0!lWZPrW!,?er]q4'E6P_Rf39t^"0[n!"[K'!!"^sf%-='o[X#tjo5I+%fd&7r;Qh2!!)ut $eo27$k4kAo`+rA$iU,-&"X1.!!3\-$iU,,&&\5C"Ht)7,`r!*$5A6ps1h8@"rBY:q>UJG$iU,, &&A#@$eo27$k4kAo`+r=$iU,/Q6$2UQ2^d`fDYaMa8Z)C^e5=F(IP_2rrn<(":HouqYpQ)rW!(^ ,R#KZrVm8[A0;9i07rirs.Tu%!!<[rJ.)>V!Y:S)rW!QA_#OFm+Tr0,^]4>L9+qLG6b%^IJcG$8 !W`6#n,EQks6csI!i,dG~> ec.Z,_M`8LEH6/DGBnL^IXcp$KS>2Q&h#iPa%N%R@Bb=TVA3XVQc8h Y3Dqd_=tnQ^^L2CZd6&Y!#:dFbnpE\][)Z>!)Lq_!!"Xjcd.nfq9K&+rW)rD%*]Uh!5-X>!!#g@ c^"J0!lWZPrW!,?er]q4'E6P_Rf39t^"0[n!"[K'!!"^sf%-='o[X#tjo5I+%fd&7r;Qh2!!)ut $eo27$k4kAo`+rA$iU,-&"X1.!!3\-$iU,,&&\5C"Ht)7,`r!*$5A6ps1h8@"rBY:q>UJG$iU,, &&A#@$eo27$k4kAo`+r=$iU,/Q6$2UQ2^d`fDYaMa8Z)C^e5=F(IP_2rrn<(":HouqYpQ)rW!(^ ,R#KZrVm8[A0;9i07rirs.Tu%!!<[rJ.)>V!Y:S)rW!QA_#OFm+Tr0,^]4>L9+qLG6b%^IJcG$8 !W^"9n,EQks6QjI!i,dG~> [/U:"nDDgdn`U,Fdc&6JlDaj#pVd?P$ig:t8R$X,)Q'@GoOcYVi#QP)[reUT/&iBXhJq8H%CbZJ*"r9@CG',kMrW!!)70WYj !X;$qrW!E49OhO??sd5G>r2ul%5Rn_'F-0e;*5["!XBDt8kDQD7Rfg6+Tq]D'a--O4$#A]2`/I'P*;,q QBmo+R[]e;SY)OITq_O^"Jr#pWO@BXLAq;T^] fDe&%Y&\8nDJsN8F`qtSH@:6lJV/W0LkpqINK93bPEqQ&R[]D$K7&rFO-,WjQC423SXuIJUSXil PHqR'Z)m;l!3l4;!1s/i!m&[0rW!"acDgdC%a<4l!!!PSV[WV+#<$>!ps&l(rW)rC!3,qt#gCSf !!!PScBS;.s4%+:rW)uK".0&g!WLULRJm0fdacYB!!o[T%0-A63,Q"neH#;os6fmefDYaMa6*C% \,HAYs+13UrrN3#!:TpkWrMRj2?BTQJ,~> fDe&%Y&\;oDK'T9FEMhSH@10kJV&N.LPUkINK93bPa7W&S"#M%K6rlEOHGcmQ^F53SXuLKUSXll PHqU(Z)m;l!3l4;!1s/i!m&[0rW!"acDgdC%a<4l!!!PSV[WV+#<$>!ps&l(rW)rC!3,qt#gCSf !!!PScBS;.s4%+:rW)uK".0&g!WLULRJm0fdacYB!!o[T%0-A63,Q"neH#;os6fmefDYaMa6*C% \,HAYs+13UrrN29!:TpkWrMLj2Z]]RJ,~> [/^0s!o_i%n`U2HddZbmca)o;!3l4;!1s/i!mfEErW!"feZ\rP%b&t*!!!PZV[WV+#WQ\-psfA4 rW)rJ!3cA%#h.>$!!!PZeX?C:s4%+:rW)uK".0&g!WLULRJm0fdacYB!!o[T%0-A63,Q"neH#=? rsR/HTV%jJS=H(;R@*u>HBaVVOcYWbNfB!UMM[.EL4t;5JqAQ'IsufmH[9s_GBS+OFE2A@E,TW2 Ci!j#BkM'jA7K+Y@:3GK? g&FD'Uh=@TCM[m-EH62EGBnL^IXcp$KSG8=MN!OUOckrpQC453OHG0CQ&h#iPa.T&R[fq?TVA3X Vm)Ak['mHS[&r_q!4DUA!0R6\!mT$9rW!"acC"S2rsSl8rW32:W.tZW!!E=)cD[]@cMsgCPl:Xb W6V>hrW)s,!"8c-!l*$FrW)uK!1Efds4%+;rW)rJ!1Efds4%+urW!%keVae5!!*+)p!j'1JcG3= !lP&frVurGk5PFjrW%NLJcE%U!W`6#n,EQks7!-K!Mf[F~> g&FD'Uh47RCM[m-EH?5EG^4U_IXcp$K8,2hrW)s,!"8c-!l*$FrW)uK!1Efds4%+;rW)rJ!1Efds4%+urW!%keVae5!!*+)p!j'1JcG3= !lP&frVurGk5PFjrW%NLJcE%U!W^"9n,EQks6d'L!Mf[F~> [/^0s!o_i%n`U#CderS8e$SMB!4DUA!0R6\!n>cNrW!"feXc[>rs\r9rW<8AW/Cr[!!E=,eYoGG ec2QJRJm0gW7@horW)s-!"8c.!l`]XrW)uK!1Efds4%+;rW)rJ!1Efds4%+urW!%keVae5!!*+) p!j'1qu:p:U7n6PSt2CAS!ob4Q^3o%PEM&jO,f3ZN/ELLLkg_=KS+o/J:E&tI=-BfH?aXWF`__G EH,r9DJa3+CM@HqB4YU`@q&kS?X@#C>[(?6=BAO'<)Z[l:f'q_9MA)O8Ou?A7R][26:!k$5!;"i 3]T/Y2E!BK'f.U"0J>%1/h\k31,CaD2E*TU/35Nb!$!d[5sdn*6q0X984cEH92//W:f("e;cQgu ='.`e!!QV6?=.)KraQjWAnPaiBkqL#D/O92EH-#@F`hkOH$Xd`I!u!D,_:Q"K7nr5LPUbDMi g]'b4VIO.KBPD6uDK'T:F`r"TH@10kJV/W0LPUhHNK93bPEhK%S",V'KRB&GO-5]lQ^F21SXuLJ U8=`kPHqU)\%0)_[B/er!4hpF!2'5j!m&[0rW!"acA;H"!MuaocMjaFcCTeh&H2Y8Wm8ngcD]%6 H2[dGW6W\ErVur@qT])*rW)uK!1Efds4%+;rW)rJ!1Efd!n,WDrW!/(e^_a!<"]*0!3l4J!9o(7 mf*Ilj.ZMR,Q-^(!4Vq-JcC<$ZMst+rrDNf"fhUlXYp3Ts*t~> g]'b4V.4(KB5)-tDJsN9FEVkRH@10kJV&Q0LPUhHNfT [/^0s!o_i%n`U#Cde`G6d]r5?!4hpF!2'5j!mfEErW!"feVO2)!Muaoec)KMeXh[u&cMb9Ygq:& eYq$KH2[dGW7BFSrVurGqUGS6rW)uK!1Efds4%+;rW)rJ!1Efd!n,WDrW!/(e^_a!<"]*0!3l4J !9s@[J(13dTV%jJSXZ+;R@'>,QB[SrOcb]bNfB!UM2@%DL4t;5JqAN&IsufmH[9s^G^":QFE;GA E,TW2Ci!j#BP1shARo:\@:m"D??t'%E'kCohB4u!oCi!s+DfB]:EccGHG'J92H8BqsIXciuJqJ]/KnbA=M2I4MNK'![ OcbfjQ'IZ%R$jD4S"-%@T:hmPUSO`_VPpJoWn2h%M#RMV^]L$Rs*t~> h#BpNAR].[B4u!pCi433F*2VLH?ssfIt<6*KnkJAN/`m\P*D9!R@9Y-Ob.tGO-#NhPa7`*S"6.D U8+N^Y`lE#[^`lZ]Y;.gm]$8tqSi`U$ig:6cF!QN&sT?='*&$6cD]#h;U23^UX%/LrW!"iW2TX> !.4\F#H5CaV@rq0XT$KJC/W@&Pl:[_eGu$:!<:RLRJm3ceGu$:!"?Nj[K$:;d+'5ae^_;2!!&_f eH"fas6]gi2\?-.>2\QC!IP:S!!*V0JcC<$[/^+*n,EQks6[!K!Mf[F~> h#BpNA78tZB4kpoCi433F*2VLH$asgIt<6*KntPBN/`p]P*D9!R@9V,Ob.qFO-#KgQ'[l,S"6.D U8+Q^Y`lB#[^WfZ]Y;.gm]$8tqSi`U$ig:6cF!QN&sT?='*&$6cD]#h;U23^UX%/LrW!"iW2TX> !.4\F#H5CaV@rq0XT$KJC/W@&Pl:[_eGu$:!<:RLRJm3ceGu$:!"?Nj[K$:;d+'5ae^_;2!!&_f eH"fas6]gi2\?-.>2\QC!IP:S!!*V0JcC<$[/^+*n,EQks6QpK!Mf[F~> [/^0s!o_c#n`U#CdeWA5m`b+!!4hsG#/L]J!4gXkrW!S!W6u@[!4(.ReQ,Z"W#qebeWg%5!hlQk r7(dorW!2%`daj"!!'>(eHB_ge^^)e!<:RLRJm3deGu$:!<1LKRJm0p][aFj!"RB++4&Kf]D_d1 U%m.djT:_[FS"#k7R$X,(Q'7AnOcYT_NJrdQM26tBKnP)2Jq/B$Isl]kH?jd[G'.qL EcH)R=S:=]e^*%1/h\k31,CaD2)[BR$j6S8(,e?@5XIe)6q0X97nH hZ$9lG@"Zd@qB:cBkqO&DfKi@Fa/1XI"$QrK7nu7M2R=POHG]jQC"#.RuibbH^0YRP*;/tR@0P8 StVmRV5LP]ZF%'L\[oGf^VR[jn#?AtqSi\T!!$TUA,ZHGPg64G!<>I(Vi_4EcDU_3_p4>D!# hZ$9lG@"Zc@q94bBkqO&E,fr@G'J=[I"$QrK7eo7M2I:QO-,TiQ'Ri,SI(Vi_4EcDU_3_p4>D!# [/^0s!o_c#n`U#CdeE53jh^Dc!4_mF"`+/=B[pbp!#_3TW,D\:7*2?m#F!]:!(G#[PlLe"c.1@C rm_%J\c)R>P_L6XMu`oHajcU^PL\3OrW)uK!1Efds4%+;rW)rJ!1Efd&8B[,!!%5neGr[meWg+7 ((3/M8\10JYF@1c73O3B9,^4?Yhk5=%S%6UXBB7lX(492&#R:Jakb;H$Op <``C+=^#$8?=$uH@:E_VA7]CdBPD3tCi+'/E,fo>FEM_LGBeCZH[L8@IkH;(K7ei2L51SAMMmFQ NfK3`OckonQ'Rc(R@9V7SXlCFTV8*TUnsocW2ZbsZ%;q+s7?6oWrMFf2?BTQJ,~> i;ZXAQ!7O#?XdMUAnYmoCi433EclMLH$XjfIt<6*L5:\DN/`m\P*D9!R@B_/Ob.qFO,oHgPa@c+ S=Q7FU8+Q_YEQ<#[^Wi[]Y;.s_o03in>ZJrqSiYH*<[C)rW!ZECsJuK0b4Eu2L3TnW(eHI#R)/3 Zi85eW6W\ecH^AJ!s^3BW6Ukq%g5&e!!3Ue$2so,%AVIArW!(F*X!R4rm_6L .hN$j*)O3AeH#&hs+13$s+14/rroG&mB8GLU]5i~> i;ZXAQ!7O#?t!PUAnYmoCi433F*)PLH$apfIt<6*L5:YDN/j!^P*D8uR@B\-Ob.qFO-#KgPa@c* S"6.DU8+Q_Y`lB"[^WiZ]Y;.s_o00hn>ZJrqSiYH*<[C)rW!ZECsJuK0b4Eu2L3TnW(eHI#R)/3 Zi85eW6W\ecH^AJ!s^3BW6Ukq%g5&e!!3Ue$2so,%AVIArW!(F*X!R4rm_6L .hN$j*)O3AeH#&hs+13$s+14/rroG&m&rALU]5i~> [/^0s!o_c#n`U#Cde3)1fS*dIYa'bPE8W1YjV"V3SKj!!3U_$2so+%>kJk!!<\*eX?C:"Etmi++4(<#>Zi^#R)2E \bXbUn+Zj1UnXQUT:_[ES"#k7R$X,(P`q8mOcYWaNJrdQM26qBKnP)2Jq/?#IXQTjH?jd[G'.qK F)c2=Df0E.ChdZtB4kgf@q/tV?sd5H?!CK8=]\[*S8kDQD7R]^46:*q%5!D+l 4#o;\3&WWN1c$mA0/#jK/M8\00etOA1c70M3&s#]4?Yhl5=%V&6UXC57n?3D92&#S:/Fba;H$Op <`W=*=^,*9?=$uH@:NeXA7fIeBPM=!Ci+'.rc()BFEM_LG^+L[H[L9kIt3'$K7ei2LPUbCMMmFQ NfT9aOckonQ'Rc(R@9V7S=Z@FTV8*UUnsocW2ZbsXF^D&s7?6oWrMFf2?BTQJ,~> iVufl@p*#A?=.,NAS5XiCM[m-EH62EGBnO_It*$%K8,25OHG0CQ&h#iPEhH% R@Bb=TVA3XVm)Aj[C3QT]=bkm_8=.1`jP<9!O0Q@`W2t9cMsjCcMsjCc3:/lcD]%6rhp"GW6W\e W;b*BW;k0AW;b'EW6W\eo?I?7o$m`.rW)97!S@'ss+13$s+14.rroG&kH?fGU]5i~> iVufk@p*#A?=./OA7oOhCM[m,EH?5EG^=[`IXcp$KSG;=MiE^WOckrpQC423Ocb6BQ&h#iPa%K% R[fq?TVA3XVlu;j[C3QT]"Gbl_8F42`O538!O0Q@`W2t9cMsjCcMsjCc3:/lcD]%6rhp"GW6W\e W;b*BW;k0AW;b'EW6W\eo?I?7o$m`.rW)97!S@'ss+13$s+14.rroG&k-$`GU]5i~> [/U:"n_i'hn`U#Cde*#0lbr:m!O0Q@`W2t9ec2TJec2TJeHMo%eYq$Krhp"NW7BFsW;b?IW;kEH W;bo$m`.rW)97!S@)>s*^l@TqJ$MSXc1=R[BJ/QBd\uP*(lfO,]-XMi!:HLk^V: K7e`*It)oqI!^0bG^"=RF`_\EEH#i6D/=$(Bk_3mAn5C]@UWYO?$5!1=&r=#<)QRi:JX_Z 91qlK84Q0>770C.5X7Lr4Zkee3B/rU2)I-G1,(@7)_N]p0/#%71GgpG2E*WV3]fGe4[)+s6:+%- 7K,el8P2WL9MS>Z:f1+i?kK@?XR;P@q9._B4kmlC2@^'DJsN7EcQ5DF`qtSH?spc I=?ZqJV&N,KS>/:Ll%"IN/`gXO-,QfPE_>uQ^=,/S"#t>T:_dMU8+N\VPgAlWiE:Ss+14ArroG& k,gNCU]5i~> j8W0UPu_$j>?tQC@:Nh[B5)-tDK'T:F`r"TH@:6lJV&Q0LP^qKNK93bPa7Z(S",S'K6rlEOHPin Q^O;4SXuLKUSXlmPHqU)\@K2`^;%J$`5Td=^8pb'!58?N!3#5/s/>A2s/>P7!3#J=!1Efdm*u*r JcC<$JcC<$hZ!bZs6$RE!i,dG~> j8W0UPu_!i>?tQB@:Nk]B5)-tDK'T:F`qtSH@10kJV/W0Ll%%LNf]BdPa7Z(S"#M&JpWcDOHPin QC4/1SXuOLUSXllPI%[*\%0)_^;%M$`5Tg=^8pb'!58?N!3#5/s/>A2s/>P7!3#J=!1Efdm*u*r JcC<$JcC<$hZ!bZs5pLE!i,dG~> [/U:"n_i'hn`U#Cddll.eZA8?!58?N!3#56s/>A9s/>P>!3#J=!1Efdm*u*ro`&@2U7n6PT:MLB S!ob4QBmf#PEM&iO,o9[N/NRLLkgb>KS+o.JUi6!I=-?eH$FOVF`__GEH,r9DJa3*C2%?oB4b[b @q/tU?X@#C>?Y35=BAO'<)Z[l:f'q^9MA)O8cD507RTU169mb"4Ztnh3]T/Z2E!BJ1GLR:0.nh/ 0/,+91G^jF2`E]V3]fGe5!M7t6:+%-7Ros>8P2WK9hnJ\:f1+h<)lt"=BSg2>[1TA?XR;O@q9+^ B4kmmCMRa'DJsK6EcQ8EF`qtSH$XdaI=?ZrJ:`E+KS>2:Ll%"Is,I&=*flDFP*;/rQC!u,R[]e; StDXJTq\ jSr?5DcKh?=^,0ZJprl+r:`m+R_o$m`.rW)?9!:bX?JcC<$ JcFR+"fhUcY;ZNXs*t~> jSr?5DcKh?=^,0ZJprl+r:`m+R_o$m`.rW)?9!:bX?JcC<$ JcFR+"fhUbY;cTYs*t~> [/U:"n_i'hn`U#Cddcf-jh(#^!42[E!3!of!3#J=!1EfdmF;4,oDa?Y35=&r@%<)Z[l:f'n^9M8#N8Ou?A779L06:!k$4Ztnh3]T/Z2Dm[:ZB?X[AP@q9._B4kmmC27X& DJsK6EH?2DFa&%TH?spcI=?ZrJV&N,KSG8TfPE_>uQ^F20S"#t?T:_dMUSO[j V5C/hWMuoLJcC<$oD\uos5pFA!i,dG~> jo8Mm;H$Rr=]ns7?=.,NAS5XjCM[p.EH62FGC"R`IXcp$KSG84OHP3BQ&h#i Pa%N&R[]k>Tq\ jo8Mm;,^Iq=]ns7?=75PAS5[jCM[m-EH62FG^=^bIXm!%KSG;=MN*UVOckrpQ^O;4Ocb6BQ&h#h PEhH%R@Kh>TVA3XVm)Aj['mKU]"Gbl_8F42aN2QLc+3;C!kZIN`m+R_o@3kT$2so*%?9o.!9Sk4 JcC<$JcFL)"fhUbY;cTYs*t~> [/U:"n_i'hn`U#CddQZ*a7$#0]>geheGuQ>eH'=irVus.NUbO!k4/ILq4aOTT:_^FS"#k7R$X,( P`q8mOH>K_NJrdQM26qAKnP)2JUr<#IXQTjH?jaZG'.nJEcH)0J>%1r\&%@1,CaD 2E!KR3BB5a4Ztto5XIh*6q0X984cHI9MJ5W:f("e<)lq!='/U.>$P<=?=.)K@UiqZAnPdjC27X% D/O92EH-&@F`hkOH$O^^I!pHnIt<3(K7nu6LkpnFMi k5S\U:f:7m='/U0?!^oJ@qB7bBkqO&E,fo@G'A7YI=?ZsK7nu8M2I:PO-,TiQC"#/S2W8?&*i;17h#Om87s7oJ! C@hH-q+qH6bl7n'=;M&L,coPr"8Pb$C?GNtSUp<^s+13brroG&iib9AU]5i~> k5S\U:f1.k<`iL/?!^lI@qB7bBkqO&E,frAG'A7YI"$QrK7nr7M2R@QO-,TiQC"#/S2W8?&*i;17h#Om87s7oJ! C@hH-q+qH6bl7n'=;M&L,coPr"8Pb$C?GNtSUp<^s+13brroG&iib [/U:"nDW$hn`U#CddHT)ddO1:XaA(,Q'@JqOcYZbNK&mT MM[.ELP:D6Jq8IOIfXtFrd#i7GAfQ6FDiE.05k`FCi!m$BP1siARo:Y*X!is?FEMbN G^2qGF*i=aIt*$$K7ei2L51SAMMmFQNK9-_OckomQBml)R@9V7S=Z@FTV8*UUnsobW2ZcFJcC<$ o)Alns5:";!Mf[F~> kl5&dKMG?A<)lt$=^,0ZNif?q[b!3"i+!T3XdrrobG 0&ciGrVurZo`"p,rVurZcMn.E*WQ2CqF?J"rrC(<1]@=R_#=<6jQHOFi@YtVJcC<$_#FS kl5&dKMPEA;cQk$=^,0ZNif?q[b!3"i+!T3XdrrobG 0&ciGrVurZo`"p,rVurZcMn.E*WQ2CqF?J"rrC(<1]@=R_#=<6jQHOFi@YtVJcC<$_#FS [/U:"nDW$hn`U#Cdd?N)g8seD!W_uPaOL9hi7.kcp[%o8YFqMZSXc1=R[KP/QBd\uP*(lfNfB$W Mi!:HLPCM9K7ec+J:E&sH[C'aGuP.dB675S!"NLVCi!m%BkV-lARo:\9)\g(<*`d6>$5!1=&r=# ;c6Ih:ej_Z91qlJ84Q-<6pj:-5X7Lr4Zkee3B9#V2)I-F1,(C8/Hl+S+>=9F1c.'J2`WlZ4$5Yh 5oIXcitJqJ]/KnbD>M2I4MNK&sZOcbfkPa.Q$R$jD4S"6+BT:hmQrhK[nVl6T'JcC<$ nc&cms5:";!Mf[F~> l2P5XE_T>+;H-Xs=BSj6?=75PAS,RhCi"!.EH?5FGC"U`IXcp$KSG;>MiE^WOckrpQ^O>5OH>*B Q&h#iPa.T'R[]k>Tq\[JarW)os"Rm`<55jXD"60dlWIb)#s2"^= WrM(^2Z]]RJ,~> l2P5XE_T>+;,gOs=BSm7?=75PA7oRiCi+'/EH?8GG^4X`IXm!%KSG85OHG0B Q&h#iPa.T&R[]k>Tq\[JarW)os"Rm`<55jXD"60dlWIb)#s2"^= WrM(^3!#fSJ,~> [/U:"nDW$hn`U#Cdd6H(iNi!R"9AK%pu9HH!3"o-!TNn>rrD`kT*CjVS=>t8R/WBZP`q8mOcPN_ NJraPreOp9KnP)2Jq8E$IXQQiH?i3c#&&+#CCpOcDJa6,ChdZtB4bae@q/aR!#JpI?!CK8=]\[* $G)=!#K!NraSQ2AnPaiC27X%D/O92EH-&A F`hnPG^=32!E4GsJ:W9(K7nu7LPUeEMiE^VNf]?bP*;/sQC!r+R[]e:SXuIHTq\ lMkDRAP5`n:f:7m<`iL/?!^oJ@qB:dBkqR'E,frAG'A4XI=?ZsK7nu8M2R=PO-,TiQC"#/S<8tc H^0YRP*D5uR@9Y:StMgRV5LP]ZaI6N\[oGg^VRh+`lQ9Ec-=V_daZUJnu;Zir7M)!bg$3ejOF:q rk8=6f`qLorVlrqhu3-G!rCgQk5PPWcI2XWrrBP-!:9^fp lMkDRAkPin:f1.k<`iL/?!^oJ@qB7bBl%U'E,frAG'A4XI=?ZsK7nu8M2R=QO-,TiQC"#/S<8qb HBjPQP*D5uR@9Y:StMgQV5LP]ZaI6N]"5Pg^qmq,`lH3Ebg"J^daZUKnu;Zir7M)!bg$3ejOF:q rk8=6f`qLorVlrqhu3-G!rCgQk5PPWcI2XWrrBP-!:9^fp [/U:"n_i$gn`U#Cdd-B'jgO`[!!)ut!WM?-eGuQ/eH+q6kPl%YT:_^FS"#k7Q^3r&P`u*/4ck_a NJrdQM26qAKnP)2JUi9#IXQTiH>!B\13I_\F)PQ,Df0E.Chm`uB4kge@q/tU<*`g9>[(B7=]e`( <@CdD;,C%a:/+AS8kDNC7RK*n5sdk%50J=UK!%9NU0f(XC2)[BR3BB5a 4Zu"p5XIe'2`X>t84cEH92//V:f("f;cQ![!<61T>$G9:;I3a>@q0%\AnPaiC27X%D/X?3EH5r' @!$U;H$Xcn!!I.gJ:W<)K7nr5reM_SMi li1SP>tRaa:Jaqg?tQC@Uiq\BPD:"DK'T:FEVkSH@10kJV/W1LkptKNK93bPa7Z(R[]G& JU3TBOHPinQC423SXuLKUSXlmPHqU)\@K2`^;%M%`5]m?bKS8YdF-OpdBiGE!!)lK!S5ZEc2ag+ eH+Y#])N">!!'D+s.Tu%!!(LIrsHtL(BkU1CuG>f%K6>-e,'(FHjfoR!roA1rW)uu!ItRW!!T,+ !!";"rVm)D;&'KX@,^q]!HAMH!<3Q>bQ%UuAg%Qm0SK0"s*tLV!!T,+!!";"rVm5K<#5]S12PnK GROKNrso0pU(.)%!7UrI$f,D<$k=tEpAb/C$iU,0UC7,&,i&@u"1%t-?@i--s2+d>WrM@d2?BTQ J,~> li1SP>tRaa:Jaqf?tQC@Uit^BPM=!DK'T:FEVnTH[U?mJV/W1Ll%%KNKB9dPa7Z(S"#P' JpN]COHPinQC+)1SXuLKUSXlmPI%[*\%92a^;%M%`5]m?bK\;XdaHXrd^/PF!!)lK!S5ZEc2ag+ eH+Y#])N">!!'D+s.Tu%!!(LIrsHtL(BkU1CuG>f%K6>-e,'(FHjfoR!roA1rW)uu!ItRW!!T,+ !!";"rVm)D;&'KX@,^q]!HAMH!<3Q>bQ%UuAg%Qm0SK0"s*tLV!!T,+!!";"rVm5K<#5]S12PnK GROKNrso0pU(.)%!7UrI$f,D<$k=tEpAb/C$iU,0UC7,&,i&@u"1%t-?@i--s2+d>WrM@e2Z]]R J,~> [/U:"n_i$gn`U#Cdd$<&kdU/`!!)lq!V>9reGuQ2eH+Y#j8Uh%St2C@S!ob3Q^3o$PEM&jOH5B\ N/NRMLkpe>KS+o.J:E&tI!g6d/-#ZKF`g:\rW!F5D/F)i,7+DX'J!9q56_#d#u4f3>?Y04==OIQ !!6%W"9&9&9M6]7rW!ig!rr<-3C,kn4tmWR!sTJp2DmG *s;KB'Ij1b!"(k[8P2W=)$^3J&0aYD-j9MLrriH\3X,K_%o6VC@ok&f"U5Z!Anu3A"o\K_8-Jtn &SH<4H$WKk!%rbNJUrH+KS>2;Ll%"JN/`gXOHGZgPEhH"Q^F20S"#t?T:_dMUSFW\VPip7s+14= rroG&l)QZBU]5i~> m/LbT>=_@Z9i"S`;cQk$>$G9=?t*VWAnYpqCi433F*2YNH@($gIt<6*L5:\DNK0*_P*D9!R@B_/ Ob%hDO-#NhQ'[o-S=Q7FU8+Q_Y`lE$[^`l[]Y;.s_o0R9aNDcPcdC1jf%8EXoVqlkpXoStdF-;? W9Vn6hse/U"T&N+!8d_T!8IJQ%b(IX[06P!m/O-gX8i4SrVurIq>UH(rW)uu!4Vq-rr2u-rW!+6 jB;N`:]CA"ZNL8grE91;jSAfU\,HC+rsZjT!+G`h.KD*is8TS-!!Quq=o\Ourr3A6"TV!Xs/Z:& s8TS-!<)otg\q0`e,THe$ij`4l7)cdn,NEsrW!+6jB;N`:]::rh#IE_qgncus24j?WrM@d2?BTQ J,~> m/LbT>"D7Y9i"S`<)m"&=^,0UH(rW)uu!4Vq-rr2u-rW!+6 jB;N`:]CA"ZNL8grE91;jSAfU\,HC+rsZjT!+G`h.KD*is8TS-!!Quq=o\Ourr3A6"TV!Xs/Z:& s8TS-!<)otg\q0`e,THe$ij`4l7)cdn,NEsrW!+6jB;N`:]::rh#IE_qgncus24j?WrM@e2Z]]R J,~> [/U:"n_i$gn`U#Cdcp6%l*p;b!!)cn!V#!peGuQ5eH+Rshu>A.Un!pDR[BJ.QBd\uP*(lfO,]-X MMd7HLPCM9K7e`*It)oqI!^)A!!$YSF`_*l!"N7OD+t'3*+3DJ!CL@,<;lk(:0q41>$5!1=$?N_ !`DiTrW!$o91q,@!#ch@(]XOM5sRUa!<=6&'EA:j2)I-G1,1F8+oVKA0Ffio-isA`2DYX>$TL:4 /H,V`)E\i:!#A*s8i6VL'hD.Z!B3qW4oPH]=TVc2;#UG*:h!m-"TTo]?P*8OASc3ZrW"r2B.3f\ -$OT[H>M2I4MNK0$\OHG]iPa7W%Q^O;3S=H.BT:hmPUSO`frIP!"s6fmj WrM=a2$'KPJ,~> mJgq]>Xq=W92/2Y;H$Rs=BSj6?=75PAS5[jCM[m.EH?8GG^4X`It*$%KSG;>MN!RWOcu#qQ^O>5 Ocb6BQ&h&jPa.T&R[fq@Tq\*="@fHls4dMQ!7UcD!4Vq-s8N).rW)rt!4Vq- &`*Jh!!!W2s8*= "@fHls0qt-rVllPrW!JXs8F;E!7_&KMuWiqs8TS-!!V3YXT/>5rVllhrVurIJcC<$_uBn?s6-[G !Mf[F~> mJgq]>Xq=W92/2Y;H-Xt=BSm7?=75PAS5[kCM[m.EH?8GG^4U`IXcp$KSG;>Mi<[XOcu#qQ^O>5 Ocb9CQ&h#iPa.T'R@Kh?TVA3XVm)Ak[C3TU]=bkm_Sa=3aN2NJcHjndeCN7)eZneI!!)ZE!S5]L c2ag1eH+_$[Jp6TrVurjrr2uQrW!/Os8*="@fHls4dMQ!7UcD!4Vq-s8N).rW)rt!4Vq- &`*Jh!!!W2s8*= "@fHls0qt-rVllPrW!JXs8F;E!7_&KMuWiqs8TS-!!V3YXT/>5rVllhrVurIJcC<$_uBn?s6$XH !Mf[F~> [/^0s!oV`#n`U#Cdcg0$kHso^!!)Zk!V5:$eGuQ8eH+_$gA_>kS"#k6R/WBZP`q8mOH>K^NJrdP reM#]+0/"LJ!"^h=0f'(8!%p5j*rl9Z4ZtCr !#.F\/cYkT84cAZ!!#,W:f%od<)l*\!!HG.>$Oo'!"Vn7@h&J=s6TahWrM7b 2?BTQJ,~> mf.+l@mrmZ8k_rT:f1.k<`iL/?!^oJ@q94bC27[(EH-&BFa/1YI"$QrK7nu8M2R@ROHG]kQC"#/ S<8teI$KbTP*D5uR@9Y:T:hpSV5LS^Za@0N\\#Mh^VRh+`lQ9Ebg+S`daZk"g"Y#Zp8S)mn_!ur eBusp!3#GAs8TS-!!<&t\,HC-rrCIG !!)Wirri&ls8TS-!<)otg\q0Se,Rnr!"&B!s/c8$*WQ/KrW!#ss0qt-rVllqrVur4JcC<$_uBn? s6-[G!Mf[F~> mf.+lA49![8kVlS:f11l<`rR1?=%#K@qB:dBl%U'E,frAG'A7ZI=?]tK7nu8M2R@RO-,WjQC"#/ S<8teH^0YSP*D5uR@9Y:StMgQV5LP]ZaI6N]">Vh^VRh+`lH0Dc-FY`daZk"g"Y#Zp8S)mn_!ur eBusp!3#GAs8TS-!!<&t\,HC-rrCIG !!)Wirri&ls8TS-!<)otg\q0Se,Rnr!"&B!s/c8$*WQ/KrW!#ss0qt-rVllqrVur4JcC<$_uBn? s6$XH!Mf[F~> [/^0s!oV`#n`U#Cdc^*#jKS?X!!)Qh!rDE6,ikG_R?s5*Q'@JqOcb`cNK&mT MM[.EL4t;5K7SQ&IsucmHX$ILrcJ6_A,ZH0>]*^D!!m+KB4k[_@q/L;!!uD,>[(B7=BJTerW!!t ;*"UU"&2E]2?!UU70#(A!<5:a2#[Ib4$"nm!!G/91c$m@0/"LJ!!=l/1+N8'#rOY%-NF,O4ZtCr !!5GS1&_.S7nGlC!!l1l:f'na;cGpZ!<61'>$Ol&!!5r);Z6Y&@V9=D!!!FDD,:-2!cW3ZrVutC GlE$g!$#?rJUrH+KS>/9Ll%"IN/`gWO-,QfPa%H!Q^F3?Rg>RVT:_dMU86q&s+149rroG&kH6]D U]5i~> mf.*C6q0[<8kVlS:f11l<`iL/?!^oJ@qB:dC2@^)E,frAG'A7YI=H`uK8#&9M2R@ROHG`kQC"#/ S<8teH^0YRPE_?!R@9Y:StMgQV5LP]ZaI6N]"5Pg^VRh+`lQ6Dc-FY`daZk"g"YUH(rW)uu!4Vq-rr2u- rW)uu!4Vq-s8N)3rW)s/!"Jo0!:9R^!4Vq-rr2u2rW!9(s8TJ,!!WE&\,HC-rrBP-!<<'!]`%m2 rVHNo\,HC+rrCgQ!!:XL]`%m;rr<#+!!!3&s0qt-s8N).rW)os!;cZp!5a mf.*C6q'U:91quT:f:7m<`rR0?=%#K@qB7cC27[)E,frAG'J=[I=?ZtK7nu8M2R@RO-,TiQC"#/ S<8qdH^0YSPE_?!R@0P8T:hpRV5LP]ZaI6O]">Yj^VRh+`lQ9Fc-FY`daZk"g"Y<0p8S)mmF_To e^Mn%c2ag:eH=XinGBBg!5\X7!;uir!8IJQ!n71^rVursqYpQMrVurIq>UH(rW)uu!4Vq-rr2u- rW)uu!4Vq-s8N)3rW)s/!"Jo0!:9R^!4Vq-rr2u2rW!9(s8TJ,!!WE&\,HC-rrBP-!<<'!]`%m2 rVHNo\,HC+rrCgQ!!:XL]`%m;rr<#+!!!3&s0qt-s8N).rW)os!;cZp!5a [/^0s!oV`#n`U#CdcU$!hY*rL!:Bdgqs`b(hUMV)p=09$k4&8ps!#4GR$X,(P`q8mOcPN^NJrdQ M26qAKnP)2Jq8H%IXQQi>lFa&FTHSorW!")DG^<4s(MFF"D24T@oWF-#u4c2>?b64=B@]c!!6%q 3W9!\9hS,:rW!!i75=cA!^T((rW)p"rW*9Z1c.!D0JG.'rW!$S0ek$S!!tSD3@Fk-!BiUtrW!!d 6S\Q?!_>mArW!3t:/Fba;H$OXrW)t$s'#J"rW!!q@7gFu$"dg_9)nqnCi)uI!!71^;uQdsGlN'i H2[dj@=Wo\K7ei3L51SAMMmIRNfT9`OckomQ'R`'R@B\9S=Z@FTV9>Us+147rroG&kH6]DU]5i~> n,I9Y6:=7484uWN:Jaqf?tQC@Uit^BPM@"DK'T:F`r"TH[U?mJV/W1Ll%%LNf]BePa7]) S",V(K6rlEOHYooQ^O;4SY)UMUSarnPHqU)\%92b^;.S&`5]m?b0A5YdaHXrf@ep6hTY_ok5YYt 0huJ;SE-XIeHOU^jQlF7WW)tRrVurfrr2uQrW!#Ks3^fG!:p!d!8IJQ!7UcD!4`".!ri5+rW)rt !4Vq-s8N).rW)uu!71WE!;c?f!4Vq-rr2uIrW!8us8T2$!$)%=\,HC-rrBP-!<<'!dJa+Go(r@d \,HC+rrCgQ!!:XLe,B=RpAb/p!!"#=s0qt-s8N).rW)os!:Tme!8`;,JcEXf"fhUdYVuTXs*t~> n,I9Y6:=:584lNL:Jaqg?tQC@Uit^BPM@"DK'Wb0A2XdaHXrf@em5hTbepk5YYt 0huJ;SE-XIeHOU^jQlF7WW)tRrVurfrr2uQrW!#Ks3^fG!:p!d!8IJQ!7UcD!4`".!ri5+rW)rt !4Vq-s8N).rW)uu!71WE!;c?f!4Vq-rr2uIrW!8us8T2$!$)%=\,HC-rrBP-!<<'!dJa+Go(r@d \,HC+rrCgQ!!:XLe,B=RpAb/p!!"#=s0qt-s8N).rW)os!:Tme!8`;,JcEXf"fhUcYrDcZs*t~> [/^0s!oV`#n`U#CdcKrufCu<.!!Nrh:25KQjJ`%-"k_\mlgt"rruq?=Q^3o$PEM&jO,f3ZN/NRM Lkg_>KS+o/J:E&tI=$9SrW!(>F`_\7rW!")DHZr=#\7U]B4b[b@oWF-#u4c2>?Y04=B7Ta!!6%q 3;rm[9M8#8rW!!h75=cA!^T%+rW)sZ$op:+2DmYtD"!`*6&rW!76B4j^7!"<[\:]:=qEcY1Y!<72:Ll%"IN/`gWOHGZhPEhE!Q^F6@Rg#=RT:`=cJcC<$kl1gds6$OC!Mf[F~> nGdHt5XIk-7nHs8UjQ !!(LDrrC.>!!;`kPl:[^rrBP-!<<'!\,HC-rri6:!!(RKrrIa`q>UH(rW)rt%K7XR!7_&KMuWip s8TS-!<<'!\,HC-rri9@!!(%s8T\0!!N>hR/bq?!"[QYrZqOEeGoQ-!!$m9s0qt-s8N). rW)os"4R;N)M.p>s2+d>WrMIj2ZfcSJ,~> nGdHt5sdt/7nH$G9>?t*VWAnPgoCi464FEMbOH@('hIt<6*L5:\ENK0*_P*D9" R@B_/Ob%hDO-#QiQC"#.S"61FU8+Q_Y`lE$[^Wi[]Y;1t_o0R9aihoRcdL7kf%8U0gYUi-po4;o iRnOif%&:!daHOid/MAhcMl/icj.tHdaLq[p%kB^!uM"s8UjQ !!(LDrrC.>!!;`kPl:[^rrBP-!<<'!\,HC-rri6:!!(RKrrIa`q>UH(rW)rt%K7XR!7_&KMuWip s8TS-!<<'!\,HC-rri9@!!(%s8T\0!!N>hR/bq?!"[QYrZqOEeGoQ-!!$m9s0qt-s8N). rW)os"4R;N)M.p>s2+d>WrMIk3!,lTJ,~> [/^0s!oMSun`U#CdcBltcM4C>!9*qeqXs@EkiLg]h:pW7f%0iNs4.S0g"Y??ioTAunFcXorsnXl Q'IPrOcb`dNK&mTMZ/DHL4t;5K7\W'IsufnH[6&"!+U.oFCP4L%Unf9/Z\K!_,U5rW!Wt5<]8O!&6Jo3#r_k1c-sC0J>(%rW!K_0etNj !!"T03?J5$)Eg89rW!!e6o"Z@%S0/`#ljrg:/Fau02tq8rW!((<&RuXrW!I)@:B]H!**ZE3<0%3 Ci)uI!!71^;uQbBGBnL\AcMf?It*$$K7ei3LPL\BMMmFQNfK0^OckomQBml)RJrZXS=ZVLJcC<$ k5PUbs6QpI!i,dG~> nc*XB5=%V(7Rp!B92/2Y;H-Xs=]ns7?XR>QAS5XjCi+'/EH?8GG^=[aIt3-'KSG;>MN*XXOcu#q Q^O>5Ock9AQ&h#jPa7])R[fq@TVA3XVm)Ak[C3TV]"Gbl_8O:3aN2QLcHt"geCN7)gYCZDi4f#e !!($l!!&Vj"*aeGV>gJpg\q0_e,THU"TV![rJVEQs8UjQ!!(LDrs&0-!!&G>0E(tNrrBP-!<<'! \,HC,rs5P(!)i@dZO3r4rrBP-!<)p+_[?HQqW]O1/+*B:\,HC-rrBP-!<3!+[06P!n,81YkPtS= rW!)[THsQlrW!JXs8TtE!+G`h.KD!ds8TS-!<<'!\,HC+rr]"r!.0:sJcEUe"fhUiYVuWYs*t~> nc*XB5!_M&7Rp$B92/2Y;H-Xt=]o!9?=75PAS5[kCi+'/EH?8GG^=^bIXm!%KnbD?MN*UVOcu&r Q^XD6OckgJpg\q0_e,THU"TV![rJVEQs8UjQ!!(LDrs&0-!!&G>0E(tNrrBP-!<<'! \,HC,rs5P(!)i@dZO3r4rrBP-!<)p+_[?HQqW]O1/+*B:\,HC-rrBP-!<3!+[06P!n,81YkPtS= rW!)[THsQlrW!JXs8TtE!+G`h.KD!ds8TS-!<<'!\,HC+rr]"r!.0:sJcEUe"fhUiYrDf[s*t~> [/^0s!oMSun`U#Cdc9fs_YL23!65$=!5/=Xp7db6Ocb]bNK&mTM2@%DL4t84Jq8K'IsufnH[7[P !).NWF(>1L%U@V/BrW!I(?!LT<=]ea,;[!.$0guWP!!>nf9/Z\K!_5^7rW!Wt 5<^Lr!#%:O-NYSO1c$pC0JG.'rW!K`0etO5!WWro1^O-h3B]PXrW!!d6S\Q?%S0/`2$![l8l$uB 92ee^rW!'s3"9+hrW!I)@:Dn5!%2>b&HEGRCi3&J!<7'>;uQb.GBeCZ:B1AXIt*$$K7el3L]3)E MMmFQNK0*_OckomQBml)R@9V7WV:uDJcFg2"fhUhY;QHWs*t~> o)Egh76a()6q0[;8k_rT:f:7m='/X1?!^oJ@qB:dC27[(E,frAG'J=ZI=?ZsK7nu8M2R@ROHG]j QC"#/S<8tdHBjPRP*D9!R@9V9StVmSV5LP]ZaI6O]">Yi^r""-`lQ9Fc-F\ae'ut#g"Y9E(^:gOec5ZD%K6>.%@6hi"fVk0!$mL%!!V !Y:S)rW!99_#OGM9+qLG6b)sl!ItRW!!*U3rr3A\A0;9i07rirs*tLV!!3[s$iU,5&&A5FbuPYc (erQZrs+H*":HouU(.)%%h4j)s4_',$k4kAo`+rA$iU,-&!dV&!!a%Ms8Ppr*qFm^JcEUe"fhUi YVuWYs*t~> o)Egh76a()6UaL:8kVoU:f:4l='/X1?=%#K@q94cC2@^(E,frAG'J=[I=H`tK7nu8M2I:QOHG`l QC"#/S<8tdHBjPQP*D5uR@9Y:StMgQV5LS^ZaI6O\[oJh^V[n,`lQ6Ec-=V_e(*%$g"Y<=hr*J" qPjMq`n:=lT)T&b)ZWe9s.Tu%!"KI(s8U>E(^:gOec5ZD%K6>.%@6hi"fVk0!$mL%!!V !Y:S)rW!99_#OGM9+qLG6b)sl!ItRW!!*U3rr3A\A0;9i07rirs*tLV!!3[s$iU,5&&A5FbuPYc (erQZrs+H*":HouU(.)%%h4j)s4_',$k4kAo`+rA$iU,-&!dV&!!a%Ms8Ppr*qFm^JcEUe"fhUi YrDf[s*t~> [/^0s!oMSun`U#Cdc9ftmBuej!!(%=!!'S0%^hF\O,f3ZN/EIKLkg_=rdtc6J:E&tI=-?eEt&*r F`g:\rW!E46#CF>,ROS[+&lf]56_#d%g=ms>Zt95=&r<\"98E0/H,VO"?@e2rW!!&.0KPL'Eg'Q 4Y@?M!"(@oaue"U,PtAo)9B"o\K'#=Jap!%%qTH$Uh<%sWSSJV&N,KS>2;Ll%"I N/`jYOHGZhPE_>uQ^F20]7L!5s5Et]WrMFh2?KZRJ,~> o)EfI4[21u6q'U;8kVlT:f:7m='8^2?=%#K@qB:dBl%X(E,frAG'J=[I=H`uK7o#9M2R@QO-,Ti QC"#/S<8qcHBjPQP*D5uR@9Y:T:hpSV5LP]ZaI6O]"5Sh^qmq,`lQ9Fc-F\`e(*%$g"Y<=i8N\H qPjMq`n:=lSc8f='`u2-rr_l8f)CL*"2=mQdt.OMs2"^=WrM4b3!,lTJ,~> o)EfI4[25!6UjR:92&&U:f:7m<`rU1?=%&LA7]CdBkqR'E,frAG'J=ZI=H`tK7nu8M2R@RO-,Wk QC"#/S<8tdHBjPQP*D5uR@9Y:T:r!SV5LP]ZaI6O]"5Sh^VRh+`lQ9Fbg+S_e(*%$g"Y<=i8N_I qPjMq`n:=lSc8f='`u2-rr_l8f)CL*"2=mQdt.OMs2"^=WrM4d3!,lTJ,~> [/^0s!oVZ!n`U#Cdc0`rhtj>Q!65$=!4Vt5erPiONJrdQreLT0L&Q]fJq8E$IXQQhH?is,!EaGc F)c2=Df0E.ChdZtB4b^cA7K(W?s[/F>[1H8=]ea*%10/#"61,CaD2)dHS3BB5a4[)(p5sdn+6q'U984cEH92//W:f("e<)lq! ='/U.>$G6 oDa!$4Zu"p6:41384uTN:Jaqg[:]E@Uit]BPD6uDK0Z;F`r"UH[LZdaQatf@ep6hVdAQ jN7;!!!($l!!&Ph"5uc]_L_aIrr^+J9&kL&JcEOc"fhUbY;cTYs*t~> oDa!$4?btq6:=:584lNL:Jaqg[:ZD@Uit^B527!DfKc [/^0s!oVZ!n`U#Cdc'Zqchj^B!65$=!4;b/[Z-3&M>i;VL4t;5Jq8H%IsufnH?sj]Bd!^aFE;GA E,KQ0Chmd#BP1shAc?0]@:3GK?!U]==]nj.(3/M8\00JYF@2)[BQ3B9,_4?Yhk5X@_'6UXC67n?3D92&&T:Jakb;H-Xr<``C+ =^,-:?=$uI@:NeXA7fIeBkhF"Ci+'.E,fo>FEM_LGBmI!,]8&0Ig^gZK7ei2L5:YBMi@Xp#`k(0 OckrnQ+MVIJcFO*"fhU`Y;ZNXs*t~> o`'0[3]oPi5sdt.7n?6F9i+\b<)m"&=^56=?t*VWAnYppD/XE6F*2YNH@('iJ:W?,L5:\ENK0*_ P*D9"R@B_/P(J"FO-#NhQC"#.S=Q:GU8+T`Y`lE$[^Wi[]t_=u_o0U:aihrScdC1kf%8U0gtpuJ j5f@6r2K_s`n:=lRf o`'0[3^#Vj5sdt/7nH?I9i"S`<)m"%=^,3=?t*VWB4ksqD/XB6F*2YNH@('iItE<+L5:\ENK0*_ P*M?"R@Bb0P(J"FO-,TiQC"#.S=Q:GU8+T`Y`lE$[^`o\]tV7u_o0R9aihrSd*^:kf%8U0gtpuJ ioK75r2K_s`n:=lRf [/^0s!oVZ!n`U#CdbsTp]_nc0!65$=!4)Vgo;@J&Lkpe>KS+o/J:E&tI=-BfH?j^X=]TTaEH,r9 DJX-)C2%?oB4b[b@q&kS?X@#C>?Y03=B8I&<)Z]o;#a8s9hS,O8Ol9?77@,A$UI$A4Ztnh3]T/Z 2Z>Q51,1I90.nh/0/,+91GgpH2E*WV3]fGe5!M:u6:4+.77Kd;8P2WK9MJ;Z:f1.j?tQA?XR;P@q9._B4kmlCM[g)DJsN7EcZ>FFa&%T>@)Z(I=H`sJV&N,KSG5;Ll%"IN/`jYO-,Qf Xn72EJcFI("fhU`Y;ZNXs*t~> o`'/C3]oPi5sdt/7n?6F9i"S`<)m"%=^56>@:NeYAnYpqD/XB5FEMbOH?t!hJ:`E,L5:\ENK0'^ PEhH#R@B_/P(@qEO-#NhQC"#.S=Q:GU84ZaZ'2N%[^`l[]t_=u_o0U:ai_lRd*^:kf%8U0gtprH j5f=Vr2K_s`n:=lJcC<$JcC<$[JpE1s6?UA!i,dG~> o`'/B3^#Vj5sdt/7nH$P?>@:NeYB4u!pD/XB6FEMePH@($hJ:W?,L5:_FNK0*_ P*D9"R@B_/P(@qEO-#NhQC+)/S=Q:GU84W`Z'2N%[^`o\]Y;1t_o9[;aihrRcdL7kf%8X1gtprI j5f@Wr2K_s`n:=lJcC<$JcC<$[JpE1s6?XB!i,dG~> [/^0s!oMSun`U#CdbsTpj8>nW!65$=!3cD\oW!\$KnP)2JUi9#IXQTiH?jaZG'.qLF)l8>Df'?- ChdZtB4kde@q/tV?s[/F>[1H8=]ec) p&B?,3BKAe5=%V(7Rp!B9MJ;Z;H-Xt=B\s8?XR>QAS5[kCi"!.EHH>HG^=[aIt*$%KSG;>MiEaX Ocu#qQ^O>5Ock9AQ&h#iPa7Z(R[]k>TVA6YVm)Ak[C3TV]=bkn_8F42aN;TLc-XkdeCN7)gYCZD iSrq[kfWk(!!($l!!%TMJcC<$JcE.X"fhUfX#0sRs*t~> [/^0s!oMSun`U#CdbjNoc2FXB!65$=!3?,J^P%5lJUi6"I=6HhH?sg[G'.qLF)l8>Df'?-CMIQs B4bad@q/tV?iF@f>[(B7=]e^)"0r\$5c1,CaD2)dKT3BB5a4[)(q5sdn+77Kd;84cEH92//W:f(%f;cQgu='/U/>$G6 pA]Np2`Wo^4[25!6q0[<91r#U:fC=n='8^2?!guK@qB:dC27X'EH-&BGBeF\I=Hd!K7nu8MN!OT OHG`lQC+,1S<8tcHBjPRP*D9!R@B_;T:hpRVPg\`ZaRVi^VRk,a2lEHc-F\ae(*%%g"Y<= i8N\Vjlbm9ri,qu`n:=lJcC<$JcC<$[JpE1s6?UA!i,dG~> pA]Np3&s&_4[25!6q'U;91quT:f:7m<`iL0?=.,M@qB:dC2@a)EH-&BG'J=[I=?]uK7nu8M2R@R OHG]jQC"#/S<8tcHBjPQP*D9"R@9Y:T:hpRVPg\_ZaI9P]">Yi^V[n-`lQ [/^0s!oMSun`U#CdbaHn[f39,!65$=!3#o5je76TIsufmH[9s^GBS+OFE;GAE,TXnCf+q]BP1sh ARo:\@:3GK?!LW<=]nj-<`N*t;Gg7d:/4JU91h`G7n,p86UF+*5<_4n4?>J_3&``Q1c-sB0J>(3 /M8\10ekI@1c73N3B9,^r]U9G:dIE76UaI77n?3D91qrR:/Fbb;H$Op<``C+=^#'9?=$uH@UinY AS,RfBkhC!Ci+'/EH-#?FEMbMG^4U]H[L9lIt3'$K7ei2LPL\BVriR1JcF*s"fhUcW&+RNs*t~> pA]M`3&s#^4[25!6q0[<92&&V:f:7m='8^3?!^oK@qB:dBl%U(EH6/DG'SC\I=H`uK8#&9M2R@R OHG`kQC+)0S<8tcHBjPQPE_?!R@B_;StVmRVPgY^ZaI6O]">Yi^qmt.`lQ9Fc-F\ae(*%%g"Y?> i8N_Wk32'\ri,qu`n:=lJcC<$JcC<$[JpE1s6?UA!i,dG~> pA]M`3&s#^5!VD#6q0[<92&&U;,U@n<`rU2?=.)M@qB:dC2@a*EH-&BGBeF\I=?]tK8#&9M2R@R OHG`lQC"#/S<8tcHBjPQP*D9!R@9Y:T:r!TVPg\_ZaI6O\\#Mh^V[n,`lQ9Fc-=V`daZk"g"Y<= i8N_Wk32'\ri,qu`n:=lJcC<$JcC<$[JpE1s6?XB!i,dG~> [/^0s!oMSun`U#CdbaHngA\)P!65$=!2TW(2/M8\0 0J`Va9f4gg3&s#^4?Yhl5=%V'6q'R77n?3D91quS:Jakb;c?[r<``F,>$G6;?=.&I@:E_WAS,Rf BkhC!Ci+'/EH-#?FEM_MGBnL\H[L;AIg:OVK7el3TA5"tJcEso"fhUcW&+RNs*t~> p]#]Y2E*WX4?btq6:=:584uWO:Jaqg[:ZD@Uit^BPM@#DK'W;F`r"UH[UBnJqJ`3Ll%%L NfTYdaQ^sf@o!7 hVd>PjQ>[jlG!:u!!($l!!%TMJcC<$JcE.X"fhUdZ8_l[s*t~> p]#]Y2E*WX4?Ynp6:=:58P2ZN:Jaqg@(ZE@Uit^BPM@#DfKcYdF6Xsf\5*8 hVd>PjQ>[jlG!:u!!($l!!%TMJcC<$JcE.X"fhUeZ8_l[s*t~> [/^0s!oV]"n`U#CdbXBp^T+:6`r?#=T`9E#VKmE1G'.qLEcH)[(B7=]\[)FEM_LGBnL\H[U>AIfk7RXQ>$5JcEgk"fhUcYVuTXs*t~> p]#\M2)dNW4?Ynp6:=:584uTM:Jaqg?tQC@Uit^BPM@#DfKf>F`r%VH[UBnJqJc4Ll%%L Nf]BeQ'Rf*S",V(JpWcDOcu#qQ^O>5SY)RLUSarnPd@d+\@K5b^V@Y'`Q-'AbK\>YdaHXrf\5*9 hVd>PjQ5UilJDQ@!!($l!!%TMJcC<$JcE.X"fhUdZ8_l[s*t~> p]#\M2E3]X4Zu"q6:=:58P;]N:Jaqg@(ZE@Uj"_BPM@#DK'T:F`r"UH[UBoJqJ`2Ll.+M Nf]BePa7Z)S",V(JpWcDOHYooR$jD5SXuOLUo(&pPd@d+\@K5b^;%P'`Q$!@bK\>ZdaQatf@ep6 hVdAQjQ>[jlJDQ@!!($l!!%TMJcC<$JcE.X"fhUeZ8_l[s*t~> [/^0s!oV]"n`U#CdbXBpiMrmX`r?#=S,Z4*O`b_cEH,r9DJX-)C2%?oAn>L_@q&kS?=$oB>?Y04 =B8I&<)Z[l:f'q^9M8#N84Z6?779L06:!k#4Ztkg3]T2Z2Dm[:ZB?XR;P@q9._B4u!nCMRa'DJsN7 EcZ>FF`r"TH?spcI@/91s+13frroG&kHHlGU]5i~> q#:Q*1c@9Q3]-X4"[u*[:f('g!,3T]?!^rK@qB:dC2@a)EH-&BG'J=[I=Hd!K7o#9M2R@ROHG`k QC+)0S<9"eHBjPRP*D9!R@9Y:T:r!SVPg\`ZaI6O]">Yj^r"%/`lQ9Fc-FY`e'ut#g"Y<=i8N_W k32'pmDGq(n_!mBo@X*Dk1K_7JcC<$JcC<$[JpE1s6-aJ!Mf[F~> q#:Q*1c@9Q4#Ha5"[u'Y:f('g!,3W^?!^rKA7]CeC27[(EH-)CGBnL]I=Hd!K7nu8MN!OTOHG`l QC"#/S<8tdH^0YSPE_?"R@B_;T:r!SV5LS_['mEQ]">Yj^V[q.`lQ9Fc-F\`daZk#g=tH?i8EYV k32'qmDGq(n_!mBo@X*Dk1K_7JcC<$JcC<$[JpE1s66gK!Mf[F~> o)A^Eq#CE`r;Z]q!+4@Xs7-6LfC8=o!V"Omn,gP.!:g'h!;$3j!9X:]!1*XMbEd'aD/F**C2%?o AnGUa@q&kS?X@&E>?Y03=&r=$<)ZXk:f'n]9M7uL8Ou?@779L05s[b"4Ztng3B9&X2Z>N@1GLR; /hS_.0/,+9r\Qer2E*WV3]oPg5!M:u6:+(/7Ros>8P2WK9MSA[;,U:k[:ZC?t!JR @q9._B4kpnC2@a)DK#Mo#]k*1F`r"SS^)fdJcEIa"fhUcYVuTXs*t~> q#:V&1c@?tQC@Us%_BPM@#DfB`=F`r"UH[UBoJV/Z2Ll.+M Nf]BdQ'Rf+S",V(JpN]COHYopQ^O;4SY)UMUSaroPI%[*\@T;c^VI\(`5]m?bK\>ZdaQ^sf@ep6 hVdAQjQ5UilKmK0!:e_B!;"kJ!8.>Pg"?B)g&;!Og&D$Rf`2$Jf`2#'s+13$s+13XrroG&kIE\U U]5i~> q#:V&1c76Q3]SW,r;^sW0M5#6:JaqJ.0)7r>[C`E@Us%_BPM@"DfKf>Fa&+WH[UBnJqJc4Ll%%L Nf]BeQ'Rf*S",V)JpN]COHYopR$jD5SY)UMUo(&oPdIj-\@T;c^VI_)`5fsAbK\>ZdaQ^sf\,$7 hVdAQjQ>[jlKmK0!:e_B!;"kJ!8.>Pg"?B)g&;!Og&D$Rf`2$Jf`2#'s+13$s+13XrroG&kIE\U U]5i~> o)Ad_Ve5l-!`c/pr;QntH3'PWfDc!En__pen`U#CdbO$4s0<`N.!;c q>Uf11Gh!L3BB;e3W]3[FU^o89288[;H+hV=]o!8?X[GTAS5[kCi+*1EccGJH$XgcIt3-'KnkJA MiEaYOcu&rR$jG6Oct?BQ&h&kPa.T'R[fq@Tq\?ZVm2Gm[CPf`9^Y!!*#OrW)uOrVuuP!<1XO!<1XO!<1XT!86$* f`:j$!!%TMJcC<$JcE.X"fhUc\NBnfs*t~> q>Uf11,LmJ3BB;e3W]3[FU^o8928;[;cFqW=]o!9?=@;RAnPdlCi+'/EcZAHG^=^bIt3*&KnbD? MiEaYOcu&rR$jG6OctBCQ&h#jPa7Z(R[fq@Tq\?ZVm2Jn[C3TV]=kqo_Sa@5aN;ZNcHt"geCN:* gYCZDiT'"\kiqC!m_Su%g&D$]f`9^Y!8.>Pf`9^Y!!*#OrW)uOrVuuP!<1XO!<1XO!<1XT!86$* f`:j$!!%TMJcC<$JcE.X"fhUc\NBnfs*t~> nG`OR"o\K%0DYVKAOG#J"S2*?f'r4n!V"Oln,^E,r;Zcs%K?G.rrE'!!<3'!rr<&us8E#us8E!! rrE&u!!*#u!!*#u"T\T&!<3&prr<%Wrt=e>RrMqJ@UWYN?$5!1=8l5";@ZQ#:ej_Y91qiJ 7n6$;6iKFP5[-E84Zked3B/rU2)I*E1,(@7/hSe10JG7<1c.'J2`WlZ4$>_j5 q>Ue/1Gh!L3BB8d58F+sF?3&g9i+Ya:]rd]>$PB@?t3_YB4u$rD/XE6F*2YNH@('iJ:`E-L5:\E NK0*_PEhH$R[]k1P(@qEO-,WjQC"#.S=Z@HU84ZaZ'2N&[^`o\]t_A"`5Td q>Ue/1Gh!L3BK>e58F+sF?3#f:/Fbb;$8m^>$PB@@:E_XB5)*sD/XB6F*2\PH@1-jJ:`E-L5:_F NK0*_PEhH$R[]h0P(J"FO-,WjQC"#.S=Q:GU84ZaZ'2N%\%'#]]t_A!`5K^;aihrScdL:mf%A[1 gtpuIj5f@dl0@[(huN`/!!*#O"9@-.!!*#O'`cneg"?AY!86$*f`9^Y!8.A*f`2$Og&D'Mf`D0, !;Y:J!.k0$s+13$s0_k1WrM7m49;5WJ,~> n,EAcr;Zi?qu6`h%&_YU"S2*?f'r4n!V"Oln,_GIrVlitrr3*$s8N'!rr3]5rrE*!!<3'!rrE'! s8N*!!<<'!!<3#u!;uiu!<3&prr<%Ps*=+WVLr>_>?Y03=&r=$<)QUk:esh\9M8#N8Ol9?779L0 5s[_!4Ztnh3]T/Y2Dm?tQA?X[DR@q9.bMQG+nJcC<$XT&I(s5g^O!Mf[F~> qYprD0f(XE3&s#_5!Ub!!-B5R9MJ>\;DSMW=^#':?XRARAS5[kCi+*1EcZAIG^=acIt3-'KnbD? N/`j[Ocu&rR$sM8OckPf`9\*g"?AY!86$*f`9^Y!8.A*r;cfL!!*#O!s%$- !;Y:J!.k0$s+13$s0_k1WrMFh2ZfcSJ,~> qYprD0f(XE3&s&`4[:\!!-B5S92/2Z;DSMW=^#'9?=75QAnPdlCi+*0EH?8HG^=^bIt3-'KnbD? MiEaYOcu&rQ^XD6OckPf`9\*g"?AY!86$*f`9^Y!8.A*r;cfL!!*#O!s%$- !;Y:J!.k0$s+13$s0_k1WrMIi3!,lTJ,~> n,EBqr;Zh/qu6_d'):#Ws7-6LfC8=o!V"Okn,PKHs8N'1GgpH2`NfX3]oMf5!M:u6:+(/7Ros>8P2WL9hnJ\:f1+i[;0$TtK%OJcC<$V#LUus6HdF!i,dG~> qYptI0f(XE2`Wo^4[21:rW!6,7ncZR;,RuP'Dqh3,\'mP!#f`pEH?8GF\*_`!XTrAJVJu qYptI0f(XD3&s#^5!M= n,EFe*<#p=%.jDs!]4dRqu?e*s4dDNqu6rsR7.ho&j;EQpAY+;qu?t#N\q1M.!XYJkR-@5<@SL^ #8]7Hh#6^BV>C5rn>nPS#U/U)!/paS"9AK%!!*#u#lsu*rrE*!!<<)u!!`H's8N*!!<2uu!;uj! !<<'!rr2ruq>UEpJcG<@2=fM@YFC>j@SfTc7R]^46:!n&5!;"i3]T2[2`5sdn*77B^:84rkS%8BSn:f(;/H]=Z(aPHH=s+13=rroG&l`E&HU]5i~> qu7,g0/57>2)dNW4?c"r+T29H/PAf7;*t=Q5W\iD"=.Ja6Q,h&)fK_:FEM73!!"-;+TMKZH&.<9 NK0*_PEhGVE;]bW$kui8"98EBNgZ?,M?!W5A8":2!!!C_\@T;5.1c@W!f$dWrW!\]e'ut$g=tH? i8N_Wk32'pm-aAkh>Z+-!<1XZ!86$*!86$*g"??*r7M,Og"H?)!SIJPf`2$Og&D'Pg&1mOf`:j$ !!%TMJcC<$JcE.X"fhUhY;ZNXs*t~> qu7,g0/57>2E3]X4?Ynp+T29H/k\o8:dY4P5s"rE"=.J`65f_%)fK_9FEM42!!"-;+TMKZHAIH: NK0*_PEhGVEW#kX$kui8"98EBNL?6*M#[N4A8":2!!!C_\@T>6.1c@W!f$dWrW!\\e(*%$g=tH? i8N_Wk32'qm-a>jh>Z+-!<1XZ!86$*!86$*g"??*r7M,Og"H?)!SIJPf`2$Og&D'Pg&1mOf`:j$ !!%TMJcC<$JcE.X"fhUiY;cTYs*t~> mf*98r;ZherVm#H!7JKWr;Zt-s7<-Pr;ccq$K!E8!(*;E!!"Y6p\t95]DV^8'dJf^"onWTg&C1C b5_N8NKIHJ!!!P:rpTut1_]ff!ho\rrW)?T!7LiGrrE&u$NU5,!!*'!!<<'!!;uiu!<<)u!!3*" rr2rurr;uus8W#t!WN/qrr<%Ms5j8Bp#XiL^Tsf.P)+X4DeNQ^3fLTrb]=cJ.OTJcC<$NW00^s6HdF!i,dG~> qu7+p0/57>2E*WX4Zu"q3rK$b&55hp;'HTP='>J%"=.GdAL@?U)fK_:F)_lo!!ILqGQ\!H+GYi5 NK0*_PEhH$Rf*3h!Ge!^8,`Jr249o(M#]c7USar#rW!-4XLc'X^I\;')\[51\g@F*e'ut#g"Y?> i8N_Wk32'pmI'Gkkk`s4!:nhC!;bCK!;"nD!;Y:J!.k0$s+13$s0_k1WrMFh2ZfcSJ,~> qu7+p0/57>2E3]Y4?Yqr3rK$b&55hp:a-KO=BYS&"=.JeAg[HV)fK_9FE%up!!IIpGQ\!H+GYf3 NK0*`PE_B#RJd*g!Gds]8,`Jr249o'M#]c7Uo(&$rW!-4XLc'X^I\;')\[52\g@F)e'ut$g=tH? i8N_WjlbmnmI'Jlkk`s4!:nhC!;bCK!;"nD!;Y:J!.k0$s+13$s0_k1WrMIi3!,lTJ,~> mf*=F!WE'!2Z=Ain,QVi!!O0ol.ITfmI1,(q>UEpo)J^iqZ$QqoDegjq>UEpJcC<$JcC<$[JpE1 s6HdF!i,dG~> qu7.(0JYIA2E3]Y4Zu%r65'4s#X2![:'ECQ='>J%"=.GeAL@?U"E/:"F$op,"<;i>J/nOg$X\dL NK0*_PEhH$Rf*3h(jhO/ErH%H!JQu4P>@.3USarar;["@]">Yj8GrN-9?GB%HihaEe^i@*gYLcF ioB+^kiqF"mdJTqa4UFmJcC<$JcC<$[JpE1s6I-U!Mf[F~> qu7.(0/>=?2E3]Y4[)(r65'4s#X2!Z:'ECQ=BYS&"=.GeAg[HV"E/:#F@6$-"<;i>J/nOg$X\dL NK0*`PEhH$Rf*3h(jqU0ErH%H!JR#5P>@14Uo(&cr;["@]">Yj8GrN-9?PH&HihaFeCN:+gYC]E iT0(]kiqC!mdSZra4UFmJcC<$JcC<$[JpE1s6I0W!Mf[F~> mJd/Sr;[#Ks8Va%RK!6b!!$C*rr?F)!<)otPPtO^3r]-Z2uWdWZM+=s!!Fb&nE@=[!!WMHkig]A b5LN(hYdESPl:(O=oA=#>5n!lO9=n>!7Jme!!%TMJcC<$JcE.X"fhUf[5n>`s*t~> r;R;T/h\t91c@Yj8GrN.Qc[IrcHt"fe^iC+gYCZD iT0(^kiqC"mdJU!i5jRO!.k0$s+13$s0_k1WrMCo3ru,VJ,~> r;R;T0/,+;1c@9Q3]oPi5sm7&!!j]A:bi/MYj8,WE-Qc[FqcHt"ge^i@+gYC]E ioB+^kiqF"mdS["i5jRO!.k0$s+13$s0_k1WrMCp49;5WJ,~> mJd0br;[";s8SVto)A[f!!$C*rr?F)!<)ot5Q1W_ r;R=f0/#%:1c@ r;R=f/hf"91c@!!G!&Q>(!!ku^S=Z'J-4L(S!!Pg&]=ksMr;[hLaihrTd*gCnf%8X1h;7)K j5f@dl0Ia)n'_!raOpOnJcC<$JcC<$[JpE1s6I0W!Mf[F~> mJd4^'E.t7&GH,`@/^-(!!$C*rr?F)!<)ot'E.t3 r;R=&/h\q81c@G1fO-';?"?`0EN>;Em!\J,.r;[!i]">Yj8GrN.`lZEKcd:+he^iC,gYC]EiT'"]kNV=" mdJU!oZ5\c!.k0$s+13$s0_k1WrM4n49;5WJ,~> r;R=&/hf"91c@G.eO-';?"?`-DN>;Em!\J,.r;[!i]">Yj8GrN.`lcKLcd:+he^iC+gYCZDiT'"]kiqF" mdJU!oZ5\c!.k0$s+13$s0_k1WrM7p49;5WJ,~> m/I'(r;ZqodK%5as8;ot?iL'*?i:!'rr<2q!!*6$p](0l"B3n@ki_mE"C(*RcQ<&c!^Dj=r;Zh# rU9eir;ZickjST#`r?#=JcC<$JcC<$[JpE1s5gdQ!Mf[F~> rVmJ_/MAb31Gq'L3BK>e5XIe*3rK$`'-[laWYSN-TK!u%E,Yl+P*7Cp+E^I\;'*QZCIc-F\ae(*%%g"Y?> i8N_Wk32'pmI'Jlq"Wagf`2#'s+13$s+13XrroG&k.<_VU]5i~> rVmJ_/M8\21Gh!L3BKAf5=%Y*3rK$`'-Rf`!!Fs$Q>(!!>WYS2gKJ!u%E,Z2FY+7Cp+E^I\;'*QZCHc-F\ae(*%%g"Y?? i8NbXk32'pm-a>jq"Wagf`2#'s+13$s+13XrroG&kI`nXU]5i~> m/I(7r;Zm^Caf5]r;Zh)rr2t(r;cfr!##82!(Qe!!;uTkr;Zstf'qn`r;Zq4kibtE!!=/"kj\NN !*T9i!*T7#kO8K"`r?#=JcC<$JcC<$[JpE1s5gdQ!Mf[F~> rVmM&/MAe51Gh!L3BKAe5=%Y*7M#Ft#6QMU3XVm61#"\$#8]t[,:!$0/&bK\>ZdaQatf\,$7 hVdAQjQ>[jlg=-/deNV#ak6XoJcC<$JcC<$[JpE1s5ppU!Mf[F~> rVmM&/M8_31Gq'M3BKAe5XIh+7M#Ft#6QMT<)m"&!WE'%,@b4p+T29CDfKf>)u]gN-@LApJqJc4 Ll%(MO-#NgQ'Rf*r;ZsLHBjPEr;Zq(S"0ue!!>3XVm61#"\$#7]t[,:!$0/'bK\A[daQ^sf\5*9 hVdAQjQ>[jlg=-/deNV#ak6XoJcC<$JcC<$[JpE1s6%$W!Mf[F~> li-rCr;Zj+MulOa';#LCmrr>.[!!#g_s8;p#8(R1neGT@LM rVmLC/MAb31Gh!L3BKAf5=%V(7P"E;#6ILq5lL`s&Uo4[JqIA2 3JrcTNf]BeQ'Rf+r;Zs;H^0Y3rW!'%Kq"V8rW!$[VPgEl!!Pg&]Y2'Nr;[kZb0/&TdF-Lof%A^2 gu%&Lj5f@dl0@[(nC%+,nB'>`!.k0$s+13$s0_k1WrM@n3WZ#UJ,~> rVmLC/M8\31Gh!L3BKAf5=._*7P"E;#6ILq5lL`s&Uf.ZJqIA2 3JrcTO-,QhQ'Rf+r;Zs;HBsV3rW!'%Kq"S7rW!$[VPgEl!!Pg&]=ksMr;[kZb08,Vd*gCnf%A^2 gu%&Kj5fCel0Ia)n'_"+nB'>`!.k0$s+13$s0_k1WrM@n3WZ#UJ,~> li-sRr;Zj%lMUY^)#aL8:&b.m/,]JHrr@uV!!"8ArrTS1C\If,!!Fb%nE@:Z!!E>Eki`3L!!?$\ kiVgD!*T9i!*T7#kO8K"`r?#=JcC<$JcC<$[JpE1s6-gM!Mf[F~> rVmNf/M8\21Gh!L3BKAe5XIh,7mdCX!!aE=;cHe!=WID@!t8[M;>^CtE,fo?D\)gI&mBd9Jq+mD EJf^7Nf]EgQ'Rf+r;Zs$CR1&OrW!'YR@B`]rW!$:V5JD5!!Pg&]=ksMr;[kZaihrTd*gCnf%A^2 h;@/LjQ,Iel0Ia)nC%+,pW;(g!.k0$s+13$s0_k1WrM@n3WZ#UJ,~> rVmNf/M8\21c.*M3BKAf5X@b*7RI:W!!aE>;cHb!=WID@!t8[M;>^CtDfKf=D\)gI&mBd8Jq"gC EJ]U5Nf]EfQBmo,r;Zs$CR1#NrW!'YR@B]\rW!$:V5JD5!!Pg&]=ksMr;[kZb08,Ud*gCnf%8U0 gu%&Kj5f@dl0Ia)nC%+,pW;(g!.k0$s+13$s0_k1WrM@n3WZ#UJ,~> li."V$iU,+;u?Rp:]:=r+TDDcquH]q!V.B4!!'P.rr`$W"4QuDr;Zs%]("p&rVupqroa>'rW!$D k3/?6!!$1#n,QVi!9`hOd`2:e!.k0$s+13$s0_k1WrM:i3<>oTJ,~> rr3\X/M/S/0f1aH3&s&`5!MA#6q9`erW!0`:fC@p='7lg!!=/i$5*4:)bEtKFEM()!!!0`;+VT+ ;2C*gNK0*`Pa.Q%RJd*o$l)u;!rr<@NL?9,9Dnhl/4:NW!!Os#TsB)"r;[agKZq]dd*gCnf%A^2 h;7)Kj5fCel0Ia)nC%=2!8u#Q!!%TMJcC<$JcE.X"fhUf[lOPbs*t~> rr3\X/M/V01,LgG3&s&`5!VG%6q0ZdrW!0`;,U@n='7oh!!=/i$5*4:)bEtKFEM()!!!0`;+VT+ ;2C*fNK0*`PEhH$Rf*3p$l)r:!rr<@NL?6*9Dnhl/4:NW!!Os#U9f8$r;[agKZq]dd*gCnf%8X1 h;@/Mj5f@dl0@[(n'_41!8u#Q!!%TMJcC<$JcE.X"fhUf[lOPbs*t~> lMgimrVur,qu6Z/r;ZphCDeZ$!!0"1rr3>U+TMKMFeXpL".Ai^r;[*;,a!0P!!"S&roa?"r;Zm_ ?RYjQ"Zi4#igi./!<8VSn,UnVrr<%Ms+13$s+13XrroG&kd3>NU]5i~> rr4.8/M/V01,CaF3&s&`4[;>#6q0[+!!!=$:fC=o='8]a"9&9%$:lNA!#cbrFEMeJ6llX8"V`e0 L5:_GNK0*_PEhH$RJd*p0N'"t"W:!qR$jG7Qo+aA!AL,B!!.#.q#D8Uc-Obbe(*%%g=tH@i8N_W k32'qmI'GkrqHKVb1QapJcC<$JcC<$[JpE1s6@'S!Mf[F~> rr4.8/M/S/0f1^F3&s&`5!VG$6q0^,!!!=$:fC@p='8`b"9&9%$:lNA!#cbrFEMeK6lu^9"V`e0 LPUeGNK0*`PEhH%Rf*3q0Mrqs"W:!qQ^O>5Qo+aA!AL,B!!.#.q#D8Tc-Obbe(*%%g=tE>i8N_W k32'qmI'JlrqHKVb1QapJcC<$JcC<$[JpE1s6@'S!Mf[F~> lMh"+!!"&oTJ,~> rr5K3/M/V00f(XE3&s&`4[25"6q9a>92//X;,U@n=BSj5=@GML@V'1cC2@a*EH6/DG'J=\IXcp$ K8#):MN!OUOcbimQ^F6?!'Dr_QB./lPa7])S"6.CMf3a'Vm2Jn[^WfY]=ktp_SjF6aN;ZNcd:+h e^iC,gYLcFiT'%^l07O$mdS[(p]0^(f`2#'s+13$s+13XrroG&lF8qWU]5i~> rr5K3/M/V01,CdG3B9/a4[;>#77Tj?92&)W;,^Iq=BSg4=@GML@V07eC2@a*EH6/DGBnL]IXcm" K8#):M2[FTOHG`lQC+->!'Du`QB./lPa7])S"6.CMJmX&Vm2Jn[^WfY]=ktp_SjF6aND`OcHt"g e^iC,gYC]EiT'"]kiqF#mdS[(p]0^(f`2#'s+13$s+13XrroG&lFB"XU]5i~> h>[WH\Z<^GhuEWT!`R_?p?2_$T;BltnC$%[!7Jme!!%TMJcC<$JcE.X"fhUd[lXVcs*t~> rr5J`/M/S.1,LgG3&s&`5!VG%77Tm@92&)V;,^Fp=BSj5?=.,NA7]CfCM[j+EH6/DGBeF]I=Hd! K8#):MN!OTOHPinQC43?!';o^Q&h&kPa7])R[fqAU8"H\Vm2Jn[^WcX]=u%q_SjF6aND]Ncd:+i f%/L-gYCZDiT0(^kiqF#mdU2'!3q(TJH16$JH1i5!<;Ed"fhUf\3'ees*t~> rr5J`/M/V01,CdG3&s&`5!VG$6q0[<92&)W;,^Fp=BSj5?=.,NA7fIgCM[m-EH6/DGBeF]IXcm# K8#):MN!OTOcbimQC43?!';l]Q&h&kPa7])S"6+CTqeE\Vm2Jn[C<]X]Y2(q_SjF6aND]NcI((h e^iC,gYC]EiT'"]kiqF#mdU2'!3q(TJH16$JH1i5!<;Ed"fhUf\NBnfs*t~> [f?:+!`R_?n`U#Cdb=3hdK$P'!.b-$!.b-5!!*&d!!TD&kdNVSU]5i~> s8N)or[gMj0JP@?2`NfZ4?c"s6:F@68kViQ:f1+j<`iL.>[CcG@q0(_BkqO&DfKf>Fa&(VH[^Hp JqSi5Ll%%LNf]EfQ'Rf+r;\o6I$KeVPE_B"R@Bb s8N)or[gMk0JYF@2`NfZ4Zu%s6:=:58P;`P:f1.k<`iL/>[CcG@q91aBkqO&DfKf>Fa&+WI!pKq JqJc4Ll%%LO-,TiQ'Rf+r;\o6I$KbTPEhH$R@Bb\k^r"%/a2lBHc-Obb e(*%%g=tH?i8N_Xk3;-rmI'H@dJsNp!.hq:^k':P^rsLq!<3$!n%]+,s6@-W!Mf[F~> [f?:+!`R_?n`U#Cdb=0jd`2:e!.hq:^k':P^rsLq!<3$!n%]+,s6-pR!Mf[F~> s8N)Nr[gMk0JP@@2`NfZ4[)(r6UaI88P;`P:f1.j<`iL/>[CcG@q91aBkqO%DfKf>Fa&(VI"$Qr JqJc4Ll..NO-,TiQBl>ur;\o%;O*<*Pa%K$R@B_i8WhYk32'qmI'KAdJt] s8N)Nr[gMk0JYF@2E[CcG@Us(`BPM@#DfKf?Fa&+WI"$Qr JqJc4Ll.+MO-,ThQBl;tr;\o%;jNN-PE_B#R@9\;T:r$VVPg\`['mEQ]">Yj^r"%/a2lBHc-F\a eCE.&g=tH?i8NbXkNM0rmI'KAdJt] \GlT:Vu6Ss2idCtkQ12$g@,*j`r?#=J\ZiPJ\ZiPbJ42[rr<&f^]gb s8N)/r[gJj0JP@@2E3]Y4[)+t6UXF78kVlR:f1.k<`iL.>[CfH@q9.`BkqO%DfKf>Fa&+WI"$Qr JqJf5Ll.+MNffHfQ'W6^!'-@+Ocu#qR$jG7StDaPV5C/qPdIm.\@T;c^VI_)`Q-'BbK\A[daZk! f\5*8hr*JRjlYdklg=-0r6bR8aoI"mJcC<$JcEpn!s&?$!:TpkWrM1f3Wc)VJ,~> s8N)/r[n.'5r(8R2`Wl[4[)+t6UaL88kViQ:f1.k<`iL/>[CfH@q91aBkqO%E,fo?Fa&(VI"$Qq JqJc4Ll..NO-#NhQ'N0]!'-=*P*D2sR$jG7StMdOUo(&pPdIm.\[oGf^VRe*`Q-'BbK\>[daQat f\5*9hr*MSjQGaklg=-0r6bR8aoI".J\ZiPJ\]IE!s&?$!:R],WrM1g3Wc)VJ,~> \GlORq>^Nbn`U#Cdb=0jd`2:e!.hq:^k':P^rsLq!<3$!n%]+,s5UCF!i,dG~> s8N(hr[iRP0JYIA2EFa&+WI"$Qq K7nr6Ll.+MO-#NgQ'Rf+S"5\*Kmo;JOcu#qR$jG6SY2[OUo(&pPdIm-\[oDe^VI_)`Q-'Bbg"G[ daQauf\5*9hVdDSjQ?L,"7,@BnGL]7A'+e&s+13$s+13nrrW9$!!)Kf"fhUaZoS8`s*t~> s8N(hr[i4F0JYF@2`NfZ4[)+t6:F@68kViQ:f1.k<`iL.>[CcG@q0(_BkqO&DfKf>Fa&+WH[UBp K7el6Ll..NNf]EfQ'[l,S"5\)Kmo;JP*;,rR$jG7StMdOUo1,qPdIm.\[oGe^VI_)`Q-'Bbg"J\ daQdu&(oUjh;@/Mj5f@dl0Ia)nGL]7A'+e&^k':P^k';E^]OT:!!)K'"fhUa[5nAas*t~> [/^0s!oho&n`U#Cdb=0jd`2:e!.hq:^k':P^rsLq!<3$!n%]+,s5UCF!i,dG~> s8N(Pr[iRP0JYFA2E3]Y4[)+s6UaL98P;`P:f1.k<``F->[CcG@q91aBkqO%DfKf>Fa&+WH[UBo JqJc4Ll..NO-,TiQ'Ri,S"5\*Kmf8JOcu#qR$jG7StMdOUo(&pPdIj-\[oGf^VI_)`Q-'AbK\A\ daQduf\5*9hr*JSjlc[."7,@BnGL]7Hcc>>s+13$s+13nrrW9$!!)Kf"fhUhXZ-BWs*t~> s8N(Pr[n.'HSI?62E3]Y4[)+t6:=:68P;`P:f1.k[CcG@q91aBkqO%DfKf>Fa&+WI!pKp K7nr6Ll..NO-,ThQ'Rf+S"5\*Kmf8JP*D2sR$jD5StDaOUo()qQ*e!/\@T>d^VRe*`Q-'Abg"G\ daQatf\5*8hr*MTj9Fc2lKdj*nGL]7Hcc>>^k':P^k';E^]OT:!!)K'"fhUiXuHKXs*t~> [/^0s!oho&n`U#Cdb=0jd`2:e!.hq:^k':P^rsLq!<3$!n%]+,s6HaF!i,dG~> s8N(:r[h>-0JYFA2E3`Z4[)+t6UXF88kViQ:f1.k<`iL.>[CcG@q91aBkhI%DfKf>Fa&(VI!pKp JqJc5Ll..NO-#NhQC!u.S"5\*Kmf5IOcu&sR$jG7StMgPUo1+=Z';W(\%0)^^;%J#`5]j=b08,U d*gCnf@\g3h;7)Kj5oFel0Ia)nGL]7OidZTs+13$s+13nrrW9$!!)Kf"fhUhXZ-BWs*t~> s8N(:r[iOO0JPC@2E[CcG@q91aBkhI%E,fr@Fa&+WH[^Hq K7nr6M2I7ONffHgQ'[o-S"5\)Kmf8JP*;,rR$jG7StMgPUo1,qPdIm.\[oGf^VI_)`Q-'Bbg"J\ daQatf\5*9hr*JSj9Fc1l0Ia)nGL]7OidZT^k':P^k';E^]OT:!!)K'"fhUiXuHKXs*t~> [/^0s!oho&n`U#Cdb=0jd`2:e!.hq:^k':P^rsLq!<3$!n%]+,s6HaF!i,dG~> s8N((r[hM20JYFA2`Ni[4[)+t6:FC88P;`P:f1.k<`iL.?!^lH@q91aBkhI$DfKi?G'A4XI!pKq K7nr6Ll.+MO-,TiQ'[l-S">b+KRK/JP*;/tR$jG6StD^OUo()qPdIm-,Ik=t]t_A"`5Td s8N((r[iRP0JYF@2`Ni[4[)(s6UaL98P;`P:f1.k<`iL/>[CcG@q91aBkqO%E,fo?Fa&+WI"$Qq K7el5Ll..NO-,ThQ'[l,S"5\*KRK,HP*D2tR$jG6SY)XOV5L8sPdIm.\[oDe^VIb*`Q-'Abg"J] daQauf\5*9hVdDSjlc[."7,@BnGL]7UWNRf^k':P^k';E^]OT:!!)K'"fhUiXuHKXs*t~> [/^0s!oho&n`U#Cdb=0jd`2:e!.hq:^k':P^rsLq!<3$!n%]+,s6HaF!i,dG~> s8N'mr[n.'HSI?72`Ni[4[)+t6:FC78kViR:f1.k<`iL/?!^lI@qB7bBkhI$E,fo?Fa&+WH[UBp JqJc4M2R=PO-,ThQ'[o-S"5\*Kmf5JP*D2sR$jG7StMdPV5C/qPdIm.\[oDe^VI_)`Q-'BbK\A\ daQatf\5*9hr*JSj9Fc1l0Ia)nGL]7ZcW9!s+13$s+13nrrW9$!!)Kf"fhUhXZ-BWs*t~> s8N'mr[iON0JP@?2E3`Z4[)+t6UaI88kViQ:f1.k<`iL/?!^oI@q91aBkhI$E,fr@Fa&+WI!pKp K7el5Ll..NO-,QhQ'[l,S">b+Kmf5JOcu#rR$jG7StMgPUo()qPdRs/\[oGe^VI_)`Q-'Bbg"J\ daZh!f\5*9hr*MTj9Fc1lKdj*n,1T6ZcW9!^k':P^k';E^]OT:!!)K'"fhUiXuHKXs*t~> [/^0s!oho&n`U#Cdb=0jd`2:e!.hq:^k':P^rsLq!<3$!n%]+,s6HaF!i,dG~> s8N'ar[i4F0JYF@2`Wo\4[)+t6UaL88P;cQ:f1.k<`iL/?!^lH@q91aBkhI%E,fr@Fa&+WI"$Qq JqJc5Ll..NO-#KgQC"#.S"5\*K7&uHOd))rR$jG7StMdOUo1,qPdIm.\[oGf^VRe*`lH0Bbg"J\ daZk!&(oUjgu%&Kj5f@dl0Ia)nGL]7^WHP-s+13$s+13nrrW9$!!)Kf"fhUd[lXVcs*t~> s8N'ar[iOO0JYIB2`Ni[4[)+t6UaI78kViQ:f1.j<`iL/>[CcG@q91aBPVF%E,fo?Fa&+WI"$Qq K7eo6Ll..NO-,QhQBmr.S=Pe+K7&rGOcu#qR$jG7StDaOV5L5rPdIm.\[oGe^VIb*`Q-'Bbg"J\ daQatf\>3;hr*MTj9Ff3lKdj*nGL]7^WHP-^k':P^k';E^]OT:!!)K'"fhUe[lXVcs*t~> [/^0s!oV]"n`U#Cdb=0jd`2:e!.hq:^k':P^rsLq!<3$!n%]+,s6$dN!Mf[F~> s8N'Xr[iOO0JYIA2E3]Y4[)+t6UaL98kVlR:f:4l<``F->[CcG@q91aBPM@$DfKf>Fa&+WI"$Qr JqSi5Ll..NO-,QhQBmo,S"5\*K7&uGP*D2sR@0S9StMdOUo1,qPdIm.\[oDe^VI_)`Q-'Bbg"J\ daZh!f\5*9hr*MTj9Ff2lKdj*nGL]7aN=L6s+13$s+13nrrW9$!!)Kf"fhUd[lXVcs*t~> s8N'Xr[iRP0JPC@2EFa&+WH[^Hp K7nr7M2R=PNf]EgQBmr-S"5\*K7&uHOd),sR$jG7SY2^PV5C/qPdIm.\[oGf^VRh+`Q-'Bbg"G[ daQduf\5*9hVdAQjlZU-"7,@BnGL]7aN=L6^k':P^k';E^]OT:!!)K'"fhUe[lXVcs*t~> [/^0s!oV]"n`U#Cdb=0jd`2:e!.hq:^k':P^rsLq!<3$!n%]+,s6$dN!Mf[F~> s8N'Rr[f*C0JYIB2E s8N'Rr[f*C0JYIB2E3`Z4[)+t6UXF78kViQ:f1.k hu<\gqZ,IPs7-6LfC8=o!V"P9n,P` s*t~> s8N'Or[f0E0JYIB2`Wo\4[)+t6UXF88kViR:f1.k<``F%4;[qr5\=YCCM[j,EH62FG^4U_IXcm" KS>2;MN!OUOcbinQ^F52SWT+hI$ThVPa%N%R@Bb=TVA3XVPpba[C3QTLjK""*(e,iaND`OcI((i e^iC-gtprHioK1_l07O$mdU/&!7AphJcC<$JcC<$bPqYErr<&frroG&m(GR`U]5i~> s8N'Or[f0E0JYIB2`Ni\4[)+t6UaL88P;cQ:f1.k<`iL'4W"%s5\=YBCM[j+EH62EGBnL^IXcm" KSG;=Mi hudNG!oV]"n`U#Cdf&Y9Yat^m!*SFQ!7Jme!!%ScJ\ZiPJ\]IE!s&?$!:R],WrM@s 4TV>XJ,~> s8N'Or[ea90JPCA2E s8N'Or[n.'&2H(!2`Wo]4[)+t6UaI78k]*e#:*;M=BSj6,Q.U-AnPgnCi+-2EccGJH$XjeIt30) KnkJBN/`m\Ocu)tR$sM8OctHHQB78oPa@c*S"6.DTqeH^Vm2Jn[^WfY]_qgM8]A`kb08,VdF-Op f%A^2h;@/MjQ5Rhl0Id*nGL]7dE2H?^k':P^k';E^]OT:!!)K'"fhUh^-2Rms*t~> kl:Sp!,VQ4!+5[)h>dNG!oV]"n`U#CdeiP4!!$0`n,Uo7rr<&Crr<%M^k':P^k';E^]OT:!!)K' "fhUf]KH:js*t~> s8N'Rr[ea90JYIB2`Nf[4[)+t6UXF88k]*_#9QrH=BSj6,Q.U-AnPgnCi433F*)PKH$XjdIt<6) KnkJAN/`m\P*;/tR$sM8OctHGQB78nQ'[l+S=Q7EU8+Q_W3MSo[^WfY]_qgM8]Aclb08,UdF-Lp f%Aa3h;@/Lj5oIgl0Rj+nGL]7cH6- s8N'Rr[ea90JYIB2E kl:S]!+5X'!+5[)h>dNG!oV]"n`U#CdeiP4!!$0`n,Uo7rr<&ds8N'#rr<&us8N)us8E#us82lk rr<%M^k':P^k';E^]OT:!!)K'"fhUf]KH:js*t~> s8N'Xr[ea90JYIB2`Wo]4[21u6UXF88PB!^#9QrH=BSj5,Q.U-AnYmoCi433F*)SLH$XjeIt3-' L51VDN/`m\P*D9!R%'S9OctHHQ&h)mQ'[l+S"6.CU8+Q_W3MVp[^WfY]_qgM8]Jinb08,Vd*gFo f%Aa3h;@/MjQ,IelKmp+nGL]7aN=L6s+13$s+13nrrW9$!!)Kf"fhUlZ8_o\s*t~> s8Nin/M/S.0JYIA2E kl:S]!+5X'!+5[)h>dNG!oV`#n`U#CdeiP4!!$0`n,Uo8rrC.>!!*&u!<3#u!<<'!!<3#u!!3*" rVlitrVls"s8N)trr<&urr<&nrr<%M^k':P^k';E^]OT:!!)K'"fhUjYW)]Zs*t~> s8N'ar[ea90JYIA2`Wo]4[)+t6UaL88k]*_#9QrH=BSj5,Q.WBB0L$FCi433EccGJH$XjeIt<6) KnkJAN/is]P*;2tR$sP:OctHHQ&h)mQ'Rf*S"6.DU8+Q_Vm2Jn[^WfY]DV^L8]Aclb08,VdF-Op f@\j4h;I5NjQ5Rgl0Ia*nGL]7^OZB9!.b-$!.b.L!!TD&n?P"TU]5i~> s8Nj"/M/S.0JYIB2`Ni[4[)+t6UaL88k]*_#9QrH=BSg4,Q.U-AnPgnCi433F*)SLH$XjeIt<6) L51VCN/is]P*;2uR%'S9OctHHQ&q/nQ'[l+S"6.DTqeE]W3MVp[^WfY]_qgM8]A`kb0A2WdF-Lo f%Aa3h;@/LjQ5Rhl0Ia)nGL]7^OZB9!.b-$!.b.L!!TD&nZk.VU]5i~> kl:S]!+5X'!+5[)h>dNG!oV`#n`U#CdeiP4!!$0`n,Uo7rrW9$!!*#u!W`6#rr3*$rrE'!rr3*$ s8N'!rr;uurr;uurr;uus8N'!p]#dEJH16$JH3%W"fhUjYW)]Zs*t~> s8Ng-/M/S.0JYIB2`Wl\4[).u6UaL9/GK2I=^,/Vr;[4;6l6(0&NOcMFELLY!%rn2*WuTZN/`mX ===R[$RJrDOctHHP$0^^$3CA@-W?/#TqeH^Vm1P4&d/b2UAY'38]A`kbKS5WdF-Opf%A^3h;@/M jQ,Ifl0Id*nGL]7Zag(#AcMgqR?@Q7AcMgqR/d6dbjPN8WrMRo3!,lTJ,~> s8N'mr[e^80JYIB2`Ni\4[)+t6q'U:/,0)H=^#)Ur;[4;6l6(0&NOcMFELLY!%rn2*WuTZN/`mX ===R[$RJrEP*CWJP$0^^$3CA@-W?/#U8+Q_W3LY5&d/b2UAY'38]Jflb08,VdF-Opf%Aa3h;@/M jQ5Rhl0Id*nGL]7ZcW: lMgjNp]1 s8Nj>/M/S.0etRC2`Wl[4[)+t6UaL95;E*:#8B-W3a#Zm,Q.TD2#m[U!!XfkFELe+$N0r+=9/I% !% s8N((r[ea90JYIB2`Wo\4[).u6UaL95;E*:#8B-W3a#Zl,Q.TD1]RRT!!XfkF`pq,$N0r+=9/I% !% lMgn?Vu6Sq55qJZrr?F)!!7`P!rW*!=8r4$_)E),!!95&!WE*!ru']G!!#?X63%! s8NjP/M/S.0JYIB2`Wl\4[)+t6UaL98k]*_#9QrH=BSj6,Q.TE&Qi[#r;["*F`hnR/c>Yi$qc(t )$#VP(]XO>NL#V.!!"7,KRJIQ3L#bpR99Fg%1JW!V5KXe!!!%l\[l#D!$"SMa2lHJc-Oece(*(& gY:QBiSrq[kNM3smI0QBdK#E?!0h'q!0in7!0h'q!0ilO!<142!!TD&lF/eTU]5i~> s8N(:r[ea90JYIB2`Wo]4[25!6UaL88k]*_#9QrI=BSg4,Q.TE&Qi[#r;[")F`qtT/c>Yi$qZ%t )$#VP(]XO>NL#S-!!"7,KRJIQ3L#bpQrs=f%1JW!V5KXe!!!%l\[l#D!$"SLa2lEJc-OeceCN7) g=tH@i8WhYkNV9tmI'KAdK#EP!:g'h!0mK`!0mK`!0mK`!0mK`!0mK`!<2uu!:^!lWrMCp3ru,V J,~> kl:S]!+5X'!+5[)""W.'Fo;:?b5M>??i9sA(m"IT0*)%H.f]PTnGhq^!!#(LiRlQY>5dXbL&M&Q &_[0I#ga"\!!1I9n9"U/!*SFQ!7LfF)$'[:s8N'!rrE'!!<<'!!<3$!s8N*!rr<&us8N)us8N)u s8N*!rr<&ns6frPAcMgqR?@Q7AcMgqR/d6dbjPN8WrM=l3WZ#UJ,~> s8N(Pr[ea90JYIB2EYS0nY49 ;?DeTrW!'FQC!s^rW!: s8Njf/M/S.0etRC2`Wl\4[21u6UaL88k]*_#9QrH=]np5,Q.TE7V?ICr;[!_F`hqT/c>YS0nY4: ;?DeTrW!'FQC"!_rW!: kl:S]!+5X'!+5[)"0_b)j8ArXK`1oN?i9s)@/g0.R03JQrVupZrr2sWrW!,$iRm+2b5LN(fDP[L O8e>CE;fh;./r]9_>O?6=lo,Qdc^Z1!:Kme!;HN^!0h'q!0in7!0h'q!0ilO!<142!!TD&l*`VR U]5i~> s8N(hr[ea90JYIB2`Wo\4[21u6UaL88k]*_#9QrH=BSj6,Q.TE?"dqer;[!RF`r"U0)YbT@t]Sm Ll.-9rW!'UQC"!prW!9\KRK/JOd),sR@4!R"@o5`V^)0@"?*d#]!;26*(e/jai_iPcdC1jf%/L. gYLcFioK4al07O$n*p8'!+WP>P\'mqPaR[7P\'mqPaMLOrljg2"fhUf[lOPbs*t~> s8N(hr[ea90JYIB2`Wo]4[)+t6q'U:8k]*_#9QrH=BSj6,Q.TE?>!ter;[!RF`qtT0)YbT@YBJl Ll.-9rW!'UQC!sorW!9\KRK/JP*D5uR%!sR"@o5`V^)0@"?*a#]!;26*(e,jai_iPcdC1jf%8R/ gtglHioK4al0@U%mdU/&!+X.Onc&RhPlC^`PlC^`PlC^`PlC^`PlC^`rr2runG`Zls6I0V!Mf[F~> kl:S]!+5X'!+5[)"6fdbr;?TqBDqi1?i9s)_#+-35Q1W_ s8N)/r[ea90etRC2`Wl\4[21u6UaL98k]*_#9QrI=BSj6,Q.TEAnYmor;[!OF`hqS/c>YSHA%!- M2I9#rW!'ULP^mErW!3:KRB)B:*U/KqZ$a^USXjrrW!'d\%0)^r;[g/`lH0Dc-=V_daZk!f\>3< hr*MTjlbmmlgF31r6bR8\H%k+!!&7OOoU_Y!!&7O!!*#Bmf3Nks6?dI!i,dG~> s8N)/r[ea90JYIA2`Ni[4[).u6UaL98k]*_#9QrI=BSj6,Q.TEAS5^mr;[!NF`r"T/c>YSHA%$. Ll.-!rW!'ULl%$GrW!3:KRB)B:*U/KqZ$a^USXjrrW!'d\@T8`r;[g/`lQ6Ec-=S^daZk"f\5*9 hr*MTjQGakm-X92r6bR8aoLu3!!&8`!!&8`!!&8`!!&8`!!&8`!!*#u!!)Ng"fhUgY;cTYs*t~> kl:S]!+5X'!+5[)!;uirr;Zh)rVlk)r;Zicqu6X0rVupuroX8\rW!3Ei7IJRHoDZ@qZ$Utroa=m rVupurpTpUr;Zh#jmW8u`rGK-P\'mqPaR[7P\'mqPaMLOrljg2"fhUeXZ$ s8N)Nr[ea90JYIB2`Ni\4[21u6UaL98k]*_#9QrH=BSj6,Q.TEAnPjor;[!OF`hnR0)YbTJqSl7 Ll72np&G3sK7&CerW!!K@:fB;"?`HUV?6_s"@K]0]"ItA*(e,jaihoQcdC1jf%8U0gtglGioK4a l0@X'n*p8'!%>AXP\'mqPaR[7P\'mqPaMLOrljg2"fhUfY;cTYs*t~> s8N)Nr[ea90etRC2`Wl[4[)+t6q'U:8k]*_#9QrH=BSj6,Q.WBB)u^^r;[!OF`hnR/c>YSJqSl7 M2R>pp&G3sK7&CerW!!K?tK9:"?`HUVZQht"@KZ/]=e(B*(e,iai_iPcdC1ie^iC,gYUlHioK4a l0@X'n*p8'!%>tinc&RhPlC^`PlC^`PlC^`PlC^`PlC^`rr2runG`Zls6HjJ!i,dG~> kl:S]!+5X'!+5[)rVufr!+5^)!+5[)!<)fp!!Muq"9dT5efOej!^Dj8r;Zguroa=arVuq#rUBac !*SFQ!7Jmemf8Sa!!&7OOoU_Y!!&7O!!*#Bmf3Nks66XE!i,dG~> s8N)or[ea90etRC2EYSK7nu8 Ll76"rW!Jp]KU!! s8N)or[ea90JbOC2`Wo]4[).u6UaL98k]*_#9QrH=BSj6,Q.WBB)u^_r;[!OF`qtS/c>\LK*@!b Ll73!rW! kl:S]!+5X'!+5[)rVufr!+5^)!+5[)qYpO.rVupfqnN0=!o;I/rW!$=j65_*!!$(!kPu.m!!$$u n,VnT!!$0`n,UnVs6frPAcMgqR?@Q7AcMgqR/d6dbjPN8WrM=c2ZfcSJ,~> rr3^./M/V01,LjI3BB8c5!_M'7Rp!A9Dnhq+&u?D=^,/Vr;Zq3B5)/[!!OlpG'J9ar;[(TKSG;> Mi8hY!"1EFQ^F84Ss#:jHjfoR"#H:2Rf*3h4JSaN,Q7ZG2RpZdF-Oqf%Jg5 hV[8NjQ5RhlKms-nGUc8Z+'duAcMgqR?@Q7AcMgqR/d6dbjPN8WrMIu4TV>XJ,~> rr3^./M/V11GgsJ3BB8c5$G8Wr;ck1!GQ?J!!OlpG'A3ar;[(TKSG;> MiAnZ!"1EFQ^O>5Sro4jHjfoR"#H72RJd*g4JSaN,Q7ZG2Rp kl:S]!+5X'!+5[)rVufr!+5^)!+5[)qYpOWrVupoqu?]e!oVZCrVuporoj:\!*9*_!&4BP!([%X !93qW!*SFQ!7Jmemf8Sa!!&7OOoU_Y!!&7O!!*#Bmf3Nks6R9Z!Mf[F~> rr3aW/M/V11,LjI3BB5b5YSK7nr7 Ll.0drW!$DR?ILK"?`HUVc*Ko" rr3aW/M8\11,LjI3BB8c5=%V'77Tm@9*,"l#9QrH2DJB@,Q.TEB4u!qr;[!OF`qtS/c>YSK7nu7 M2R$DR$7IK"?`HUVc*Ko" kl1VdrW!10s8SUIr;U.&!<)rr!!$C)rr?F)!;c]qMuE\V,Q.QF[0(%!f*2-R"&J.EhYdESO?6=lo,Qd`2=U!0h'q!0in7!0h'q!0ilO!<142!!TD&m(#7[U]5i~> rr3b-/M8\11GgsJ3BB8c5YTK7nu8 M2I:J')hk rr3b-/M/V11,LjI3BB5b5YTK7nu8 Ll77J')hk kl1W+rW!1!s8*6>s8QI)!<)rr!!$C)rr?F)!;c]rnf[o3!4`%.#5C4]aPbYlrW!$Dk3/01!!$(! kQoNE!!!&HnF1T!!!$0`n,UnVs6frPAcMgqR?@Q7AcMgqR/d6dbjPN8WrMFr4TV>XJ,~> rr3bZ/M/V01Gh!K3BB8c5sOD-Yna>W-SOG!$6)b(]==R2NbAgbK\>YdF-Oqf@em4 h;@/MjQ5RhlKms-nGUc80t74JAcMgqR?@Q7AcMgqR/d6dbjPN8WrMIu4TV>XJ,~> rr3bZ/M8\11,LmK3BB8c5!_M&7Rp$B9-jK:#6ck*!%:l2(]==96XEqcr;[!@9m1MP*rQ*=sOD-Yna?W-SRH!$6)b(]==R2NbAgb08,VdF-Oqf%Jg5 hV[8NjQ5RhlKmp,nGUc81!'Fcrr<%`rr<%`rr<%`rr<%`rr<%`rr<&urr<&grroG&m^kU_U]5i~> kl1X-rW!05QAJK!!B._fVeZJ"[8jan>AJK!<8torsmR&!!!CLU5po/On.G^Er>t>5$oZ8 !":iSaQVib"TSNNOa%oF!!5Kkf]V`(d`2=U!0h'q!0in7!0h'q!0ilO!<142!!TD&m(#7[U]5i~> rVmoq/h\q71c@9Q3]oPi5XIk.7n?6F9.1;R!) !6_hOP\'mqPaR[7P\'mqPaMLOrljg2"fhUh^cqjps*t~> rVmoq/MAe51c@9Q3]oPi5XIh-7n?6F9.1;R!) !6`F`nc&RhPlC^`PlC^`PlC^`PlC^`PlC^`rr2runG`Zls6[We!Mf[F~> kl1tbK/!f:#qLQ&e+s%F]8QLc!WUXE!;c^*o8c*L!t$GfcgpYdg#u-.!!,F4qZ$t[kihN<;\oQO ;pP7?!0ZO7!7Jmemf8Sa!!&7OOoU_Y!!&7O!!*#Bmf3Nks6RH`!Mf[F~> rVq7X/h\q81c73P3]oPi5sdq-7n?6F9i"S_;cQk$>$G<>?t*VVAnYppCi433F*2VMH$apfIt<6* L5:\DNK'!]PE_B"R@B_;P*CZLQB?T-C5/+ES=Q7EU84W`W3MVq[^WiZ]YD7u_o0R9aND`OcdC1j f%8U/gYLfG$0(%-kNV9tmdBTDdK#ZD!0h'q!0in7!0h'q!0ilO!<142!!TD&m(bgdU]5i~> rVq.U/h\q71c73P3BTGh5XIk-7n?6F9M\J^;cQn$>$G9=?t*VVAnPgoCi433F*2YNH$asgJ:`E, L51VDN/`p]P*D9!R@B_ [/^0s#NFG+kf9 rVo'R/MAe51c73P3]oPh5sdt.7n?6F9i"S_;cQn$=^,05Ss#:kI[?.ZPa.Q&R[fq?TVA3XVl6kc[C3TV]=bkm_8F42aN;TKc-Xke eCN7)g>(QBi8Wh[kNV9umdKZEdK![a!0h'q!0in7!0h'q!0ilO!<142!!TD&m(bgdU]5i~> rVq8;/h\q71c73P3]oPi5XIh-7n?6F9i"S`;cQk$=^56=?t*VVAnYmoCi=<5F*2YNH$apfItE<, L5:\ENK0'^P*D9!R@B_;Od(QKQB78oQ'[l,S=Q:FU8+Q_W3MVp[^`o\]tV7t_o0R8aihoQd*g@l f%8U/gtpuI$01+.kNV9umdKZEdK![r!:g'h!0mK`!0mK`!0mK`!0mK`!0mK`!<2uu!:^!lWrMJ& 567PZJ,~> [/^0s!oho&n`U#Cdb=0jd`2=U!0h'q!0in7!0h'q!0ilO!<142!!TD&m(PXaU]5i~> rVq/r/h\q71c73P3]oPi5sdt.7nH$G9=?t*VWAnYmpD/O<4F*2YNH$apgIt<6* L5:\ENK'$^P*D9!R@B_ rVojM/h\n61c@pQ'[o,0q=f+TVA3XVl6kc[C3QU]=bno_8F42aN;WLcHstf eCN7)g>(NAiSrq[kNV9umdKZEdJtVF!.b-$!.b-$!;lg#WrMFp3ru,VJ,~> [/^0s!oV`#n`U#Cdb=3idJtVF!.b-$!.b-$!;lg#WrM@l3WZ#UJ,~> r;V":0/57>2)dNV4?Ynp6:4138P;]N:Janf?tQC@Uit^B5)-tDK'T:F`r"UH[UBnJV/W1 Ll%"JNfT r;Ue40/,.<2)dNV4?Yno6:=:584lNL:Jaqg?tTD@Uit^BPD6uDK0Z;F`r"UH[L9lJV/Z2 Ll%%KNf]BdPa7Z(S"-(5PD"=MOckroQ^O83SY)RLUnsufZ'D`*\%9/`^;%M%`5Tg>b08/WdaAl[ f%8U0gtgoIioK4al0@X'n*ncmi5h=;!.b-$!.b-W!!TD&m'f%WU]5i~> [/^0s!oV`#n`U#Cdb=0jd`2< r;V#$0/,.<2)dNV4?Ynp6:41384lNM:Jaqg?tQC@Uit^B5)-uDK'W;F`r"UH[Lb08,VdF-Oq f@ep5&)H1&j5f@cl0@X'mdSZla2jYK!.k0$s+13$s0_k1WrMCo3WZ#UJ,~> r;V#$0/54=2E3]X4?Ynp6:44484lNL:Jaqg?tQC@Uit^B527!DK'T:F`r"UH@10lJqJ`2 Ll%%LNf]BdPa7Z(S"-%4P_=FNOHPinQ^O83SY)RLUSarfZ'D`*\@T8b^;%M%`5]j=bKS8XdF-Oq f@ep5&)Q7'ioK7bl0@X'n*ncma2j["!.b-$!.b-W!!TD&m'f%WU]5i~> [/^0s!oV`#n`U#Cdb=0jd`2< r;UT\0/,.<2)mTW4?Ynp6:=7484lQM:Jaqg[:]E@Uit^BPM=!DfKf=F`r"UH[L9mJqJ`2 Ll%%LNf]BdPa7]*S"-%3P_=LPOHPinQ^O;4SY)UMUSXleZ'D`*\%9/a^;%M%`5]m>)p6CMcdC4k f%8U/gtpuJioK4bl0@X&n*ncmX2p\/!.k0$s+13$s0_k1WrMh(3ru,VJ,~> r;V,k0/,1=2E3]X4?Ynp6:=748P;]N:Jaqg?tTD@Uit]B527!DK'T:F`r"TH@:6lJV/W1 Ll%%LNf]BdPa7Z(S"-(5P_FRPOckroQ^O;4SY)RLUSXleZ'D`*\@T;c^;%M%`5]m?bK\;XdF6Xs f@em4h;I3"ioK4al0@X'mdSZlX2p][!.b-$!.b-W!!TD&pUWEeU]5i~> [/^0s!ohl%n`U#Cdb=0jd`2< qu:,'0etRD3&s#^4[21u6q'U;8kVlS:f:7m='8^3?!^oJ@qB:cC2@a)E,frAFa/4ZI=H`tK7nu8 M2R@ROHG`kQC"#/S=Yn.Kmo>LP*D5uR@9Y:StVmRV5L;tQ*n'0]"0-!^;.S&`5]m?bKS8YdF6Ur f@ep6hVdAPjQ5UilKms-nC$47R/d5 qu:t?0JbOD2`Wo]4[21u6q0[<8kVlS:f:4l<`rR1?=%#K@qB:dBl%U'E,frAG'A7ZI=Hd!K8#&9 M2R@QO-,WjQC"#/S=Yn-KmoAMP*D5uR@9Y:T:hpRV5L8sQ*n'0]">Vh^VRh+`lQ9Fbg+P^daZk# g"Y<=i8>"&jQ>XilKms-nC$47R=P?h!.b-$!42_0WrMh)3ru,VJ,~> [/^0s!ohl%n`U#Cdb=0jd`2< qu:Z+0f(XE2`Wo]4[25!6q0[;91quT:f:7m='/U0?!^oJ@qB:cC2@^(E,frAG'J=[I"$QrK7nu8 M2R@ROHG`kQC"#/S=Yn-KRK/JPE_?!R@9Y:T:r!SV5L8sQ*n'0\\#Mg^VRh+`lH0Cc-F\adM13^ f@ep6h;@/NjQ>XilKms-nC#.nR/d5 qu:5t0JYIB3&s#^4[25!6q0[<8kVlS:f:7m<`iO0?=%#K@qB:dBl%U'E,fuBG'J=[I=HcuK7nu8 M2R@ROHG]jQC"#/S=Yn.Kmo>LP*D5uR@9Y:T:hpRV5L8sQ*n'1\[oGg^ECA1`5]j>bK\>YdF6Xs f@ep6hV[8OjQ5RhlKmp,nC#.nR=P?h!.b-$!42_0WrMh)3ru,VJ,~> [/^0s!ohl%n`U#Cdb=0jd`2< qu:-g0JbOC2`Wo]4[25!6q0[;8kVlT:f:7m<`rR1?!^oJ@qB:dC2@^(E,fuBG'J=[I=Hd!K7nu8 M2R@ROHG]jQC"&0S=Pe,Kmf;LPE_B"R@9Y:StMgRV5L8tQ*n'0]"0-"^;%P&`5]m?bK\>ZdF6Xs f@ep6hV[;PjQ>XilKmp,nC")PR/d5 qu;!*0f(XE2`Wo]4[25!6q0[;8kVlS;,U@n='8[1?!guK@qB:dC27[)E,frAG'J:YI"-ZuK8#&9 M2R@ROHG]kQC"#/S=Yn.KRK2KP*D5uR@9Y:T:r!TV5L8sQ*n'0\[oGf^qmq,`lQ6Ec-F\ae'ut# g"Y<=i8>"'jQ>XilKms-nC")PR=P?h!.b-$!42_0WrM\"3WZ#UJ,~> [/^0s!o_f$n`U#Cdb=0jd`2< qYtDV1GgsK3BB8c5!_M'7Rp$B92/2Z;H-Xt=^#':?X[DRAS5[jCMds.EH?8GG^=^bIXm$&KnbD? MiEaYOckuqR$jG6Ss#=lI?otXPa.T'R[fq@Tq\?[Vl6kc[C3TV]=bkn_8F43aN;WMbne[Re'ut# g"Y<=i8N\Vjlbmnm-a?3MoM.b!.k0$s+13$s0_k1WrM\!3WZ#UJ,~> qYthb1,LjJ3BB8c5=%V'77TpA92/2Y;H-Xt=BSj6?=75PAS5[kCi"$/EcZAHG^=^bIXm!%KSG;> MiEaYOcu#qQ^O>5Ss#=kI@$(ZPa.T'R[fq?Tq\ [/^0s!o_f$n`U#Cdb=0jMoPdJ!.b-$!.b-W!!TD&n[(=XU]5i~> qYti]1,LmJ3BB;d5 MiE^XOckrpQ^O>5Ss#=lI@$%YPa7Z(R[fq@TVA3XVl6kc[C3TV]=kqn_Sa=3aN;WLcHjnde^i@* gYCZDi!SN*k3)!om-a?33Q@He!.k0$s+13$s0_k1WrM\!3WZ#UJ,~> qYt*H1Gh!K3BB8c5=%V(7Rp!B92/2Y;H-Xs=B\s9?XR>QAS5[kCM[m-EH?8GG^=^bIt*$%KSPA? MiEaYOckrpQ^O>5Ss#=lI?p"YPa.W(R[fq@Tq\?[Vl6kc[C3TV]=bnn+2Yq6`lQ9Fc-FY_daZk" g"Y<=hr3SUjlbmom-a?33Q@J [/^0s!o_f$n`U#Cdb=0j3QD)M!.b-$!.b-W!!TD&n[(=XU]5i~> q>Y\I1c76Q3]oPi5sdt.7n?6F9i+Ya<)lt%=^56>?t*VWB4u$qCi464F*2YNH@('iIt<6*L5:\E NK0*_P*M?#R@B_ q>YA@1c@9Q4$5Yj5XIk-7nH$G<>?t*VWB4kppD/XE6F*2YNH?t!gJ:W?+LPUeF NK0*_PE_B#R@B_UeCN7) gYCZDiSrq[kiqC!mdK'6`gMAXJH16$JH3%W"fhUo[lOPbs*t~> [/^0s!o_f$n`U#CdbF6lhuLdsJH16$JH16$ZiC90s7*HW!Mf[F~> q>VbM1c73P3]oPi5sdt/7nH$G<>@:NeYB4u$rCgCptEH?8GG^=^bIt3-'KnkJ@ MiEaYOcu&rR$jG6Ss#=lI[6(YPa7Z(R[fq@TVA3XVl6nd[C3QT]=kqo_8F42aN;WMcHjqfeCN7) gYCZDiSrq\kiqC!mdJ$n`gHf,JcC<$JcC<$[JpE1s7X5l!Mf[F~> q>Y9?1c@9Q3]oPi5XIk.7nH?H9i+Ya<)m"%=^,3=@:E_XB4ksqCi=95F*2YNH@('iItE<,L5:\E NK0*_P*M?"R@B_ [/^0s!oho&n`U#CdbF6l_Z7^VJH16$JH16$ZiC90s7O,i!Mf[F~> q#>572E*WW4Zu"q6:=:584uWO:f(%h@(ZE@q9.`BPM@"DK'W;F`r"UH[LYdaAfZf%8X1 gtpuJj5f@dl0@X'ii3!uR/d5 q#=o.2E3]X4?Ynp6:=:584uTN:Jaqg?tTD@Uit^BPM@#DK0Z [/^0s!oho&n`U#CdbOXJ,~> q#>-;2)mTW4Zu"q6:=:58P2WN:f(%h[:ZD@Uit^BPD:!DfB];F`r"UH[U?nJV/Z2Ll%%L Nf]BeQ'Rf+S"-(5P_=LPOckroQ^O;4SY)RLUnsugZ'Mi,\@T;c^V@V&`5]m@bK\9IcdL:mf%8U0 gtgoIj5f=bl0Ia)_l<^VR/d5 q#=g12)mTX4?Ynp6:=:58P2ZO:Jaqg?tQC@q0(_BPM@"DK0Z [/^0s!oho&n`U#CdbOXJ,~> p]#\N2`Wo]4[25!6q0[;8k_rT:f:7m='8^2?=%&LA7]CeC2@^)EH-)CG'J=[I=H`tK8#&9M2[FS OHG`kQC"#/S=Yn-KRT8MP*D5uR@B_;T:hpSVPgAuQ*n'0]">Vi^r"%/a2lBGc-=V_dacq$g"Y<= i8N\Vjlbmnm,.iC!!)qb!!(62!!%TMJcC<$JcE.X"fhUl_a+@!s*t~> p]#\N3&s&`4[25!6q'U;8k_uU:fC=n='8[2?!guK@qK@eC2@a*EH6,CG'J=[I=Hd!K7o#9M2R@R OHG]kQC"#/S=Yn.Kmo>MPE_B"R@9Y:T:r!TVPgDuQF402]">Yj^r"%/`lQ9Fc-=S_e'ut$g"Y<= i8N_Wk32'pm,.iC!!)qb!!(62JH16$JH16$ZiC90s7*um!i,dG~> [/^0s!o_f$n`U#CdbXBpiMrmXr;Q`sbl<4oJH16$JH3%W"fhUk_E\0ts*t~> p]#]Z3&s&`4[;;"6q0[<92&&V:f:7m='8^2?=%&L@qB:dC2@a*EH6,CG'J=[I=H`uK7nu8M2R@R OHG]kQC"#/S=Yn.KmoANPE_B"R@9Y:T:r!SV5L8sQF402\\#Pi^VRh+`lQ9Fc-F\ae(*%$g"Y<= i8N\Vk3)!pm(`S#!!)qb!!)DSrr<+g!!*"drrE%drW)qc!s"_h!;Dl]!.k0$s+13$s0_k1WrMS+ 5m!h]J,~> p]#]Z2`Wo^4[25!6q'U;8k_rT:f:7m='/X2?=%&LA7fIfC2@a*EH-&BGBeF\I=?]uK7nu8M2R@R OHG]kQC"&0SY)(0KmoAMP*D9"R@9Y:T:r!SV5L;tQF402]">Vi^qmq,a2lBGc-F\ae'ut#g"Y<= i8N_Wjlksom(`S#!!)qb!!)DSrr<+g!!*"drrE%drW)qc!s"_h!;Dn4!.b-$!.b-W!!TD&n\[Wo U]5i~> [/^0s!o_f$n`U#CdbXBp^T+:6r;Q`smJm1d!ri6#rr;uurr;rtrr3'#rr<&ns+(0$!.b-$!42_0 WrMP)5Q[_\J,~> pA]Ma3BB;d5X@_)7Rp$C9288Z;H-Xt=^#'9;aWoKAS5[kCi+'/EHH>IG^=^bIt3*&KSG;?MiEaY OckuqQ^XD6Ss#=lI[?1\Pa.T'S"-%ATq\?[Vl6kc[^N]W]=ktp_Sa=3aND]NcHt"geCN:*gYCZD iSrq[kiqEbri,qurL*Ta!1EfdrgEcds-WiergEcd!LWrdR/d6cR0!AV!;r8b!<8Ge!;Dl]!.k0$ s+13$s0_k1WrMS+5m!h]J,~> pA]Ma3BB8c5=%V(7Rp$B9MJ;[;H-Xs=^#$9;aa#NAnPdlCi+*0EHH>IG^=^bIXm$&KnkJ@N/`jZ Ocu&rR$sM7Ss#=lI[?.[Pa7Z(S"-%ATq\?ZVl6kc[^N]W]=bno_8O:3aN;WMcHt"fe^iC+gYCZD iT'"\kNV h>[W9Z`_XRh>dNG!o_f$n`U#CdbaHngA\)P!<)rr!!*&u!<3#u!<<'!!<3#u!!3*"rVlitrVlp! rrDusrrE*!!!)cnJH16$JH16$ZiC90s6mfi!i,dG~> pAY]Z3BB;d5=%V(7Rp$B92/2KqZ$Xr*;ojO'3T!`Ci+'0EDIql"9]5a=+>gSC\e#4Ocu(/!"_2[ >W*E)!X0&[:5bO/S=Ll%!!5BjJGTZdF6Xsf\,$7hVdAPjQ5UilaHem!!)qb !s"_h! pAY]Z3BB8d5=%V(7Rp$C92/2KqZ$Xs*;ojO'3T$aCi"$/E).hk"9]5aW*E)!X0&[:5bO/S=Ll%!!5BjJGT k5PG1qZ$Z_9`4ql0\lR*%/mD0*si5q<3Q9#s3LNArr;os$X`^s===X^#8T@Hec"\31Ah+R p&>Vn4$>_k5sn%07nH?H:/=M@'`A"6&fW8+rW!ZFAnl.!DJ1$j!"VLg&-)\RG_:EH)ZB^T.UJ7$ P[ZEPA9s+5!%LZK3XJ,~> p&>Vn3^#Yk5sdt.7nH?I:/=M@'`A"6&fW8+rW!ZFAnl.!DeL-k!"VLg&-)\RG_:EH)ZB^T.UJ7$ Q!uKPA9s+5!%LZK3XJ,~> k5PMPV`t%Z"#rM7V9%No!(_a.>QXs+ &$Goq!NMOc!!H?laIPBj!9N\Mc2FXB!;uj"!<3'!s8E!!rrE&urW)uurr<*"!<)ot!<)p$!<3'! rrE&u!s&B$!;HKn!8X'+!0h'q!0in7!0h(#!1BkepqT#nU]5i~> o`#J14Zu"r6:=:584uWO:f1.5r;ZpF?=$)!!!Pr/Ci+#,rW!%0G^=!$!!FbjI?p!prW!*0OIVl6U&=ro5I-T`7/[*)^VI\'`Q$!@bg"G[daQ^sf@o!8hr*GQjQ>[^ r2K_sr0[ikR/iYC!1XJ,~> o`#J14?btq6:=:58P;]N:Jaq2r;ZpF?=-2#!!Pr/Ci+#,rW!%0G^=!$!!FZdaH[sf@ep6hVdAQjQ>[^ r2K_sr0[ikR/iYC!1XJ,~> jSo3er;Zq2s8TV-!!'A)rrN!VrW!&Ls8URI!!G=Zs8Skn!!+,;rVm6W?N:&_!++U8nE>T*!!*\b rTO1["BP$?n6,\ik3rB2r2K_sr;R''rrE*!!<3'!!<2uu!;uiu!<3&trr<&trriE&!<<'!rr3'# s8N)nrr<&TR?@Q7AcMgqR?@Q7Ad8=(WrMk04TV>XJ,~> o`#KH4[)(r6:=:584uTM:Jk"3r;Zpk?=-t9!!G&lCi)T>!!NsYG^=]LrW!'uKnb9irW!L;Ocu&P !-Xj%PY$FZI@$(Pr;Zt-S=Q:Gr;ZsbZB_gcr;[eN^r"%/`lQ9Fc-F\adacq$g=tH?i8N\Vk3'>R WW3%sR2H!m!1B5T!1XJ,~> o`#KI4Zu"r6:=:58P2ZN:Jaq2r;Zpk?!gh7!!G&lCi)T>!!NsXG^=]LrW!'uKSG0hrW!L;Ocu&P !-Xj&PY$FZI@$(Or;Zt-S=Q:Gr;ZsbZ'Mdcr;cl4)8a;1a2lBGc-FY`e(*%%g=tE>i8N_Wk3'>R WW3%sR2H!m!1B5T!1XJ,~> jSo3er;ZrAs8VWf!!%?ErrAVh!!">Drr=>D!!Jkms7mH0!!'%ursZmI`W,u,H.1^'nEAL&!!&)Y kktJaXJ,~> oD]>h4[28"6q0[;91quU:f8D6!!?;/?X`m5"=\)%D&rTU"X/)7H@$n9!!FO"LPS=s!"^<9PEe*G R@Bb=P*CZLQ][L1!!GZZStD_T!!GNkQF0-Z!#iSe_Sa@5aN;WMcHjqfeCN:+gYCZDiT'"\b581= !9]dM!:H9T!;Dl]!8X'+!0h'q!0in7!0h(#!1Bkem^P:YU]5i~> oD]>h4[28"6q0[<8kVoT:f8D6!!?;/?=Ed4"=\)%D&rTU"X/&6H@$n9!!FO"L584r!"^<9PEe*G R@Bb=P*CZLQ][L1!!GZZStD_T!!GNkQF93[!#iVf_8F74aN;WMcHt"fe^i@+gYC]EiT'"]b581= !9]dM!:H9T!;Dl]!8[YT!0mK`!0mK`!0mK`!0mK`!0mKg!<9)!n$kCZU]5i~> jSo3er;Zris8W)s!!$U0rr>Fc!!#Uhrr>Uh!!#Fdrr@EF!!#+[rrHLYrVuog"QJ)'kihsF!+l,m r;Zt$nC$f/r;c$M!71PB!!)3^rrDKerrDfn!!(iCOoU_Y!!&7OOoU_Y#6:0ls6d?W!Mf[F~> o)B295X@_)7Rp$C928;\;BPi;"'])<@/U'.-YdI7$2so..Lj9($!"F(7N!37M S"6./:EKoFqZ$a[SXlCIr;ZsbZBhmdr;cl4(W"&/`lQ9Gc-F\`e(*%%g=tE>i8N_Wf_VTJ!61E, !8X'+!0h'q!0in7!0h(#!1Bkem^P:YU]5i~> o)B295X@_)7Rp$C92/5[;]kr<"'f/=@Jp0/-YdI7$2so..<]u_HRo'q"Ug$>Lj9($!"F(7MZm1M S"-(/:EKoFqZ$a[S=Z@Hr;ZsbZ'Mgdr;[_L^V[n,`lQi8N\Vf_VTJ!61E, !8[YT!0mK`!0mK`!0mK`!0mK`!0mKg!<9)!n$kCZU]5i~> jSo3er;Zisrr;os!+5a*!#5D4!*]@$!*K4#!#>M5!TF4\!!LRHn-P9VrrhJ82%]ug!!$+!kktJa o)B3X7mTI07n6-D9MJ;Z;]kr<"'f/=@/U'.-YdI7!r`0'.s?2aHS59t"TsI6Ll*e`!!tNH[[L1"?E!CT:u2`"@'/W[7'rns1]Ae`5K[:aihrSd*gCnf%8U0h;7)Kj5IBAWW3%= R/d6CR?@Q7AcMgqR?@Q7Ad8=(WrMLs3WZ#UJ,~> o)B3X7m]O17Rp$C9MSA[;]kr<"'f/=@Jp0/-YdI7!r`0'.s?/`HS59t"TsF4Ll!__!!tNH[[L1"?E!DT:u2`"@'/V[RC&o)8Eu'`5Ta;air#Td*gCnf%8U0h;7)Kj5IBAWW3%= R/d6Crr<%`rr<%`rr<%`rr<%`rr<%`rs&Q(WrMOt3WZ#UJ,~> jSo3er;cfrr;Zh)rr2s$rVuq)rVlk'rVup%rVljqrW!(-s-!cXrr3#Z+8u6A6'@W6!!$'ukktJa nc''25sdt/7nH?I9i"Vb+T29B>[CcGr;ZsJCM[horW!*NG'J=[/,fMP$\a@lMJ2th#R#l#2jg#& SN-TK!tLNWPPkIa3h;h6U&=ro5I$K]6i@!%^VI_)`Q-'AbK\>ZdaH[sf\,$8hr*JR^A4c/!61E, !8X'+!0h'q!0in7!0h(#!1Bken[Ua`U]5i~> nc''35se"07nH?I9i"Va+T29B>[:ZEr;ZsJC2@_nrW!*NGBnL]/,fMP$\a@lM.lkg#R#l#2jg&' S2gKJ!tLNWPPkIa3LlY4U&=ro5I-T_6N$m$^VI\(`5fs@bK\>ZdF-Rrf@o!7hr*JR^A4c/!61E, !8[YT!0mK`!0mK`!0mK`!0mK`!0mKg!<9)!o!pjaU]5i~> jSo3er;cfrr;Zh)rr2s4rVuq%rVlk"rVup5rVll3rW!$*kq-6?rr?:&!!=,(kihsF!*9'^r;Zt$ nC$f.r;c*O!5eQ3!!(%=!!(iCOoU_Y!!&7OOoU_Y#6:0ls7*T\!i,dG~> nG`og6:=:58P;`P:f((4r;Zq)?=.+=!!FZaCi(6m!!ONiH$Xi_rW!-IKnbD?N#;No#:fdrR$sM8% /p5//!lB^r;[!]SXlCH"9&9'4gC9\3W/po^VI_)`Q-'AbK\>ZdaQ^sf\5*8hVdD6po4;o`gHf,h 3jE+P\'mqPaR[7P\(.#RB$;W\NBqgs*t~> nG`og6:=:58P;]O:f((4r;Zq)?!h%=!!FZaCi(6m!!ONhG^=]]rW!-IKnbD@M\uEn#:fdrR$sM7% /p5//!lB^r;[!^S=Q:G"9&9'4gC<\3W/po^VI_)`5fs@bg"G[daQatf@ep6hVdA6po4;o`gHf,h >[HTPlC^`PlC^`PlC^`PlC^`PlCsgs/Q+i\NBqgs*t~> jSo3er;cfrr;Zh)rr2sdrVupirVljgrVuper;QaIrW!!m!6+p:!#,>3"%r(HkktJ] n,EcL77Kd=92&)W:fAJ7!!?J4?X`m5"=Ir#D+4F("VGs(H@$;(!!Z>SLPUeG;uH\#)O?bZS"'T[ !!=d=OcB;>"Zi3GT:lep!!G*`Q*h_4!#E>b_Sa@4aND`OcHt"ge^iC+gYC]EcM+==!61E,!8X'+ !0h'q!0in7!0h(#!1Bken[Ua`U]5i~> n,EcL77Kd=92&)V;,\S8!!?J4?X`m5"=Ir#D+4F("VGs(H@$;(!!Z>TL5:_G;uH\#)O?bZS"0Z\ !!=a"Z`*DT:lep!!G*`Q*qe5!#E>b_8F74aND]NcHt"ge^i@*gYL`EcM+==!61E,!8[YT !0mK`!0mK`!0mK`!0mK`!0mKg!<9)!o!pjaU]5i~> jSo3er;cfrr;Zh)rr2tjrVupErVljDrVuqjr;Qb_r;ZgKr;Qa#rW!$mnEAa-!!$'ukPuCt!!Gd\ ddS[`!:0+SfCu9F!65$=!8X'+!0h'q!0in7!0h(#!1Bken[LX^U]5i~> mf*W87Rp$C9MSD\;]u#="'f/>@Jp00-YdI7DArKS"(HP%BDql:*eB$#Ll.+F#lXf.XJ,~> mf*W87n6-D9MSD];]kr<"'f/>@Jp00-YdI7DArKS"(HM$BDql:*eB$#Ll.+F#lXf.!!XJ,~> jSo3er;cfrr;Zh)rr3#s3rT*]e,THurVus\r;?Qqo+(a"!0[9[!$V=A"!6moQi-ma mf*X_AOf/+,Tm-G8"#3"Q+8l0SI?)1_`Q$!Abg"G[daQatf@ep6eZ\\H!!($,!!(iCOoU_Y !!&7OOoU_Y#6:0ls7O)h!Mf[F~> mf*X_AOf&%*Tm-G8"#3"Q+8l0SI?)1_`Q-'BbK\>ZdaQatf@o!8eZ\\H!!($,!!(jT!!&8` !!&8`!!&8`!!&8`!!&8`#6=e(s7X/i!Mf[F~> k5PMPV`t%Z"/kA8Vu6Sr5,\D[$g^1[!$RPj+ohU1m/$_bD#aPBn,31cH2R^E5[Pl:!!P?LaQVig r;Zpd=;WIb!!/Xqn*gA=YkG's!65$=!8X'+!0h'q!0in7!0h(#!1Bkeot mJdFP?:dd`:/F:R!!,MFq>_[TD/XE7:aZ_U":lq`J:`E-L5:_GNHbI(2jK\rR[]h90`:tP.YITu "^RdpU0\''!!3[]7/R#u/Af?D`lQ mJdFP?V*ma:/F:R!!,MEq>_[TD/XE7:aZ_U":lq`J:`E-L5:_FNHbI(2jK\rR[]k90`:tP.YITu "^RdpU0\''!!3[]7/R#u/Af?Ea2lEIc-F\ae(*%%g=t2aor7ul`gHf,h>[HTPlC^`PlC^`PlC^` PlC^`PlCsgs/Q+m^-)Lls*t~> k5PG1q>^Q.Mu!GPrsA\/<#u;N*`TBCq>UQL!l]>Ka@YX!Yq_ m/LbU>Y@ac:Jati[CcG@q9.`BkhI%DfKf>F`r"UI"$QqK7el5Ll.+MN[FgIQ'Rf+S"-+6 Ip?-2Od))rQ^O>5SY2[OUmu^MMNbKX\@T>d^VI_)`Q-'Abg"G[daQatf\4o_oVqlk`gHf,h3jE+ P\'mqPaR[7P\(.#RB$;[^-)Lls*t~> m/LbU>Y@ac:Jk%j[CcG@q0+`BPM@#DfKf>Fa&+WI!pKpJqJc4Ll.+MO!apJQ'Rf*S"6.6 Ip6'2P*;,qQ^O;4SY)UMUmu^MMNbKX\@T;c^VI_)`5fsAbg"G[daQatf@nf^oVqlk`gHf,h>[HT PlC^`PlC^`PlC^`PlC^`PlCsgs/Q+m^-)Lls*t~> ^Ae7'!6+g7"S0p.RF_#o"PK`D\^'I/!U7)cWW3%=rr<&TR?@Q7AcMgqR?@Q7Ad8=(WrMb*4TV>X J,~> li1SP?VF3k:fC@o='8a4?=.,NA7]CeC2@a*EH6/DGBnL^I=Hd!K8#)&KT(nO3Z40IQC+,1SY)+1 LOYYQPE_?!R@Bb\k^r"%/a2lBHc-Obbe(*%%e?ebH!!($,!!(iCOoU_Y !!&7OOoU_Y#6:0ls7O2n!i,dG~> li1SP?VF3j:fC@o='8^3?=.,NA7]CfC2@d+EH6/DGBnL]I=Hd!K8#&%K8Y_L3Z4-HQC+,1SXu%1 LOYYQPE_B#R@Bb\k_8=.0a2lBGc-F\ae(*%%e?ebH!!($,!!(jT!!&8` !!&8`!!&8`!!&8`!!&8`#6=e(s7O2n!i,dG~> _uBbjoD\ajAh lMkDRBMMB#;cQk"=^#*;?X[GTAnPgmCi+*1EccGJH$XgcIt3-'KnfY$N/`8i lMkDRBMMB$;cHe"=^,0[HTPlC^` PlC^`PlC^`PlC^`PlCsgs/Q+l_*A'ss*t~> _uBo@MuWh8$'k>ds7-6Ng@4Xr!V"P'n,_XZnu;Zi`r?#=h3jE+P\'mqPaR[7P\(.#RB$;Z^d%sr s*t~> l2P5YFAPh4?kKA@:NeZB5)*sD/XE7FEMeQH@1-jJ:`E-LB%ZU;ABq*PEhH%R[]h>PEgoR R$!SsQC+)0SXlCIUSOcbWNqet\%'#]]t_A"`5Td l2P5YFAPh4$PB@@:NhZB4u$rD/XE7FEMePH@(*jJ:`E-LB%ZU;ABt+PEhH$R[]k?P*LfP Q][JrQC+)0S=Q:GU84ZbWNh_s\%'#^^;%J#`5Td _uBo@'9/5&-MR?9s7-6Ng@4Xr!V"P(n,_LRnZ%-?JH16$JH16$p](Jts7F)l!i,dG~> kl5&dL/ClL[CcG@q0+`BPVF$E,fo?F`r%VI"$QqJqJc41_^#s.t<\FQ'Rf+S"618P_agU Ocu#qR$jG7SY2[OUo1,iZB_l-\@T;d^VI_)`Q-'AbK\A\daQ:ZHg`n:=lJcC<$JcC<$[JpE1 s7j;l!Mf[F~> kl5&dL/ClL<``F->[CcG@q91aBPM@$DfKf>Fa&+WH[UBoJqJc41_^#s.t<_GQ'Rf+S"6.6P_XdU Ocu#qR$jG6SY)UNUo(&hZBho-\@T;c^VI_)`Q-'BbK\A\daQ:ZHg`n:=lJcC<$JcC<$[JpE1 s7j>n!Mf[F~> _uBmK,m=]Nht[6OncIk*nF>]CnC$^n!SXXEWW3%=rr<%Ms+13$s+13XrroG&pV&flU]5i~> k5S\W;cHb!=^#':?X[GSAnPdlCi+*1EccGJG^=adIt3-'KnkJAN/`m[Ocu)sR$sM7Ss,FpJ=)L` Q'Rf*S"6.CTqeE\W2[(g[^WfY]Y2(q_SjF6aND]NcdC1Wm]$6e`n:=lJcC<$JcC<$[JpE1s7j;l !Mf[F~> k5S\W;cHe!=^,-;?X[GTAnPgmCi+*1F*)PKG^=acIt3-'KnkJAMiEdZOcu&rR@9V9T9GOqJ!c@^ Pa7])R[fq@U8"K]Vl?te[C<]X]=u%q_SjF6aN;ZNcHt"Um]$6e`n:=lJcC<$JcC<$[JpE1s7j>n !Mf[F~> [/^0s!or#(n`U#CddHT)ddF+8!65$=!.k0$s+13$s0_k1WrMh-4oqGYJ,~> jo8Mn?kKA@:EbZB4u'sD/XE7FEMeQH@1-jJ:`E-LPUhHNK90`PEhH$R[]k?PEgrRR$!St QC+)/SXlFJU84ZbWNqht[^`o]]t_D#`5Td jo8Mo$YHA@:NeZB4u$rD/aK8FEMbPH@1-jJ:`E.LPUhHNK0-aPEhH$R[]k?PEgrSQ]dPs QC+)0SXuLJUSOcbWNqes\%0)_^;%M$`5Ta;b08,Ud(8VE!!($l!!%TMJcC<$JcE.X"fhUt^HVao s*t~> [/^0s!or#(n`U#CddQZ*a6fl,!65$=!.k0$s+13$s0_k1WrMh-4oqGYJ,~> jSr?5EEH@J>[CcG@q91aBPVF$DfKf>F`r%VI"$QqJqJf5Ll..NO-,ThQ'[l,S"6.7P_OXSP*D2s R$jG7StMdOUo()iZBho-\[oDd^VI_)`Q-'Bbg"58m&C$c`n:=lJcC<$JcC<$[JpE1s7jGq!Mf[F~> jSr?5E`ZCI?!^lH@q91aBPVF$DfKf>Fa&+WH[^HpK7eo6Ll%(MO-,QhQBmo,S"618P_OXRP*;/s R$jG7StMgQUo(&hZBhr.\[oGe^VRe*`Q-'Bbg"89m&C$c`n:=lJcC<$JcC<$[JpE1s7jJr!Mf[F~> [/^0s!oho&n`U#Cddcf-jh'lZ!!(%=!!%TMJcC<$JcE.X"fhUs^cqjps*t~> j8W0UQW[Ks?=.,NA7fIgC2@d+EH6/DGBnL^I=Hd"KS>2;MN!OTOckonQC422SY)+1L4>SRPEhH$ R@B_;T:r!TVl-N"QF=64]">Yj_8=.0a2lEI^oQe$!!($l!!%TMJcC<$JcE.X"fhUt_ES'rs*t~> j8W0UQs!Tu?=72OA7fIgC2@a*EH6/DG'SC\I=Hg"K8#):MN!OUOHG`lQC+/2SY)(1L45JOPE_B# R@Bb [/^0s!oho&n`U#Cddll.eZA):!!(%=!!%TMJcC<$JcE.X"fhUs^cqjps*t~> iVufmAR/VL@:Nh[B5)-tDK'T9FEMeQH@10kJV/T/LkpqINK93aPEqQ&R[]k?P*LcOR$!StQC+)0 SXlFJUSXleWjA#"\%'#^]t_A"`5Td iVuflAmAYL@:NeZB5)*sD/XE7FEMeQH@1-jJV&N.LPUhHNK0-aPEqN&R[]k>PEglPR$!SsQC+)0 SXuLKUSOfdWNqhu\%0)^^;%J#`5Td [/^0s!oho&n`U#Cde*#0lbr%f!!(%=!!%TMJcC<$JcE.X"fhUs^cqjps*t~> i;ZXBQ i;ZXBQd^VRe*`Q,]pkc+U_`n:=lJcC<$JcC<$[JpE1s7jJr!Mf[F~> [/^0s!oho&n`U#Cde3)1f!!(%=!!%TMJcC<$JcE.X"fhUs^cqjps*t~> hZ$9mH"(8oAnPdmCi402F*)PKH$XgcIt<3)KnkJAN/`m\Ocu)tR$sM8T9GLpJ!Z=^Pa7])S"6.D U8+N]Vl@"g[^WfY]=u%q_Sj9sk,JC]`n:=lJcC<$JcC<$[JpE1s73uj!Mf[F~> hZ$9mH!t2nAnPgnCi402F*)PKH$XjdIt<3(L51SBN/`m[P*;2tR@B\:T9GOqJ!Z:]Q'Rf*S"6.D Tq\B]W2[(g[^N]W]=u%q_o0Btk,JC]`n:=lJcC<$JcC<$[JpE1s74#k!Mf[F~> [/^0s!ohr'n`U#CdeE53jh^)Z!!(%=!!%TMJcC<$JcE.X"fhUm^cqjps*t~> h#BpOB4PUeBkqO%DfKi?Fa&+WI"$QrK7el5Ll..NNf]EgQBmo,S"618Q%jdUP*D5tR$jG7StDaP Uo1/jZBho-\[oGf^VI^pjJi1[`n:=lJcC<$JcC<$[JpE1s73uj!Mf[F~> h#BpOBOk^fBkhI%E,frAFa&+WI"$QrK7nu7Ll..NO-,QgQ'[o.S"618Q%smWOcu#qR$jG7SY2^O V5C/iZBhr.\[oGf^VRapjJi1[`n:=lJcC<$JcC<$[JpE1s74#k!Mf[F~> [/^0s!ohr'n`U#CdeWA5m`aal!!(%=!!%TMJcC<$JcE.X"fhUm^cqjps*t~> g]'b4Ve0RUCM[m,EH?5EGBnL]I=Hg"K8,2=MN!OUOckooQC422SY)+2LObbTPE_B#R@Bb=TV8-V VPgE!QF=94]"G_k\#eVi!!($l!!%TMJcC<$JcE.X"fhUn_*7sqs*t~> g]'b4Ve0RUCM[j+EH?5EGBeF]IXcm"K8#):MN!OUOHPinQ^F53SY)+2LOb_RPE_B#R@Bb=T:r$V Vl-N"QaXB6]">Yj\#eVi!!($l!!%TMJcC<$JcE.X"fhUn_ES'rs*t~> [/^0s!ohr'n`U#Cde`G6d]qi4!!(%=!!%TMJcC<$JcE.X"fhUm^cqjps*t~> g&FD'VJ0g^DJsN9FEMeQH@10kJ:`H.LPUhHNK0-aPEqN&S"#t@PE^lRR$!VuQC4/1SXuIJUSXld Wj7r![^iu^[]SMg!!($l!!%TMJcC<$JcE.X"fhUt^cqmqs*t~> g&FD'VJ0g^DK'T:FEVkRH@10kJV&N/LPUhHNK93bPEhH%R[]k?PEgrSQ]dSuQ^F21SXuLKU8=`c WNqhu\%0)^[B8Df!!($l!!%TMJcC<$JcE.X"fhUt^cqmqs*t~> [/^0s!or#(n`U#CderS8e$S)6!!(%=!!%TMJcC<$JcE.X"fhUt^cqmqs*t~> fDe&%Y]Xf%EH6/DGBnL^IXcp#K8#):Mi fDe&%Y]Oc$EH6/DGBnL^IXcm"KS>5 [/^0s!or#(n`U2HddZbmca)H.!!(%=!!%TMJcC<$JcE.X"fhUt^cqmqs*t~> ec.Z-_iA_WFEMeQH@10kJV&Q/LPUhHNK90aPa7Z'R[]k?PEgrTR$!SsQC+)0SXuLJU8=`cWNqhr YM?,X!;+qE!7][%!.k0$s+13$s0_k1WrMk056@V[J,~> ec.Z-_i8YWFEMeQH@1-jJ:iK.LPUkINK0-aPa.T&R[]k?PEgrTR$!VtQC4/2SXuLJUSOcbWj7tt YM?,X!;+qE!7][%!.k0$s+13$s0_k1WrMk056@V[J,~> [/^0s!or#(n`U,Fdc&6Jh5UGTo`"mkeGfLKJcC<$JcC<$[JpE1s7jAo!i,dG~> df2/]Y(:_>H$XjeIt<3(L51VCN/`j[Od)/uR@B\:T9GOqJ=)L`Pa@f+S"6.DU8"K^VkpR@g8Y,Q o[s3El.Q(:!ndPRrn7;Orn78Nr7M&MJcC<$JcC<$[JpE1s7=&k!Mf[F~> df2/]Y(1\>H$XjdIt30(L51SBN/`m\P*D5tR$sM8T9GOqJ [/^0s!oho&o&p/4dP'=S!!)Zk!!)9`rr<-#!!*#urrE&urW)lr!!%TMJcC<$JcE.X"fhUn^cqjp s*t~> ci5`OY(q=NIXcp$KS>2 ci5`OY(q=NIXcm#KS>5 [/^0s!oho&p#lS8^7KhS!8=FQ!<)p"!<3'!rW)uu!s&?$s8E#ts8N*!rriE&!<3'!rW)uu!!)ut !!)ut!s&B$!;c]q!.k0$s+13$s0_k1WrMY*567PZJ,~> bl9*O^n640K7eo6M2I:PO-,TiQBmo,S"619Q%smVOd),tR@0P8SsPOorI4jJ!8=FQ!<(Rt!8.A* !86$*f`2$*f`9^Y!8.A*f`9\*f`9\*f`9^Y!8.A*f`2$Og&D'Og&D'Lf`2#'s+13$s+13XrroG& o>*WlU]5i~> bl9*O^n?:1JqSi6Ll..NO-#NgQC!u-S=Z@:Q%smVOcu#rR$jG7SsPOorI4jJ!8=FQ!<(Rt!8.A* !86$*f`2$*f`9^Y!8.A*f`9\*f`9\*f`9^Y!8.A*f`2$Og&D'Og&D'Lf`2#'s+13$s+13XrroG& o>*WlU]5i~> [/^0s!oho&q<.qCc*EZ6IfZPLg8Y,QrVn2ErrE'!s8N*!!!*'!!<<'!rrE*!!<3'!!<3'!!<<'! rrE*!!!*#urrE&urrDrr!!%TMJcC<$JcE.X"fhUn^cqjps*t~> aoP g"?AYf`9\*g"?AY!8.A*!8.A*f`9\*rRh/NrRh/NrRh/Nr7M&MJcC<$JcC<$[JpE1s7=&k!Mf[F~> aoP g"?AYf`9\*g"?AY!8.A*!8.A*f`9\*rRh/NrRh/NrRh/Nr7M&MJcC<$JcC<$[JpE1s7=&k!Mf[F~> [/^0s!oho&rTFC8_QK8VqL8OG!8=FQ!<)pA!<3'!!<<'!rr<'!rrE*!!<3'!rrE'!rrE'!rrE*! !<3&trr<&trr<&trr<&srr<%Ms+13$s+13XrroG&o"[HjU]5i~> `;^YQle9Ru[B66tS=5n9SY;mHRXJ_=LP:BQIfZPLg8Y,QrRi@pf`9\*g"?AY!8.A*!86$*f`9^Y !86$*f`9^Y!86$*f`;!(!!)uN!!)uN!!)rM!!%TMJcC<$JcE.X"fhUr_ES'rs*t~> `;^YQle9Ru[B69uS=5k8SY;mHRXJ_>LP:BQIfZPLg8Y,QrRi@pf`9\*g"?AY!8.A*!86$*f`9^Y !86$*f`9^Y!86$*f`;!(!!)uN!!)uN!!)rM!!%TMJcC<$JcE.X"fhUr_ES'rs*t~> [/UEtkJ [/^05!a[FXnUCS>!8=FQ!;tOM!"mlag"?AY!8.A*!86$*g"??*rn.b]f`9^Y!86$*f`9^Y!!*#O rrE&OrrDrL!!%TMJcC<$JcE.X"fhUr_ES'rs*t~> [/^05!a[FXnUCS>!8=FQ!;tOM!"mlag"?AY!8.A*!86$*g"??*rn.b]f`9^Y!86$*f`9^Y!!*#O rrE&OrrDrL!!%TMJcC<$JcE.X"fhUr_ES'rs*t~> [/^05!aR:UnUCS>!8=FQ!;uls!"o52s8N*!!<3'!!<<'!s8N'!rr3H.rrE*!!<<'!rrE*!!!*#u rrE&urrDrr!!%TMJcC<$JcE.X"fhUq_*7sqs*t~> [/^05!a[FXnUCS>!8=FQ!8H3,!:JM?!.k0$s+13$s0_k1WrMe0567PZJ,~> [/^05!a[FXnUCS>!8=FQ!8H3,!:JM?!.k0$s+13$s0_k1WrMe0567PZJ,~> [/^05!aR:UnUCS>!8=FQ!8IPR!:Kje!.k0$s+13$s0_k1WrMb.567PZJ,~> [/^05!aR=VnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM\&4T_DYJ,~> [/^05!aR=VnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM\&4T_DYJ,~> [/^05!aI4TnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMY%4T_DYJ,~> [/^05!aR=VnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM\&4T_DYJ,~> [/^05!aR=VnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM\&4T_DYJ,~> [/^05!aI4TnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMY%4T_DYJ,~> [/^05!aR=VnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM\&4T_DYJ,~> [/^05!aR=VnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM\&4T_DYJ,~> [/^05!aI4TnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMY%4T_DYJ,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrMe.56@V[J,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrMe.56@V[J,~> [/^05!`L5AnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrM\)4p%MZJ,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrMe.56@V[J,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrMe.56@V[J,~> [/^05!`L5AnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrM\)4p%MZJ,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrMe.56@V[J,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrMe.56@V[J,~> [/^05!`L5AnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrM\)4p%MZJ,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrMe.56@V[J,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrMe.56@V[J,~> [/^05!`L5AnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrM\)4p%MZJ,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM\.5m!h]J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM\.5m!h]J,~> [/^05!`gMFnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMV,5Q[_\J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM\.5m!h]J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM\.5m!h]J,~> [/^05!`gMFnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMV,5Q[_\J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM\.5m!h]J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM\.5m!h]J,~> [/^05!`gMFnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMV,5Q[_\J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrMS)56@V[J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrMS)56@V[J,~> [/^05!`^GEnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMM&56@V[J,~> [/^05!a$bKnUCS>!8=Hk!.k0$s+13$s3(HB!:BdiWrMS)56@V[J,~> [/^05!a$bKnUCS>!8=Hk!.k0$s+13$s3(HB!:BdiWrMS)56@V[J,~> [/^05!`^GEnUCS>!8=Hk!.k0$s+13$s3(HB!:BdiWrMM&56@V[J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrMS)56@V[J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrMS)56@V[J,~> [/^05!`^GEnUCS>!8=FQ!65$=!.k0$s+13$s3(HB!:BdiWrMM&56@V[J,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM\25lmb\J,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM\25lmb\J,~> [/^05!`L2@nUCS>!8=FQ!65$=!.k0$s+13$s3(HB!:BdiWrMV/5lmb\J,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM\25lmb\J,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM\25lmb\J,~> [/^05!`L2@nUCS>!8=FQ!65$=!.k0$s+13$s3(HB!:BdiWrMV/5lmb\J,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM\25lmb\J,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM\25lmb\J,~> [/^05!`L2@nUCS>!8=FQ!65$=!.k0$s+13$s3(HB!:BdiWrMV/5lmb\J,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM\25lmb\J,~> [/^05!`^GEnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM\25lmb\J,~> [/^05!`L2@nUCS>!8=FQ!65$=!.k0$s+13$s3(HB!:BdiWrMV/5lmb\J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM_/5QRY[J,~> [/^05!a-kMnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM_/5QRY[J,~> [/^05!`^JFnUCS>!8=FQ!65$=!.k0$s+13$s3(HB!:BdiWrMV*5QRY[J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM_/5QRY[J,~> [/^05!a-kMnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM_/5QRY[J,~> [/^05!`^JFnUCS>!8=FQ!65$=!.k0$s+13$s3(HB!:BdiWrMV*5QRY[J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM_/5QRY[J,~> [/^05!a-kMnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrM_/5QRY[J,~> [/^05!`^JFnUCS>!8=FQ!65$=!.k0$s+13$s3(HB!:BdiWrMV*5QRY[J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrMM+633k]J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrMM+633k]J,~> [/^05!`^GEnUCS>!8=FQ!65$=!.k0$s+13$s3(HB!:BdiWrMG'5QRY[J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrMM+633k]J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrMM+633k]J,~> [/^05!`^GEnUCS>!8=FQ!65$=!.k0$s+13$s3(HB!:BdiWrMG'5QRY[J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrMM+633k]J,~> [/^05!a$bKnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrMM+633k]J,~> [/^05!`^GEnUCS>!8=FQ!65$=!.k0$s+13$s3(HB!:BdiWrMG'5QRY[J,~> [/^05!`gMFnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrMM&567PZJ,~> [/^05!`pSGnUCS>!8=FQ!63[l!.k0$s+13$s3(HB!:BdiWrMM&567PZJ,~> [/^05!`L5AnUCS>!8=FQ!65$=!.k0$s+13$s3(HB!:BdiWrMD!4oqGYJ,~> [/^05!`gMFnUCS>!8=FQ!;G.H!7BI"!.k0$s+13$s3(HB!:BdiWrMM&567PZJ,~> [/^05!`pSGnUCS>!8=FQ!;G.H!7BI"!.k0$s+13$s3(HB!:BdiWrMM&567PZJ,~> [/^05!`L5AnUCS>!8=FQ!;HKn!7CfH!.k0$s+13$s3(HB!:BdiWrMD!4oqGYJ,~> [/^05!`gMFnUCS>!8=FQ!;G.H!;"nD!!:gR!<1[O!<1[N!<:aP!!:gR!;>(G!.k0$s+13$s3(HB !:BdiWrMM&567PZJ,~> [/^05!`pSGnUCS>!8=FQ!;G.H!;"nD!!:gR!<1[O!<1[N!<:aP!!:gR!;>(G!.k0$s+13$s3(HB !:BdiWrMM&567PZJ,~> [/^05!`L5AnUCS>!8=FQ!;HKn!;$6j!!<0#!<3#u!<3#t!<<*!!!<0#!;?Em!.k0$s+13$s3(HB !:BdiWrMD!4oqGYJ,~> [/^05!`gMFnUCS>!8=FQ!<(RR!86$*g&:sTf`9^Y!878Ms4IAPrRh/NrRh8Qg"?B&f`D0,!;>(G !.k0$s+13$s3(HB!:BdiWrMM&567PZJ,~> [/^05!`pSGnUCS>!8=FQ!<(RR!86$*g&:sTf`9^Y!878Ms4IAPrRh/NrRh8Qg"?B&f`D0,!;>(G !.k0$s+13$s3(HB!:BdiWrMM&567PZJ,~> [/^05!`L5AnUCS>!8=FQ!<)p#!<<'!s8E!%rrE*!!<;rss8N'!rVlitrVls"s8N)rrrN3#!;?Em !.k0$s+13$s3(HB!:BdiWrMD!4oqGYJ,~> [/^05!`pYInUCS>!8=FQ!<(Rg!86$*g"?AY!8.A*!!([Pf`9\*f`9^Y!!*#OrrE&OrrE&OrrE)P !!)`G!!%TMJcC<$JcE.X"fhUe_*7sqs*t~> [/^05!`p\JnUCS>!8=FQ!<(Rg!86$*g"?AY!8.A*!!([Pf`9\*f`9^Y!!*#OrrE&OrrE&OrrE)P !!)`G!!%TMJcC<$JcE.X"fhUf_*7sqs*t~> [/^05!`L8BnUCS>!8=FQ!<)p8!<<'!s8N*!!<3'!!!*$!rrE'!rrE*!!!*#urrE&urrE&urrE*! !!)`m!!%TMJcC<$JcE.X"fhUc^-;Xns*t~> [/^05!`pYInUCS>!8=FQ!;tOM!<1XP!87>O$J>F4f`9\*f`9\*rRh/NrRh/NrRh/NrRh5Pf`:a! !!%TMJcC<$JcE.X"fhUe_*7sqs*t~> [/^05!`p\JnUCS>!8=FQ!;tOM!<1XP!87>O$J>F4f`9\*f`9\*rRh/NrRh/NrRh/NrRh5Pf`:a! !!%TMJcC<$JcE.X"fhUf_*7sqs*t~> [/^05!`L8BnUCS>!8=FQ!;uls!<3!!!<<#u$NC,+rrE'!rrE'!rVlitrVlitrVlitrVlp!rrDcm !!%TMJcC<$JcE.X"fhUc^-;Xns*t~> [/^05!`pYInUCS>!8=FQ!<(RV!86$*g"?AY!<1XX!86$*f`9\*f`;!(!!)uN!!)uN!!)uN!W^mR p=TEGJcC<$JcC<$[JpE1s67?a!Mf[F~> [/^05!`p\JnUCS>!8=FQ!<(RV!86$*g"?AY!<1XX!86$*f`9\*f`;!(!!)uN!!)uN!!)uN!W^mR p=TEGJcC<$JcC<$[JpE1s6@Eb!Mf[F~> [/^05!`L8BnUCS>!8=FQ!<)p'!<<'!s8N*!!<3!)!<<'!rrE'!rrE#t!!)ut!!)ut!!)ut!W`6# pAY*mJcC<$JcC<$[JpE1s6%*\!Mf[F~> [/^05!`:&>nUCS>!8=FQ!<(Rg!86$*g"?AYf`2$*!86$*f`9\*f`9^Y!!*#OrrE&OrrE&OrrE)P !!)`G!!%TMJcC<$JcE.X"fhUn_E\0ts*t~> [/^05!`C,?nUCS>!8=FQ!<(Rg!86$*g"?AYf`2$*!86$*f`9\*f`9^Y!!*#OrrE&OrrE&OrrE)P !!)`G!!%TMJcC<$JcE.X"fhUn_E\0ts*t~> [/^05!_s]7nUCS>!8=FQ!<)p8!<<'!s8N*!rr<'!!<<'!rrE'!rrE*!!!*#urrE&urrE&urrE*! !!)`m!!%TMJcC<$JcE.X"fhUj^cqmqs*t~> [/^05!`:&>nUCS>!8=FQ!9i,9!:JP?!;>(G!.k0$s+13$s0_k1WrMY,5Q[_\J,~> [/^05!`C,?nUCS>!8=FQ!9i,9!:JP?!;>(G!.k0$s+13$s0_k1WrMY,5Q[_\J,~> [/^05!_s]7nUCS>!8=FQ!9jI_!:Kme!;?Em!.k0$s+13$s0_k1WrMM&56@V[J,~> [/^05!`:&>nUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrMY,5Q[_\J,~> [/^05!`C,?nUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrMY,5Q[_\J,~> [/^05!_s]7nUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMM&56@V[J,~> [/^05!`0l:nUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM=t56@V[J,~> [/^05!`9u!8=FQ!63[l!.k0$s+13$s0_k1WrM@u56@V[J,~> [/^05!_jQ4nUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrM1m4T_DYJ,~> [/^05!`0l:nUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM=t56@V[J,~> [/^05!`9u!8=FQ!63[l!.k0$s+13$s0_k1WrM@u56@V[J,~> [/^05!_jQ4nUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrM1m4T_DYJ,~> [/^05!`0l:nUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM=t56@V[J,~> [/^05!`9u!8=FQ!63[l!.k0$s+13$s0_k1WrM@u56@V[J,~> [/^05!_jQ4nUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrM1m4T_DYJ,~> [/^05!`0l:nUCS>!8=FQ!63[l!.k0$s+13$s0_k1WrM=t56@V[J,~> [/^05!`9u!8=FQ!63[l!.k0$s+13$s0_k1WrM@u56@V[J,~> [/^05!_jQ4nUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrM1m4T_DYJ,~> huL'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L((q=sa\V>05i56:QTq"X[[q"a^[qu$Dss*t~> huL'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L((q=sa\V>08j56:QTq"X[[q"a^[qu$Dss*t~> huL'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\ q"X[`p]gQhq"a^[q>L((q=sa\V>0,c4otHSq"X[[q"a^[qu$Dss*t~> i;YM/p@7G0jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,EqTLKccqf;^V!HN2W EdO2SQ^O2-R@'D0R$j;-R?s;/R$j>/R?s8.Q^F2.R@'A0Q^=,,R$jF`jQ5I`jl>C_j5f=_ jlGLaj5YUMj5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLa j5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^ jlGOajQ5F^jl>F`jQ6F&Hfa;Jjl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOa jQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_ j5f=_jlGLaj5]7]jQ5IajQ,F_j*p+MjQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_ jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_ j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jo=Cgjl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^ jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I` jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^:Z^WtjlGOajQ5F^jl>F`jQ5I`jl>C_ j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jI,)YZ8r$Jj5f=_jlGI`k3MU5rNZBQ~> i;YM/p@7G0jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,EqTLKccqf;^V!HN2W EdO2SQ^O2-R@'D0R$j;-R?s;/R$j>/R?s8.Q^F2.R@'A0Q^=,,R$jF`jQ5I`jl>C_j5f=_ jlGLaj5YUMj5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLa j5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^ jlGOajQ5F^jl>F`jQ6F&Hfa;Jjl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOa jQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_ j5f=_jlGLaj5]7]jQ5IajQ,F_j*p+MjQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_ jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_ j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jo=Cgjl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^ jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I` jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^:Z^WtjlGOajQ5F^jl>F`jQ5I`jl>C_ j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jI,)ZZ8r$Jj5f=_jlGI`k3MU5rNZBQ~> i;YM/p@7G0jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,EqTL0K^qf;^V!HN2W EdO2SQ^O2-R@'D0R$j;-R?s;/R$j>/R?s8.Q^F2.R@'A0Q^=,,R$jF`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5D%jl>F`jQ5I`jl>C_j5f=_ jlGLaj5YUMj5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLa j5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^ jlGOajQ5F^jl>F`jQ6F&Hfa;Jjl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOa jQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_ j5f=_jlGLaj5]7]jQ5IajQ,F_j*p+MjQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_ jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_ j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jo=Cgjl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^ jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I` jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^:Z^WtjlGOajQ5F^jl>F`jQ5I`jl>C_ j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jI,)VY;lXFj5f=_jlGI`k3MU5rNZBQ~> iVsAboB+ZG^q7+f\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\IuNa]",>^Jq5orHX0l^>[1Q> >Q.k4?!LZ?>^QNtrd+luH[L0eI!^2=HO"tGI!^3fH[>[<#CUrHH[C-eHN&6rI^ \@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC ]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\ ]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ #J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_ \@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K \HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW \[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Z rj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV ]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\ \,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7Kn\Z:fF!WKV;]=>J_\\#Z"gZnM2 ZN#F~> iVsAboB+ZG^q7+f\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\IuNa]",>^Jq5orHX0l^>[1Q> >Q.k4?!LZ?>^QNtrd+luH[L0eI!^2=HO"tGI!^3fH[>[<#CUrHH[C-eHN&6rI^ \@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC ]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\ ]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ #J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_ \@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K \HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW \[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Z rj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV ]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\ \,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7Kn\ZClG!WKV;]=>J_\\#Z"gZnM2 ZN#F~> iVsAboB+ZG^q7+f\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\IuNa]",>^Jq5fmHX0l^>[1Q> >Q.k4?!LZ?>^QNtrd+luH[L0eI!^2=HO"tGI!^3fH[>[<#CUrHH[C-eHN&6rI^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]!qb>\HfaV]",>^ \@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC ]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\ ]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ #J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_ \@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K \HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW \[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Z rj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV ]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\ \,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7Kn\Z(TA!WKV;]=>J_\\#Z"gZnM2 ZN#F~> ir98^p#X>rOb\JdIf+TtI"$KlIX_3C"akcII=?YCI1UdTI=6QnI=54".1fHB5!M:/4pO;95!M7q ;ZQeq"B8;u<)i`n"B8;u<)i`n"B8;u<)i`n"B8;u!,MIH"D_aeCMWf^"D_aeCMWf^"D_aeCMWf^ "D_aeCMWf^"D_aeCMWoa#691"IXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWn If+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"I I=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C "akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWn If+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"I I=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C "akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWn If+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"I I=6Qnr-\`rIXQWnIf+U&I"$Kl<.8ps+9?n ir98^p#X>rOb\JdIf+TtI"$KlIX_3C"akcII=?YCI1UdTI=6QnI=54".M5WD5!M:/4pO;95!M7q ;ZQeq"B8;u<)i`n"B8;u<)i`n"B8;u<)i`n"B8;u!,MIH"D_aeCMWf^"D_aeCMWf^"D_aeCMWf^ "D_aeCMWf^"D_aeCMWoa#691"IXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWn If+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"I I=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C "akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWn If+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"I I=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C "akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWn If+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"I I=6Qnr-\`rIXQWnIf+U&I"$Kl<.8ps+9?n ir98^p#X>rOb\JdIf+TtI"$KlIX_3C"akcII=?YCI1UdTI=6QnI=54"-kB9@5!M:/4pO;95!M7q ;ZQeq"B8;u<)i`n"B8;u<)i`n"B8;u<)i`n"B8;u!.Oio"akcII=?YCI0G"II=6Qnr-\`rIXQWn If+TtI"$KlIX_3C"akcII=?YEI0Tb#I"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+Tt I"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qn r-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcI I=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+Tt I"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qn r-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcI I=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+Tt I"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qn r-\`rIXQWnIf+TtI"$KlIX_3C%"*MPI8kZ9?692rI")$B#_%>\Qa>0+q#.Q!J,~> ir:t6n("@^>?"El:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9f=mJ$8X"T-RL/= -5%[P-71#d-7(GJ1GgjC1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1OM#71G^cd69mk'5sdh' 69mk(5XIb&69mk(5XIe&6:!n(5XIe&6:*q(5s[h&6:*q(69mk'5sdh'69mk(5XIa::.n;U9282S 9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/-19282S9h\5U 92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U 9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R Hqm=/9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U 9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU 9MA2S9hg+1:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S 9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U 92/)R:.n;U9282S9h\6.:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R :.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R :/+AU9MA2S9he8U9hS2S9MS5T9e8q49hS2S9MS5T9hS5U92/)R:.n;U9/K@33thWi92/,Q9he;X <+:Wlh=CKMs*t~> ir:t6n("@^>?"El:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9f=mJ$8X"T-RL/= -5%[P-71#d-7(GJ1GgjC1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1OM#71G^cd69mk'5sdh' 69mk(5XIb&69mk(5XIe&6:!n(5XIe&6:*q(5s[h&6:*q(69mk'5sdh'69mk(5XIa::.n;U9282S 9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/-19282S9h\5U 92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U 9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R Hqm=/9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U 9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU 9MA2S9hg+1:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S 9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U 92/)R:.n;U9282S9h\6.:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R :.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R :/+AU9MA2S9he8U9hS2S9MS5T9e8q49hS2S9MS5T9hS5U92/)R:.n;U9/K@33thWi92/,Q9he;X <+:Wlh=CKMs*t~> ir:t6n("@^>?"El:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9f=mI#r ir=K&lH,2k3]f>X3B/iU2E!QP3B8lU3&EWR2EZIk*6-/28b00e>%6.kr_/0eP(5/28k00eb.5/hSk00ek150J"q2!')kr3AWZT 1c[HP3A``V1H@EO3ArcU1c[QP3B/iU2E!QP3B8lU3&EWR2EO~> ir=K&lH,2k3]f>X3B/iU2E!QP3B8lU3&EWR2EZIk*6-/28b00e>%6.kr_/0eP(5/28k00eb.5/hSk00ek150J"q2!')kr3AWZT 1c[HP3A``V1H@EO3ArcU1c[QP3B/iU2E!QP3B8lU3&EWR2EO~> ir=K&lH,2k3]f>X3B/iU2E!QP3B8lU3&EWR2EO~> ir;C@lH,2k3]f>X3B/iU2E!QP3B8lU3&EWR2E ir;C@lH,2k3]f>X3B/iU2E!QP3B8lU3&EWR2E ir;C@lH,2k3]f>X3B/iU2E!QP3B8lU3&EWR2E ir:t6n("@^>?"El:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9f=mH#W!eR-RL/= -5%[P-71#d-7(GJ1GgjC1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1J'DY1G^cd9hS2S9MS5T 9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/([0.ee//MA_. r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$] /hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_/ /cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF/ /M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_/ /hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@- 0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y- 0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T #;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee/ /MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU /dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[o*B/M8Y-1egD!'*1j$9he5S9h\A_@Y_GK o),ioJ,~> ir:t6n("@^>?"El:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9f=mH#W!eR-RL/= -5%[P-71#d-7(GJ1GgjC1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1B]Ni1G^f)!!b///hS_/ /hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@- 0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y- 0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T #;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee/ /MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU /dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y] /hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_. r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$] /hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_/ /cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T)DO~> ir:t6n("@^>?"El:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9f=mH#;[\Q-RL/= -5%[P-71#d-7(GJ1GgjC1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1B]Ni1G^f)!.7O79he8U 9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R :.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/-1 9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU 9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T 9hS5U92/)RHqm=/9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U 92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U 92/,R:/+AU9MA2S9hg+1:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R :/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S 9MS5T9hS5U92/)R:.n;U9282S9h\5n:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T 9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hR<;6oYe[:.n;U8ki#R :fLnZ\)$WQZi>O~> ir98^p#X>rOb\JdIf+TtI"$KlIX_3C"akcII=?YCI1UdTI=6QnI=54"-Oj$=5!M:/4pO;95!M7q ;ZQeq"B8;u<)i`n"B8;u<)i`n"B8;u<)i`n"B8;u!.Oio"akcII=?YCI0G"II=6Qnr-\`rIXQWn If+TtI"$KlIX_3C"akcII=?YEI0TaF8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne 8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrP r(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH] 92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne 8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrP r(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH] 92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne 8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrP r(@2c9M8#P9`.Ne8k_lN9MG@W$qa2d92p@]>os)qI")$B#_%>\Qa>0+q#.Q!J,~> ir98^p#X>rOb\JdIf+TtI"$KlIX_3C"akcII=?YCI1UdTI=6QnI=54"-Os*>5!M:/4pO;95!M7q ;ZQeq"B8;u<)i`n"B8;u<)i`n"B8;u<)i`n!`W)s_uL!78k_lN9MG@W"\MH]92&%W9*Ip]91qrP r(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH] 92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne 8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrP r(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH] 92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne 8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrP r(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH] 92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W$qa2d92p@]>os)qI")$B#_%>\Qa>0+q#.Q! J,~> ir98^p#X>rOb\JdIf+TtI"$KlIX_3C"akcII=?YCI1UdTI=6QnI=54"-4Ej;5!M:/4pO;95!M7q ;ZQeq"B8;u<)i`n"B8;u<)i`n"B8;u<)i`n!`W)s_uL!iI"$KlIX_3C"akcII=?YCI0G"II=6Qn r-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcI I=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+Tt I"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qn r-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcI I=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+Tt I"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qn r-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcI I=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C%"*MPI8kZ8>93fnI")$B#_%>\Qa>0+q#.Q! J,~> iVsAboB+ZG^q7+f\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\IuNa]",>^Jq6!"Hb6f!\[]5\ \,NoC]=>G_!.4cmrd+luH[L0eI!^2=HO"tGI!^3fH[>[<#CUrHH[C-eHN&6rI^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]!qb>D[16!E,TW5 DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZ E,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3 E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl #B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5 DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRm D[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R" Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2 rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16! E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3 DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R.\ZC`A!WKV;]=>J_\\#Z"gZnM2 ZN#F~> iVsAboB+ZG^q7+f\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\IuNa]",>^Jq6$#Hb6f!\[]5\ \,NoC]=>G_!.4cmrd+luH[L0eI!^2=HO"tGI!^3fH[>[<#CUrHH[C-eHN&6lI=&m4rbi$\DK'N3 E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl #B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5 DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRm D[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R" Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2 rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16! E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3 DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\ DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5 DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!I(?>:/HPj]$bNp\\@K5eb1l4T rNcHR~> iVsAboB+ZG^q7+f\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\IuNa]",>^Jq6!!Hb6f!\[]5\ \,NoC]=>G_!.4cmrd+luH[L0eI!^2=HO"tGI!^3fH[>[<#CUrHH[C-eHN&6lI=&m4rj`9G\@T5\ ]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ #J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_ \@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K \HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW \[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Z rj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV ]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\ \,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G \@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^ \@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaVI(?85/-5a\$bNp\\@K5eb1l4T rNcHR~> i;\-$p@7G0jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,EqTLp2kjd;I'R$j;- R?s;/R$gSIR/iSAQ^F2.R@'A0Q^=,,R$j>0R$a;.Q^O2-R@'D0R$j;-R?s;/QiQ4.jl>C_j5f=_ jlGLaj5V`Qj5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl6>tM#)u.L]N?g qMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6. !JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/ M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4 M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"b s+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4 M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u. L]N?greV;VjOL=k!p/J'jlGOaj5oFho(`0gs*t~> i;[Nhp@7G0jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,EqTM$8ljd;I'R$j;- R?s;/R$gSIR/iSAQ^F2.R@'A0Q^=,,R$j>0R$a;.Q^O2-R@'D0R$j;-R?s;/R)At*M2;"bs+g]4 M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u. L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?g qMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6. !JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/ M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4 M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"b s+g]4M#N5ERH2o"3!/4%jQ5IajQ#@algjiLZ2]=~> i;[Nhp@7G0jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,EqTLg)ijd;I'R$j;- R?s;/R$gSIR/iSAQ^F2.R@'A0Q^=,,R$j>0R$a;.Q^O2-R@'D0R$j;-R?s;/R)AuRjl>F`jQ5I` jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7] jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGP' jEp"Kj5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^ jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_ jlGLaj5YUMj5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLa j5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^ jlGOajQ5F^jl>F`jQ6F&Hfa;Jjl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOa jQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_ j5f=_jlGLaj5]7]jQ5IajQ,F_j(7?4jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_ jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_RH2hp2?N"#jQ5IajQ#@a lgjiLZ2]=~> hu?=;pnjmaVZ!>'VPU,d V,@;i!2ZNhV5:&cV5F3f#,\5nVPU,drM9^qV5:&cV5F3f#,\5nV?$DerV-Tmq"X[[q"am`#5S&h q=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-]pq"X[[q"a^[!.gDdQ%>3OQ*lkiV>08d4TbESq"X[[ q"a^[qu$Dss*t~> huHC'VPU,d V,@;i!2ZNhV5:&cV5F3f#,\5nVPU,drM9^qV5:&cV5F3f"/_okVSiIcQ%>3OQ%>4.PnKqgkdinY q"a^[q=sa\q"XaarNQ hu618pnjmaVZ!>'VPU,d V,@;i!2ZNhV5:&cV5F3f#,\5nVPU,drM9^qV5:&cV5F3f"/_okVSiH>q"a^[q=sa\rV-Tmq"X[[ q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[ q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[ q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[ q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[ q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[ q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[ q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[ q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[ q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV.0(q"XZ]pu\tG!r2Tdq"a^[q=sa^r;El" J,~> [/^05"&^8As7E;n;uioug8Y,Q`r?#=JXM(WJXM(W[@%2us6dZe!i,dG~> [/^05"&g>Bs7E;n;uioug8`'kJXM(WJXM(W[@%2us6dWd!i,dG~> [/^05"&U,>s7E;n;uioug8`'kJcC<$JcC<$[JpE1s6R<[!i,dG~> [/Up"jNGI,s6oFGn*fZ0kiLdYf?ojW],TJ(!!(%=!!%S ])Nc=iR>l][#U&\@>1)'L51VCNfT?fQC488Cb2Fpg8`'kJXM(WJXM(W[@%2us6RZh!Mf[F~> ])Nc=iR>l][>p/]@"jr%L51VDNK93dQ^XG9Cb2Fpg8`'kJcC<$JcC<$[JpE1s6@?`!Mf[F~> [/^0s"6%o%s7GdfiR75DnE/NR`OW)/WW3%=rr<%MR=UcWR=Ud6R0BVjm)20jU]5i~> _>bt^j3>*0P(J=?L5:\DIt2NQJs(hCLP^qJNK90`PE_>fHC9/NT;&0[W8O\o!.gPhR=UcWRC/Fd WrMG(5QRY[J,~> _>bt^j3>*0P(J@@L5:\DIXlEOJs(hCLkptJNK90_P*D5eHCB5OT;&-ZW8O\o!.k0$s+13$s0_k1 WrMA!567PZJ,~> [/^0s"6%o%s7Gd_iR75DqX=UJe],)[WW3%=rr<%MR=UcWR=Ud6R0BVjm)20jU]5i~> `W%[TaK(DKH[UBnJV/W0LPUbEIXlEPJs1nDLPUhHNK90`PE_>fHCB5OSt;ULUSOccWT:(t!.gPh R=UcWRC/FdWrMG(5QRY[J,~> `W%[Ta/b;JH[UBnJV/T/LPUeFIXlBNJs(hBLP^nINK0*^P*D5eHC92OSt;UKUSOccWT:(t!.k0$ s+13$s0_k1WrMA!567PZJ,~> [/^0s"5h]!s7Gd_iR75Dp@&1Ng<$efWW3%=rr<%MR=UcWR=Ud6R0BVjkJ'4^U]5i~> ao=Ea_4H$sG'J:YI!pHnJV/T/LPUeFIXl?LJs1nDLP^qJN/s'_P*D5eHC9/NSXuIJUSOccW2co" XK1Tc_uP@VJXM(WJXNp6"fhUc^HVaos*t~> ao=Ea_4>srG'J:YH[UBoJV/T/LPUeFIXc9KJs(hCLP^qJNK90`P*D5fHC92NSt;ULUSO`aW2Zi! XK1Tc_uPAgJcC<$JcE.X"fhUa\ig(hs*t~> [/^0s"5h]!s7Gd_iR75Do'c_EeA(@M!!(%=!!%S bl9rVW./c+EcZAHG^4U^I=H`tJqJc4Ll%" bl9rVVgiW)EcZAGGBnL^I=H`tK7el4Ll%" [/^0s"5h]!s7Gd_iR75Dn*gDIfYR$V!!(%=!!%S ci6JYRr)tXDK'T9FEM_NH$XgcIt*$$K8#&9M2Hb4DeFZbKnkJ@Mi ci6JYS8E%XD/XE6F*2VLH$XjdIt*$%K8#):M2Hb4DJ+QbKnkG?Mi [/^0s"5qf#s7Gd_iR75Dm-k)Ef"CRR!!(%=!!%S df3"lT5&"PC2@^(E,fo?F`qtSH@('hIt<6)KnbD?MLU.pBS)D$LPL_DN/`m[OckroLO,D;S=Z=F TqeE\Vl6VrXKA\2Z*LdG\%&fJnuBV.JXM(WJXM(W[@%2us6IWi!Mf[F~> df3"lSnhtPC2@^(E,fo?F`r"TH@('iIt<6)KnbD?MLU+oB7c;#LPUeFN/`jZOcu#pLjGJ:S=Q7E TqeBZVl6SqXKA\1Z*UjH\%&fKnuBV.JcC<$JcC<$[JpE1s6.9a!Mf[F~> [/^0s"5qf#s7Gd_iR75Dl0nc:bHUZ>!!)rsrW(jUrr<6&!!*$!!;QQo!.gPhR=UcWRC/FdWrMA' 5lmb\J,~> ec/PgHC9/N St;ULUSOcbW2Zl"Xfo"7ZaI6N\[oDaZ`Ni"_uP@VJXM(WJXNp6"fhUg`BaO"s*t~> ec/A7[!6(lAnPgmCi"$.EH6/DG'J:YI!pKpJV/T/LPUeFIXl?LJs1nCLP^nINK90`PE_>fHCB5O SXuLJUSOccW2co"Xfo"7ZaI6M\Gj&?[&ir#_uPAgJcC<$JcE.X"fhUd_*A$rs*t~> [/^0s"5qf#s7Gd_iR75Dk3rE&\bE*(!;uj(!<<'!rrE'!rr<&us8N*!rr<&us8N*!s8N*!s8N*! rsAc+!!*$!s8N*!!;QQo!.gPhR=UcWRC/FdWrMA'5lmb\J,~> fDen+R9sB4@qB7bBkqL$DK'T9FEMbOH$XjdIt3*&KS>/:M2Hb4DeO`dKnbD?MN!OUOHG]jQ&'aT I%6e"TVA3WV5L8kXK8S.Yd(OB[^WcX]=kqn\?GY,_uP@VJXM(WJXNp6"fhUg`BaO"s*t~> fDen+R9s?3@qB7bBPM@"DK'T9FEMbOH$XjeIXcp$K8#):M2Qh5DeFZbKnbA>Mi [/^0s"5qf#s7Gd_iR75DjR<3,^\Ol0!;uj+!<<'!rr<'!!<<'!rrE&u"9AH%rrE&u!!*#u%flY0 !<3$!rrE'!s8N*!!;QSF!.b-$!.b-W!!TD&lGZ$iU]5i~> g&G7#L0\+m@:E_XAnPdlCi+'/EH6/DG'A4XI"$NpJV/T0L5:\EIXlBNJs1nDLP^nINK90`PE_>f HC92OSt;ULUSO`aW2Zi!Xfo"7ZaI6N\[oDd^;%J$]X%@5JH16$JH16$JH5HF"fhUg`BaO"s*t~> g&G7#L0\+m@:NeYAnPdmCi"!.EH6/DG'J:YI!pKoJV&Q/LPUeFIXl?LJs(hCLl%"JNK90`PEhDh HCB8PSt;ULUSOccW2Zi!Xfo"8ZaI6M\@T;c^;%M%]s@I6JH16$JH16$JH5HF"fhUd_*A$rs*t~> [/^0s"5qf#s7Gd_iR75Dip[!-_>C54!;ulr!<<')!<<'!s8N*!!<3#t!<<*!!<<*!!"f/1s8N*! !<<'!rrE*!!<3&orr<&TR?@Q7AcMgqR?@Q7Ad8=(WrMA"4oqGYJ,~> g](U%Hs0`[?=.,M@q91aBkhF#DK'T9FEMbNH?ssfIt3*&KS>2;M2Hb4E+jidKnkG?Mi g](U%Hs0`[?=.,N@qB:cBkhI$DK'T9F*2YNH$XgcIt*$$K8#):M2Hb4E+jieKnkJ@MimX/rJ-Yd1UC[^WfY]=bkm^r"".^pO!=_uSV]OoU_Y!!&7OOoU_Y#6:0l s6.'W!Mf[F~> [/^0s"5qf#s7Gd_iR75Di:$d*^AY&3!;uis!<)p'!<<'!s8N*!!<2uu!;uis!<3!1!<3'!rrE'! s8N*!!<<'!rrDio!!(iCOoU_Y!!&7OOoU_Y#6:0ls6@B`!Mf[F~> h>^s0HWO?R>?kKA@:NeXAnPdlCi"!.EH6/DG'J:YI!pKoJqJ]0LPUeFIXlBNJs(hCLP^qJNK90` PE_>gHCB5OStD[LUSO`bW2Zi!Y-5+8ZaI6N\[oDd^;%M$`5K[:_R'3@_uSWn!!&8`!!&8`!!&8` !!&8`!!&8`#6=e(s6@?_!Mf[F~> h>^s0HrjHR>?tQB@:E_XAnPgmCi+'/EH6,CG'A4XI!pKpJqJ`1LPUeFIXl?NJs(kDLl%%KNfK3` PE_>gHCB8PStD[MUSO`aW2cr#Y-5+9ZaI6N\[oDd^;%M$`5K[:_R'3@_uSV]OoU_Y!!&7OOoU_Y #6:0ls6.'W!Mf[F~> [/^0s"5qf#s7Gd_iR75DhXC[&\#QG.r;Q`srVlitrr;uurr;uus8W*!#6+Z's8N'!rr;uus8NE+ s8N*!rr<'!rrDio!!(iCOoU_Y!!&7OOoU_Y#6:0ls6@B`!Mf[F~> hu@BHL/h8U=^#$8?=.,M@qB7bBPM@#DK'T9FEMbNH?sseIt*$%KS>/:M2Qh5DeXfeKnkJ@MN!OU OHG`kQ&'aTI@Qn$Tq\ hu@BHL/h5T=^#'9?=.,NA7T=cBkhI#DK'T9FEMbOH?sseIt3*&K8#):M2Qh5E+jidKnkJ@MimX/rJ.Z*L^D[^WfY]=kto^r+(.`lQ6D_6L#?_uSV]OoU_Y!!&7O OoU_Y#6:0ls6.'W!Mf[F~> [/^0s"6/#'s7Gd_iR75Dh!bBnX8plPrrE#trrDio!!(iCOoU_Y!!&7OOoU_Y#6:0ls5gpY!i,dG~> iW!ZgRo**a<``F->[:ZC?t3\XAnPdlCi"!-EH6/DG'J=ZH[^HpJV&Q0LPUeEIXlHRJs(hCLP^qJ NK0*_PEhDhHCB8PSt;UKUSO`aW2Zi!Y->19ZaI6N\@T;c^V@V%_o9X:aihoQ^T59Qh>[HTPlC^` PlC^`PlC^`PlC^`PlCsgs/Q+\]flLms*t~> iW!ZgRo*-b<`iL.>?tQC@:E_XAnPgmCM[m-EH6/DG'A7YI!pKoJV/W0LPUeEIXlHSJs(hCLP^qJ NK90`PE_>gHCB8QSt;ULUSOcbW2co"Xg#(8ZaI6N\@T;b^;%M$`5K[:aND]N^T59Qh3jE+P\'mq PaR[7P\(.#RB$;I\NL"hs*t~> [/^0s"6/#'s7Gd_iR75Dg[G70:WED7!8X'+!0h'q!0in7!0h(#!1Bkejh3k[U]5i~> ir>S3r ir>S3r$G9=?X[DRAS,RhC2@a)E,fo?F`r"TH@10kIt<6)KnkJ@Mgp7tC4_Y'LPUeF N/`m[Ocu&qLjGM hZ!T1q#CE`r;Z]q!+5'ls7-9Og$o%6n,qXtnC$%[!7Jme!!(iCOoU_Y!!&7OOoU_Y#6:0ls5gpY !i,dG~> jSoGLK2#0=;FpT`"^,8D@qB[HTPlC^` PlC^`PlC^`PlC^`PlCsgs/Q+\]flLms*t~> jSoGLK2,3=;FpT`"^5>E@qB9N!*:UeE,fo?F`r"UH@10kJ:`E,KnkJ@Mgp:uC4_Y'LPUhGN/`m[ Ocu#pLjGM hZ!ZKVe5l-!`c/pr;QntH3'PWli7"U"6/#'s7Gd_iR75Dg@,*j`r?#=h3jE+P\'mqPaR[7P\(.# RB$;R`BaO"s*t~> jo5Xs:/"DY:f:(K,5hLP+$Nt=@q0(_6S\X.Yj^VRe*`Q$!?b08,Ud'U0d8&t\d rr<%`rr<%`rr<%`rr<%`rr<%`rs&Q(WrMJ*5lmb\J,~> jo5Xs:/+JZ:f:(K,5hLP+$O">@Uit^6S\X.['mHS]">Yj^VRe*`Q-'@b0/&Tca:'c8&t\d R?@Q7AcMgqR?@Q7Ad8=(WrMD&567PZJ,~> h#@E>"o\K%0DYVKAOG_^s7-9Og$o%6n,qXtnC$%[!7Jme!!(iCOoU_Y!!&7OOoU_Y#6:0ls6R]j !Mf[F~> kPktfM+UE7:/Fba;cQTprW$OB?=.,M@qB:d.NE8@DfB]:FEMbOH@(!eIt3*&KS>2;MMlt7Ebg8j KnkG?Mi[HTPlC^`PlC^`PlC^`PlC^`PlCsgs/Q+d`BaO"s*t~> kPktfM+UE7:/=_b;cQTprW$OB?=.)MA7]Cd.NE8ADK'T9FEMbOH$XgcIt*'&K8#):M2He5EbU,h L51SBMi<[WOHPflQ&'aTI@Qn#TVA3WVPgAmX/rJ-Z*L^D[^`lZ]=kto_8=./`lQ9Ebg"G[Za@0N G6H%gh3jE+P\'mqPaR[7P\(.#RB$;Q_`n0ss*t~> g]%7Or;Zi?qu6`h%&`@is7-9Og$o%6n,qXtnC$%[!7Jme!!(iCOoU_Y!!&7OOoU_Y#6:0ls6R]j !Mf[F~> kl2+A?V!d^9MSA[;H-Xs*;okL8mc":@q91\"\* kl2+A?qEs`9MSD];,^Ip*;okL8mc":@qB:^"\!6EDK'T:FEMbNH$XgcIt*$%KS>2;MMlq6EbU,h KnkJ@Mi g]%8]r;Zh/qu6_d'):_ks7-9Og$o%6n,qXtnC$%[!7Jme!!(iCOoU_Y!!&7OOoU_Y#6:0ls6R]j !Mf[F~> l2M7!7Rp$B92//X:f:7mJ9#CV PD+dIM2R=QO-#KfQ'I/ORXCWsT:r!SUo()hWiN8)YHbC>[C3QT]">Yi^VRh+`Q$!@b08,Ud'L*f \@B,^:! l2M7!7Rp!A92&)V;,L:m<^-H^B-gnn@Uit^4pP_:Ci433EccGIG^=[`IXcm"K7nu7Ll%%=J9#CV PD+dJM2R=PO-#KfQ'I,NRXL]tT:r!SUo()iWiW;)YHbC>[C3QT]">Yj^VRe*`5fs@b08,Ud'L*f \@B)]:! g]% lMhE\77Kd<8kViQ:Jaqf@D#OAS)Z/(]477.Wf4u!#g?;JV/W0K2O!'!XTf.IZoMA Ll.+LNK90`'`7qM04uL7"rpU7VPgAlVeeR?$j-\G/mt]j]=kt3qZ%,JOtHqC*ON5_\%&u\]kkpn h>[HTPlC^`PlC^`PlC^`PlC^`PlCsgs/Q+``^0a%s*t~> lMhE\6q0[;8kVlR:Janf@CuNAS)Z/(]477.Wf4u!#g?;JqJ`1K2O!'!XTf.IZoMA Ll%%KNfT9b'`7qM04uL7"rpU6VPgAlVeeR?$j-\G/mtZi]=kq2qZ%,JOtHqC*ON2^\@B,_]kkpn h3jE+P\'mqPaR[7P\(.#RB$;M_a"9us*t~> gA_/$r;ZherVm#H!7JKWr;Zt-s7<-Pr;ccq$K!E8!(*#:!!"P3p[A3oYl+P-'I]&f#64`Vi;W3R dJs8AP*TGW!!!P:rpTut1_]ff!ho\rrVurH`r?#=h3jE+P\'mqPaR[7P\(.#RB$;N`^0a%s*t~> li.QF6UXC684lNK:/=_b;cQk"/H#PT3alN.AQ/Y1:.P6_"=nV59ca04)h3BiK7n=`!!"9?+TMKY KnbA=M2R=PO-#KED>aGT$lWJL"98EES#EYiK?aJQrr<%`rr<%`rr<%`rr<%`rr<%`rs&Q(WrM>'63 li.QF6UaI78P2WL:/=\a;cQh!/H#PT3alK.AQ/Y1:.P6_"=nS49ca04)h3BiK7n@a!!"9?+TMKY KnbA=MMmFQO-#KDD>aGT$lWJL"98EES#E gA_32!WE'!2Z=Ain,QVi!!X6pl.ITfd`2:e!8X'+!0h'q!0in7!0h(#!1Bkekf,pjU]5i~> mJdjhC-k9U7n6*B92//X:f:4l<``&p!!s?J@q0("'kqH"r;ZsNFEMaYr;[ddJ:`E(('"=;K7A.K !!"6tLPUhGN/`m[P*;10!!E=YSt8^V!"1idW2c-`7'Nr%ZtTF="qIlN^V@TUr;[ECEQ5R:!40&@ \@B,_]tV7I&'t=4rr<%`rr<%`rr<%`rr<%`rr<%`rs&Q(WrM>'63 mJdjhC-k9V7Rp$C92//X:f:7m<`i,q!!s?J@q0("'kqE!r;ZsNFEMdZr;[ddJ:`E((B=F g&D%?r;[#Ks8Va%RK!6b!!$C*rr?F)!<)otPPtOb3redA1&_.QW:o`Z!!"DGn,U-#!!WMOnF5C] dJ`P7hYdESPl:(O=oA=#>5n!mO9 mf+$b>sUeE77Kd<8kViQ:Jk"h:.WffV/c>YPIt3*&9`>"p+,bW! )#aLC?AF>oMi[HTPlC^`PlC^`PlC^`PlC^`PlCsgs/Q+c_a"9us*t~> mf+$b>sUeE77Tj>91quS:f(%h:.WolX/c>YPIt3-'9`>"p+,bW! )#aLC?AF;nMi<[WOHG`kr;Zs:SXuI%rW!<,P,YIT g&D&Nr;[";s8SVto)A[f!!$C*rr?F)!<)ot5Q1Wc n,F0a/C2EhK"=nS:FtNXm"FkrRK-C3o">5U] JL19q$SI3iMMmFQO-#NgQ2L[c.%Qs$P5P@fA#ZK/XKJb3ZF%% n,F0a5U] J0b*o$SI3jMN!LRO-#KfPl1Rb.%Qs%PPkIgA#QE/XKJe4ZF%% g&D*J'E.t7&GH,`@/^-(!!$C*rr?F)!<)ot'E.t7 nGa?h<^&`66:4.17nH nGa?h<]rZ56:4127nH f`(qir;ZqodK%5as8;ot?iL'*?i:!'rr<2q!!*5jp[J+]!)EO_!:Tjd"CCTeefXkk!^W3Er;Zh# rU9eir;Zicr9s^7`r?#=J_>V-J_>V-[Fk_`s7"#p!Mf[F~> nc'Ks>Wk575sdq,7n6*B92//X;,U=m<`iL../a,N5>hJWB5)-tr;ZsNFEMaYr;ZtMJ:`CTp&GI% L5:\EN/is\Ocu(/!!FsFStD\S!!GTdWgFS$!!4ipGPqLF7_ZUP_+=M)(!"J@c-F\C^qmn+`Q-'B bK\>Yd()g"5QCe8fn%h-fn%haf`eDUn]!lrU]5i~> nc'Ks>Wk575sdq-7n6*B92&)W;,U@n<`iL../a,N5>hJWB5)-tr;ZsNFEMaYr;ZtMJ:W=Sp&GI% L5:_FN/`m[Ocu%.!!FsFStD\S!!GWeWgOY%!!4ipGPqLF7_QRO_+FS*(!"MAc-ObD^r""-`Q-'B bKS8Wd()d!5QCe8s+13$s+13XrroG&m__9jU]5i~> f`(s#r;Zm^Caf5]r;Zh)rr2t(r;cfr!##82#tD\;[Afn-^U3D&nGN=e:&aV^lMU\bC@L^nrW!$> lL= nc'J?4$>_k5sdq-7n6*B92//X;,U@n<`iL.9`4qr(b-)/B5)*sr;ZsMFEMdYr;ZtMJ:`C[rW!TY BO>.I:L\3PKntVEN/`m[P*;10!!FpFStDSP!!>ilW]g=]!u.oE[J^(/7_ZUP_+FS*(!4VBc-ObD ^qmn,`Q-'BbK\;Wd*f/K5QCe8fn%h-fn%haf`eDUn]!lrU]5i~> nc'J>4$>bl5sdq-7Rp$B92&,W;,U@n<`iL.9Dnhq(b-)/B5)-tr;ZsNFEMdYr;ZtMJ:`C[rW!TY BO>.H:LS-OKntVEN/is\Ocu(/!!FpESt;MO!!>imW]g=]!u.oF[J^(/7_QRO_+FS*(!4VCc-F\B ^qmq,`Q$!AbKS8XdF#5L5QCe8s+13$s+13XrroG&m__9jU]5i~> fDbh/r;Zj+MulOa';#LCmrr>.[!!c="o((blnGi1Nr;ZgbrpTpBr;Zq[nF.(i!!#pr nGN=e=oIgi=oA?tn,UnVrr<%Mfn%h-fn%haf`eDUnA[cqU]5i~> o)BYT3]fJg5$Md?!!`WcB4kpoC]aS9"=\J9Fsd.f"FkrRK-1'm '.\ujJ8o=VPD4jKMMmFQO-#NgQ2L[c.%Hm$P5P@_A#QC:rW!$_ZF%%V-J_@Ha"fhUm`^0^$s*t~> o)BYT3]fGf5X@_(77Kd=8kViQ:f1+i$Md?!!`WcAnYmoC]aS9"=\G8G:*7g"FkrRK-1'm '.SoiJ8f4TP_FmKM2R=QO-#NgQ2L[c.%Qs%P5P@_A#QC:rW!$_ZF%% fDbi>r;Zj%lMUY^)#aL8:&b.m/,]JHrr@uV!!jhLo((blWWQi+nGN=e-iWT8]D_d5!RU?*"o\K( ;Xj2V-J_@Ha"fhUl`^0^$s*t~> oD]ep3BB5b4[25!6UaI78P2WM:/Fec<)m"%=^#&ir;['(?>!nbCMX@W!!FNgFa"Pu!!Ie%JqHVn !#$$(It;TS>lm!@Ll.+LNfT9aPEl(H";dW#T7-\="9F[bWrr>$"$ElrXo/5'7_QRO_+FS*(WjkE c-ObD^qmq,`Q-*CbK\>XdF-LnOOl_t!.igSfn%h-fsTK:WrMV/633k]J,~> oD]ep3B92a5!M>"6q'R884lNL:Jakc<)lt#=^#&ir;['(?"[hbCMX@W!!FNgF`nJt!!Ie%JV-Mm !#$$(It;QQ>lm!@Ll..MNf]?bPEl(H";dW#T7-\="9F[aWrr>$"$ElrXo/5'7_QRP_+FS*(WjkF c-F\C^qmq,`Q-*CbKS8XdF-LnO4QVs!.k0$s+13$s0_k1WrMM)5QRY[J,~> fDbmB$iU,+;u?Rp:]:=r+TDDcquH]q!V.B4!!g%)o&A(V"3:-)r;Zs%dI?XIrVuptrpTn0rW!$E mdQbF!!$1#n,QVi!;l6cd`2:e!.igSfn%h-fsTK:WrMA'5lmb\J,~> o`#u?3&s#^4[)(r6:4.17nH?H9hnJ];c?[s=BSg4=9SU'#9[SjB523u,5qQE%Wli#qu?nMJV&N& &cMbCA:K/NAf_"kLPUhGN/is\Ocu(/!!E=YStAaV!!G?]WN$a5!!=+D[!)BJ"\-2?^qiV@!#Wi# bg"G\[(sPr`5Ta;b0/#Scd:+he^ers5QCe8fn%h-fn%haf`eDUlbu-jU]5i~> o`#u?3&s#^4Zu"q6:4137nH^qiV@!#Wi$ bg"J\[(sPr`Pom=b0/#Scd:+heCJls5QCe8s+13$s+13XrroG&l+oRbU]5i~> f)G_YrVur,qu6Z/r;ZphCDeZ$!!0"1rr3>U+TMKMDjl/'".AiOr;[*:.$8`Y!!"V.rpTo.r;Zma @OV0T"Zi4#igi./!<8Vgn,UnVrr<%Mfn%h-fn%haf`eDUlGZ$iU]5i~> p&?,i2`E`X4$>_k5sdt.7S$*C92/2Y;,U@n='/U/>[8WS!!c#*B4kpoCf1-2"!B<,'`A"N;dP$- Kl@Y)!!YJ]5SF3$L51SBMi<[WOHPfmr;[66)IH;D!!"+0W2Zgpr;ZmQ8KRg1"YP2![!j\,!#^HD bg"J][(sMp`PojV-J_>V-[Fk_`s6IWi!Mf[F~> p&?,i2`NfY4$5Yj5XIh,7n6-C92&)W:f:7m='/U/>[8WS!!c#*B4kpoCf('1"!B<,'`A"N;dP'. KQ%M'!!YJ^5SF3$L51SAMi<[WOHPinr;[66)IH;D!!"+0W2Zdpr;ZmP8KRg1"YG+u[!sb-!#^HD bg"J\[(sMq`Pom=b0/&TcHt"ge^i>Tfg#N;JcC<$JcC<$[JpE1s67?a!Mf[F~> f)Gll!!"&UmJ$4&&,kPalNkYD'V!CbW; !!/,#q#LB_!7Jme!!%T'J_>V-J_@Ha"fhUf`BaO"s*t~> p&?RQ2E*WW4?Ykm5XIh,7Rp!B92/2Y;,^Fo<`iL.>[9o$!"3:JB4u!pCi2H?rW!!-<%\"J)BOK_ KSG%O+pn>S&h7X[L51SBMiV-J_@Ha"fhUg`BaO"s*t~> p&?RQ2E3]X4$>bl5sdq,7Rp$B92&)W:fC=n<`iL.>[Bu%!"3:JB4kpoCi2K@rW!!-<%\"J)BOH^ KS=tN+pn>S&h7X\L51VCN/WaWOHPinr;[9[BHdZb)cWH,W2Q_o3;igX1nsjI!HFb-!<::YcI'#7 _8F72a2lEHc-FY_daQ^sfXBHu!!%TMJcC<$JcE.X"fhUe_*7sqs*t~> ao;M4\Z<^Gnc/X["6%l$s7Pm[!!#ddn,pt4Wn-M*!7Jme!!%T'J_>V-J_@Ha"fhUfbX;K,s*t~> pA\'W1c@9Q3]fJg5=%V(77Kd=91quS:f1+i$P?>?t*VVAnPdlCM[m,C/Rc0F*;eSH[L9l JV&N-L5:YCMgp:tBnMV(LPUhHN/j!]Ocu(/!'Dp*StD^NUSOfdWN*&%Q$IhMZaI6O\[oDd^V@Y& `5Td>5QCe8fn%h-fn%haf`eDUlc_`tU]5i~> pA\'W1c@9Q3]fJg5=%V'77Tj=8kVlR:f1+i$G9=?X[GSAS,RhCM[j+Bi7W.F*DkTH[L9l J:W?+L5:YBMgp:sBnMY)LPUeFN/is]P*D71!'Dp*StD^OUSXleWN3,%Q$IhM['d?P\[oGf^VI\' `5Ta;aihrRcd9&7_8F42a2uKIc-FY^daQ^sf@Z/<5QCe8s+13$s+13XrroG&l,c6mU]5i~> [/^0s"6%l$s7Pm[!!#dJn,UnVrr<%Mfn%h-fn%haf`eDUlHDWsU]5i~> p]"4@1c.*M3BB5b5!M>"6q'U:8P;]N:Jane<)lt$=^#'9?=72OA7fIeC27X'DfB`Yd*gCmf%AX/@bX-J!.igSfn%h-fsTK:WrMD/6ij(_J,~> p]"4@1c.*M3B92b4[;;"6UaI78P;]N:/Fbb<)lt$=^#$9?=.,N@qB:dBkqO%DfB];FEMePH@($g It3-'KS>2;MMlt8E+srgL51SBMi<[WOHPfmr;\u6S=Z@HU84W_W2QbuXKJe4ZF%'K\%9/`]t_=u _o0O7aN;WMc-ObD^qmq,`Q-*CbKS8Xd*gCmf%8R.@bX-J!.k0$s+13$s0_k1WrM>*633k]J,~> [/^0s"6%l$s7Pm[!!#dJn,UnVrr<%Mfn%h-fn%haf`eDUlHDWsU]5i~> p]"3%1c70M3B92b4[25!6psO88P2WM:/Fec<)m"%=^,-:?=./O@qK@eBkqO%DfB];FEMePH@('h It<3(KSG;=M2Zq8EG:&hL51SBN/WaXOHPfmr;\u6SXuIIUSFW^W2ZeuXfnt6ZF%$J\%9/`]t_A" _o0O7aN;WMcHahE^qmq-`Q-'BbK\>Yd*gCnf%A[0\(a.J!.igSfn%h-fsTK:WrMD/6ij(_J,~> p]"3%1c.'K3BB8c5!M>"6q'U98P2WM:/Fbc<)m"%=^#$9?=75PA7]CeC27X&DK0Z;F`hkPH@($g It3-'KSG;=M2Zq7EG:&hL51VBN/WdXOHPfmr;\u6SXuIHUSFZ_W2ZeuXKSk5ZF%'K\%0)_^;%J# _o0R8aN;WMc-ObD^qmq-`Q-*Cb08/Wd*gCmf%AX/\(a.J!.k0$s+13$s0_k1WrM>*633k]J,~> [/^0s"6%o%s7c!`WL`tf!Ag;$n,UnVrr<%Mfn%h-fn%haf`eDUmDVBnU]5i~> q#=?n1,CaF2`Wo\4Zu"q6:4137nHIWP_OsLMN!LSOH>W=@f69j*bV(:TqeEZVl6SqXK8V0Z*LaF\$ro[]=u%q _Sa=2a2lEHc-=S][(sMq`Pom=b0/&TcHt"geCN7)g=q265QCe8fn%h-fn%haf`eDUm_qKoU]5i~> q#=?o1,CaF2`Wo]4[)(s6:4137nH?H9hnM^;cHat=BSj5?!^oJ@q9.`BPM=!D/XB5F*2VLG^=^a IXcm"K8#&8Ll.+?JT,=TPD4jLMN!LSOH>W=@f69j+(q1 [/^0s"6%o%s7c!_+o22nn,UnVrr<%Mfn%h-fn%haf`eDUmDVBnU]5i~> q>XIi5Vb,P2E3]X4$>bl5sdq-7n6-D92/2Y;,U@n<`rR/>[C`E@Uiq\B4u$qCi+*1EH?5FGBeF\ I=?ZrJqJc3LP^nIIt;WSK9V+GLl.+LNf]?c'`%emStD^OUSXleWN3,&Y->1:ZaI6O]"5Pg^VI\' `5]j=aihoRcHrr6_8F73a2uKIc-FY^daQatf\"p5d7)kV!!%T'J_>V-J_@Ha"fhUj`BjX$s*t~> q>XIi5Vb/Q2E*WV4?Ykn5sdt.7Rp$C9MA5Y;,^Fo<`iL/>[C`E@:NhZB4u$qCi401EH6/DGBeF\ I=?ZrJqJc3LkpqIJ:VZSK9V+GLl..MNfT [/^0s"6%o%s7Gd_iR75Dg@,*j`r?#=J_>V-J_>V-[Fk_`s6[cl!i,dG~> q>Yo-0JYIA2E*WV4$>bm5sdt.7n6-C92/2Y:f:7m<`iL.>[:ZD@:NeZB4u!pCi+*0EH?5EGBnL] I=?ZsJqJ`2LkpqIIt;WSJs;"FM2I4NNfT9bPa.PkH^]ARStD^OUSXleWN*&$Y->1;['mHR]">Sf ^VI_)`5TdYdF-Lnf%AX/gY@tJ5QCe8fn%h-fn%haf`eDUm_qKo U]5i~> q>Yo-0JYIB2E*WW4$>bm5sdt.7Rp$B92/2Y;,^Ip='/U/>[CcF@:Nh[B4u!pCi+*0EH62EGBnL] I"$QqJqJ`2LPUhGIt;TRK9V+GM2I7ONfT1:['mEQ\[oDd ^V@V&`5TdYd*gCnf%AX/gY@tJ5QCe8s+13$s+13XrroG&m(u!h U]5i~> [/^0s"6%o%s7Gd_iR75Dg@,*jr;ZcEhuE]Vs8N0$rr<&orr<%Mfn%h-fn%haf`eDUmDVBnU]5i~> qYtO'0eb@>1c@9Q3]fJg5X@_(77Tm?8k_rS:f1.j?kKA?t*VVAnPdkCM[m,EH-&BG'A4X H[UBnJV&N-L51SBN.6CuC4hb*LPUhHN/is\P*;/sM0k\>SXuIIUSFZ`W2Zi!Xfen5Za@0L-b-^u ]Y2(q_8F41a2lBGbg+P][(sMq`5]I'^<=dHcd:+heCN:)gA]k-9^b7H!<5:d!'gMapcnfZJ_>V- J_>V-[Fk_`s6dim!i,dG~> qYt$n0ebC?1c@9Q3]oPh5=%V(77Tm?91quT:f1+j?kH??t*VVAnPdkCM[j+E,frAFa&+W H[U?mJ:`E,L5:YCN.?J!C4_\*LPUhGN/j!]P*D5tLjYY>SXuIIUSBiGVPpJpXKAY0Z*LaE[^`lZ ]Y;.r_8F42a2lBGbg"J][(sMq`5]I'^WXmIcdC1ie^iC+g>(N>9^b7H!<5:d!'gMapcnfZJcC<$ JcC<$[JpE1s6RTf!i,dG~> [/^0s"6/#'s7Gd_iR75Dg@,*jr;R,Ps8UOIdf7bqdaJ-ps3grI!,_`8rrE*!rrE*!rrE*!$3:)+ !<<'!!<<'!q#:V-J_>V-[Fk_`s6Rcm!Mf[F~> qYtc&0/,.<1c@92&&U:f1+j?kKA?t*VVAnPdlCM[j+E,fr@Fa&+W H@10kJV&N-L5:YBN.6D"CP.h*LP^nIN/j!]P*D5tLjPS=SXuIIUSFZ`W2QbuXfen5Za@-K\@T8a ]t_<-_Sa=2a2lBGbg"J][(sPr`Q#R3b.u9>cc4DSb1G;!d*US(D>lg#!<5=a!<5=a!<5:k!'gMa 5X5;L5X5>E5QCe8fn%h-fn%haf`eDUmD_HnU]5i~> qYu&/0/,.<2)[ES3]fJg5X@_(77Tj>8kVlS:f1+i$PB??t*VUAnPdlCM[m,E,fr@Fa&+W H[U?mJV/T.L51VCN.?J"CP%b)LPUhGN/j!]P*D5tLjPS=SXuIIUSFZ`W2Q_tXfeq6ZF%'K\@T8a ^;%J#_o0R8aND^+bo4pU[(sMq`5TC1b.u64ucd:J'D>lg#!<5=a!<5=a!<5:k!'gMa 5X5;L5X5>E5QCe8s+13$s+13XrroG&m)2-iU]5i~> [/^0s"6/#'s7Gd_iR75Dg@,*jr;R5Ss8UOIdaJ0Ds8UOIdf07Ldf0FL!<2uu!<3!(!<<'!rr<'! !<3!#!<<'!q#>mFJH16$JH3%W"fhUha$Kg%s*t~> qu:d93\N3C1Gh!K3BB8c5!VG$6q'U98P2WM:Jand<)m"%=^#':?=75PA7]CeBkqO%DfKcMN!(:F)-AlL51VCN/`jZOHPinQAKsWI@Zt%TqeBZVl6SpXKAY1Z*UgG[^`o[ /%iU2^qmq,`lH0BbKS8XdBp^+_o9U-ai_EC_o0sBe()XocJ%(0daS@a!<,4`!<,4h!'idL5QCdL !<,4c!'idLpcsB1JH16$JH3%W"fhUi`^0^$s*t~> qu:p=3\N3C1Gh!K3BB8c5!VD#6q'U98P;`O:Jand<)lt$=^#':?=75PA7]CeBl%U&DfKf=FEMeQ H@('hIt3-'KSG;=MN!%9F)-DmL51SBN/WdYOckroQ&'dUI@Zt&Tq\?YVl6SqXK8S/Z*LaF[^`lZ ]Y;.q-c3d>`lH0BbK\;XdBp^+`5T^.ai_EC_SjjAe()Xoc.^t/daS@a!<,4`!<,4h!'idL5QCdL !<,4c!'idLpcsB1JH16$JH3%W"fhUh`'=?us*t~> [/^0s"6/#'s7Gd_iR75Dg@,*jr;ZcEs8NAQs8UOIs3gqqrr<#H&m,,5!!*'!!!*$!s8N*!!<<'! rr3'#s8N)orr<%Ms+13$s+13XrroG&m)MEnU]5i~> qu;#A0/#%81c.-N3BB8c5!VD#6UaL98P;]N:Jand<)m"%=^#'9?XR>QA7fIfC27X'DfKc qu:<-/h\n61c70N3BB8c5!MA#6UaL88P2ZN:/Fed<)m"&=^#':?=75PA7fIfC2@^'DfKcMN!%9F)-DmL51SBN/`jZOHPinQABmVI\!(&Tq\*Yd(L@[^WcW ]"G_k^qmq,`lH0BbK\;XdBp^+`5KX-]tV\6_U$TLe'uRncJ%(0daD2^5QCdL5QCdL!'idL5QF&7 !<,4c!'idLpcnfZJcC<$JcC<$[JpE1s6RZh!Mf[F~> [/^0s"6%o%s7Gd_iR75Dg@,*jr;QcFrVm/Os8UOIs3gqqrr2uHr;Q`srr3<*rrE*!!<3'!rrE&u !s&B$!;QQo!.k0$s+13$s0_k1WrMD(63 qu:M7/h\q71c70N3BB5b5!VG$6q'U:8P;`O:/Fec<)lt$=^#'9?=75PA7fIfC27X'DfKcMN!%9EG:&hL51SBN/WdYOHPinQABmVI\*.'Tq\?ZVPpJoXKA\2YqWMk[^WcX ]=bkm^qmq,`lH0Cbg"GZdBp^*_o9U-ai_fN_p?`Me()XocJ%(/dbVY:5QCf`5RIKV!'idL5QF&7 !<,4c!'idLpcnfZJcC<$JcC<$[JpE1s6R]k!i,dG~> qu;"E/h\n61c.*M3BB5b5!VG$6q'U:8P;`O:Jane<)m"&=^,-;?=75PA7]CeBkqO%DfB` [/^0s"6%o%s7Gd_iR75Dg@,*jr;QcFrVllGrr<#Hrr<#Hs8W,I#6+Z's8N'!rr;uus8N0$s8N)u rrW9$rrDio!!%TMJcC<$JcE.X"fhUg`BjX$s*t~> r;UQ]/M8\21,CdG3&s#^4[)+s6:=747nH?H9i"S_;H6^u=BSg4?!^oJ@q91aBPM=!D/XE6FEM_M G^=^bIt*$$K8#):M2I7BJT5FWP_OsMMN!OTO-#NhQ'R8SRXL`uTV8*TV5C2jX/rB`YHY:;['mHR \\#Mg^VI_(`5]j=aihrScdB,8_8F72]u\@>c,.fSe&]\_f@eKsh;-N-@/p9m5QCf`5lUia5Q_!O 5QLdK!rtSO!;JeZ!.k0$s+13$s0_k1WrMG)63 r;Uog/MAb31,LgG2`Wo]4[)+t6:41384cHI9hnM^;cHat=]np5?=%#J@q91aBPM@"DJsN7F*2VL H$XgbIXcp$K8#&9M2I7AJT5FWP_OsMMN!OTO-#NgQ'R5QRXUj"TV8-VV5L8kWiW>*Yd(L@[C [/^0s"6%o%s7Gd_iR75Dg@,*jfDkjNrVultq#: r;T]S/M8\21,LgG3&s#^4[)(r6:41384cHI9i"S_;H-Xs=BSg4?=.)L@q9.`BPM@"D/XE7FEMbN H$XgbIXcp$K8#&9Ll..AJT5FWP_Y$MMN!KaNf]BdPa.PkI%#MTStMdPUnsufWN3,&Y->1:['d?P ]">Vh^VI_(`5]j=aihoQcd9&7_SjF4a2lEIc-FY^daQ^sf\"p5rS7I>nNd*SrBUA_pcnfZJcC<$ JcC<$[JpE1s6R]k!i,dG~> r;V8*/M8\11,LgG2`Wo\4[)+t6:=7484cHI9i"S_;cHau=BSj5?=%&L@q91aBPD:!DJsN7F*)PK G^=^aIt*$%K7o#8M2I7AJT5FWPD4jKMiWiQ'R8RRXL`uTV8*TV5L8kX/rG,Z*CXB[^N]V ]"G_k^r""-`Q6+?aihrRcdB,8_8F72a2uKIbg+P^daQatf\,!6h#?+0QLR6?!<#1_!;JeZ!.k0$ s+13$s0_k1WrMA$5Q[_\J,~> [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=JcC<$JcC<$[JpE1s7af-!Mf[F~> r;U;!/M8\21,LjH3&s#^4[)(r6:=7484cHJ9i"S_;H-Xt=BSj5?=.)L@q91aBPM@"DJsN8F*)PK H$XgcIt*$%K8#&9M2I4AJoYXZP_Y$MMN!LSOHG]jQ'R8RRXUg!TV8-U2l3FNWN3,&YHY:;['mHR \\#Mg^VI\'`5]j=aiquRcd9&7_Sa@3a2uKIc-FY_daZh!f\,!6h#?+0aP];`!.k0$s+13$s0_k1 WrMh=7001`J,~> r;TPa/MAb21GgsI3&s#^4[)+s6:41384cHI9i"S_;H6^u=]np5?=.)K@q91aBPM@"D/XE6F*2YM G^=^bIt*$%K7o#9Ll..@JT>LXP_Y#fM2I7ONf]BdPa.PjI%#JSStMdPUnsufWN*&%YHY:<['mHR ]">Vg^VI\'`5]j=b0/&ScdB,9_Sa@3a2uKIc-FY_e'ljuf\,!6h#?+0aP];`!.k0$s+13$s0_k1 WrMh<7001`J,~> [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=JcC<$JcC<$[JpE1s7af-!Mf[F~> rVq>t/M/S.0JbOB2E3]X4?Ykn6:+%.7n?3E9MJ;Z;,UCo<`rR/?!^lG@Uiq\B4u!pCi433EH?8F GBnL]I=?ZsJqJ`3Ll%%KIt;WUK9V+GM2R=PNf]BdPEhGjH^]DSStMgQUnsufWN*&%Y-G7;['mHS ]">Vg^VI_(`5Vbt*6HCJcHjnF^r"".`lH3DbK\>YdF6Rpf%AX/gt_ka!+4\M!!%TMJcC<$JcE.X "fhUsc:%c/s*t~> rVq;s/M/S.0JYIB2`NfZ4?Ykn6:+(/7n6-D9MJ;Z;,U@n='/U0?!^lG@Uiq\B4u$qCi402EcZAH GBeF\I=H`sK7ei3LP^nIJ:V`UK9V+GM2R=ONf]BdPEhGjH^]ARStMdPUnsufWN3,&YHY:<['mHR ]"5Pf^VRe*`#cq=aN;WMc-OeE^r"".`Q-*CbK\>YdF-Lof%AX/h#,t.?f=6M!.k0$s+13$s0_k1 WrMh<7001`J,~> [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=JcC<$JcC<$[JpE1s7af-!Mf[F~> rVq&2/M/V/0etRC2E3]X4?Ykn6:+(/7n6-D9MJ;Z;,^Fo<`rR/>[CcF@Uit]B4u$rCi+*1EcZAG GBeF\I=H`sJqJ`2LkptJJ:V`UK9V+GM2I7NNf]BdPEhJkI%#JSStD^OUSarfWN3,&YHY:<['mEQ ]"03$^;%J"_o0R8aN;ZNc-OeE^qmt.`lH3Dbg"GZdF6Rpf%A[0h#,t.MW$f#!.k0$s+13$s0_k1 WrMh=7001`J,~> rVq&2/M/S.0etRB2`NfZ4?Ykm6:+(/7n?6F9MJ;Z;,^Fo='8[0>[CcF@Uiq\B4u$qCi+*1EcZAG GBnL^I=?]tJqJc3Ll%"JIt;WTK9V+GM2I7OO-#HdPa.PkI%#JTStMdPUSXidWN3,&YHb@=[C3NR ]"06$^;%J#_o0R8aN;ZNc-OeE^r"%/`lH3DbK\>YdF6Rpf%AX/gt_ka!/f`#!!%TMJcC<$JcE.X "fhUsbs_Z.s*t~> [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=JcC<$JcC<$[JpE1s7af-!Mf[F~> rVpeK/M/V/0etRC2E3]X4?Ykn6:+(/7n?3E92/2Y;,^Fo='8[0?!^lG@Uiq\B4u$qCi+*1EcZAH G^4U^I=H`tK7ei3LkpqIJ:V`UK9V+GLl74OO,oBcPa.PkI%#MUStMdPUSXleWN3,'YHb>`ZF%'L \@T;b^;%J#_o0O7aN;WMc-ObD^r"%/`Q60DbK\>YdF-Lof%AX/h#,t.ZJe%K!.k0$s+13$s0_k1 WrMh=7001`J,~> rVq%R/M/V/0etRC2E3]X4?Ykn6:+(/7n?3E92/2Y;,^Fo='/U/>[CcF@Uiq[B4u$rCi402EHH>H GBnL^I=?ZrJqJc3Ll%"JIt;WTKTh1HM2R=PNf]BePa.PkI%#JSStD^OUSXleWN3,&Y->1;['mHS ]"03#^;%J#_o0O7aND]McHjnF^r"%/`lQ9Ebg"GZdF6Rpf%A[0h#,t.ZJe%K!.k0$s+13$s0_k1 WrMh<7001`J,~> [/^0s"6%o%s7Gd_iR75Dg@,*j`r?#=JcC<$JcC<$[JpE1s7=?#!i,dG~> rVq:*/M/V/0etRC2E3]X4?Ykn5sdt/7n6-D92/2Y;,^Fo='8[0>[CcF@Uiq\B4u$qD/O93EcZAG GBnL]I=?ZrK7no5Ll%"JJ:_fVK9V+GLl74ONf]BePa.PkI%#JSStMdPUnsufWN3,&Y-G7<[C3QS ]">Vh^VI_)`#cq=aN;ZNcHjnF^r"".`lQ9Ebg"G[dF-Lof%A[0h#,t.e_ran!.k0$s+13$s0_k1 WrM\46NX%_J,~> rVq=+/M/V/0etRC2E3]X4?Ykn6:4+07n6-D9288Z;,^Fo='/U0?!^iG@Uiq\B4u$qCi402EHH>H G^4U^I=H`tJqJc3Ll%"JJ:V]TK9V+GM2I7NNf]BePa.SlH^]DTStD^OUo(&gWN3,&YHY:<['mER ]">Vh^VI_(`5_hu)p-:JcHjkE^r"%/`lH3DbK\>YdF6Rpf%A[1h#,t.e_ran!.k0$s+13$s0_k1 WrMV16NX%_J,~> p&>":qu?t/WAk:m/;3]qrrB8"!!WD33X?!9rr3<'YZ)\N#p3-MrVQU%qkQq)"pc5Tfgl&\1F"VEbOl2L/P2#I=T=n&fq!<2uu YPS;'s0k#p#UA.)!!%TMJcC<$JcE.X"fhUoa[?3*s*t~> rr2uQr[e:+0/,.<#Q+Q0(F]gr!Xp>B84lN2qZ'u'4qn)$%:3@K@727I"9]/Y8o8NeEccGHG"s=m !sB,Z5@oM'LkptF9d9rG#pW/sM2I7OO*s85#m(8A+@B2#StMd;80A6@"V`O]Gd+HZ[C3AZ1(OKs /oJ>?`5O8)!!5mBS,30fai_edqZ$fORkY-Q*rOgo>N.mJ!.k0$s+13$s0_k1WrM\46NX%_J,~> rr2uQr[e:,0JG7=#Q+Q0(F]gr!Xp>B7nH?1qZ'u'4qn)$%:3CL@727I"9]/Z8o8KdEccGIF\X4l !sB)Y5\5V(Ll%"F9HsiF#pW/sM2I7ONdX/4#m(8A+@B2#StMg<8K\?A"V`O]Gd4N[[C3AY1(OKs /oJA@`5X>*!!5mAS,30fai_edqZ$fNRkY-Q*rOgo>N.mJ!.k0$s+13$s0_k1WrMV16NX%_J,~> p&>'3]DV^=(b1r(#64`Ymf3='2\c2j!iuD'rW)uu$gU(Y!$IGh+ohU0li$hkj>Hu<"(e*g1]RO1 rr3>_/H>c3LHY\ rr2u+r[n.'">MYg.4G,p%0d.d+T_WD%RN`[3Y;Sp!!#%W!*W]9=W%2>%6H]_!!"!NEH6/DC)I!O !A[GC)?9bWLPUe4)#sXX66ZC0(jq7#NGJe!!&.S`5R@E"SXuL#"onW]ASY*N!#)WBZa?>I!!"]q 0`V1uZ,FVEK`(lR:!p%k0DtkSai_er/.ha[!g*KarW)lP!-dEf!!%TMJcC<$JcE.X"fhUoa[6-) s*t~> rr2u+r[e=,0/,1=.4G,p%0d.d+T_WD%RWf\3Y;Sp!!#%W!<6A-=;_)=%6HZ^!!"!NEH6,CBc-mN !A[GB)?9bWL5:\4)#sXW66ZC0(jq4"NGA^u!&.S`5R@E"SXuL""onW]ASY'M!#)TAZaHDJ!!"]q 0`V1uYf+PFKDbcQ:!p%k0DtkSai_er/.ha[!g!E`rW)lP!-dEf!!%TMJcC<$JcE.X"fhUma?p$( s*t~> oDeah"9REZs*XeG!*T:#!+5[)#T/Wtk:Zi8q`+QT"4R;Me,B=N3W&jVq(VdJ!1!!qTRi_3UZn9r;Zt' nC%>Dr;ccq!+5[)"W3 rr2t^r[e=,0/57>2)kF5"#`D2+oVHF)+mOp9ca04#RE.c;%We7?5"&roH=T/:()/jM:EYeWS 6qMfVIsr:9EefI((B=F[%A'/a)uosfVl6SqOp)N'Z*UST!!!5, ]s7eA!&)70a2n2Z"AR:N^e"D("j+p2c-B&^!!O'^e&Eg:r7q@8i]mJDJcC<$JcC<$[JpE1s7XN% !i,dG~> rr2t^r[e=,0/54=2)b@4"#`D1+T;?E)+mOq9ca04#RE.d;@rn8?5"&roH=T/:()/jP;EYeWS 6qMfVIsr:9Ee]C((B=F oDeah!&+?O!6G->!*"el"Os8S;^ !!G7?g$gs"!!9+gjSf,d/+)iqiR1pbnF5N rr2tAr[e=,0/57>2)bC5":ICY5rJWA"T^k]9MHT,!!aWJ=B[Wa?98&c"V53XBPJ(W!!>]2F@H0/ $O:s*It*#J!-3jN:]:=s*HGqJ+T;?B@#Tg=!"'X-Q'R8S4!'raR/R'n*i5g8X/nW:Yd1TKrW!'N ]"Ga+rW!%W`Q61"!!H$D[(o62!!UKebK\=,r;[!uf\,#4"8psTVrBrA!.k0$s+13$s0_k1WrMe6 6is.`J,~> rr2tAr[n.'">MYg2)bC5":ICY5rAQ@"T^k]9MQW,!!aWJ=]mZa?98&c"V53XBPJ(W!!>]2F%-'. $O:s*IXcoI!-3gM:]:=s*cc"J+T;?B@>os?!"'X-Q'R5R4!'ubQi6sm*i5g8X/nW:Z*CWKrW!'N ]=kp-rW!%W`lQ:#!!H$D[(o62!!UKebg"F-r;[!uf\,#4"8psTVrBrA!.k0$s+13$s0_k1WrMb4 6NX%_J,~> oDeah!)`aq!9sF^!13]b!+5[)!5SL3!(6_c!(m.h!(d(h"%<1h5lL``5Q(NblBh&@s$-J_"B"13 n5K;d!`JOLr;[-QGdZ;SnC$gqjo#/],^?`]qsXSIrVupprpTn_rVuprrp]jd"Bk6Bs'P^)r;Qb( r;Zi5fDbgNJcC<$JcC<$[JpE1s7XN%!i,dG~> rr2t)r[e=,0JP=>2)bC5";!2>9ca04#=)?n=^#*;)?'U>*G/qtC**?S"!2K)*W?$H *d`IYNY&rW!'OEbg=^rW!!QN/%92#oZHVKm]A=St;>J!"'QBJ#9 rr2t)r[e=,0/54=2)bC5";=!b69Y8I">!2>9ca04#=)?n=^,-;)?'U>*G/qtC**?S"!2K(*W?$H *d` oDeah!+#U(!;ZQn!-/#Nn.P^#"Amdcfh_SI"!-mZdes.K=n'l>?i:!&rr?F)!!)H= rr<%Ms+13$s+13XrroG&nB=9$U]5i~> rr2skr[n.'">M\h2)kI6";X0d69tJL"\E'=^,-;#Q=],,\C\&C*iiZ!srsh$2so4 .XZYnIt<6)KnkHkrW!'OB46!=rW!$4N/ShT!!`]UDLS.JTHa75#6m)!YEG*U%K6>15,jUE5Q1Wb (riPTr;ZspdBp\[r;[#Cb08,U:&P%pak5;$h##n-a5T>a!.k0$s+13$s0_k1WrMV56ij(_J,~> rr2skr[n.'">M\h2)bC5";X3e69tJL"<^?29ca04#>eK(=^#':#Q=],,A(S%C*iiZ!ss!i$2so4 .XQSnIt<3(KnbBjrW!'OB46!=rW!$4N/\nU!!`]UDgn7KTHa75#6m(uYEP0V%K6>15,jXF5Q1Wb (riSUr;Zspd^6e\r;[#Cb08,U:&P%pak5;#h##n-a5T>a!.k0$s+13$s0_k1WrMP1633k]J,~> oDeah!+5a*!<2os!+c*/!+5[)!<)fp!!N9$!+,X(!+#R(!sS`)"TAB$?2+@!"SMfu"Rbd")Yj@: 8ac*;`u=aR"A/%NdKK7D!sI!?nGN=i=n'kf:Ak1jdK!&@!!(C?dK%.8!.b-$!.b-8!!TD&nB=9$ U]5i~> rr2s]r[e=-0JP@?2)bC5";a9f6:1VN"l_LV] rr2s]r[n.'">M\h2)kI6";a6e6:1VN"$>0;!WE'&-"^e'C+&u\!s3Lb!r`0- /:2eoIt<6*KSP?bp&G3sMiDlkq#CRLSXuI.');M11U"*L"82]s"/j5]r;ZspdBp>Mr;[#8^VI_( 8c8Vlaj&,Xd/25k_LV] oDeah!+#U(!;ZQn!-/#R'r;Qb(r;bFK!!%T' J_>V-J_A3!!s%!S!:\YFWrMS46ij(_J,~> rr2sSr[e=,0/54=2)kI6";X0d5sYAK"81NmqdO-"^9 Pf0T&r;ZspdBq.kr;[#Nf%8R.;Z-RuioB+^kPOKDk2Lmk!.igSfn%h-fuhtM!8.>PnC[uFs7+<$ !Mf[F~> rr2sSr[e=,0JP@?2)bC5";X0d5sbGL"<^?1:*'95#?Fo/>$G6<#Q=],,\C\&C*iiZ!ss!h$2so4 .XZYoIt<6)KnkHkrW!HR81NmqdO-"^9 PJjH$r;ZspdBq+jr;[#Nf%8R-;Z-RuioB+^kPOKDk2Lmk!.k0$s+13$s2t?D!<3$!nG`Zls6n)s !Mf[F~> oDeah!)`aq!9sF^!13]b!+5[)qYpO`rVupirVljgrW!$hs8PCa!!#4\rrq]2jo>?BrW!'oiRmZ" qsXg4k4%m(X#BnV$"WPpb3%.Akc6W?!!?d$dQ%4+!D:f5r;ccq!+5[) f)G^MJ_>V-J_>V-b1Qjsf`2$Af`eDUnB=9$U]5i~> rr2sNr[n.'">M\h2)kI6";$G6<)?'U>*G9#!C**?S"!;Q**rZ-I *d`V-J_A3!!s%!S!:\YF WrMV56ij(_J,~> rr2sNr[n.'">MYg2)kI6";=!b69Y8I"=m,=:*0?6#?=i.>$G6<)?'U>*G/qtC**?S"!;Q**rZ-I *diBcJ:VrYGDCtsrW!NYF)$AmLPL_DN/`+?OHY`?,5hKJ6Csj,S;*l8GUE@h"%oh`.fKDV3h oDeah!&+?O!6>'=!S-n,V,>!!?HRn:U]?$mG,gddY\M"(fp/n/)'("A&%1s""$J r;Qb(r;bFK!!%T'J_>V-J_A3!!s%!S!:\YFWrMk?7001`J,~> rr2sNr[n.'">MYg2)bC5":ICY68\W@"@,UR9cj65#?=i.=^,0<48o3`%qfNhC(U@E"%I:YWW0mM`"$`!UA,ZH:)S;T6 ^S>oQ;lH_;'E.t75LHj^,Q.TGeCN7)g/@kL"QJJ&k3)X+!9iEm!!%T'J_>V-J_A3!!s%!S!:\YF WrMk?7001`J,~> rr2sNr[n.'s"XX42)kI6":ICY68\W@"@,UR:*'95#?=i.=^,0<48o3`%q]HgC(U@E"%I:VVW1!Sa"$`$VA,ZH:)S;T6 ^S5fO;Q-V;'E.t75LHj_,Q.TGe^i@)g/@kL"QJM'k3)X+!9iEm!!%TMJcC<$JcEmm!s&?$!:^!l WrMk=6ij(_J,~> oDeah"9RH[s*O_F!*T:#!+5[)qYpTo3rT*]e,THurW!*`r;Zfm1&_.QR/[*jknP-2s8VX4rW!A$ fC8h)2Zq+in,Om!rpTp:r;["snF-E+k5OiMe,97LV"!m7*rZ->Xo@elkr/^brpTn[rW!$An']JY !;uis?i9uUrr<%Mfn%h-fn%i!f`M6-!!)NA"fhUtcU@l0s*t~> rr3<]/M/S-0/57>2)b@4"#iJ2+T;?E)+mOq:*'95#Zb#0=^56=?5EM?"&roH=oJC))K9_bqIs)2/JVT&5&cMbA;JLiLK-(/9N/[fSMisPnC[uF s7jo/!Mf[F~> rr2sSr[e=-0JP=>2)kF5"#iJ3+T;?E)+mOq:*0?6#ZXr/=^56=?5EM?"&roI=oJC))K9_=EYn]T $VGhsIs)2/JVT&5&cMbA;JLiKK-(/9N/[fSMis?jK`(lWCnI@#)kEh'W0I5\"F78YX;Cj9$\uC0 ^Ul#uU;k6q5Q1Wb)UPjfqu?oNf%/L-;Z-RuioK1^kPOKDk2Lmk!.k0$s+13$s2t?D!<3$!nG`Zl s7ji,!Mf[F~> oDeah%2UO`J-GuR0^\o?n>AJK!<8torsS0[!!"1+PTg)-6gXdO$Ka>K!!I)2MBE8@rVm5T+TMKL A!i<-"-ENOrr<0HJ=;0;rVupkrp]pf"=&GcKd?Wt!*9'f$HO:h!"*V2LFWIgrU9flr;Zpd=;`Xf !!T:5s6upMr;ckqf`(pOJ_>V-J_>V-b1Qjsf`2$Af`eDUps2A0U]5i~> rr2s]r[n.'">MYg2)kI6%0d.e+T_WD%7<][82:kW!'id_"/J_>V-J_>V-b1Qjsf`2$A f`eDUps2A0U]5i~> rr2s]r[n.'">M\h2)kI6%0d1f+T_WD%7<`\82:kW!'k*GBG5F*24: !!!'W:dkp!@tf\oM/s:0!!P)V;]#R6Miid_"/JcC<$JcC<$b5VPDrr<&g rroG&pru2-U]5i~> oDeah#@FGh$OA88p&=ske+j"?rsA\/<#u;N*`TBCqu6s"W)+H="s[a7qu6rnLcc7O#q0/urU:/S >W!?'!X^,DW7(\7$'&7J(^C*L,upo@n-J-23t_W%-==[fn,\@OrW!!7[9rh3!^$G2q#K(I!!%T' J_>V-J_A3!!s%!S!:\YFWrMM.6NX%_J,~> rr2skr[e=-0JP@?2)kI6$Pt9&!s/iU6qBpC5PY:f=^#$8?=.,M6m2s@!t6GJDK'T9FEMbN:aQYS !tdA0K8#):M2I!X+:/&P(H$)eMN!Qq2]rS5!='>jCjqtITO0o/&-W(>)EiALYd(OB[]X9r%KZkV 9V',@`lH3EFU.mG!YUYiqu?dRfR!p&M,qrn+7id_"/J_>V-J_>V-b1Qjsf`2$Af`eDUn&Rit U]5i~> rr2skr[n.'">M\h2)kI6$Pt9&!s/iU6qBpC5PY:f=B\p7?=7/N6m2s@!t6GJDK'T9FEMeN:aQYS !tmG1KSG8)EiDMZ*L^D[]X6q%KZkV 9V02A`lQ9EFU.mG!YUVhqu?dRf oDeah!+3eHs7-9Og$o%6n,qXtnC$1_"Q?MW\^&4p!!%T'J_>V-J_A3!!s%!S!:\YFWrMM.6NX%_ J,~> rr2t)r[n.'">M\h2)bC5Af!Zs6:+(07n?3E9MSD\;H$Rr='8^2>[CcG@q0(^B5)*sD/O<4EcZAH G^=[`I=H`uK7nr6Ll%%LJ:_iXK9_4IM2R=PO-#KfQ'I\mH^fJUT:hpRUnsufWN<2(YHbC>[C3TT -b?q&^;%J$`5Ta:ai_iCQ&DB@bg"J\daQ^sf@\j4gtpuJioK1^kkjTEd,KQU!.igSfn%h-fuhtM !8.>PnC[uFs6n#r!i,dG~> rr2t)r[e=-0JP@?2)kI6HP\k36:+(07n?6F9MSD\;H-Xr=BSd2?!^lG@Uit^B4u'rD/O93EcZAH G^4U^I=HcuK7el5Ll%%KJ:_fWKU%=JM2R=PO-#KfPa.SlI%#PVStMdPUo()hWiN5(YHbC>['mHS ]">Vh^VRe*`5]m?bKI\dMkRB"bnA@MdaQatf%Jg4h;7&IiT0(^kPOKDd,KQU!.k0$s+13$s2t?D !<3$!nG`Zls6dln!i,dG~> oDeah!+3eHs7-9Og$o%6n,qXtnC$%[!7Jme!!%T'J_>V-J_A3!!s%!S!:\YFWrMM.6NX%_J,~> rr2tAr[n.'">MYg2)kI6Iht=86:4127n?6F9MJ>[;,^Ip='8^3?!^lH@q0(_B4u$rD/O93EccGI GBnL]IXcm!K7eo6Ll.+LJ:VcWKU%=JM2R=QNf]BdPa.PlI%#MUT:hpRV5:,hWN3,&YHY:=[C3TU ]">Vh^VI_)`5]j>b08,Ud*]5Fc-OecdLOdXf%Jd3gtpuIioB+^kPOKD`8Z:I!.igSfn%h-fuhtM !8.>PnC[uFs6n#r!i,dG~> rr2tAr[e=-0JP@?2)bC5F;I,+6:4.17n?3E9MJ>[;H-Xs='/X1?!^lG@q0%]B5)*sD/XB5EccGI GBnL^IXcm!K7nr6Ll%%KJ:_fWKTq4HM2I7ONf]BePa.SmI%,SVT:hpRV5C2iWN<2(Yd(I?['mHR ]">Vh^VRe*`Q$!?bKCdJcHstGbg"J]daQatf@em4gtpuIioK1_kkjTE`8Z:I!.k0$s+13$s2t?D !<3$!nG`Zls6dln!i,dG~> oDeah!+3eHs7-9Og$o%6n,qXtnC$%[!7Jme!!%T'J_>V-J_A3!!s%!S!:\YFWrMV97001`J,~> rr2t^r[n.'">M\h2)bC5HP\k36:4127n?6F9MSD\;H$Rr='8^2?!^lH@q0(_B5)-tD/O93EccGI G^4U_IXciuJqSl6Ll%%KJ:VfYK9V.IMMmFQO-#KfPa.SlI%#MUStMgQUnt#gWiN5'YHbC>[C3TU ]">Yi^VI_)`5]m?b08,Ud*f;GbnA@MdaQatf@em4gtpuIioK4`kkjTE[c2f;!.igSfn%h-fuhtM !8.>PnC[uFs74K)!Mf[F~> rr2t^r[e=-0JYF@2)bC5HP\n46:+(07n?6F9MJ;Z;,gOr='8[1?!^lH@q0(^B4u$rD/XB5F*)PJ GBnL^I=HcuK7nr5Ll%%LJ:_iYK9_4JM2R=PNf]BeQ'I\mI%,SVT:r!SUo()hWiN5(YHbC?[C3TU ]">Vi^VRe*`Q$!@b0/&Td*f;GbnA@MdaQatf@em4gtprHioK1_kPOKD[c2f;!.k0$s+13$s2t?D !<3$!nG`Zls7+B'!Mf[F~> p&>'"Vu6Sr5,ZL%s7-9Og$o%6n,qXtnC$%[!7Jme!!%T'J_>V-J_A3!!s%!S!:\YFWrMV97001` J,~> rr2u+r[e=-0JP@?-7&NiHOhPj6:+(07nH)YHbC?[C3QT ]">Vh^VRe*`Q$!?b08,Ud*]5FbnA@MdaQatf%Jd3gtpuIioK4`kPOKDV;d"*!.igSfn%h-fuhtM !8.>PnC[uFs74K)!Mf[F~> rr2u+r[n.'">Vbi,p`EhEXsTb6:4.17n?6F9MSD\;H-Xs='8^2>[CcG@Uit]B4u'sCi433EccGI G^4X`I=HcuK7el5Ll%%KJ:_lZKTq7JM2R=PNf]BdPa.SlI%,SVStVmRUo()hWiW;(YHb@=[C3QT ]">Yi^VRe*`5fs?)p6CLcHstGc-FY_daQatf@em4gtpuIioK4`kPOKDV;d"*!.k0$s+13$s2t?D !<3$!nG`Zls7+B'!Mf[F~> p&>":q>eV:s7-9Og$o%6n,qXtnC$%[!7Jme!!%T'J_>V-J_A3!!s%!S!:\YFWrMV97001`J,~> rr2uQr[e:,0JP=>#PnFG5XIh+7Rp$B92&)W:f:4l<`iL->?tQB@:E_XB4kpnCi+'/EH6/DG'J=Z I!pKpJqJ`1LPUhGNIZS%CkS(/Ll%%KNfT9aPEhE"M0tb@StD^NUSOccW2cr#Xfo"7['d?O\[oGe ^;%J#`5Ta;aND`OcHstGc-6mIdF-Lof%8R.gYL`EiSrnYk32^,!0Z>l!!%T'J_>V-J_A3!!s%!S !:\YFWrMY97001`J,~> rr3;Z/M/S.0JP@?#PnFG5XIh,7Rp$B92&)V:f:4l[:ZD@:NeYB4kpoCi"!.EH6/DGBeCZ I!pKpJV/W0LPUeFNIZV&CkIt-LPh"KNK90`PEhE"ML:kBStD[MUSOccW2Zi!Y->1:ZaI6N\[oDd ^V@V%`5Tdl!!%TMJcC<$JcEmm!s&?$ !:^!lWrMV77001`J,~> [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=J_>V-J_>V-b1Qjsf`2$Af`eDUn^']*U]5i~> rVq=+/M/V/1,CaE2`Wl[4Zu"p6:4127n?6F9MSD\;,^Iq='8^2?!^lH@Uit]BP;0tD/O<4F*)PJ G^=[`I=HcuK7nr6Ll%%LJ:_iYK9V.IM2R=QO-#KfPa.PkI%,SVStMgQUo(&hWiN5(Yd(L@[C3QT ]">Yi^VRe*`Q%r!)p?IMcd1"Gc-=S]daQatf@\g3h;7)JioB+_kksZFj5GLg!.igSfn%h-fuhtM !8.>PnC[uFs74K)!Mf[F~> rVq:*/M8\11,CaE2`NfZ4?Ynp6:4127n?6F9hnJ\;H$Rr=BSd2?!^oI@Uit^B5)*sD/O<4EccGI G^=[`IXcm!K7nr6Ll%%LJUqoZKTq7IMMmFRO-#KfPa.SlI%,SVT:r!SUo()hWiW>*YHbC>[C3QT ]"G_j^VRe*`#cq>ai_iPcd1"Gc-=S^daQatf@\g3gu%#JioB._kksZFj5GLg!.k0$s+13$s2t?D !<3$!nG`Zls7+B'!Mf[F~> [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=J_>V-J_>V-b1Qjsf`2$Af`eDUouBE$U]5i~> rVq=Z/M8\11,CaE2`NfZ4Zu"q6:++17n?6F9MSD\;H$Rq=BSg3?!^lH@q0(^B5)*sD/O<4EccGI G^4U_I=H`tK7el5Ll.+MJV%oXKTq7IMMmFQO-#NgPa.SmI%,SVT:hpRUo(&gWiN5(Yd(L?[C3TU ]">Yj^VRe*`Q%r!)p6CLcHt"Hc-=S^daQ^sf@\g3gtpuJioK1`kksZFbi+'P!.igSfn%h-fuhtM !8.>PnC[uFs7XK#!i,dG~> rVq.U/M/V/1,CaE2`NfZ4?Ynp6:4.17n?6F9heD[;H-Xs='8^3?!^oI@q0(^B4u'sCi=94EccGI G^=[`IXcm!K7el5Ll%%KJV%oXKTq7IMMmFQO-#KfPa.SmI%,SVT:r!SUo(&gWiW;)Yd(I>[C3QT ]">Yj^EUM3`5Ta;aihlPcHt"Hc-=S^daQatf@em4gtpuIioK1`kksZFbi+'P!.k0$s+13$s2t?D !<3$!nG`Zls7O>t!i,dG~> [/^0s"6/#'s7Gd_iR75Dg@,*jr;ZcEhuE]V"oeQ&rr<&orr<%Mfn%h-fn%i!f`M6-!!)NA"fhUq a$Tp's*t~> rVq;9/M8\01,CaE2`NfZ4Zu"q6:+(07n?6F9hnM];H-Xr=BSd3?!^oI@q9._BPD3tD/O<4EccGI G^4U_I=HcuK7el5Ll.+MJ:_fWK9V.IM2R=QO-#KfPa.SmI%,VWStVmRUo()hWiN5(YHbC>[C3TU ]">Yj^VRh+`#ct?ai_iPcHstGc-FY_d_3B0f@em4gtpuJj5f=akksZFZ1E J_>V-J_>V-b1Qjsf`2$Af`eDUp;]N%U]5i~> rVq/5/M/V/0f(XE2`NfZ4Zu"q6:4.17n?6F9MSA[;H-Xs=BSg4?!^lH@Uit]BPD3tCi=94EccGJ G^=[`IXcm"K7nr6Ll.+MJ:_iXKTq7JM2R=QO-#NgQ'RboI%#PVT:r!SV5C2iWN<5)YHbC?[C3QT ]">Vi^EUM3`5Ta;ai_iPcd:+Jc-=S^d_3B1f@em4h;7)Kj5f=akksZFZ1E JcC<$JcC<$b5VPDrr<&grroG&ou06!U]5i~> [/^0s"6/#'s7Gd_iR75Dg@,*jr;R,Ps8UOIdf7bqdaJ-ps3grI!7LlHrrE*!rrE*!rrE*!$3:)+ !<3'!rrE'!q#:V-J_>V-b1Qjsf`2$Af`eDUouBE$U]5i~> rVq>t/M/V/1,CaF2`Ni[4Zu"q6:++17nHVi^VRe*`Q%r!36TOjcHt"Hc-=S^d_42^_:ZZ[`nne[ioK1IdHToDl04E4!.]S"!.]S"!.]S" J,fS"!.]S"J,o@p!!%T'J_>V-J_A3!!s%!S!:\YFWrMe56NX%_J,~> rVq>t/M/V01,LgG2`Wo\4?Yno6:4.17n?6F9MSD\;H$Rr='8[2?!^lH@q0(^B5)*sD/O<4EclMJ G^4U_I=HcuK7nr6Ll%%KJ:_fWKTq7IMMmFQO-#KePa.SlI%,VWT:r!SV5:)gWiW;)YHbC?[C3QT ]">Vh^VRe*`Q%r!36TOjcHt"Hc-FY_d_42^_:cc]`nnh\ioK1IdHToDl04E4!.]S"!.]S"!.]S" J,fS"!.]S"J,o@p!!%TMJcC<$JcEmm!s&?$!:^!lWrMb263 [/^0s"68,)s7Gd_iR75Dg@,*jr;R5Ss8UOIdaJ0Ds8UOIdf07Ldf7bq!<2uu!<3!(!<<'!rr<'! !<)p!!<3&os+(0$!.b-$!42_0WrMb263 r;UY+/h\n51GgsJ3BB5b4[25!6UXC68P2WL:/=\a<)lt#=^#'9?=72O@qB7bBkqO%DK'T:FEMbO H?ssfIt*$%KS>2;M2R@EJokg]Q%t-OMi<[WOHG`lQC!JVRsps$Tq\Yi^VRh+`Q$!@b08,Ud*f;FcHjnd^"(]Mfu(ebaPc%#j3QlNl-ehEgAq5'!!*"K#QTC*!.Y%L J,oOu!W[`NpjdnqJH16$JH3%W"fhUq`BjX$s*t~> r;V"5/h\n61GgsJ3BB5a5!M;!6UXC684lNK:/=\a<)lq#=^#'9?=.,NA7]CdBkhI$DfKc;FEMbO H?ssfIt3-'K8,/;MMmIEJoba]P_Y'PMi<[XOHG`lQ'[AURt%$$TVA3WVPgAmXK8S.Z*C[D[^WfY ]=kto.)Eg>`Q$!@bKS5Vd*]5Ec-Oec^"(]Mfu(eaaPc%#jNcrPl-ehEgAq5'!!*"K#QTC*!.Y%L J,oOu!W[`NpjdnqJH16$JH3%W"fhUp_a4F"s*t~> [/^0s"68,)s7Gd_iR75Dg@,*jr;ZcEs8NAQs8UOIs3gqqrr;uGs8W*!s8W*!$3(#*rrE'!s8N)u rrW9$rrDio!!%TMJcC<$JcE.X"fhUq`BjX$s*t~> r;UDg/h\n61Gh!K3BB5a4[).u6UaI784uTL:/Fbb<)lt$=^#$9?=.,M@qB:cBkhI$DfB];FEMeP H?ssfIt3*&KSG8*YHbC>[C3QT ]"G_k^qmn+`Q$!@b08,Ud*]5Fc-Oec]tV85fYcJ!a5Gn!jNluPl2K*C\UXY[J:IV"J,k+M!.Y'" J,oS!!s!k%!;M'E!.k0$s+13$s0_k1WrMb263 r;V##/MAe41GgsJ3B92b5!M;!6UXC684lNL:/=_b<)lt$=^#'9?=.,NA7]CeBkqO%DK'T9FEMbO H$XjeIt3-'KSG8 [/^0s"68,)s7Gd_iR75Dg@,*jr;QcFrVm/Os8UOIs3gqqrr2uHr;Q`srr3E-rrE*!!<3'!rrE*! !<2uu!;QQo!.k0$s+13$s0_k1WrMb263 r;V#j/h\n61Gh!K3B9/a4[25!6UXC68P2WM:/=\a;cQh"=^#'9?=.,N@qB:dBkhI$DK'T:FEMeP H$apeIt3*&KSG8 r;Ucc/h\n61Gh!K3B9/a5!M;!6UaI78P2WM:/Fbb<)lt$=^#'9?=.,N@qB:cBkhI$DfKc2;M2R@EJobd^P_Y'PMi;& ]">Yi^VRe*`Q$!@b0A2Vd*f>HcHjnd^!tWbfu)S"a5Gq"j3HfNl-eh\Q@OJcrdYFXJ,k+M!.Y'" J,k+M!<.KK!;M'E!.k0$s+13$s0_k1WrM_/63 f)G`^qZ,dYs7-9Pg@5. qu7sD0/,+:1c73O3BKAf5=%V'6q0[;8kViQ:f(%g$G9=7f*12BkqO%DfB];F`hnQH?ssf It3*&KSG8 qu7sE0/,.;1c@9Q3BK>d5=%V'77Tj>8kViQ:f(%h$P?>7f*12BkhI$DfKc;FEMePH$Xjd It3-'KSG8 f)Gg8V`t%Zk5YJP"68,)s7u-aJc5WP.,iVDdb=0jdb"O!!<)rt!;QQo!.k0$s+13$s0_k1WrMk? 7001`J,~> qu8%B0/,.<1c@9Q3BKAf5$P?><^7N#!%DVsCi+*0EH?5EG'SC[ I!pKpJqJ`1LPUeFNIc\(D1n10Ll..MNK9/rrW#5%M0teBStD[MUSOccW2cr#Y-5+9ZaI6O\[oDd ^V@V&`5Ta;ai_iPcdC1Jc-F\`daZguf@ep5h;@/KioK4`kPj]GX71Z>!<%HJ!;M'E!.k0$s+13$ s0_k1WrMk?7001`J,~> qu8%B0/,.;1c73P3BKAf5=%V'6q0[<8kVlR:f(%g$G9=<^7N#!%DVtCi+*0EH6/DG'J:Z I!pKpJqJ`1LPUeGNIc\(CkS%.Ll%%KNf]>trW#5%ML:nCStD^NUSXidWN*&$Y->1:['d?P]"5Me ^VI\&`5Td!<%HJ!;M'E!.k0$s+13$ s0_k1WrMh=6ij(_J,~> eGfMUr;c![s7-9Pg@5. qu8&A4"rBF1c73P3]fGf5=%V'6q0[;8kViQ:f(%h$P?>?stA[!%DVtCi+*0EH?8FGBnL] I"$QqJV/W1LkpqHNIZV'D1n10Ll.+LNK9/_rW#@jML:nCStD^NUSOccW2cr#Y->1:ZaI6N\[oGe ^;%P&`5Td qu8&A4"rBF1c@$P?>?XY8Z!%DVtCi+*0EH?5EGBeF[ I=?ZrJqJ`2LkpnGNIZV'CkS(/Ll%%KNK9/_rW#@jML:nCStD[MUSOccW2m#$Y->1:['d?P\[oGe ^V@V&`5Ta;aihrRcHt"Ic-FY_daZguf@ep6h;@/Lj5f=akiq?lJ_ttX!.k0$s+13$s0_k1WrMh= 6ij(_J,~> eGfMUr;c![s7-9Pg@5. qYqn+0JP@?2E*WW4$>bm5sdq-7Rp$B92//X;,U@n<``F->?tQC@3tjPEGB9*D/XB5F*2VLG^=[` IXcm"K7nu7Ll.+MJV%u\KU%=KMN!LSO-"/Y!!#':I%,VWT:hsSV5C2iWiW>*Yd(L@[C3TU]"G_k ^VRh+`Q-'@b08,Vd*]8GcHsteeCE.%f\>3;hr*JQjQ5Ofl05Y5J,fS#s+13$s+13XrroG&ps2A0 U]5i~> qYqn+0JP@?2E*WV4$>_k5sdt-7Rp$B92&)V:f:7m='/U/>[C`D@3tjPEG93)D/XB5F*)PKG^4X` IXcm"K7nu7Ll.+MJV&#]KU%=KMN!LSOH=8Z!!#';I%,VWT:r!SUo1/jWiW;)YHbC>[C3TU]">Yj ^VRh+`Q$!@bKS5Vd*]8GcHjndeCE.%f\>0:hVdAQjQ5Rgl05Y5J,fS#s+13$s+13XrroG&pWc/- U]5i~> eGfMUr;c![s7-9Og$o%:n-?ODO6kiRnC$%[!7Jme!!%TMJcC<$JcE.X"fhUtcU@l0s*t~> qYqo21,:XB2E*WW4$>bl5XIh,7Rp$B92//X;,U@n<`iL.>[:ZD@O:sQEG93)D/XB5F*2VKG^=[a IXcm"K7nr6Ll%(MJ:_lZKU%=KMN!LSO-#NF7Tl"6I%,VWT:hpRV5C2iWiW;)Yd(L@[^NZU]">Yi ^V[n,`Q-'@bKS5Wd*f;Gc-Oece(*%%g"Y9;hVdAPjQ,Lfl0*r[J,fS#s+13$s+13XrroG&ps);/ U]5i~> qYqo21,:[C2)dNU4$>bm5sdq-7Rp$B92//X;,U=m<`iL.>[:ZD@O:sQEGB9*DJsN7EclMKG^4X` IXcm"K7nr6Ll%%LJV%rYKp@FLMN!LRO-#KE7Tl"6I%,SVT:r!SV5C2iWiW;)Yd(L?[^N]V]">\k ^qmn+`Q$!@bKS5Wd*f;GcHjnde(*%$g"Y9;hVd>OjQ,Iel0*r[J,fS#s+13$s+13XrroG&pWZ), U]5i~> eGfMUr;c![s7-9Og$o%6n,qXtnC$%[!7Jme!!%TMJcC<$JcE.X"fhUtcU@l0s*t~> q>Vb*1,CaF3&s#^4Zu"q6:4137n?9G9i"S^;H-Xs=BSg3?!^oI-2dg_C27X&DfB]:F`hnQH?ssf It3*&KSG8[j[bZH6!.k0$s+13$s0_k1WrMk>7001` J,~> q>Vb*1,CaE2`Wl[4[)(r6:4127nHTRt%$%Tq\ kPkN,qu?t/WAk:m/;3]orr?F)!"/b*3t)<@K)5NIch[Y@s8;p*?iSSj.h)Rd*'S&4rp]db$fTP' ddY7U(^1^We,'+Gn21%C!a5$ q>V*&68LGU2`Wl[4Zu"q6:4.17gf.o%3@D?"9T/e'aihrRaaH/[":m84 bgb1of@em5h;@/LioK4aki%0MJ,fS#s+13$s+13XrroG&ps);/U]5i~> q>V*&5r:DU2`Wo\4[)+s6:4137gf.o%3@D?"9T/e'aihoQaaH/[":m84 bgY+nf\,!5h;7)KioK4`ki%0MJ,fS#s+13$s+13XrroG&pWZ),U]5i~> kPkS%]DV^8(b1r(#64`Ymf!.c?i9s+JcGlN!!QI(s6lj?rVusmVuH],Vc=&"aM8)^!(W0GE"N'f rpTrZ3rK$diR75DV?R##*I_N@r;Zs]Sa`kSr;Zt'nE$3%r;ccb$IUC(!&gH9!!"Y6bl7YCJcC<$ JcC<$[JpE1s74,q!i,dG~> q#:u,1c.*L3BB8c4[;;"6UaL83&^^8%1!G!.fo\N&QW1D?stA[!!5%Y!WY"^,_X"TSNI:gZEo!"Y$KO'X+1!"4X2Rt#8X!!!^772Gh%"=eJtK6I1n"@]u2I4kHu+3)CD b0@7=!!"[&2#mV'^=Cfdg"Y9;hr*GPjQ5OgX5&4*!.k0$s+13$s0_k1WrMY/63 q#:u,1Gh!L3B9/a5!M>"6q'U93&^^8%1!G!.fo\N&QW1D?XY8Z!!5%Y!W jo>8Z"9REZs*XeG!*T:#!+5[)""W.'Fo;:?b5VD@U](5o*W,g8%P;#es""-M383m%nB;.UrU9ei r;ZuZddXpZrW!&BnF18m!!$1#nGN=e=oRmj=oA@!n-nM/!!!;Es6g0m!'U;*rr<%Ms+13$s+13X rroG&o#3osU]5i~> p\th81c@9Q3]fJf5=%V'77Kd=9)S_m!Cp'g.fKDO+C/;\@3tjP!tnjR1Aq1U>]k78:At52%Xrt] KSC=!MMi;O!$,p0Q%sJb%ucO1O>d%;"GqMqEXD^F",WhN9`4qo6*IQ!Zi'k,7D-=K8,WE/`lQ9F `ZkH`#HH%b"onWYe(3.(gYCWAi8N_Wjlb"FJ,fS#s+13$s+13XrroG&o#3osU]5i~> p\th81c@d%;"H%SrEXD^F",WhN9`4qo6*RW"[/Bt-7D$:J8,WE/a2lEH `ZkH`#H>ta"onWZe(31)g=tH?i8N_WjlXqEJ,fS#s+13$s+13XrroG&n\[ZpU]5i~> jo>8Z!&+?O!6G->!<)TN !*T7#"6%\tAc;Z0-3!B6^AS$3=oIjg!!$1$n,QVi!<)BeMZ*SY2q%a+2uWdWZH`CL!.k0$s+13$ s0_k1WrMY/63 p\tiR1c@9Q3]fJg5=%V'77Tj=9Dnhn%oQA,6iI&h!E!02@O:sQ"%[3D@Jp004EYjmG74BM#ZZJ/ KP1@"M1kj.$l*Q2Q%t/P+cMDAOZ*.<",_Jq4oPEa)5F%*L&CuS6*RW"Zi'k,7D$:K8,WDja2lBG G5_IE0XT*M/cG_[Q.FR?gY:QAi8N_Wjl_ubJ,fS#s+13$s+13XrroG&o#3osU]5i~> p\tiR1c@9Q3BKAf5=%V'6q9a=9)S_m%oQA,6iI&h!E!01@3tjP"%[3D@Jp004`tsnG74BM#ZZJ/ KP(:!MM;$0$l*Q3Q%t/P+cMGBO>d%;",_Jr4oPEa)5F%+L&CuS6*RW"[/Bt-7D$:K8,WDja2lBG G5_IE0X]0N/cG_[Q.FU@gYCWBi8N\Vjl_ubJ,fS#s+13$s+13XrroG&n\[ZpU]5i~> jo>8Z!)`aq!9sF^!13]b!+5[)"6fdbr;?TqBDqi1Hi=!F49#6_?nD?XoDJXk-@!>jqX=Jfr;ZrY ddSge!!#Lfn,VDF!!$1#nGN=e=oRmj=oA@!n,PQL!!H-Hs8Q$s!!$*Frr<%Ms+13$s+13XrroG& ps2A0U]5i~> pAY\j2E*WW4?Yhl5sdq-7Rp$Br;Zs=;H-Xlr;Zs[?=74gr;Zq-CM[hc!!P#uGBeEqrW!3FJqJb4 (Pmp$r;[3=6Z7U6MMmFROH;C!!!A++Ri;8+">?OGVk*bd"@98sZF'Q1"@]u:^I\;'"NSU*ats"s "@ffDc:%X3%8#.'g"Y9;hr*JRjQ3f'J,fS#s+13$s+13XrroG&ps2A0U]5i~> pAY\j2E3]X4?Yhm5sdt.7n6-Cr;Zs<;cHamr;Zs[?=74gr;Zq-CM[kd!!P#uGBeEqrW!3FJqJb4 (Q"$'r;[3=6Z@[6MN!LROH;C!!!A++Ri;8+">?OHVk*bd"@98sZF'Q1"@]r:^I\;'"NSU*b;9+t "@ffDc:%X3%8#.'g"Y<=hr*JQjQ3f'J,fS#s+13$s+13XrroG&pru5.U]5i~> jo>8Z!+#U(!;ZQn!-/#P5bI]2>[@T$;7Gtn,QVi!!D3. n.#?s!*0$f!:B^b!*T9ir;Zh#rpTnjr;cfc!##82"Alhqk>_E\!$BJc!!%TMJcC<$JcE.X"fhUt cU@l0s*t~> p&>P52`Wo]4[)+s6:=737nH>O!!F<@<)lor!!FcX?XY8Z!!?qNCi0+N"tXn@H$X<.rW!4 p&>P52`Wo\4[)+s6:=737nHAP!!F?@<)lor!!FcX?stA[!!?qNCi91O"tXn@G^=3-rW!4\r;ZqWI%(E@!!G jo>8Z!+5a*!<2os!+c*/!+5[)rVufr!+5[(!)idr"CD+l$1Iln!Ri"`!!-'erpTnjr;ZrYddR>; !!$."nGN=e=oIjg!!$1$n,QVi!<)Be"SMfr"T?XG!!%TMJcC<$JcE.X"fhUtcU@l0s*t~> p&>QY3B9,_4[)(r6:4127nHAP!!F?@<)lut!!FTS?stA[!!?tOCi0+N"tOk@H$XfcrW!6YK1lGu Ll.+5%f$).0oM'QO>d%;",_Jr!WE'%4JSaNW;Q]!6*RW"[/Bt-7_HIM8GrMka2lBF"82^'"4YuW gY:Q@i8N\UOkG6b!.k0$s+13$s0_k1WrMk?7001`J,~> p&>QZ3B9,^4[)(r6:=737nHAP!!F?A<)m#u!!FTT?stA[!!?tOCi0+N"tXn@H$XfcrW!6YK1lGu M2I77%f$).0oV-SO>d%;",_Jq!WE'%4JS^MW;Q]!6*RW"[/Bt-7_HFL8GrMka2lBG"82^'"4YrU g=tH@i8N_VOkG6b!.k0$s+13$s0_k1WrMk=7001`J,~> jo>8Z!+#U(!;ZQn!-/# o`#E03BB8c5!MA#6q'U:8P8p]"aG=.s6&\H?rlr!"9!T(GU`& MN!OA9d'Z:!!HSfO-)@!!!A++RgAun"?N?TVl0In"@98sZaBZ2"@]u:^IJ/%"NSU*b7=LO'0:o) MMmFQNfLij_SjI6a3)TL97[(o!.b-$!/gg\WrM\97097aJ,~> o`#E03B9/a5!M>"6UaL88P8p]"/9Z5^H@&rs!"9!T(GU`& M2[F@9d'Z:!!HSfOH;C!!!A++RgAun"?N jo>8Z!)`aq!9sF^!13]b!+5[)rVufr!+5X'!%\$K!_WO4rVm)Rkjmc_X#^+Y!+c)u!*T7#"6%\t /H,VL8,huXir&iW=oIgi"TAB$=8q[h9Dnkhn,PHI!!,^?`rCSiJH16$JH3%W"fhUoc:%f0s*t~> oD]8b3]oPh5=%V(77Tm?9)S_m)H'O7:]17r2dTm#-2dfGC2@^'r;['RF`r%VH[QY.!"C:UBSVD$ Mg'N#FD>,+r;Zs^NfT8[r;ZqWI%)&R!!G!NV5Kp`!!PZmZ*Ue>rW!'g]Y2'Br;Zu@aN;UYrW!Qs [Fj3fgtpoHioB._kNM3sm+Bq*JH16$JH16$ZiC90s7=N)!i,dG~> oD]8b3]fJf5X@_)7Rfp?9Dnhn)H0U8:]17r2dTm$-2dfGC2@^(r;['RFa&+WH[QY.!"C:UBSVD$ Mg'N#FD>/+r;Zs]Nf]>\r;ZqWI%2,S!!G!OUo0g_!!PZmZ*Ue>rW!'g]Y2'Br;Zu@aN;UYrW!Qs [Fj3fgtpoHioB+^kNM3sm+L"+!!%TMJcC<$JcEpnr;c jo>8Z!&+?O!6>'=! o)B,F4?Ykn5sdt.7n?3Er;Zs2;H6^ar;Zst?=71fr;Zq6CM[kd!!b#sGBnL]I7jG<$l=YSM2I2k 9nIJ(KnfO+"?ha+O>d%;",_Jq55kNb)l'4,M#@;W6*RW#Zk<9;"?='.^EEIT"NSU+bAdF\&KS:4 g=tDS"((!IjlYdjlKd o)B,F4?Ykm5sdt.7n?3Er;Zs2;cHaar;Zst?=71fr;Zq7CM[ne!!b#sGBnL]I7jG<$l=YSLl.,k 9nRP)KnfO+"?_^*O>d%;",_Jq55kNb)l'7-M#@;W6*RW"Zk<9;"?='-^EEIT"NSU*bAdF\&KS:4 g=k>R"((!IjQ>[ilKd jo>8Z"9RH[s*O_F!*T:#!+5[)rVufr!+5X'!V6g#!!&2[rrrHPki:Cdi;EWUV#Ki`=oA=.iR75/% 0-A/ddZaLr;Zh#rU9eZrW!$An*n0k!<)Bfj<":#!1 nc&u24[)(r6:4127nHAP!!Enq!";PULkpqH !#Bs(D1mQ?!!H\iOH;C!!"4[3S8no9!!/.WVc*Hn"[TDuZa;^k!!=%L^7+s""in^,bJG1s!"X_8 g=t16"1mLPjQ>[ilJ^:/JH16$JH16$ZiC90s7=N)!i,dG~> nc&u24[)(r6:4137nH>O!!E[jlJ^:/!!%TMJcC<$JcEpnr;c jo>8Z%2UO`J-GuR0^\o?n>AJK!!B._fVeZJ!C!FYrrd0=!"&,ls8N'%,C,6%-N3uF nc'!e>s:M>6:4137nH>O!"B/C1FiM,!"i7;?<]Z3r;Zpg@9Z;$!#Q\MGBnL]I"!sR!!Re*Ll%"J !!!Zr7S4Hq!!P-:Nf[Tnr;[4/?^uU_"98E@A5a3@!!PZnZ*L`kr;ZpV:D4lL!#UU]",5^nj5oFdl/T\3^juK:!.b-$!42_0WrMe=7KK:aJ,~> nc'!e>s:M?6:41384cJQ!"B/C1FiM,!"i7doj5f@cki9S2^]4@cs+13$s+13ns8;rdrroG&p!6).U]5i~> jo>8Z#@FGh$OA88p&=ske+s%F]8QLcqu6cN!#t2&6At$RJfOrUBX`$:410nA\BC";Ok\ r;Zh#r9s`D#lXf*(oga:!!#"Wn-J-23tMK$-tU`Js+(0$!.b-$!42_0WrMe=7KK:aJ,~> nG`jZ=$Ju;6q'R88PB!^$Q_5>"9T/e='T$;:\k%l:HSCQ*HuaSH[U?Z!<=j.L5:\DN)MJP$NgD6 'ej'TN/j"r!"('CJ"D nG`jZ=$Ju;6UaL98PB!^$Q_2="9T/e jo>8Z!+4X`!_!+.qZ$Td"68,)s7Gd_iR75Dq=+=_!*T3g"Q?MW\a/hU!7JmeJH16$JH16$ZiC90 s7Xc.!Mf[F~> n,E^T=$]/?77Tm?9Dni`*`H$<='/U/>[C`E@Uiq[B4u$rCi402EcZAGGBnL]I=?Yj!+gk=LkpqI NIc_(D2"71Ll.+MNf]?cPEhH$ML:nCStD^OUnsufr;\63Yd(L@[^N8mI?D+U^r""-`Q-'AbKS5W d*f>Tg=tH?hr3STjQ>LBe%gM7JH16$JH3%W"fhUrcUIr1s*t~> n,E^T=@#8A77Tm?9Dni`*`>s;<`iL.>[CcF@Uiq[B4u$rCi401EH?8GGBnL]I"$Pi!+gk=Ll%"J NIc_(D2"71Ll71MNfTmI?D(T^qmq,`lH0BbKS5W dF,DTg=tH?hr*MSjQ>LBe%bq`JcC<$JcC<$bQ%M@n,EQks7O]-!Mf[F~> jo>8Z!+4ge!SR)DrrH^_q>^Kc"68,)s7Gd_iR75Dq=+=_!*SLS!7JmeJH16$JH16$ZiC90s7FW, !Mf[F~> mf*RU?U@.L7n?3Er;]J3;cQh!=]ns6?=%#K@qB7bBPM@"D/XE7F*)SLH"_>JIXa0iK7nu7Ll.+M JV/&]Kp@FLMi mf*RU?U@+K7n?3Er;]J3;cHau=BSj5?=%#K@q91aBPM@"DJsN8F*2YMH"_>JIXa0iK7nu8M2I7O JV/)^KU%=LMMmFROHG]jQ'RboI%5\XTV8*TV5L9j!%1(:Z*UjH[^`lZ]Y;.r_SjC3aN2KHbg+P^ d^@c^g>(QBi8WeXi5O-[!!%TMJcC<$JcEpnr;c jo>8Z!+4ge"osS]s543Kq>^Kc"68,)s7Gd_iR75Dq=+=_!*SLS!7JmeJH16$JH16$ZiC90s7FW, !Mf[F~> mJdF]Cd^]^7nHAP!)"A3<)m"&=^#':?=75PA7]CeC2@^(E,fl=FEMeQ!(20`E!8sgKSG;=Mi mJdF]Cd^]]84cJQ!)"A3QA7fIfBkqO&DfKc kPkRiVu6Sr5,[NB"oo^Kc"68,)s7Gd_iR75DqsXWdSc&Nh3h>L(!7JmeJH16$JH16$ ZiC90s7FW,!Mf[F~> li.-<77Tm*1&V)F'K/oj='/U0?!^iF@Uiq\B4u$qCi+*1EcZAHGBj/p77n1+ItNH1Ll%"INIc_) D2":2M2R=PNf]?cPEhH#ML:nCStMdOUSW-Or;\)nFKr0Z[^N]V]"G_k^qmq,`Q-'Bbg"GZdF,GT g=tH?hVdDGcbP)3JH16$JH3%W"fhUpcUIr1s*t~> li.-<7Rp!+1&V)F'K/oj='8[0>[CcF@Uiq[B4u$rCi+*1EH?5FGBj/p77n1+IY3?/LkpqINIc_) D2":2M2I7ONfTYdF,GU g=tE>hr*PIcbKM\JcC<$JcC<$bQ%M@n,EQks7=N)!Mf[F~> kPkN,q>fXW"^r\\$r#RRs8VWliRmZ"o^DtAddY]^n,Od2!9inPd`2< lMgsP7n3p_!(^'h<`iL/?!^lH@Uiq\B4u$rCi+-2EHH>HGBkeR!X9ukJqJc3LkpqINIc_(CPA%/ Ll..MNf]BdPa.Q$ML:qDStD^OUSSn*!$SVR['mHS]">Vh^VI_(`5Td lMgsP7n3p_!(^'h='/U/>[CcF@Uiq\B4u$rCi402EcZAHGBkeR!X9ukJqJc4Ll%"JNIc\&CP7t. Ll..MO-#HdPa.T&ML:qDStDaPUnnt*!$SVR['mHR]">Vh^VI_(`5]m>b0/&ScdC1Kg"P3:hV[8? cG0D[JcC<$JcC<$bQ%M@n,EQks7FW+!Mf[F~> [/^0s"6%o%s7Gd_iR75Dg@,*j`rCSiJH16$JH3%W"fhUrcpe&2s*t~> l2Q(97nQEI9i"S_;cQh!=BSj5?=%&L@qB7bBPM=!D/aK8F*2YMH$XjdIXcp$K7o#9M2I4NJV/#Z KpILNMN!LSOHG]iQ'[kqI%5\XTVA3WV5L8kX/rG,Z*CXB[^WcX]=bkm^r""-`Q-'BbK\>YdF,GT g=tE>hp'E]JH16$JH16$ZiC90s7Xf/!Mf[F~> l2Q(97nH?I:/=\`;cQgu=BSj5?=%#K@q91aBPM=!D/XE7F*2YNH$XgcIt*$%K8#&9M2I7OJqJ)Z Kp@FLMiWiQ'RepI%5\XT;&*VV5L8kX/rG,Z*CUA[^N]W]"Gbl^r"%.`lH0CbK\>Yd*f>S g=tH?hp'E]!!%TMJcC<$JcEpnr;c [/^0s"6%o%s7Gd_iR75Dg@,*j`rCSiJH16$JH3%W"fhUrcpe&2s*t~> kl5nW@7s6f:Jane$G6F`hnRH@('iIt3-'KnkJ@MN!OGK6(g^ Q%t0QN/`jZOHPinQC*PWS:@-'TqeE[Vl6SqXKA\2Z*LaF\%'#]]tM1r_8O:3aN2NIc-=S^d^@c^ gYLT(beSc0JH16$JH3%W"fhUrcpe&2s*t~> kl5nW@7s9h:Jand<)m"&=^#*;?XR>QA7fIfC2@^(E,fo>F`hnRH@('hIt<3(KnkJ?Mi [/^0s"6%o%s7Gd_iR75Dg@,*j`rCSiJH16$JH3%W"fhUrcpe&2s*t~> kPo`&Mb?c>:f1.k<``C+>?kK@@:E_WAnPdlCM[m,EH6,CG'A4XH[UBnJV&N-L5:\DN/`C@FDHSq LkptJNK0*_P*;/sR#69\J"NC.USFZ_W2co"Xfo"7Za@0M\@T;b^;%J#_o0R8aND]Nc-Xkd[Fs9g e%s5CJH16$JH16$ZiC90s7Xf/!Mf[F~> kPo`&MbHi@:f1.j?kKA?t!PUAnPdlCM[j+EH-)CFa&+WI!pKoJ:`E-L5:\DN/`C@F)-Jq LPUkINK0*^P*D5tR#69]J=`F.USO`aW2Zi!Xfnt7ZF.-M\@T8a^;%J"_o0R8aN;WMc-Oec[b9Bh e%s5C!!%TMJcC<$JcEpnr;c [/^0s"6/#'s7Gd_iR75Dg@,*jr;Z`rhuE]V"oeQ&rr<&os+(0$!.b-$!42_0WrM_=7KK:aJ,~> jo9G5:esnb;cQh!=BSj5?=.,M@q91aBPM@"DJsN8FEM_NH$XjdIXls$K8#&9Ll74OJV%u\KU.CL MN!OTOH>WiQ'[hpI%5\YTV8-VV5L8kX/rG,Z*CXB[^WfY]=kqn^r"%/`lH3DbK\;XdF,GUg<7:I rW(ikrr<5 jo9G5:esnb;cHau=]np6?=%&L@q91aBPM@"DK'T8F*2YMH$XgcIXcm"K7o#9M2I7OJqA&[Kp@FM MiZjQ'RboI%,YXT;&*VVPgAlWiW>+Yd(OA[^WfY]=bkm^r"%.`lH0Bbg"DZdF,GTg<7:I rW(ikrr<50!.k0$s+13$s3(H@!:TpkWrMY97001`J,~> [/^0s"6/#'s7Gd_iR75Dg@,*jr;R*(s8N*!!<3'!!!*#urrE*!!!*#urrE*!rrE*!rrE*!!s&?$ !<)p!!<3&os+(0$!.b-$!42_0WrM_=7KK:aJ,~> jSs2bKMYNEQA7fIgC2@^(E,fo>F`hqSH@1-jIt<6)KSG;>MN!OGK61p`QA: jSs2bKMYND [/^0s"6/#'s7Gd_iR75Dg[G70:]15%!<<'!rr<'!!<<'!rrE&u"9AH%rrE&u!!*#u%flY0!<3$! rrE*!!!*'!!;QSF!.b-$!.b-l!!*&d!!TD&o[-,/U]5i~> ir[C`F@Uiq\B4u$rCi+-2EccGIGBnL]I=H`tJqJc4Ll%"JNIc_(D2"71M2R=P O-#KePa.T&ML:nDStMdPUnsufWN3,&Y->1;[C3NR]">Vh^VI_(`5]m>b0/&TcdC',r4iaA^q]rc !!'e7^q]rc!<0b:!5JTM!<0b6!<0bE!5QAM^]4AM!5QAM!5QAMpqVF\JH16$JH3dl!<;Ed"fhUp d7+/3s*t~> ir[CcF@Uiq\B5)*rCi433EccGIGBnL]I=H`tK7el4Ll%%KNIc_'Ck\.1M2I7O Nf]?cPa.Q%ML:qDStMdPUnsufWN*&&Y->1;['mHR]">Vh^VI_(`5]m?air#Td*^0-r4iaA^q]rc !!'e7^q]rc!<0b:!5JTM!<0b6!<0bE!5QAM^]4AM!5QAM!5QAMpqVF\JH16$JH3dl!<;Ed"fhUn cU@l0s*t~> [/^0s"6/#'s7Gd_iR75Dh!bBnX8r1urW)uu#QXo)!<<'!rrE&urW)uurrE*!rr iW!]hSQ/Zk=]ns6?=%#L@q91aBPM=!DK'T9FEMbNH$XjdIt*$%KS>/:M2R@QJqJ,\KpILNMN!OT OHG`kQ'[kqI%5\XTV8-UV5L8kX/rG,Yd(OB[^WfY]"Gbl^r"%.`lQ9Ebg"GZ_5dS6_#=?6^^'qU ^];0c!5JU6_#=?6_#FE7_#FB@^];0c!5JTM^]=>K!W^"9pqQk0nc&RhPlC^`PlC^`PlC^`PlC^` PlCjdrrE'!nG`Zls7+E)!Mf[F~> iW!]hSQ&Tj=BSj6?=.)L@q91aBkhF"DK'T9F*2YMH$XgcIXcp$K8#&9M2I7OJqJ,[KpILMMN!OU OHG]jQ'RepI%5_YT:r$UV5L8kX/rG,Z*L^D[^N`X]=kqn_8=./`lQ6Dbg"G[^oIJ5_#=?6^^'qU ^];0c!5JU6_#=?6_#FE7_#FB@^];0c!5JTM^]=>K!W^"9pqZ=uP\'mqPaR[7P\'mqPaMOPs6Tdi WrMM47KK:aJ,~> [/^0s"6/#'s7Gd_iR75DhXC[&\#QG.r;Q`srVm-'s8N*!rrE'!rr2rur;Q`srr3<*rrE*!!<3'! rrE#t!W`6#q#Bd_P\'mqPaR[7P\'mqPaMURrrC:3!!TD&n]sZ*U]5i~> hu@EJLK@S\>$PB@@:E_WAnPdlCi"!-EH6/DG'A4XI!pKoJV/W/L5:\EN/`FAF)?VrLP^qJNK90` PE_>uR#6<^J=`F-USOcbW2co"Y-5+8ZaI6N\[oAb^;%M#_o0R8aND]N_m-5A!;sV4!<'\=!5QAM ^q]rc!<0b6!;sV4!<0b@!5JTM^];.M^q]sK^]FMO!;O>0!:g'h!0mK`!0mK`!0mK`!0mK`!0mKd !<3'!!:^!lWrMV87KK:aJ,~> hu@EJLK@V^>?tQB@:E_XAnPdlCM[m,EH6,CG'A4XI!pKoJV&N.L5:\DN/`C@FDHSrLl%%KNK90` P*D5uR#69]J"E=,USO`bW2co"Y-5+8ZaI6N\@T;b^;%J#`5K[9aND`O`3H>B!;sV4!<'\=!5QAM ^q]rc!<0b6!;sV4!<0b@!5JTM^];.M^q]sK^]FMO!;O@u!0h'q!0in7!0h'q!0ilP!<;Ed"fhUj c:.i0s*t~> [/^0s"6/#'s7Gd_iR75Di:$d*^AY&3!;uis!<)ot!<3#u!<3#u!<<*!!!`H'!<<'!!<3#u!<<'+ !<<'!s8N'!s8N)os6frPAcMgqR?@Q7AcMgqR0*Hh!6jm3"fhUmcUIr1s*t~> h>^s1IT]l\?=%#K@qB7bBPM@#DJsN7F*2YMH$XjdIXcp#KS>2;M2R=PJV/&\KpIOOMimX/rG,Z*CXC[^WcX]=bkm^r"%/`lH0C`3fKC!!)r4!!)u5!!*#6rrE&6 rrE)7rr<8=!!'gM!!*#6rrE)7$37lW!5QAM!5QAMpqQk0nc&RhPlC^`PlC^`PlC^`PlC^`PlCjd rrE'!nG`Zls7+E)!Mf[F~> h>^s1I9Ki\?=.)L@qB7bBkhF"DK'T8F*2YNH$XjdIt*$%K8#):M2I7OJV/&\KpIOOMN!OUOHG]j Q'RepI@PeYT;&*VVPgAmX/rG,Z*L^D[^WfY]=bkm_8=./`lH0C`3fKC!!)r4!!)u5!!*#6rrE&6 rrE)7rr<8=!!'gM!!*#6rrE)7$37lW!5QAM!5QAMpqZ=uP\'mqPaR[7P\'mqPaMOPs6TdiWrMM4 7KK:aJ,~> [/^0s"6%o%s7Gd_iR75Dip[!-_>C54!8%8N!<)rt!;QT_!0h'q!0in7!0h'q!0ilR!<3&Cmf3Nk s7X]+!i,dG~> g](U%I9g/d?t*VVAnPdlCi"!.EH6/DG'J:YI!pKoJV/T/L5:\EN/`FAFDQYsLP^nINK90`PEhE" R#69]J=iL/USO`aW2Zi!Xfo"8Za@0M\@T;c^;%J#`5K[:_R03?!!(WdrrE#5rrDi0!!)Qh!!&8` !!&8`!!&8`!!&8`!!&8`"9AH%rrDQg"fhUrbs_]/s*t~> g](U%I9g/d@:E_WAnPdlCi+'.EH6/DG'A7YI!pHnJV/W0L5:\EN/`C@F)6PqLP^qJNK0*_P*M;u R#69]J=iL/USFZ`W2Zi!Xfnt6Za@0M\@T;c^V@V%`5Ta;_R03?!!(WdrrE#5rrDi0mf8Sa!!&7O OoU_Y!!&7O! [/^0s"6%o%s7Gd_iR75DjR<3,^\Ol0!65'-!0h'q!0in7!0h'q!0ilR!<3&Cmf3Nks7X]+!i,dG~> g&G7$LgOS#@q91aBkhI$DK'T9FEMbNH$XgcIt*$$KS>/:M2R=PJqJ/]KpILNMN!OTOHG]jQ'Rep I%5_YTV8-VV5U>lX/rG,Z*CXB[^WfY]"Gem_8=./^U*a9!!($S!!)Qh!!&8`!!&8`!!&8`!!&8` !!&8`"9AH%rrDQg"fhUrbs_]/s*t~> g&G7$LgOS#@qB:cBPM@"DJsN8FEMbOH$XjdIt*$$K8#&9M2I7OJV/#ZKpIOOMN!OUOH>WjQ'[kq I@PhZTVA3WV5L8kXK8P-Z*CXB[^WcX]=kqn^r""-^U*a9!!($Smf8Sa!!&7OOoU_Y!!&7O! [/^0s"6%o%s8DEhiRHB2r9sgIddY]In,_+NpSn2n`rGK-P\'mqPaR[7P\'mqPaMURrrC:3!!TD& p fDen,Rpol=AnPdlCi"!.EH6,CG'J=ZH[UBoJV/T/LPUeFNK&LAFDQYsLP^qJIWKUXP*M;uR#6<^ J"NC-USO`aW2Zi!Xfo"8Za@0M\[oDc^V@V%]!1q/!!($S!!)Qh!!&8`!!&8`!!&8`!!&8`!!&8` "9AH%rrDQg"fhUrbs_]/s*t~> fDen,Rq#r=AnPdlCi+'/EH6/DG'A4XH[UBnJV/T/LPUeFN/`C@F)-JqLP^qJIWBOWPE_?!R#69^ J=iL/USO`aW2Zi!Y-5+8Za@0M\[oDc^V@S$]!1q/!!($Smf8Sa!!&7OOoU_Y!!&7O! [/^0s"6%o%s8MKkiR?B8jm)g6"6%\tdcp6&k0("%WW3%=s6frPAcMgqR?@Q7AcMgqR0*Hh!6jm3 "fhUrbs_]/s*t~> ec/P<[2;M2R=PJV/#[Kp@FMMg]PeJ;0&JQ'[nrI%5_Y TVA3VV5U>lXK8P-Z*CXC[^WcX]=bkj[B0&$!!($S!!)Qh!!&8`!!&8`!!&8`!!&8`!!&8`"9AH% rrDQg"fhUrbs_]/s*t~> ec/P<[ [/^0s"6/#'s8MKkeCN[Ho_SOU"6%\tdd6H)maf&AWW3%=s6frPAcMgqR?@Q7AcMgqR0*Hh!6jm3 "fhUsaA!;Bs*t~> df3"mTP\F[D/O<4EccGIG^4U_I=H`tJqSi4Ll%%LNIc_(DM=C3M2Q:nJrQ%cQ'I]'MLD"ET:hpR Uo(&gWiN5(YctC=[C3QS]"5>Rnu;Zi`kVQSnc&RhPlC^`PlC^`PlC^`PlC^`PlCjdrrE'!nG`Zl s7aT.&u5JW~> df3"mTP\F[D/O<4EcZAHG^4U^IXciuK7nu7Ll%%KNIle)D2+@4M2H7nJW,kbPa.Q%MLD"ET:hpR Uo()hWiN5'YHY:<[C3QT]"5;Qnu;Zi`k_$CP\'mqPaR[7P\'mqPaMOPs6TdiWrM_29G4-#J,~> [/^0s"6/#'s8MKkeDKWfrVc]a"6%\tddQZ,n(>JFWW3%=s6frPAcMgqR?@Q7AcMgqR0*Hh!6jm3 "fhUsaA!;Bs*t~> ci6JZSSrCbEH6/DG'J:YI!pKpJV/W1LPUeFNK&OBF_uhuLl%%/I#F>_TTk_-R>QB_J=`F.USOcc W2Zi!Xfo"7ZaI6N['/qu!!($S!!)Qh!!&8`!!&8`!!&8`!!&8`!!&8`"9AH%rrDQg"fhUsa@m5A s*t~> ci6J[ST&IcEH6/DG'J:YH[UBnJV/T/L5:\DN/`FAFDQYrLl%%.I#=;_TTk_-R>QB^J=iL/USO`a W2co"Xg#(9ZaI6NZ`iht!!($Smf8Sa!!&7OOoU_Y!!&7O! h>[cZr;69aq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV.B.q"X[[q!@>%e*6\ml0?aSme6GFl0@Nt gWSj*rTOOOl07Ktl0A63#3*q>VPU,drM9^qV5:&cV5F3f#,\3sq=sa\rV-Tmq"X[[q"am`#5S&h q=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"a@Y"(YnOAGp!BA7K+[@q0'J@g6IR@q9(Z AGp!BA7K+[@q0'J@g6IR@q9(ZAGp!BA7K+[@q0'J@g6IR@q9(ZAGp!BA7K+[@q0'J@g6IR@q9(Z AGp!BA7K+[@q0'J@fg1N!0ib3!!?bA@q>OJ#%V4RA7K+[rF6%B@q0%Z@q>OJ#%V4RA7K+[rF6%B @q0%Z@q>OJ#%V4RA7K+[rF6%B@q0%Z@q>OJ#%V4RA7K+[rF6%B@q0%Z@q>OJ#%V4RA7K+[rF5n> @fVaY!s&,s`pWm2V>9Vu9+q7!$i0Smq=sa\q"XaarNcHR~> h>[cZr;69aq=sa\rV/qZq"X[0V13H(EccGIG^4U^I=?ZrJqSf4Lkpq;J9#@UP(\OEEINt:S<]2! PE^fHR=(HnSXuLJU84W_W2Zi!XKJY(VPU,drM9^qV5:&cV5F3f!iDdo`k)3NrqH]nq"X[[q"am` #5S#oq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am` #5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S#oq=sa\rV-Tmq"X[[q"am` #5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am` #5S&hq=sa\rV-Tmq"X[[q"am`#5S#oq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am` #5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am` #5S#oq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am` #5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S#oq=sa\rV-Tmq"X[[q"am` #5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV-Tmq"X[[q"am` #5S&hq=sa\rV-Tmq"X[[q"am`#5S#oq#L0irV-Tmq"X[[q"am`#Pn.kq=)9o')qY6q=sa\q"X[[ q"t!fZN#F~> h>[cZr;69aq=sa\rV/qZq"X[0V1*E(EccGJG^=[_I=?ZsJqSf3LPUh:IrT4TP(\OEEINt:S<]2! P*C]GR!Y"(YnOAGp!BA7K+[ @q0'J@g6IR@q9(ZAGp!BA7K+[@q0'J@g6IR@q9(ZAGp!BA7K+[@q0'J@g6IR@q9(ZAGp!BA7K+[ @q0'J@g6IR@q9(ZAGp!BA7K+[@q0'J@fg1N!0ib3!!?bA@q>OJ#%V4RA7K+[rF6%B@q0%Z@q>OJ #%V4RA7K+[rF6%B@q0%Z@q>OJ#%V4RA7K+[rF6%B@q0%Z@q>OJ#%V4RA7K+[rF6%B@q0%Z@q>OJ #%V4RA7K+[rF5n>@fVaY! hZ"5dp@7G0jlGOajQ5F^jl>F`jQ6C%s5SRij5f=_jlGLaj5]7]jQ5IajO`#(^=M>pf%&?thrEPB f$r7$`jjR.f$r4#eCE.#f%&=!_6Ti&R$j>0R$a;.Q^O2-R@'D0R$j;-R?s9@jQ5I`jl>C_j5f=_ jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ6F&$K^=.jl>F`jQ5I`mf73/>[(E;>?b?: >?kB;>?b?:>?kB:>[(H;>?kB:>[(E;>?kB:>[(E;>?b?:>[(E;>?b?:>?kB;>?b?:>?kB:>[(H; >?kB:>[(E;>?kB:>[(E;>?b?:>[(E;>?b?:>?kB;>?b?:>?kB:!;q]RL]N?gqMG6.!JuX/M>rA4 M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!f;_iOoT?'>[(E; >?b?:>?kB;>?b?:>?kB:>[(H;>?kB:>[(E;>?kB:>[(E;>?b?:>[(E;>?b?:>?kB;>?b?:>?kB: >[(H;>?kB:>[(E;>?kB:>[(E;>?b?:>[(E;>?b?:>?kB;>?b?:>?kB:!;q]RL]N?gqMG6.!JuX/ M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.#)S.m!9=-g mf4)jjP%47$fg:/j5f=_jlGI`k3MU5rNlNS~> hZ%9ep@7G0jlGOajQ5F^jl>F`jQ5I`c`W@PD/XE6EccGIGBeF[H[UBnJ9?!I@!IKRH[L9fMN3RH KnY;SUYNfK3aP*D5tR$a>3R[KS1R$j>0R$a;.Q^O2-R@'D0R$j;-R?s9@r2fq!!N`?uXT,=% XK23!s/Q1%X88ptWr]<&qQ0^t!N`@!XEss-j5o=^jlGOajQ5F^jl>D%jQ5I`jl>C_j5f=_jlGLa j5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^ jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5YUMj5^4$jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOa jQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_ j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^!9E8&jQ5F^jl>F`jQ6F&Hfa;Jjl>F`jQ5I`jl>C_j5f=_ jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_ j5o=^jlGOajQ5F^jl>D%jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j*p+MjQ5IajQ,F_j5o=^ jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I` jl>C_j5^4$jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jo=CTjl>C_ j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]j8e6@ j8e<%j5o=^jlGOajQ5F^jl>EijP%47$fg:/j5f=_jlGI`k3MU5rNlNS~> hZ%9ep@7G0jlGOajQ5F^jl>F`jQ5I`c`W@PD/XE6F*)PKG'J=ZI!pHnJ95pG?[.BQH[L9fMN3RH KnY;SUYNfK0`P*D8uR$jD4R[KS1R$j>0R$a;.Q^O2-R@'D0R$j;-R?s9@r2fq!!N`?uXT,=% XK23!s/Q1%X88ptWr]<&qQ0^t!N`@!XR?.+>?kB:>[(E;>?b?:>[(E;>?b?:>?kB;>?b?:>?kB: >[(H;>?kB:>[(E;>?kB:>[(E;>?b?:>[(E;>?b?:>?kB;>?b?:>?kB:>[(H;>?kB:>[(E;>?kB: >[(E;>?b?:>[(E;>?b?:>6+SXs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?g qMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]WEhM37jU>?kB:>[(E;>?b?:>[(E;>?b?:>?kB;>?b?: >?kB:>[(H;>?kB:>[(E;>?kB:>[(E;>?b?:>[(E;>?b?:>?kB;>?b?:>?kB:>[(H;>?kB:>[(E; >?kB:>[(E;>?b?:>[(E;>?b?:>6+SXs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u. L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]iQjM#cW(!#:p_fXaHYj5]7]jQ5IajQ#@algjiL Zi>O~> hu=/`oB+ZG^q7+f\[]5\\,NoC]=>G_\@T2Zrj`9F\@T5\]"#6K\IuNa]"+lDS-KMiEXPrepu?E`Y72SDlLt1`s*t~> hu=/`oB+ZG^q7+f\[]5\\,NoH]=>G_\@T2Z\YtaFEW0JJAKGGrBPD6tCi*Qh;G(D=A7fFdBP;-q CMdp,E*uUb<;oo'=BSj490+C3VuQk.\,NoC]=>G_\@T2Zrj`76\@T5\]"#6K\HfaV]",>^\@;IJ #J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_ \@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#6;9F\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K \HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW \[]5\\,NoC]=>G_\@T2Zrj`76\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Z rj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV ]",>^\@;IJ#6;9F\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\ \,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`76 \@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^ \@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#6;76\H'4N\,NoC ]=>G_\@T2Zrj`8^\?VD\$+RJD\I6$Z]=>D`^rkEspAMAuJ,~> hu=/`oB+ZG^q7+f\[]5\\,NoH]=>G_\@T2Z\YtaFE;j>iAn>ReBPM i;X&\p#X>rOb\JdIf+TtI"$KlIX_3C"akcII=?VDI/eU+I"$KlIXZ6T?s%;oDf0H2Du=JaD/X\Qa>0+q#.W# J,~> i;X&\p#X>rOb\JdIf+TtI"$KlIX_3C!IT@qI0Ob-@Tui-:]=2j;?'&l2D.Et7Rfm=84cDO9)hQj 4tobd:Janc;Z9Vp<;TSs<)Z^p<;TSs<)Z^p<;TSs;ufir<;TSs<)Z^p<;TSs<)Z^p<;TSs<)Z^p <;TSs<)Z^p<;TSu<)Z^p<)WerI0G"II=6Qnr-\`rIK4eFIf+TtI"$KlIX_3C"akcII=?YCI0G"I I=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C "akb!I=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWn If+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIK4eFIf+TtI"$KlIX_3C"akcII=?YCI0G"I I=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C "akb!I=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWn If+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIK4eFIf+TtI"$KlIX_3C"akcII=?YCI0G"I I=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C"akcII=?YCI0G"II=6Qnr-\`rIXQWnIf+TtI"$KlIX_3C #(1k"I/n]rrI"isIXQWnIf+U!I"#"BG\8?-rd=fpIf4[#IY! i;X&\p#X>rOb\JdIf+TtI"$KlIX_3C!IT@qI0Ob,@9Z`,:]=2j;?'&l2D%?s7Rfm=84cDO9)hQj 4to_c:Janc;Z9Vp<;TSs<)Z^p<;TSs<)Z^p<;TSs;ufir<;TSs<)Z^p<;TSs<)Z^p<;TSs<)Z^p <;TSs<)Z^p<;TSt<)Z^p<)`5cPVN=@92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH] 92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@&_9TfC?1'7ML 9MG@W"\MH]92&%W9*Ip]91qrPr(@2c9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*Ip]91qrPr(@2c 9M8#P9`.Ne8k_lN9MG@W"\MH]92&%W9*7d[!.F57"]KhnB-dc]I0"_ErI"s#JV]Z!e*?`,[Jta~> i;Z.?n("@^>?"El:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282C4Y%a@9KkX&5<_1m 4?GYc3]SAl2?a"8#;e1l1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1C#`l1B90e1G\qc#;e1l 1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1C#`l1G^dC1G\qc#;e1l1GUdC1@G3_*ZlIF+!)IF *ZlIF+!2OG*ZcCE+!2OG+!)LF*ZlFF+!)LG*ZlFE+!)LG*ZlIF+!)IF*ZlIF+!2OG*ZcCE+!2OG +!)LF*ZlFF+!)LG*ZlFE+!)LG*ZlIF+!)IF*ZlIF+!2OG*ZcCE*rmlG/hR&T#;7Y]/hJ_//cI@- 0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y- 0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@(0.ef>!-'&%+!)LF*ZlFF+!)LG*ZlFE+!)LG*ZlIF +!)IF*ZlIF+!2OG*ZcCE+!2OG+!)LF*ZlFF+!)LG*ZlFE+!)LG*ZlIF+!)IF*ZlIF+!2OG*ZcCE +!2OG+!)LF*ZlFF+!)LG*ZlFE+!)L(/MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_/ /cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF/ /M8Y-0.njU/d i;Z.?n("@^>?"El:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.RoF6UX6p0HLo\4YA?=0/"q2 0/,+71,0aR1'7G2#;e1l1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1C#`l1B90e1G\qc#;e1l 1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1C#`l1G^dC1G\qcHo*T71GUdC1&t!A:.n;U9282S 9h\5U92,CZ:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S 9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9hg+1:/+AU9MA2S9`Rg] 9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R :.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n:]9282S9h\6.:.n;U 9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU 9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92,CZ:/+AU9MA2S9he8U9hS2S9MS5T 9n,f29hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U 92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9`Rg]9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U 92/,R:/+AU9MBJ%92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R :/+AU9MA2S9he8U9hS2S9MS5T!)!;d!)6-\:.n;U9282S9h\5U92.389Ks i;Z.?n("@^>?"El:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.RoF6UX6p0HCfZ4YA?=0/"q2 0/,+71,0aR1'7G2#;e1l1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1C#`l1B90e1G\qc#;e1l 1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1C#`l1G^dC1G\qc#;e1l1GUdC1@G3_*ZlIF+!)IF *ZlIF+!2OG*ZcCE+!2OG+!)LF*ZlFF+!)LG*ZlFE+!)LG*ZlIF+!)IF*ZlIF+!2OG*ZcCE+!2OG +!)LF*ZlFF+!)LG*ZlFE+!)LG*ZlIF+!)IF*ZlIF+!2OG*ZcCE*rmlG/hR&T#;7Y]/hJ_//cI@- 0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF//M8Y- 0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@(0.ef>!-'&%+!)LF*ZlFF+!)LG*ZlFE+!)LG*ZlIF +!)IF*ZlIF+!2OG*ZcCE+!2OG+!)LF*ZlFF+!)LG*ZlFE+!)LG*ZlIF+!)IF*ZlIF+!2OG*ZcCE +!2OG+!)LF*ZlFF+!)LG*ZlFE+!)L(/MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_/ /cI@-0.ee//MA_.r[nF//M8Y-0.njU/dF$]/hS_//hR&T#;7Y]/hJ_//cI@-0.ee//MA_.r[nF/ /M8Y-0.njU/d*gZ/c\Q3!#IFa8j=*p9MA2S9he5S9h\A_@Y_GKo),oqJ,~> i;\9$lH,2k3]f>X3B/iU2E!QP3B8lU3&EWR2EO$+s/!O+ i;\9$lH,2k3]f>X3B/iU2E!QP3B8lU3&EWR2E i;\9$lH,2k3]f>X3B/iU2E!QP3B8lU3&EWR2EO$+s/!O+Tt76+s/!Q+!MgM+s/!Q +!MmN+s8!P+!MmN+sJ*Q+ i;Z+X3B/iU2E!QP3B8lU3&EWR2E i;Z+X3B/iU2E!QP3B8lU3&EWR2E i;Z+X3B/iU2E!QP3B8lU3&EWR2E i;Yb4n("@^>?"El:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282=2BNJe9/A@Z1c$od 1C#`l1G]mK1B@D1#;e1l1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1BKBg1W0:n9RKT.9he8U 9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R :.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/-1 9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU 9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T 9hS5U92/)RHqm=/9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U 92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U 92/,R:/+AU9MA2S9hg+1:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R :/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S 9MS5T9hS5U92/)R:.n;U9282S9h\5n:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T 9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T1J:J.(BdE*:.n;U8ki#R :fLnZ\)$WQ[Jta~> i;Yb4n("@^>?"El:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282=2BNJe9/A@Z1c$od 1C#`l1G]mK1B@D1#;e1l1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1OM#71B:'C9hS2S9MS5T 9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U9)qXZ:.n;U9282S 9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/-19282S9h\5U 92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U 9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R Hqm=/9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U 9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU 9MA2S9hg+1:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S 9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U 92/)R:.n;U9282S9h\6.:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R :.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R :/+AU9MA2S9he8U9hS2S9MS5T9e8q49hS2S9MS5T9hS5U92/)R:.n;;927_g"ADKa92/,Q9he;X <+:Wlh=CKOs*t~> i;Yb4n("@^>?"El:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282=2BNJe9/A@Z1c$od 1C#`l1G]mK1B@D1#;e1l1GUdC1B''71bpjC1,LdBr\Fd91,C^A1c$od1BKBg1W0:n9RKT.9he8U 9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R :.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/-1 9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU 9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T 9hS5U92/)RHqm=/9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U 92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U 92/,R:/+AU9MA2S9hg+1:/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R :/+AU9MA2S9he8U9hS2S9MS5T9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S 9MS5T9hS5U92/)R:.n;U9282S9h\5n:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T 9hS5U92/)R:.n;U9282S9h\5U92/,R:/+AU9MA2S9he8U9hS2S9MS5T1J:G-(BdE*:.n;U8ki#R :fLnZ\)$WQ[Jta~> i;X&\p#X>rOb\JdIf+TtI"$KlIX_3C"akcII=?YCI1UdTI=6Qn=BI9p;g_PC;cH`n;[$-!.0* i;X&\p#X>rOb\JdIf+TtI"$KlIX_3C"akcII=?YCI1UdTI=6Qn=BI9p;g_PC;cH`n;[$-!.0*iV#QB,PI")$B#_%>\Qa>0+q#.W#J,~> i;X&\p#X>rOb\JdIf+TtI"$KlIX_3C"akcII=?YCI1UdTI=6Qn=BI3l;g_PC;cH`n;[$-!.0* hu=/`oB+ZG^q7+f\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\IuNa]"*EF80`JlH[U6gH[C-e HN&6rI6@RW!.9->rd+luH[L0eI!^2=HO"tGI!^3fH[>[<#CUrHH[C-eHN&8t!!]sE\[]5\\,NoN ]=>G_\@T2Z\H$PeDK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3 E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD\@#,E,TW5DJj@m \\#A_\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_ \@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJOoP]r]",>^\@;IJ'"bZb\[]5\\%)KWE,KW5DK'K2 rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16! E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbiEgDK'N3E,KQ3!4f_O]",>^\@;IJ#J7LW\[]5\ \,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G \@T5\]"#6K\HBIR]".80#CX+mQoGG_\,NoG]=>J_\\#Z"gZnM2[/YX~> hu=/`oB+ZG^q7+f\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\IuNa]"*EF7j<;jH[U6gH[C-e HN&6rI6@RW!.9->rd+luH[L0eI!^2=HO"tGI!^3fH[>[<#CUrHH[C-eHN&6r!4]VN\@T2Zrj`9G \@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`0D\@T5\mf3R%]",>^\@;IJ '"bZb\[]5\\%)KWE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5 DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbiEgDK'N3E,KQ3 !4f_O]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW \[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\WQps\@T5\]"#6K\IuNa]",>^\@9!KDfBT5Df0N3 DZ4PZE,KW5DK'K2rbi$\DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PZE,KW5DK'K2rbi$\ DK'N3E,KRmD[16!E,TW5DJoGl#B4R"Df0N3DZ4PeE,KW5DK'K2DZI>[\@T5\]"#6K\HfaV]",>^ \@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC ]=>G_\@T2Zrj`-C\@T6>!!dq^\X5>`\@;IJ$bNp\\@K5eb1l4TrNuTT~> hu=/`oB+ZG^q7+f\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\IuNa]"*EF73HrfH[U6gH[C-e HN&6rI6@RW!.9->rd+luH[L0eI!^2=HO"tGI!^3fH[>[<#CUrHH[C-eHN&90!!0U=rj`9G\@T5\ ]"#6K\H`,E]",>^\@;IJ'"bZb\[]5\\%)LL]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ #J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_ \@T2Zrj`ZR\@T5\]"#5[!4f_O]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K \HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\H`,E]",>^\@;IJ#J7LW \[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Z rj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC!4]VN\@T2Zrj`ZR\@T5\]"#5[!4f_O ]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\ \,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^\@;IJ'"bZb\[]5\\%)LL]=>G_\@T2Zrj`9G \@T5\]"#6K\HfaV]",>^\@;IJ#J7LW\[]5\\,NoC]=>G_\@T2Zrj`9G\@T5\]"#6K\HfaV]",>^ \@;IJ#J7LW\[]5\\,NoC]=>G_!4o\Lrj`9G\@T5\]"#6K\HdPm\ hZ%6dp@7G0jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajIr;N/=GOcR@'D0R$j;- R?s;/9)t=ZR?s8.Q^F2.R@'A0Q^=,,R$j>0R$a;.Q^O2-R@'D0R$j;-R?s;I!#+GTjQ,F_j5o=^ jlGOajQ5F^jT,.6s+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/ M>rA4M2;"bs+g]4M#)u.Lg#W8jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLa j5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jH9KVjQ5I`jl>C_ j5f=_jlGLaj5]5$qMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4 M#)u.L]N?gqMG6.!JuX/M>rBC_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOa jQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5Ik!#:p_ jLdqkj5]7]jQ5IajQ#@algjiLZi>O~> hZ%p"p@7G0jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajIr;M/",FbR@'D0R$j;- R?s;/9)t=ZR?s8.Q^F2.R@'A0Q^=,,R$j>0R$a;.Q^O2-R@'D0R$j;-R?s9@jQ5I`jl>C_j5f=_ jlGLaj5VQLj5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`mf4$^jlGLaj5]7] jQ5IajQ,F_j5g:;M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?g qMG6.!JuX/M>rA4M2;"bs+jj8!9E8&jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I` jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5c@''BJ99jQ5F^ jl>F`jQ5I`jl>C_!;_QPL]N?gqMG6.!JuX/M>rA4M2;"bs+g]4M#)u.L]N?gqMG6.!JuX/M>rA4 M2;"bs+g]4M#)u.L]N?gqMG6.?AS[CjlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5Ia jQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOamf4)j jQ*sC%HHL1j5f=_jlGI`k3MU5rNlNS~> hZ%6dp@7G0jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajIr;J.%0+_R@'D0R$j;- R?s;/9)t=ZR?s8.Q^F2.R@'A0Q^=,,R$j>0R$a;.Q^O2-R@'D0R$j;-R?s;Z!<;).jl>F`jQ5I` jl>C_j5^4$jlGLaj5]7]jQ5IajQ,F_j5g:%jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7] jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGP' jEp"Kj5o=^jlGOajQ5F^jT+B'jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^ jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>D%jQ5I`jl>C_j5f=_ jlGLaj5YUMj5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLa j5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5^4$jlGLaj5]7]jQ5IajQ,F_j5g:% jlGOajQ5F^jl>F`jQ6F&Hfa;Jjl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOa jQ5F^jl>F`jQ5I`jl>C_j5f=_jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOajQ5F^jT+B'jQ5I`jl>C_ j5f=_jlGLaj5]7]jQ5IajQ,F_j(7?4jQ5IajQ,F_j5o=^jlGOajQ5F^jl>F`jQ5I`jl>C_j5f=_ jlGLaj5]7]jQ5IajQ,F_j5o=^jlGOa!9N8$jl>F`jQ5I`jl>C_j5cWhik._ij5]7]jQ5IajQ#@a lgjiLZi>O~> h>[cZr;69aq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV.!#q"X[[popr10W"TAV5C)cVZ!=qVPU+e !2T\oV$L'mq=sa\q"X[`p](;Y Pm.6`q"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[` p]gQhq"a^[q>L'mq=sa\q"X[`p]:3cOoPU[q"X[`p]gQhq"a^[q>L'g!0i`Q!;Q?bq"X[`p]gQh q"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQh q"a^[q>L'lq=sa\q"X:X"f;%hb=iEFp^?omq"a^[q=sa^r;Er$J,~> h>[cZr;69aq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV.!#q"X[[popr10W"TAV5C)cVZ!=qVPU+e !2T\oV$L'mq=sa\ q"X[`p]gQhq"a^[q>L'mq=sa\q"X[`p]gQhq"a^[q9i.9Fh's$i0Smq=sa\q"XaarNcHR~> h>[cZr;69aq=sa\rV-Tmq"X[[q"am`#5S&hq=sa\rV.!#q"X[[popr//uAB?V5C)cVZ!=qVPU+e !2T\oV$ [/^05"(X-ds7E;n;uioug8_IZmf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV%d7t1Hs*t~> [/^05"(X-ds7E;n;uioug8Y,Q`rGK-mf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV$d7t1Hs*t~> [/^05"(Ep`s7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls812=% \s&S~> [/^05"(X-ds7E;n;uioug8_IZmf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV%d7t1Hs*t~> [/^05"(X-ds7E;n;uioug8Y,Q`rGK-mf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV$d7t1Hs*t~> [/^05"(Ep`s7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls812=% \s&S~> [/^05"(3a]s7E;n;uioug8_IZmf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhUtcV>(Is*t~> [/^05"(3^\s7E;n;uioug8Y,Q`rGK-mf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhUtcV>(Is*t~> [/^05"'mFWs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls7Xc6 &YoAV~> [/^05"(3a]s7E;n;uioug8_IZmf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhUtcV>(Is*t~> [/^05"(3^\s7E;n;uioug8Y,Q`rGK-mf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhUtcV>(Is*t~> [/^05"'mFWs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls7Xc6 &YoAV~> [/^05"(3a]s7E;n;uioug8_IZmf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhUtcV>(Is*t~> [/^05"(3^\s7E;n;uioug8Y,Q`rGK-mf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhUtcV>(Is*t~> [/^05"'mFWs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls7Xc6 &YoAV~> [/^05"(3[[s7E;n;uioug8_IZmf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV#btetIs*t~> [/^05"(3[[s7E;n;uioug8Y,Q`rGK-mf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV"btetIs*t~> [/^05"(!IWs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8'u9 &u5JW~> [/^05"(3[[s7E;n;uioug8_IZmf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV#btetIs*t~> [/^05"(3[[s7E;n;uioug8Y,Q`rGK-mf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV"btetIs*t~> [/^05"(!IWs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8'u9 &u5JW~> [/^05"(3[[s7E;n;uioug8_IZmf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV#btetIs*t~> [/^05"(3[[s7E;n;uioug8Y,Q`rGK-mf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV"btetIs*t~> [/^05"(!IWs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8'u9 &u5JW~> [/^05"(3[[s7E;n;uioug8_IZmf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV#btetIs*t~> [/^05"(3[[s7E;n;uioug8Y,Q`rGK-mf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV"btetIs*t~> [/^05"(!IWs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8'u9 &u5JW~> [/^05"'R(Ps7E;n;uioug8_IZmf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV&eP6LIs*t~> [/^05"'R(Ps7E;n;uioug8Y,Q`rGK-mf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV&eP6LIs*t~> [/^05"'?kLs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8UVE $`!`P~> [/^05"'R(Ps7E;n;uioug8_IZmf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV&eP6LIs*t~> [/^05"'R(Ps7E;n;uioug8Y,Q`rGK-mf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV&eP6LIs*t~> [/^05"'?kLs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8UVE $`!`P~> [/^05"'R(Ps7E;n;uioug8_IZmf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV&eP6LIs*t~> [/^05"'R(Ps7E;n;uioug8Y,Q`rGK-mf*7ePaMLOW;i"\mf*7ePaMLOV#Tl`"fhV&eP6LIs*t~> [/^05"'?kLs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8UVE $`!`P~> [/^05")0Zns7E;n;uioug8_IZmf/FMW;i"\mf/FMV#Tl`"fhUudS:7Hs*t~> [/^05")0Zns7E;n;uioug8Y,Q`rGK-mf/FMW;i"\mf/FMV#Tl`"fhUudS:7Hs*t~> [/^05"(sHjs7E;n;uioug8_IZmf/FMW;i"\mf/FMV#Tl`"fhUsdS:7Hs*t~> [/^05")0Zns7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls7t)<% AWrR~> [/^05")0Zns7E;n;uioug8Y,Q`r?#=n\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s7t)<%AWrR~> [/^05"(sHjs7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s7ar:%AWrR~> [/^05")0Zns7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls7t)<% AWrR~> [/^05")0Zns7E;n;uioug8Y,Qp&>!lq#:[HTn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4- s7t)<%AWrR~> [/^05"(sHjs7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s7ar:%AWrR~> [/^05"( [/^05"(!lq#:,)mf/FMW;chtPe[8!mf/FMV#LDp nA#4-s815?%& [/^05"(*RYs7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8(/>%& [/^05"( [/^05"( [/^05"(*RYs7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8(/>%& [/^05"( [/^05"(,)mf/FMW;cht Pe[8!mf/FMV#LDpnA#4-s815?%& [/^05"(*RYs7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8(/>%& [/^05"( [/^05"( [/^05"(*RYs7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8(/>%& [/^05"(O'cs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8UD? /T~> [/^05"(F!bs7E;n;uioug8Y,QrVlitrr30&rrE'!rrE&u"9AH%rrE&u!!)!X!!)Q)!!)HeOoVH\ !!&8!!!)HeOoV"Gs*t~> [/^05"(Ep`s7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8C8= /T~> [/^05"(O'cs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8UD? /T~> [/^05"(F!bs7E;n;uioug8Y,Qr;Zcs&,uV0rr<'!rr<'!rr<'!!<2uu!9*qX!:di)!:KlM!3#nt !0k8!!:KlM!2TVp!:[c-WrN+F:(O-"J,~> [/^05"(Ep`s7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8C8= /T~> [/^05"(O'cs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8UD? /T~> [/^05"(F!bs7E;n;uioug8Y,Q`r?#=n\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8UD? /T~> [/^05"(Ep`s7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8C8= /T~> [/^05"(sHjs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8LJB% & [/^05"(sHjs7E;n;uioug8Y,Q`r?#=n\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8LJB%& [/^05"(a3es7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8CDA%& [/^05"(sHjs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8LJB% & [/^05"(sHjs7E;n;uioug8Y,Q`r?#=n\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8LJB%& [/^05"(a3es7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8CDA%& [/^05"(sHjs7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls8LJB% & [/^05"(sHjs7E;n;uioug8Y,Q`r?#=n\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8LJB%& [/^05"(a3es7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s8CDA%& [/^05"(3[[s7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls81/<% \s&S~> [/^05"(,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s81/<%\s&S~> [/^05"(*RYs7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s7t#:%\s&S~> [/^05"(3[[s7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls81/<% \s&S~> [/^05"(,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s81/<%\s&S~> [/^05"(*RYs7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s7t#:%\s&S~> [/^05"(3[[s7E;n;uioug8`'knc&Rhmf*7ePlC^`W;chtPlC^`mf*7ePlC^`V#LDpnG`Zls81/<% \s&S~> [/^05"(,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s81/<%\s&S~> [/^05"(*RYs7E;n;uioug8`'kn\>,)mf/FMW;chtPe[8!mf/FMV#LDpnA#4-s7t#:%\s&S~> [/^05"(3[[s7E;n;uioug8]](JH16$JH16$p](Jts81/<%\s&S~> [/^05"( [/^05"(*RYs7E;n;uioug8]](JH16$JH16$p](Jts7t#:%\s&S~> [/^05"(jBis7E;n;uioug8`'kJcC<$JcC<$[JpE1s81,;%\s&S~> [/^05"(jBis7E;n;uioug8Y,Q`r?#=JcC<$JcC<$[JpE1s81,;%\s&S~> [/^05"(X0es7E;n;uioug8]](JH16$JH16$p](Jts7su9%\s&S~> [/^05"(jBis7E;n;uioug8`'kJcC<$JcC<$[JpE1s81,;%\s&S~> [/^05"(jBis7E;n;uioug8Y,Q`r?#=JcC<$JcC<$[JpE1s81,;%\s&S~> [/^05"(X0es7E;n;uioug8]](JH16$JH16$p](Jts7su9%\s&S~> [/^05"(jBis7E;n;uioug8`'kJcC<$JcC<$[JpE1s81,;%\s&S~> [/^05"(jBis7E;n;uioug8Y,Q`r?#=JcC<$JcC<$[JpE1s81,;%\s&S~> [/^05"(X0es7E;n;uioug8]](JH16$JH16$p](Jts7su9%\s&S~> [/^05"( [/^05"( [/^05"(*RYs7E;n;uioug8]](JH16$JH16$p](Jts7t);$`!`P~> [/^05"( [/^05"( [/^05"(*RYs7E;n;uioug8]](JH16$JH16$p](Jts7t);$`!`P~> [Jq6DX/'>uO0a_"LPLV>LkpqINKB9K?("K[TqeH^hl=TpJcC<$JcC<$[JpE1s815=$`!`P~> [/V,[`KYr&s5)btl0Rj,nF5o7m-2cohMfq-`P&[\i2QbW`r?#=JcC<$JcC<$[JpE1s815=$`!`P~> [Jq6DX/'8sO0a_"LPLV>LkpqINK93K?'nEZTqeH^hl;5-JH16$JH16$p](Jts7t);$`!`P~> ]Dj;SiQJ[)P(e1-Ch.sRIt<3(KSG8 [/^0s"6/#'s7Gd_iR75DqsXdQhUBNVY3)_a!65$=!.k0$s+13$s0_k1WrMh@9F7KoJ,~> ]Dj;SiQJ[)P(e4.Ch.sRJ:W<)KS>2;M2[CQO+;;8G*SA\R[]e ^]-"La/b>OIt3*%K8"SsCh.sRIt3-&KnbA=MN!LRO+;;8G*SA\R@9Y:StMdOUSargl)MZ%JcC<$ JcC<$[JpE1s7ao7$)@NN~> [/^0s"6/#'s7Gd_iR75Dp$`(Ff#P;cWW3%=rr<%Ms+13$s+13XrroG&pX)Y@U]5i~> ^]-"La/kDPIt*$%K8"VtCh.sRIt<3(KSG8 _uDXW_4Q1$H?sseIt3*&K8"VtCh.sRIt<3(KSG8=M2R=PO+;;8GEnM^R[T_;StD^NUSXidW2fit m]+2*JcC<$JcC<$[JpE1s7ao7$)@NN~> [/^0s"6/#'s7Gd_iR75DnaHYIgW?qmWW3%=rr<%Ms+13$s+13XrroG&pX)Y@U]5i~> _uDXW_4Q4&H@($fIt3-'K8"VuCh8$SIt<3(KSG8 `rA9QWe>G9Fa&(VH@10kIt<6)KmJ&]A:9GeJ:`E-L51SBMiT:r!SV5C2i WiN5'Y-+krWl+mgs+13$s+13XrroG&pX)Y@U]5i~> [/^0s"6/#'s7Gd_iR75DmI12?e%bFQ!!(%=!!%TMJcC<$JcE.X"fhUsd7akAs*t~> `rA9QX+YP9Fa&(VH@1-jJ:`E+KmA#]A:9GeJ:`E-KnkJAMiT:r!SV5C2j WiN5(YHFtsWdt/$!.b-$!.b.F!!TD&p ao=fUTQG*lEcZAGGBnL\I"$QqJV&N.H@'L?I>r`,JqA]1LPUeFN/isLF-:^3QC+)/S=Q7DTqeBZ Vl6SpXK8S/Z*L^@Y4Sa4!.k0$s+13$s0_k1WrMqA:(X3#J,~> [/^0s"68)(s7Gd_iR75DlL4lBf>7*Z!!(%=!!%TMJcC<$JcE.X"fhV"cV>%Hs*t~> ao=fUTQG*kEH?8FG'J=ZI"$QqJV/T/H?sF=I>rc.JqJ`2LPUeFN/`mLF-Cd4QC+)/S=Z=FTq\ bl:>iV/gBgDJsN8F*2VLG^4U_IXcm!K7nr(HYm;@NIQJ1K7nr6Ll%%KNK8X3PBW:YR$jD5SXuII USFZ`W2Q_sXKJb2ZEppH[^*(1Wdt/$!.b-$!.b.F!!TD&qThnJU]5i~> [/^0s"68)(s7Gd_iR75DkO8Q>e@YITJH16$JH16$JH5HF"fhV"cV>%Hs*t~> bl:>iV/g?fDK'Q8F*2VKH$XgbIXciuK7el(H>R5@NIQM2K7nu7Ll.+LNK8X3PBW:XR$sM7SXuII USFW^W2ZeuXKA_2ZEpsI[^3.2Wdt/$!.b-$!.b.F!!TD&q9MeIU]5i~> ci6l8\q+L.C27X&DfKc [/^0s"68)(s7Gd_iR75DjR<63afbK?!!($=!!%TMJcC<$JcE.X"fhV"cV>%Hs*t~> ci6l8\q+L.C2@^(E,fl=F`hkPH@($gIt3*%K8"VtCh.sRIt3-'KnbA=MN!LRO+;;8G*SD]R[Tb; StD^NUSXidWN*&$Xg#(9ZaI6N\[o;VX88gr!62$i!.b-$!.b-W!!TD&q9MeIU]5i~> dJm5*TjqYHB5)*sCi402EcZ>FGBeC[I!pKpJV/T/H$X==I>r`-JqJ`2LPUhGN/`mLF-Cd4Q^F51 S=Z=FTq\ [/^0s"6/&(s7Gd_iR75DiU?lt\,<6+!62$i!.b-$!.b-W!!TD&pWH;EU]5i~> dJm5*TjqYHB5)*rCi402EcZ>FGBnL\I"$QqJV/T/H$X:;I>r`-JqJ`2LP^nHN/isLF-Cd4QC+)/ S"6.CTqeE[VPpGnX0&M-Z*L^C[^WfY]"G_bY5G:"!62$i!.b-$!.b-W!!TD&p<-2DU]5i~> e,NS"O'uO/AS,RhC2@^(DfKc [/^0s"6/&(s7Gd_iR75Dhs^[$^&G#3!62#=!.k0$s+13$s0_k1WrMh::(j?%J,~> e,NS"O'uO.A7fIfC2@^(DfKf=FEMePH$XjdIt3*&K8"SsCh.sRJ:W<)KSG8 ec/t$L0e4q@Uit]B4u$qCi402EH?5EGBeF[I"$QpJV/W0H$X==I>r`,JqJ`2LPUhHN/`mLF-Cg5 Q^F20S"6.CTqeBZVl6PoXK8P.Z*CXC[^N`X]=bhl^qmn$ZDrHUJH16$JH16$p](Jts7XW2&u5JW~> [/^0s"6/&(s7Gd_iR75Dh=(L&^T)hbJH16$JH16$p](Jts7a]3&u5JW~> ec/t$L0e7r@q0(^B5)*rCi+*1EcZ>FG'J=ZI!pKpJV/T/H?sC=I>r`,JqJ`2LPUhGN/`jJF-Cg5 QC+)0S"?4ETq\ fDf:.Kj7ni?t!MSAS5XiC27X'DfKc1:Za@0L\@T8a^;%J"_SjI//]MB&!.k0$s+13$s0_k1WrM\8 9+I`sJ,~> [/^0s"68,)s7Gd_iR75Dg[G7#36(su!.k0$s+13$s0_k1WrM_99+I`sJ,~> fDf:.Kj7ni?X[DRAS,RgC2@^(DfKc g&GXAN`fOj?!^lH@q0(^B5)*sCi+*1EH?5EG'J=ZI"$QqJV/T/H$aF?I>rc.JqJc3LPUeGN/isL F-Cd4Q^F20S"6.CTqeBYVPpJoXK8S.Z*CXB[^N]W]"Gbl^r""-`Q"pOG0"7q!:g)P!:KlM!3#p\ !:KlM!!`J's7=K.%\s&S~> [/^0s"68,)s7Gd_iR75Dg@,*j`r?#=nc+aPmf/FMW;i"\mf/FM#61_'oZ^#=U]5i~> g&GXAN`fRk?!^lG@Uit^B4u$rCi402EH?8FGBeF\I!pKpJV/T/H?sC=I>r`-JqJc3LPUhGN/`mL FHUg4QC+)/S=Q7ETqeBZVPpJoX/rJ-Z*L^C[^WcX]=bkm^r""-`Q,!PGK=@r!:g)P!:KlM!3#p\ !:KlM!!`J's7=K.%\s&S~> g])!_TN5/t>$PB??t!MSAS,RgC2@^(DfKf=F`qtRH?ssfIt3*&K8"VtDIn3TIt<3(KnbA=MMmFR O+;;8G*SD]R@9Y:StD^OUSXleW2co"Xg#(8Za@0L\@T;b]t_A!_o0O7WkH-6C [/^0s"68,)s7Gd_iR75Dg@,*j`r?#=nc+aPmf*7ePaMLOW;i"\mf*7ePaMaVs/Q+kbtAPAs*t~> g])!_T2o&s>$PB??t!PTA7fIgC2@^'DfKf=F`qtRH@($fIt3-'K8"SsD.S-TIt<3(KSG8 h#D0&@T?K3=^#'9?=72O@qB7bBPM@"DJsN7F*)PKG^4U_IXcm!K7el(H>[>CNIQM2K7nu7Ll%%K NK8X3P'3+WR$sJ6St;RJU8+Q^W2Q_sXKJb3Z*UjH\%'#]]Y;.r_8=.0`i?_d^q,EHAcMi$s,mBM rr<%`R/d5cs,mBMrr<%`R0N`lWrM\89+I`sJ,~> [/^0s"68,)s7Gd_iR75Dg@,*j`r?#=nc+aPmf*7ePaMLOW;i"\mf*7ePaMaVs/Q+kbtAPAs*t~> h#D0&@T?H2=^#':?=.,N@qB:cBkhF#DK'T8F*2VLG^=^aI=Hd!K7el(H>R5ANIQM2K8#&8Ll.+L NfSa4P'3+WR$jD4SXuIIU8+N]W2Q_sXKJe4Z*UjH\%'#]]Y;.r_8F41`i?_d^q,EHAcMi$rr<%` rr<&err<%`rr<%trr<%`rr<&err<%`rs&Q(WrM\89+I`sJ,~> hZ%NTKMkcL<`iL.>[:ZC@:E_XAnPdlCM[m,E,frAG'A1WH[L9lJ:W?*KmJ)`AUTPfJV&N-L51SB Mi<[WJTI#uQ'[l,R[fq?T:r$UV5L8jWiN5(YHb@=[C3QS]"5Pg^VI\'`5T`r]YD7u_Pq\&AcMi$ s,mBMrr<%`R/d5cs,mBMrr<%`R0N`lWrM_89+@ZrJ,~> [/^0s"68,)s7Gd_iR75Dg@,*j`r?#=nc+aPmf*7ePaMLOW;i"\mf*7ePaMaVs/Q+lbY&D?s*t~> hZ%NTKMkcL='/U/>?tQC@:EbXAnPdlCM[m-EH6,BF`r%VH[L9lJ:W?+Km@u]ApoYgJV&K,L51SA N/WdXJ9-ouQ'Rf+R[ft@TV8-UV5C2iWiW>*YHb@=['mHR\\#Mg^VI_'`5]fs]t_=u_PhV%AcMi$ rr<%`rr<&err<%`rr<%trr<%`rr<&err<%`rs&Q(WrM\79+@ZrJ,~> hu@]$:f1.j$P?>?t!PTA7oOhC2@^'DfB`2; MMmFRO+DA9G*SD]R[T_;StMdOUSXleWN*&%Xfo"7['d?O\@T8a^;%J"_o0O6WkH0^_8=+/Oj7P= !:g)P!:Kje!0ilO!3#p\!:Kje!0ilV!<9)!oZTr;U]5i~> [/^0s"68,)s7Gd_iR75Dg@,*j`r?#=nc+aPmf*7ePaMLOW;i"\mf*7ePaMaVs/Q+lbY&D?s*t~> hu@]$:f1+j$G<>?t!PTAS,RgC27X'DfKf=F`hkPH?sseIt*$%K8"VtD.S-TIt<3(KnbA> MMmFQO+;>9G*SA\R[Tb19ZaI6N\@T8a^;%J"_o0O6Wk?*^_8F42Oj7P= !:g'h!0mK`!:Kje!0mK`!3#nt!0mK`!:Kje!0mKg!<9)!o?9i:U]5i~> iW"&dJko3?;H-Xt=BSg4?!^oI@Uit]B5)*sCi401EH?8FGBnL]I"$QpJqJ`1H?sI?I>r`,JqJ`2 LPUhGN/isLF-:^3QC"#.S"6.CTqeBZVPpGnXK8S.Z*L^D[^WcW]=bkm^qmq,`Q"pk^;.S%_oB]s ER8:t!:g)P!:Kje!0ilO!3#p\!:Kje!0ilV!<9)!oZTr;U]5i~> [/^0s"68,)s7Gd_iR75Dg@,*j`r?#=nc+aPmf*7ePaMLOW;i"\mf*7ePaMaVs/Q+lbY&D?s*t~> iW"&dJko3?;cQgu=BSg4?!^oI@q0%]B5)*sCi433EH?8GGBeF[I"$QqJV/T/H?sF>I>r`-JqAZ1 LPUeFN/isLF-Cd4Q^F20S"?4ETq\ ir=5==%uIe;,U@n='/U/>?tQC@:E_WAnPgmCM[m,EH-&BF`r%VH@10kJ:`B*KmJ&\AUTPfJ:`E- L51SAMi<[WJ9-otQ'Rf+R[fq?T:r$TV5C/hWiN5(YHbC>['mER]"5Pf^VI\'`5Tcs]Y;1t_Sa@4 a2<_\AcMi$s,mBMrr<%`R/d5cs,mBMrr<%`R0N`lWrMY18IVBoJ,~> [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=nc+aPmf*7ePaMLOW;i"\mf*7ePaMaVs/Q+ja%6]7s*t~> ir=5==&)Of;,U@n<`iL.>[C`D@:NeXAnPdlCi"!-EH-&BFa&(VH@1-jJ:W?+KmJ&]A:9GeJ:`E, L51SBN/WaWJTI#uQ'Rf*R[ft@TV8-UV5C2iWiW;)YHb@=[C3QT]"5Pg^V@V&`5T`r]t_A!_Sa@4 a2<_\AcMi$rr<%`rr<&err<%`rr<%trr<%`rr<&err<%`rs&Q(WrMV08IVBoJ,~> j8XCq91quT:f1+i$G9=?t!MSAS,RgC2@^(DfKf=FEVkQH@($gIt3*&K8"SsCh8$SIt3-' KSG819Za@0M\@T8a]t_A!_o0O6WkH0__8=+/ `lQ9ES^M*M!:g)P!:Kje!0ilO!3#p\!:Kje!0ilV!<9)!o#F<1U]5i~> [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=nc+aPmf*7ePaMLOW;i"\mf*7ePaMaVs/Q+ja%6]7s*t~> j8XCq91quT:f:4l$G9=?X[DRA7oOgC2@^'DfKc jo9btHV$k'9i"S_;H-Xs=BSg3?!^lH@q0%^B5)*sCi+-2EH?5EG'J=ZI"$QqJqJ]1H$X:r`- JqAZ1LPUeFN/`mKF-Cd4QC+)/S=Q7ETq\ [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=nc+aPmf*7ePaMLOW;i"\mf*7ePaMaVs/Q+ja%6]7s*t~> jo9btHV-q):/=\`;H-Xs=BSg3?!^oI@Uit]B5)*rCi+*1EH?5EGBeF\I"$QqJV/T/H?s@r`- JqJ`2LPUhGN/`mLF-Cd4QC+,1S=Q7DTq\ k5Tq]>tIX]9MSA[;,U@n<`iL/>[:ZC@:E_WAnPdlCMdp-EH-&BF`r%VH[L9lJ:W?*KmJ)]A:9Ge J:`B,L51SBMiT:r$TV5L8kWiW;)YHbC>[C3QS]"5Pf^V@Y'`5Tcs]tV:u _Sa@4a2uKIc,"kZAcMi$s,mBMrr<%`R/d5cs,mBMrr<%`R0N`lWrM\58IM [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=nc+aPmf*7ePaMLOW;i"\mf*7ePaMaVs/Q+jb"2u9s*t~> k5Tq]?:[[]9MJ;Z;,^Ip<`iL/>[C`D@:NeYAnPdlCM[m-EH6,BFa&(VH@10kJ:`B+KmJ&\@sj8c J:`E,KnkJAN/WdXJ9-lsQ'Rf*R[fq?T:r$TV5C2jWiN5(Yd(I>['mEQ]"5Pg^VI\'`5]fs]t_A! _Sa@4a2uKIc,"kZAcMi$rr<%`rr<&err<%`rr<%trr<%`rr<&err<%`rs&Q(WrMV38IM kPn]"7Rp!A92&&U:f1+i$G9=?X[DRAS,RgC2@^(DfKf=F`hnQH?ssfIt3*&KS=_uCh.sR It3-'KSG8 [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=nc+aPmf*7ePaMLOW;i"\mf*7ePaMaVs/Q+jb"2u9s*t~> kPo207Rp!A91quT:f1.j$G<>?X[GSAS5XhC2@^(DfB];FEVkRH$XjeIt3-'KS=_uCL_dP J:N6(KS>2;M2R=QO+;;8GEnJ]R[Tb;StMdPUnsreW2cr$Xg#(8Za@0M\[o?i]Y2(q_8=.0a/Zhe ^qmn*`Q#s?b0/#Sc\g:c!!)Qh!!&8`!!)He!!&8`!!&tt!!&8`!!)He!!&8`#6=e(s7+6'$`!`P~> kl23s6q0[;8kViQ:Jand<)m!nq#CS(AS5XhCAe-?.WTTPFa&(VH@10kJ:`B*KmJ&\A:9GeJV&K, L51SAMi f`(s+q#CE`r;Z]q!+59rs7-9Og$o%6n,qXtnC$%[!7Jme!!)QhOoXqM!!&7O!!&ttOoXqM!!&7O #6=e(s7=B)$`!`P~> kl23r6q0[;8P;`P:Jand<)m!nq#CS(AS,RgCAe-?.WTTPF`r%VH[L6kIt<6)KmA#\A:9GeJ:`E- L51SBMi[C3QS\\#Mg^VI\'`5Tcs]t_A!_Sa@4 a2uKJc-FY^Q.KUJ!:g'h!0mK`!:Kje!0mK`!3#nt!0mK`!:Kje!0mKg!<9)!n]FE2U]5i~> l2MEi6:F@684cHJ:/=\`;cHat<&u<'!,WiD@:X"`BPL!n!(9t1F*2VLG^=^aI=HcuK7el(H>I,? NIZS3K7nu7Ll.+LNfSa4P'3+VR$jD4SXuIIU8+Q_W2ZeuXfen4Z*UgG\%'#\]Y;.r_Sa=2a/Zhe ^qmn+`Q$!@b0/&Tcd:+2fOb*`nc+aPmf*7ePaMLOW;i"\mf*7ePaMaVs/Q+jb"2u9s*t~> f`)$EVe5l-!`c/pr;QntH3'PWnc/X["6/#'s7Gd_iR75Dg@,*j`r?#=nc+aPmf*7ePaMLOW;i"\ mf*7ePaMaVs/Q+jb"2u9s*t~> l2MEi6UXC684cHJ9i"S_;cHat<&u<'!,WiE@:a%`BPL$o!(9t1F*2VLG^=[`IXcm!K7nr)H>@#= NIQJ1K8#&8Ll.+LNfSa4PBN4XR$jG6St;RJUSFW_W2Q_sXKJb3Z*UjH\%'#\]Y;.r_8F41`i?_e ^qmn*`Q$!@b0/&UcdC13fOb*`nc&RhPlC^`mf*7ePlC^`W;chtPlC^`mf*7ePlCsgs/Q+hb"2u9 s*t~> lMhTd6:4127nHE^AnPdlCb$NEEH-&AFa&(VH[UTV8*TUo()hWiW;)YHb@=[C3NR]"5Pg^VI\'`5Tcs ]Y;1t_Sa@4a2uKIbg+P^daOoCAcMi$s,mBMrr<%`R/d5cs,mBMrr<%`R0N`lWrM\.8._QrJ,~> f)Gd8"o\K%0DYVKAOGqds7-9Og$o%6n,qXtnC$%[!7Jme!!)QhOoXqM!!&7O!!&ttOoXqM!!&7O #6=e(s7=-!&>T8U~> lMhTe6:+(07n?6F92/2Y;,U@n<``F%!r`1;&n>E_AnPgmCF^EDEH-&BFa&+WH[L6kJ:W?*Km@u\ A:0AdJV&N-L51SBMi<[WJTHutQ'Rf+R[]k>T:r$TV5L8kWiW>*YHb@=['mHR]"5Pf^VI_(`5]it ]tV:u_Sa@4a2uKIbg+P^daXuDAcMi$rr<%`rr<&err<%`rr<%trr<%`rr<&err<%`rs&Q(WrMV, 8._QrJ,~> li.`d5sdq,7Rp!A92&&U:f1.k['mHR]"5Pf^VI\&`5T`r ]tV:u_SjF5a2lEHc-FY^daQ^@g1C ec,VIr;Zi?qu6`h%&`Ros7-9Og$o%6n,qXtnC$%[!7Jme!!)QhOoXqM!!&7O!!&ttOoXqM!!&7O #6=e(s7=-!&>T8U~> li.`d5sdq,7Rp!A91quS:f1.jVh^V@V&`5T`r ]Y;1t_SjF5a2lEHc-FY^daZgBg1C m/Ilh5T8U~> ec,WWr;Zh/qu6_d'):qqs7-9Og$o%6n,qXtnC$%[!7Jme!!)QhOoXqM!!&7O!!&ttOoXqM!!&7O #6=e(s7=-!&>T8U~> m/Ilh5T8U~> mJe&r5!M;!6UX@584lNJ9i"S`;cHat=BSg3$N:#3"^YbPB4u#q0,XTe!\AP.qZ%OcK7el'H>,Jc $j$_W97VbPLl.+LNK8U2P7[Wl)`hXW#R28JT;JQdWi0_u+:J>V&M@Ik]">VgKDPWaWe`/0"rkM# `lH0CbKS8XdF-Lof%6PLAcMi$s,mBMs,mA\s,mBMs,m?ds/Q+eZTekns*t~> ec,[K*<#p=%.jDs!]4dRqu?e*s4dDNrVuog#i("t'a510M mJe&r4[25!6:=7484lNJ9i"S_;cHat=BSg2$N:#3"^YbPB5))r0,XTe!\AP.qZ%OdK7nr)H>#Db $j$_W97_hQLl%%KNK8X3Oq@Nk)`hXW#R28JT;SWeWi'Yt+:J>V&M@Ik]"5PfKDPWaWeW)/"rkJ! `lH3DbKS8Xd*gCmf%6MKAcMi$s,mBMs,mA\s,mBMs,m?ds/Q+cZp+tos*t~> mf+3,4Zu"p6:4.17n?3E9288Z;,^Fo<`iL/>V>sT#s;d2B5(BH=]%ch!!FirF&3qV!#pKAK8"Ve '*&"X:E]]<(jUmmMMmFQO+;;8>Aa<=*=j&q:]pau+IoC0Wg3Vb3,!!73B !WE'2`5Ta;ai_fOcHjndeC<%$fU(E+!!)Qh!!&8`!!)He!!&8`!!&tt!!&8`!!)He!!&8`#6=e( s6d3X%& eGfMsr;ZherVm#H!7JKWr;Zt-s7<-Pr;cfr$hDdq!!#?O4obR5f_Y(?iR74iYl+P-(FYAi#64`V i;W3RdJs8AP*TGW!!!P:rpTut1_]ff!fd9^rW(.A!!)Qh!!&8!!!)HeOoVH\!!&8!!!)HeOoP^d WrMLn57F=eJ,~> mf+3,4[)(r6:4.17n?3E9MJ;Z;,^Fo='/U/>V>sT#s;a2B5(BH=\q]g!!FisF&3qV!#pKAKS=\e '*&"X:E]]<(jUmmM2[CQO+;;8>Aa<=*=j&q:]pau+If=.Wg3Vb3,!!73B !WE'2_o9X:ai_fOcHjkce'ut#fU(E+!!)Qh!!&8!!!)HeOoVH\!!&8!!!)HeOoP^dWrMFm57F=e J,~> n,F?A4$>_k5XIh,7Rp!A91quT:f1+i$Fo'!!sBOB4kp0(2Rl,r;ZsOGBeEcr;[dfK7nr$ '`\4:Kn"=M!!"-rM2@.LNK8X3PBN5i!!E=ZStAdW!"1idWN)6a7'El$ZY9=<"qIfK]t_?Rr;[ZG C:UJm!5ujra2uKI]?\aLdaZgtf@\-&hIZ`fnc&RhPlC^`mf*7ePlC^`W;chtPlC^`mf*7ePlCsg s/Q+eZTekns*t~> eGfR,!WE'!2Z_3UZe6"Q@eudd[28"9Qs>n9+^1 !*&se!n%'SrU9fDrVus3iVi6G=oA=('T`%P0*(kK!7LZB!7K^'!!)Qh!!&8!!!)HeOoVH\!!&8! !!)HeOoP^dWrMLn57F=eJ,~> n,F?A4$>_k5XIh+7Rp!A92&&U:f:1j$Or'!!sBNB4kp0(2Rl,r;ZsOGBeEcr;[dgK7el# '`\4:Kn"=M!!"-rM2I4MNK8U2P'3,h!!E=ZStAdW!"1idWN)6a6a*c#ZY9=<"qIiL]t_?Rr;[ZG C:^Pn!5ujra2uKI]?\aLdaZdsf@\0'hIZ`fnc&RhPe[8!mf/FMW;chtPe[8!mf/FM#61_'m'Jtc U]5i~> nGaN[4?G\i5=%V&6q0[;8kViQ:Jane<)m"%=^#'9)>sO@;J'QP#!m'BDuBY=/9c>b0)YbQJqJ`2 7fEAj*0#H!*<#pG?AOGrN/`mLF-Cg5r;Zs@SXuI&rW!<,P,PCS e,KD9r;[#Ks8Va%RK!6b!!$C*rr?F)!<)otN;`e[2uiC:2#[ITW;H&eiR75DnGN=e/H5,=]`%m8 !mpH+iHWcKn,V>D!!&8^n,QVi!!#gorrJMiqYpQDq#:KFs8N'!iVrlXnc&RhPe[8!mf/FMW;cht Pe[8!mf/FM#61_'mBT%jU]5i~> nGaN\4?G\i5sO@;J'QQ#!m*DE;]b>/9Z8a/c>YPJqJ]0 7fEAj*0#H!*<#pG?AOGrN/isMF-Cd4r;Zs@SXuI&rW!<,P,YIS nc'['=#rE+4[25!6UaI784cHJ9i"S_;cQh!=BSg4?9\;f#V0M"5Qtb9DK#IR">"bBH7f'q"G)2X Kc^3n"=fC\JL^X!$SI6mN/WaWJ9-otQ2L[c17b#/PPkIgA#QE/XKA_3Z*Uk:!!Q64]t_ e,KEHr;[";s8SVto)A[f!!$C*rr?F)!<)ot4T5<`;#g%S:At4n;Z#qdiR75DnGN=e9`FM]g\h*P Nq`&A!!$^2n,QVi!!&Vgs8UL]s3f?qs3grIdaJ0Ds3gqqs0D\)!94"Y!:g'h!0k8!!:KlM!3#nt !0k8!!:KlM!!`J's6[*Y&YoAV~> nc'['=#iB+5!M;!6:F=584lNK9i"S_;H6^u=BSg4>sA2e#V0M"5m:k:D/]@Q">"bBH7f'q"G)2X Kc^3n"=fC\JL^X!$SI6lMi<[WJ9-lsQ2L[c17b#0PPkIgA#QE/XKJe4Z*Uk:!!Q64^;%HSr;[gf ]Y;1t_QpMf[^XE&]?eg;^sg0O`Rr5cX))AJiar/jnc&RhPe[8!mf/FMW;chtPe[8!mf/FM#61_' la&niU]5i~> nc'\U3B9/a5!M;!6UXC684lNK9i"S_;cQh!=BSg4?!@R5!!id9G*W"+"?E'FT:Po\#YM%qX.roK%KlS."\-/=^VED=!$%WE ^;%Lg_o9X:agfO+cb7]ReABeUfZ2b&[q5X"AcMi$rr<%`rr<&err<%`rr<%trr<%`rr<&err<%` rs&Q(WrMFk64p!mJ,~> e,KID'E.t7&GH,`@/^-(!!$C*rr?F)!<)ot')hk6;!6Nb:]:=o*W,=/iR75DnGN=e=T7dilMU\_ CB!]*jFB3'"T&0!>5dpj=oA=#`;T]9des+Jdf7bqdf07Ldf7bqdf'1G!94"Y!:g'h!0k8!!:KlM !3#nt!0k8!!:KlM!!`J's6[*Y&YoAV~> nc'\U3BB5a4[21u6UaI784lNK:/=\`;cQgu=BSg3?!@R5!!id=B,;t4Ci41i!!FisH$V(@!!Ik* K7sX2!!Fd%F*0#4!"0?oM2R=PO+;;7GEr+,"?E$ET:Po\#YM(rX.roK%KlS."\-/=^VED=!$%WE ^V@Uh`5Ta;agfO+cFqWRe&'YSfZ2b&[q5X"AcMi$rr<%`^]4B&s,mA\rr<%`^]4B&s,m?ds/Q+b ZU,8!s*t~> o)Bi(3&ru]4Zu"q6:4.17n?6F9MJ;Z;,^Fo='/U/>?tPbr;['g<<,m3Ci41i!!FirG^;"@!!Ik* KS9L$!"/j`M2R=QO+DA8G*W"+"?N*FT:l,_"@B)fR25c%!\eV;r;[!i]Y;.q8GrN-WP-'^_6Ckt `jN:cbIc'5d*gF\f#?:^gYCUpiFW&inc&RhPlC^`mf*7ePlC^`W;chtPlC^`mf*7ePlCsgs/Q+c Z9f.us*t~> df0;cr;ZqodK%5as8;ot?iL'*?i:!'rr<2q!!*5jr9sjJddY]Sr;Zh#rpTpVr;Zt,nF5!NrW!!c R%=0U!*T9i!*T7#!7:]E!7LlHrmCoKdf7bprrgdMdf7bprr?Whrr<&hrr<%`^]4B&s,mA\rr<%` ^]4B&s,m?ds/Q+dZ9f.us*t~> o)Bi(3&s#^4Zu"q6:4.17n?3E9MJ;Z;,^Ip<`iL.>[:Ybr;['g<<,m3Ci41i!!FirG^:t?!!Ik* K7sC#!"/j`MMmFQO+DD:G*W"+"?N-GTV25`"@B)fR25c%!\eV;r;[!j]Y;.q8GrN-WP-$]_6Chr `jW@dbIc'5d*^=Ze]$1^gYL[qiFW&inc&RhPe[8!mf/FMW;chtPe[8!mf/FM#61_'la&niU]5i~> oD]uW2E*WW4$>_k5sdq-7Rp!A92&)V:f1.j$P?>:]17u(b?55Ci"!.r;ZsOGBeEbr;ZtO K7ejarW!!DC1$sK%:`p[L5ChINK8X3PBW;j!!GimW]g=]!u.lD[J^(/7D-@L^I\;' *3-]e^qm7m`Q#@.\BDJ0^!Y9X_q)fZaP5LnhhL-&!!)Qh!!&8`!!)He!!&8`!!&tt!!&8`!!)He !!&8`#6=e(s6[?`%\s&S~> df0 oD]uW2E*WW4$>bl5sdq,7Rp!A91r#T:f:4k$P?>:]17u)(Z>6Ci"!-r;ZsOG'SBbr;ZtP K7ejarW!TUC1(IY@Uiq[L5ChINK/R2PBN5i!!GilW]g=]!u.lD[J^(/7_HFL^e"D( *3-]e^qm7n`l>F.\BDM0^!P3W_Uc]YaP5LnhhC'%!!)Qh!!&8!!!)HeOoVH\!!&8!!!)HeOoP^d WrMFs6k6!lJ,~> o`$08<&QZq3]fGf5=%V&6q0[;8kViQ:JaneOnU]5i~> dJj2)r;Zj+MulOa';#LCmrr>%X!!,^lo^E"BddY]Sr;ZgkrpTpBr;Zq[nF.(i!!#pr nGN=e=oIgi=oA=#des.FdLcH,df7bDs8UNqs8UNqs3grHdK$Q3rr<&hrr<%`^]4B&s,mA\rr<%` ^]4B&s,m?ds/Q+e\O$e$s*t~> o`$08 o`$.o1c@9Q3]oPg5=%V'6q'U:8P;]N:Jand'+p4SJV&M\!]c*oMiYdF-Lne_&O-gYL]Ci2u$O!!)Qh!!&8`!!)He!!&8`!!&tt!!&8` !!)He!!&8`#6=e(s6[?`%\s&S~> dJj38r;Zj%lMUY^)#aL8:&b.m/,]JHrr@`O!!+8CrU9lg"(hB!"Q@eudd[28!%e-=!5&41"9Hm= n-/dk"&eXXk5>8[=oIgi=oA=#d`2:e!:g'h!0k8!!:KlM!3#nt!0k8!!:KlM!!`J's6dEa%\s&S~> o`$.o1c@'+p4RJV&M\!]c*pMi<[WJTHutQ2L[c*M/jpIf9 p&?>X1c.*M3BB8c4[25!6UX@584cHJ9i"S_;cHau=BSg3?!^lC"TAB+,%t_,Ci4/9rW!$2GBdTp !!Rq+KS=LYrW!RCIt<3$*Wg;:MMmFQO+;;7GEr+,"9F@NT2,@c"?NK\WYYR6!u\AMG5VCE7_HIM ^e"D(*iclf^qmn+`l?'@b0/#ScdC1ieCN7(g=tE=hr3RNjCSAlnc&RhPlC^`mf*7ePlC^`W;cht PlC^`mf*7ePlCsgs/Q+c]L*+&s*t~> dJj7<$iU,+;u?Rp:]:=r+TDDcquH]q!TkI&!!'P.n,qo6"3:<."Q@eudd[28"9R!?n9"X0!*&se !$D1?"![1&SG`Ef=oIgi=oA=#d`2:e!:g'h!0k8!!:KlM!3#nt!0k8!!:KlM!!`J's6[Hd%& p&?>Y1c70N3B9/a4[25!6:F@684lNK9i"S_;H6^t=BSg4?!^oD"TAB+,%t\+Ci42:rW!$2GBdTp !!Rt,KS=LYrW!RCIt<3$*Wg;:MMmFQO+;;7G*W"+"9F@NTMGId"?NK\WYYR6!u\AMG5VCE7D-@L ^e"D(*icle^qmn+`l?'@b0/&Tcd:+heCN7(g"Y?=hVd@KjCSAlnc&RhPe[8!mf/FMW;chtPe[8! mf/FM#61_'m(PgqU]5i~> p&?=@1c.*L3B92b5!M;!6UaI784lNK:/=\a;cHau='8^3?!^oI-N3uM8ni$UCi42jr;ZpC1CP#s !#nmGK8"V`%KHJ53`/Hc!`4Z.MMmFQO+DA9G*W"+$k=1_:]pau+.B.,W`&cq!\[+dr;[!QH_e#t 0DtklDg]=8_8=.1`lH3DbK\AZd*gCmf%AX/gYL]CiSr&AAcMi$rr<%`rr<&err<%`rr<%trr<%` rr<&err<%`rs&Q(WrMFu6O]aiJ,~> d/O)SrVur,qu6Z/r;ZphCDeZ$!"Z!?s8VZ4*<6'IDO?20"-EBK"Q@eudd[28#SnhNGQn-J/`6Qs !-8# p&?=@1c.*M3BB5b5!M;!6UaI784lNK:/4V_;cHat=BSg4?!^lH-2mlL8n_sUD/O8jr;ZpC1(4or !#nmGKS=_a%KHJ53`/Hc!`4Z.M2[CQO+DA9G*W"+$k=4`:]pau+.K4-W`&cq!\[+dr;[!QH_e#t 0DtklDg]:7_8=+/`lQ9EbK\>Yd*gFnf%8R.gYCWBiSr&AAcMi$rr<%`^]4B&s,mA\rr<%`^]4B& s,m?ds/Q+c^-`=(s*t~> pAZq?1,LjH3&s#]4[)(q6:4.17n?6F9MSA[;,^Fo<`iL.>[:ZD@8$Y$$ta0fCi+'.EBsa,!!3R0 /c5Se*eT/lHY,8[$NUDF1i%i$Ll.+LNK8X3P'3,h!"Cu&+pS8j<1g%dWN)jUr;ZjSU&+fjELut+ *PT>*_SjF5a2uKIbg+P^daZdsf@\g3gtgiFio6ZnAcMi$rr<%`rr<&err<%`rr<%trr<%`rr<&e rr<%`rs&Q(WrMFu6O]aiJ,~> d/O6f!!"&OKNlUqqa8Z,>nc&RhPe[8!mf/FMW;chtPe[8!mf/FM#61_'mCYdpU]5i~> pAZq?1,LjH3&s#]4Zu"q6:4.17nH@(WD@8$Y$$ta3gCM[m-E'XX+!!3R1 0)P\f*eT/lH=o2Z$NUDF1i.o%Ll%%KNK8X3PBN5i!"Cu&+pS8j<1]tcW2c^Sr;ZjSU&+fjELut+ *PT>*_SjF5a2uKJbg+P]daZdtf@\d2h;-rGio?`oAcMi$rr<%`^]4B&s,mA\rr<%`^]4B&s,m?d s/Q+c^-`=(s*t~> p]"F_2DR*G2E*WV4$>bl5XIh,7Rp!@92&&U:f1+j$P?>?X[DRAS,RgC2@^(DfKc5Vh^V@V&`5]fs]tV:u_SjI6a2uKIbg+P^daZdtf@\d2gtglGio8p;k%4Snnc&RhPlC^`mf*7e PlC^`W;chtPlC^`mf*7ePlCsgs/Q+b\jR%'s*t~> _uBl.\Z<^Gp](9a"6%o%s7Gd`iR75DnGN=e=nM1ccD@PlnaHP,`r?#=nc&RhPe[8!mf/FMW;cht Pe[8!mf/FM#61_'m(,RpU]5i~> p]"F_2D[0I2E3]W4$>_k5sdq,7Rp!@92&&U:f1.j$G9=?X[DSA7fIfC2@a)E,fo7 p]"EN0f(XC2E*WW4?Yhl5XIh+7Rp!A91r#T:f1.k$PB??t!PTAS,RhC2@^(E,fl=FEMeP H?sseIt3*&KS=_uCL_dPIt3-'KSG8[C3QS ]"5Pf^VI_(`5T`r]tV:u_SjF5a2uKJbg+P]daQ^rf@\g3gtgiFioB+(k%4Snnc&RhPlC^`mf*7e PlC^`W;chtPlC^`mf*7ePlCsgs/Q+b\jR%'s*t~> [/^0s"6%o%s7Gd`iR75DnGN=e=lAcLd`2:e!:g'h!0k8!!:KlM!3#nt!0k8!!:KlM!!`J's6R p]"EN0etOA2E*WV4$>_k5XIh,7Rp!A92&&U:f1.j$P?>?t!PTAS,RgC27X'DfKc q#=RR0/57>2)[ES3BKAf5@#=NIQM2JqSi5Ll%(LNfS^3PBN5i!(/f=StMdOUSOccW2cr#Y-5+8ZaI6N \[oAb^;%G"_o0O7WkH0__8=.0`lQ9EbK\AZd*gCme_&O.gYL]Ci8WeXjEp'%!!)Qh!!&8`!!)He !!&8`!!&tt!!&8`!!)He!!&8`#6=e(s6I6a%\s&S~> [/^0s"6%o%s7Gd`iR75DnGN=e=lAcLd`2:e!:g'h!0k8!!:KlM!3#nt!0k8!!:KlM!!`J's6R q#=RR0/,1=1c@6u=NIQM2K7nu7Ll..MNfS^3PBW;j!(/f q#=QH0/54=1c@@&>NIQJ1K7nu7Ll%%KNK8X3P>l#i!(/)GStD^OUSXidWN*#$Y-5+9Za@0M \[oAb]t_A!_o0O7Wk?'\_8=.0`lH3DbK\>Yd*^@mf%8R-gYCZCi8WeXjL+/_JH16$JH16$ZiC90 s6I6a%\s&S~> [/^0s"6%o%s7Gd`iR74[Sc&Nh3h>7!!7JmeJH16$JH16$ZiC90s6R q#=QH0JP=>1c@9Q3BTDe5=%V'77Kd<8P;`P:Jane<)lt$=^#'9?=72N@qB:cBPM=!DK'T9F*2VL G^=[`I=Hd!K7nr(H>6rbrh!(/)GStMdPUnsreWN*&$Xg#(8ZaI6N \@T8a]t_A!_o0O6Wk?'\_8=.0`lQ9EbK\>Yd*gFne_&O.gYL`Di8WeXjL+/_JH16$JH16$ZiC90 s6@9c%\s&S~> q>X[T/het81c70M3B9/a4[;8!6UX@584lNJ9i"S_;cQgu=BSg3?!^oI@Uiq]B5)*sCi433EcZ>F GBeF[I"$QqJV/W0H@'Frc.JqJc3LPUeFN/`mKFH[:4!'[!ITq\HK\r@!.k0$s+13$s0_k1 WrMh171,giJ,~> [/^0s"6/#'s7Gd_iR739q>fLD!7Jme!!%TMJcC<$JcE.X"fhUs_F4g,s*t~> q>X[T/h\q71c.*M3BB8c5!M;!6UXC684lNK9i"S_;H-Xt=BSg4?!^lH@q0%]B4u$rCi+*1EcZAG GBeF[I"$QqJV/T/H?sCrc-JqJ`2LPUeFN/isMF-@13!'[!HTqeBZVPpGnXK8S/Z*CXC[^WcX ]"Gbl^r""-`Q,!l^VI\&`5Ta:ai_fNcHjkceC<($f\5*9h;@/Lj8S*>HK\sl!.b-$!.b-W!!TD& pVTH-U]5i~> q>Ykr/h\n61c73N3B9/`5!M;!6UaI784cHJ9i"S_;cQgu=BSg3?!^lH@Uit]B5)*sCi433EcZ>F GBeCZI"$QqJqJ`1H$X:;I>r`-JqJ`1LPUhHN/isMF-Cg5QC+,0S=Q7ETqeBZVl6PoXK8P-Z*CXC [^N`X]=bhl^E^S3`5Tcs]tV:u_Sa@4a2uKIc-FY^daQ^rf\"p4h;-uIioC%!!3k[!!!%TMJcC<$ JcE.X"fhUs_F4g,s*t~> [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=JcC<$JcC<$[JpE1s7aB!$D[WO~> q>Y_n0/#%91Gh!K3BB5a4[25!6:=:584lNK9i"S_;cHat=BSg3?!^oI@Uit]B5)*rCi402EH?5E G'SC[I"$QqJV/T/H?s@:I>r`-JqJc3LPUhGN/`mKF-Cd4QC+)/S=Q7DTqeBZVPpJoX/rG,Z*C[D [^WfY\gP/)^VI_(`5T`r]Y;1t_SjF5a2uKIc-FY^daZdtf@\d2h;-rGio9su!3k[!JH16$JH16$ ZiC90s7aE#$D[WO~> qYtd//hSe31,LgG3&s#]4Zu"p6:+(07n?3E9MJ;Z;,^Fo='/U/>[:ZC@:E_WAnPdlCi"!.EH6,B G'8+VH@10kJ:W?*Km@u[A:9GeJ:`E,L51SAMiYd*gCmf%8R.gYCWBi8Werj8n:Zl"0nqJcC<$ JcC<$[JpE1s7aB!$D[WO~> [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=JcC<$JcC<$[JpE1s7aB!$D[WO~> qYu$6/hSe31,LjH3&s#]4Zu"q6:4.17nH?tQC@:NeXAnPgmCM[m,EH6,C Fa&+WH@1-jJ:W?+Km@u\@sj8cJ:`B+L51SAMi<[WJ9-otQ'[l,S"-%@T:r!SUo1/iWiN5(YHY== ['mHS]"5Sh^V;#0_o0O6Wk?*^_8=.1`lQ9EbfnAYd*gCme^rI,gYL]Ci8Werj8n:Zl"5JHJH16$ JH3%W"fhUs_aY!.s*t~> qYtc1/M8\21GgpH3&s#]4[)(r6:4.07n?6F9MJ;Z;,^Fo='/U/>[:ZC?t*VWAnPgmCM[j+EH-&B Fa&(VH@10kIt<6*Km@u[@ss>dJV&N.L51SBMi<[WJTHutQ'Rf*R[]n?TV8-VUo()iWiW>)YHb@= ['mCm\@T;b]t_A"_o0O7Wk?']_8=.1`lQ9EbK\AZd*gFne^rI-gYL]Bi8Weqj8bn [/^0s"6%o%s7Gd_iR75Dg@,*j`r?#=JcC<$JcC<$[JpE1s7 qYu#8/MAe41GgpH3&s#^4Zu"q6:4.17n?6F92/2Y;,^Fo<`iL.>?tQC@:E_WB4kmmCM[j+EH-&A Fa&(VH@1-jJ:W?*KmJ&\A:9GeJV&N-L51SAMi<[WJTI$!Q'[l,R[]k>TV8*TUo1/jWiW;)YHb@= [C3NR]"5Pf^VKld+iM@>WkH0__8=+/`lH3DbK\>Yd*gCme^rI,gYL]CiSrnrj8bn qYtV3/MAb31,LgG3&s#^4[)(q6:4.17n?6F9MSA[;,^Fo='/U/>[:ZD@:NeYB4kmmCM[m,EH-&B Fa&(VH@1-jJ:W?*KmA#\@ss>dJV&N-L51SBMi<[WJTR*"Q'Rf*R[ft@T:r$TV5C2iWiW;)Yd(Gc Za@0M\@K5a^;%J#_o0O6WkH-^_8=+/`lH3DbK\>Yd*gFnf%AX.gYL]Ci8Wbpj8dQkAcMg^s+13$ s+13XrroG&o=II)U]5i~> [/^0s"6%o%s7Gd_iR75Dg@,*j`r?#=JcC<$JcC<$[JpE1s7 qYtV3/MAb31,LgG2`Wo\4Zu"q6:4127n?6F9MJ;Z;,^Ip<`iL.>[:ZC@:NeYAnPdlCM[m,EH-&B F`r%UH[L6kIt<6*KmJ&\@ss>dJV&N-L51SBMiTV8-UUo()iWiW;(YHb>b ZaI6N\@T;b]t_A"_o0O7WkH0__8=.0`lH3DbK\>YdF-Opf%8R-gYL]Bi8Wbpj8dQkAq9r5!.b-$ !42_0WrMV'8.q]tJ,~> qu:WV/M/V/0f(XC2E3]X4?Ykm5sdq,77Tp@91quT:f1+i$G9=?XR>QA7oOgC2@^(DfKc< F`hnRH@($gIt*'&KS=_uCLhjQIt3-&KnbA=M2[CQO+DA9G*SD]R[Tb;StD^OUSXidWN*&$19Iaa Z*UjH\%0)^]Y2(q_8F41a/Zhe^qmn*`l?*Ab0/&Tcd:+ie^`:(g=tE=hr*MSr8[j5l=L"rJcC<$ JcC<$[JpE1s7 [/^0s"6%o%s7Gd_iR75Dg@,*j`r?#=JcC<$JcC<$[JpE1s7 qu;#a/M/V/0etRB2E3]X4$>bl5XIh,7Rp!A92&&U:f1.k$P?>?t!MSA7oOgC2@^(DfKc< F`hnQH@($gIt*$%K8"VtCL_dPIt<3(KSG8hr*JQr8[j5l=PSIJH16$ JH3%W"fhUm^.8m3s*t~> qu;"m/M/S.0etRC2E3]X4$>_k5sdq,7Rp!A92&&U:f1+j$P?>?X[DRAS,RgC2@^(E,fl= F`hnQH?sseIt*$%K8"VtCLqpRIt<3(KSG819 Za@0L\[o@"]Y;.r_Sa=2`i?_d^qmn+`l?*@b0/&Tcd:+ieCN7(g=tH>hr3STr8[jal=L"rJcC<$ JcC<$[JpE1s7X/p /T~> [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=JcC<$JcC<$[JpE1s7X/p /T~> qu:bf/M/S.0etRB2E3]X4$>_k5sdq,7Rp!A92&&U:f1.j$G<>?t!PTAS,RhC2@^'E,]f< F`hnQH?sseIt*'%KS=_uCh8$SIt<3(KnbA=MN!LRO+DA9G*SA\R[T_:StD^OUnsrdWN*&$Y->19 0!hso\%'#]]Y;.r_8F41`i?_d^qmn+`Q$!@b0/&UcdC1jeCN7(g=tE=hr3SSr8[jal=PSIJH16$ JH3%W"fhUq^d\j0s*t~> qu;"(/M/S.0JYIA2E3]X4?Yhl5XIh+7Rp!@92&)V:f1+i$PB??X[DRA7fIfC2@^'DfKc< F`hkPH?ssfIt3*&KS=_uCh.sRIt3-&KSG8hr*MSr8[k5l=L"rJcC<$ JcC<$[JpE1s7X/p /T~> [/^0s"6/#'s7Gd_iR75Dg@,*j`r?#=JcC<$JcC<$[JpE1s7X/p /T~> qu;.,/M/V/0etRC2E*WW4?Ykm5sdq,7Rp!@91quT:f1.j$G9=?t!MSAS,RhC2@a)DfKc< F`hnRH@($fIt3-'K8"VtCh.sRIt<3(KnY;.9 ZaI6M\@K5a]t_<,_8F41a/Zhf^qmn*`Q$!@b0/&UcdC1ieCN7(g"Y?=hr*MRr8[k5l=PSIJH16$ JH3%W"fhUq^d\j0s*t~> r;Qc6r[foY0/54=2)[BR3]oPh5=%V'6q0[;8kViQ:Jand<)m"%=^#'9?=72O@qB7bBkhF"DJrJN !'baTI"$QqJqJ`1H?sC=I>r`,JqAZ1LPUeFN/`mLF-:^3QC+)/S=Q7ETq\?ZVPpJoX/rJ-Z*L^C [^WcX\gdOW+\BYnWkH-^_8=.0`lQ9EbKS8Xd*gFnf%8R-gYL]Ci8Wbnj8b,(AcMg^s+13$s+13X rroG&p:`p*U]5i~> `W#qMqZ-Bjs7-9Og$o%6n,qXtnC$@d!&XTR"'P-_d`2:e!.k0$s+13$s0_k1WrMe,6k?'mJ,~> r;Qc6r[foY0/54=1c@9Q3]fJg5=%V&6q0[;8kViQ:Jane<)lt$=^#$9?=72OA7]CdBkhF"DJrGM !'baTI!pKpJqJ`1H$X7;I>r`,JqJc3LPUhGN/`mLFHUg4QC+,0S"6.CTq\Yd*gCmf%AX.gYCWBi8Wbnj8b,(Aq9r5!.b-$!42_0 WrMb-7Lu9oJ,~> r;QbMr[fu\0JP=>2)[ES3BKAe5=%V&6q0[;8P;`O:Jand2;MMmFRO+;;7GEnM^R@9Y:StD^OUSXidWN*&%Xfnt6 Za@0M\@T;0I/O$g8]A`M]YD4t_SjF5aN;TJbg+P]daQ^sf@\g3h;-rGio9jr!3kd$!!%TMJcC<$ JcE.X"fhUr^-iL,s*t~> `W$#'V`t%Zp](9a"6/#'s7Gd_iR75Dj7!)RSc&Nj=n(q/`r?#=JcC<$JcC<$[JpE1s7X/p /T~> r;QbMr[n.'1GL[B1c@ r;Qahr[n.'-o!J61c@9Q3]fJg51: ZaI6M\@T8a^AS$T8]A`M]Y;1t_SjF5a2uKIbg+P^daZdsf@\d2gtprHioBps!7U7G!!%TMJcC<$ JcE.X"fhUla$pB1s*t~> cN!hV!,VQ4!+5[)p](9a"6%o%s7Gd_iR75DiUHdG"'P-_d`2:e!.k0$s+13$s0_k1WrMV/7L>ji J,~> r;Qahr[n.'-S[D61c@9Q3]oPg5dJV&K,L51SAMiVgr;\!4`Q,!l^;.S%`5Ta:ai_fNcHjkce'uq"f\,$8h;@2Niqqd:e*CUs!.b-$!.b-W !!TD&n&S!*U]5i~> rVllTr@KHN0/54=1cIBS3]fJg5=%V'6q0[;8P;`P:JanedJV&N-KnkJAN/WdXJTHutQ'Rf+R[fq?T:r!SUo()iWiW>*YHbC> [C3QS]">Vhr;\!4`Q"pXXKJb2ZEppG\%&u\]Y2%p_8=+/`lQ9FbKS;ZdJD8k+FsND!.b-$!1s5p WrMS/7L>jiJ,~> cN!hC!+5X'!+5[)p](9a"6%o%s7Gd_iR75DiUHdG!a5$^gX6'EJH16$JH16$T)]%ps7+)u$)@NN~> rVllTr@S%&-S[D62)[ES3BKAe5X@_'6q'U:8kVfO:Jane<)m"%=^#'9?=.,NA,QB4-Z!U:E,]eI r;ckD5(%g/J:W?*KmJ&\@sj8cJV&K,L51SBMi [C3NR]"5Pgr;\!4`Q,!YXfek3ZF%!H\%'#\]Y2%p_Sa=2`lH3Ebg"G[d/)/j+FsND!.b-$!1s5p WrMP/7gYsjJ,~> rVll!r@KHN0/54=1c@dJV&K,L51SAMi<[WJ9-otQ'[l,R[fq?T:r!SV5C2iWiN5(Yd(L? ['mHS]">Vgr;\!4`Q,"#b08,Ud*^:je^i@*g=tE>hr3STjQ5Rhl0@X'n+uMR`pB]*!.k0$s+13$ s0_k1WrMS/7L>jiJ,~> cN!hC!+5X'!+5[)p](9a"6%o%s7Gd_iR75DiUHdG"'P-_dbOjiJ,~> rVll!r@KHN0/54=2)[ES3]fJf5=%V'6q0[<8kViP:Jane<)lt$=^#$8?=72OA,QB4-YmO8DfKbI r;ckD5(%d.J:`E+Km@u[@ss>dJV&N-L51SAMiT:r!TV5C/iWiW;)YHbC> ['mHR]">Vhr;\!4`Q,"#b08,UcdC1ie^i@*g=tH?i8EVTjQ5RglK[a(n+uMR`pB^V!.b-$!.b-W !!TD&n&S!*U]5i~> rVlkGr@S%&-S[A51c@9Q3]fJf5=%V'6q'U:8kVfP:JanddJ:`B,L51VBN/WdXJTHutQ'[l,R[fq?TV8-UUo()hWiN5(YHb@= [C3QS]"5Pfr;\!4`Q,""b08,Ud*^:je^i@*g=tE>i8EVTjQ>Xil0I^(n+uMRea0;e!.b-$!.b-W !!TD&pr,`4U]5i~> cN!hC!+5X'!+5[)p](9a"6%o%s7Gd_iR75DiUHdG"'P-_dbO rVlkGr@KHN0/54=1c@ [C3QS]"5Pgr;\!4`Q,"#bKS5Vd*^:jeCN7(g=tH?i8EVUjQ5Rgl0I^(meZDQea0;e!.b-$!.b-W !!TD&pr5f5U]5i~> rVljor@KEM0/54=1c@!sK5c=e;auYHY==[?a&j";!kp r;\!4`Q,""bKS5VcdC1ie^i@)gY:Q@hr*MSjQ>Xil0I^(meZDQjQrlH!.k0$s+13$s0_k1WrMk5 7h)6nJ,~> d/O*4p]1sn>nPS#U03:#jIF6&Hr\*McR;pYCB"'P-_dbO rVljor@KEM0/57>2)[BR3]oPg5!sK5c=e;auYd(I>[?a&j";!kp r;\!4`Q,"#b08,Ud*^:je^i@)g=tH?i8EVTjQ5Rgl0Ia(meZDQjQrmt!.b-$!.b-W!!TD&pr5f5 U]5i~> rr2umr%0?M0/54<2)[BR3]oPh5=%V&6q0[;8kViP:Jand<)lt$=^#$8?=.,@62^c`)ZE5/DfKbI r;Zm_!!3#u"tbI]H!D-kr;Zn$!TWqG)iL/SSVdCI1h1,a!WW3.JZZ,\ZEnr^ !!"*\>o*A=+\BYmWiN5(YHY==['dBQ\\#Pg^;.V&`5]g d/O.%Vu6Sq55qJZrr?F)!!7`P!rW*'=9& rr2umr%7q%-S[A52)[ES3]fGe5=%V'6q0[;8kViP:Jane<)lt$=^#'9?=.,@62^cg)Fm:gDfKbI r;Zm_!!3#u"tbL^H<_6lr;Zn$!9o*A=+\BYmWiN8)YHY==['dBQ\\#Mf^;.V&`5Ta:aihlOcd:)8dJsQ(!.b-$!.b-C!!TD& pr5f5U]5i~> rr2uIr%0?M0/,.<2)[BR3]fJg5=%V'6q0[;8P;`O:Jand<)m"%=^#'9?=.,MA,QB4-YmO9E,fkJ r;Zp7BmMf cN!hC!+5X'!+5[)""W.'Fo;:Db5_&'i_fXS(`.tlfdm-mkU6E2#KH8P#64`amdT_o!+#Qm!/^[T !>=Ajn-IYU!!!&HnF1Pu!!?BnnC#>V!!%TMJcC<$JcE.X"fhUk`CLE4s*t~> rr2uIr%0?N0JP=>2)[ES3]fJg5hr*JRjQ5Oel0I[2m/X3SR/d5 rr2u(r%0?M0JP@?2)[BR3BKAe5Yd*gCmf%8R.gYL]Ci8N_Wk2tmllg4H7!4_EagAn2POoXqMOoVH\ OoXqMrr<5&s6dlu%& cN!hC!+5X'!+5[)"0_b)j8Ar]K`CW6i_fXS!*]Bk"- rr2u(r%0?M0/54<1c@ rr2t`r%7q%-S[D61c@9Q3BTGf5=%V'6q'U:8P;`O:Jand<)lt$=^#$8?=72OA,QB4-Z!U:DfKbI r;Zq!!P66H?sBRr;[(3K8#&8Ll*DU!!FfnPBSb\!"(TQSXuLJU8+Q_W;Q]!9Yd*gCme^rI-g>(NAi8N\Vk2tmmlg4H7!5n2l!!(iC!!&ttOoXqM !!&7O!!&ttOoXqM#6:0ls6dlu%& cN!hC!+5X'!+5[)"6fdbr;?U!BE.Pni_fXS!4D^n!'C/["A@24dSBcA!)iR\r;Zh2rpTnCrVupg rpTpIr;Zq&nF4lGrr<&TR/d5cs,mBMrr<%`R/d5cs,mBMrs&OlWrMP,8.;9nJ,~> rr2t`r%7q%-SR;41c@!!P66H?sBRr;[(3K8#&8M2EMV!!FfnPBJ\[!"(TRSXuIIU8+Q^W;Q]!9YdF-Lnf%8R-gYCWAi8N\Vk2tmmlKn?6!5n2l!!(jT!!&tt!!&8` !!)He!!&8`!!&tt!!&8`!!)He#6=e(s6dlu%& rr2tFr%0?M0/54=2)[ES3]oPh5 cN!hC!+5X'!+5[)!;uirr;[".s75a@;>gIpi;9)n:]:=o*WGO2jFB3'"T&0!>5n!k &,lP/ rr2tFr%7q%-SR;41c@[HTW;chtPlC^` mf*7ePlC^`W;chtPlC^`mf*Lls/Q+ha[c`5s*t~> rr2t0r%0?M0/54=1c@9Q3]fJf5YdF-Lne^rI-g>(N@i8N_Wk2tmllg4H7!8$V+!!(iC!!&ttOoXqM!!&7O!!&tt OoXqM#6:0ls7+6&$)@NN~> cN!hC!+5X'!+5[)rVufr"^h<#o&EUG!!)Han,NUb!!EGmnCA]\!!5HRSc&Ng=oRmj"9&9#=T.af !!?BnnC#>V!!(iC!!&ttOoXqM!!&7O!!&ttOoXqM#6:0ls746$$)@NN~> rr2t0r%7q%-S[A52)[BR3]fJf5=%V&6q0[;8P;`O:Jand<)lt#=^#'9?=72NA,QB4-Z!U:E,fkJ r;ckD!IT=o!!P*2H@'KTr;[(RK7nu7Lku3,!!E@mSW+B`!!4]cDZ'P<5d.Gt!r`0&7(TtB^AS$T 8]A]L`lH3DbK\>Yd*gCmf%AX/gYL]Ci8N\Vjlbgllg4H7!8$V+!!(jT!!&tt!!&8`!!)He!!&8` !!&tt!!&8`!!)He#6=e(s7+3%$)@NN~> rr2ssr%7q%-S[A52)[BR3]oPg5YdF-Lne_&O-gYL]Ci8N_Wk2tjllg+B6!8d+2!!(iC!!&ttOoXqM !!&7O!!&ttOoXqM#6:0ls7+6&$)@NN~> cN!hC!+5X'!+5[)rVufr"^h<#o&EUG!;c0b&cMb45+T'Or3QOmn5fMg!upOpnGN=e=oRmj&,lP/ rr2ssr%7q%-S[A51c@9Q3]oPh5=%V'6q0[;8kViP:Jane<)m"%=^#$9?=72NA,QB4-Z!U:DfKbI r;ckD!IT=o!!P*2H$X rr2sdr%7q%-S[D61c@ cN!hC!+5X'!+5[)rVufr"^h<#o&EUG!;c0b3;rm[7ageSqX=ItrVuprrp]jd!*T rr2sdr%7q%-S[A51c@S!"12rP'3+WR$sJ5SdbSu"$!-SVu6Su6*RW"-2mlI 2S-K4Zi'kI8]JfN`lH3DbKS8Xd*gCme^rI,gYL]Ci8N_Wk2tmllg+B6!9EO8!!(jT!!&tt!!&8` !!)He!!&8`!!&tt!!&8`!!)He#6=e(s7+3%$)@NN~> rr2sYr%7q%-o!J62)[ES3BKAf53WVkO%h"@95rZ<.#* " cMmkJrW!10s8SUIr;U.&!<)rr!!Qa0o((d;r;c]`!/(7N$QmgdddZb+"(guk"o\K(;Xj2 rr2sYr%7q%-o!M72)[ES3]fJf5=%V'77Kd<8P;]N:Jane<)m"%=^#$8?=72N@flW0#:F;(6To@. /,]JJH3&DBr;[!UKmJ&]-2dfKJqJ`2LPUg]rW!<=F-Cd4QYZ^hS=Kc]!!>3WVP3qg"@0/qZ<.#* "hr*JQjQ>Xhl0I[2m/ZA;R/d6Crr<%trr<%` rr<&err<%`rr<%trr<%`rr<&ers&Q(WrMb(7M;KrJ,~> rr2sRr%0BO0JP@?2)[ES3]fJf5X7Y&6q0[;8kViP:Jane<)m"%=^,-;?=72O@h&D;#9dnu"po9i /,]GMH$aper;[!UKmJ&]-2dfLJqJ`2LPUhA')hk<;j2BiOs:$XS=LAn!!=%4VJZ83$ph)%ZCqU* !!/b(]NkC8+\BYmWlE*$b0/&Tcd:+heCN7(g"Y?=hr*JRjQ>Ugl0I^3m/ZJ>R/d6CR/d5cs,mBM rr<%`R/d5cs,mBMrs&OlWrMb*7M;KrJ,~> cMmkfrW!1!s8*6>s8QI)!<)rr!!Qa0o((d;r;c]`!TY=$!",+_ddZK["39p#+8u6B,4=rjr;Zh# rpU3G%0-A/d.$OIr;Zq&nF4lGrr<&TR/d5cs,mBMrr<%`R/d5cs,mBMrs&OlWrMe)71uBqJ,~> rr2sRr%7q%-o!M61c@hr*JRjQ5OflKdg4m/ZJ>R/d6Crr<%trr<%` rr<&err<%`rr<%trr<%`rr<&ers&Q(WrMb(7M;KrJ,~> rr2sNr%7q%-nmD52)[ES3]fJf5=%V'6q0[;8kViP:Jand<)lt$=^#'9?=7/N@kdl^#6mFA!&A:] *;oj>:N'rFr;[!D=*epX)#XFM*;ojG.W_#`Z[DrV !$?/d(]==W2NY8F`lH3DbK\>YdF-Lnf%AX.gYL]Ci8N\Vk2tmmlg+?5m?mqSh3e6CW;i"\mf*7e PaMLOW;i"\mf*LlRB$;[]g`X0s*t~> cMmlhrW!05QAJK!!B._fVeZJ"[8jTjHMP#!<8Ven-[5Y!!!=CKnh/\OT+_LEr>t>5[l/? !":oZcg^G$"onWOOa%oF!!>Qlf[@e>!!(iC!!&ttOoXqM!!&7O!!&ttOoXqM#6:0ls7X&n&u5JW~> rr2sNr%0BO0JG:>2)[BR3]oPg5:iC&Gr;[!D=*esY)#XFM*;ojG.W_#`Z[;lU !$?2e(]==W2NY5E`lQ9EbK\AZdF-Loe^rI,gYL]Bi8N_WjlbjmlKn<5m?mqSh>[HTW;chtPlC^` mf*7ePlC^`W;chtPlC^`mf*Lls/Q+l]1*F.s*t~> rr2sNr%7q%,qq)21c@9Q3]fJf5^PBAbc<@KSG8 cMn4HK/!f:#qLQ&e+s%F]8QLc!V4>-!;c0jjbGf,!sg5\_u9'*kYD'V!CbW;!!&&Yn-6m2(BbIO cMISBP1%AM!!(iC!!&ttOoXqM!!&7O!!&ttOoXqM#6:0ls7O2t%\s&S~> rr2sNr%0]W0/,.<1c@0"T\`=2f;su !!-7kq>^PAAbc<@KSG8=MMmFJ:`p&G"W'7IR[Tb;R5FjB!AKi:!"*DEZaH)`&H`S1UAFp4H)em) ai_iOcHjkce(*"#f\,$7h;@/LioK7akNV rr2sRr%7q%Ftb[.1c@R8BNGroYFEVkQH$apeIXlriP'<1WR$sJ5SXuI2E-.;@W2ZeuXKA_3 Z*UjH[^iu\-bR1.^r""-`Q,!uaN;TJbg+P^daQ^sf\"p4gtglGiT'"\k32'qlhToJlg:)?!8X%C !3#p\!:Kje!0ilO!3#p\!:Kjl!1Bkeotj60U]5i~> [/^0s"68,)s7>1NddY][n,pt4Wn-A&!7Jme!!(iC!!&ttOoXqM!!&7O!!&ttOoXqM#6:0ls7O2t% \s&S~> rr2sRr%3.H0JP=>2)[ES3]fJg5=%V&77B^;8kViP:Jane<)m"%=^#'9?=.,NA7]@cBkhI#DJsN8 F*)PJH$XdaIXcm!K7el(HYm>BNGrlXFEVkPH$apeIt3&jPBN4XQ^XA4SXuL3Dfh2?W2Q_sXKJb3 ZEppH\%0)]-bR.-^r""-`Q"pta2uKIc-FY^daQ^rf@\g3gtglGiT'"\k32'plhToJlg:)?!8[YT !3#nt!0mK`!:Kje!0mK`!3#nt!0mK`!:Kjl!<9)!oY rr2sYr%3:K0/57>1c@I/@?t!PUAS,UiC27[(DfKf=PBN4XR$sJ6SXuLJU8+N^W2ZetXKJe4 Z*UjH\%'#\]Y;.q,Jh:9`Q,!ua2uKIc-FY^daQ^sf@\g3gtglGiSrq[k32'qm.p#Kkj=c [/^0s!or#(n^7I-db=0jd`2:e!8X%C!3#p\!:Kje!0ilO!3#p\!:Kjl!1Bkeota*-U]5i~> rr2sYr%3%D0/54=1c@R5A?t!MTAS5[jC2@d*DfKf=PBN4XR$sJ6SXuLJUSO``W2ZeuXf\e3 Z*UjH[OSeu]=bhl^r""-`Q,!taN2NIbg+P]daQ^sf@\d2h;-uHiT'"]kND-rlhToJkj=c rr2sdr%3@M0/54=1c@9Q3]fJf5=%V'77Kd<8P;`O:/Fec<)lt#=^#'9?=.,N@qB7bBPM@"DK'T8 F*2YMG^=[`IXcm!K7nr)H>[>CG'J:YH[U?nJV&N.L51VDPBW:YR$jD5SXuIIU8+Q^Vl6VrXKJe4 Z*UgG\%'#]]Y;.q_SRJ7`Q"pta2uKIc-FY^daQ^rf\"m3h;7#HiT'"\k3)!pm.p#KjR&?8!8X%C !3#p\!:Kje!0ilO!3#p\!:Kjl!1BkepqfT7U]5i~> [/^0s!or#(n`U#Cdb=0jd`2:e!8X%C!3#p\!:Kje!0ilO!3#p\!:Kjl!1BkepqTB3U]5i~> rr2sdr%7q%Ftb[-2)[BR3]fJg5=%V'6q0[;8kViP:Jane<)lt$=^#'9?=.,M@q91aBkhF"DK'T8 F*2VLG^=^aI=Hd!K7nr(H>R5@G'J:YI!pHoJV&Q/L51SCPBN4XR$sJ6SXuLJUSFZ_W2ZeuXKJe4 ZEppH\%'#\-bR1.^qmq,`Q,!ua2uKIc-FY^daQ^sf@\g3gtgiFiSrq[k32*rlhToJjR&?8!8[YT !3#nt!0mK`!:Kje!0mK`!3#nt!0mK`!:Kjl!<9)!pV992U]5i~> rr2ssr%7q%F"oF,2)[ES3]fJg5R5AGBeCZH[U?mJV&N-L51SBPBW:YR$jD5St;UKUSFZ_W2Q_tXKJb2 ZEpsI[OSeu]=bkm^qmn+`Q,!ta2uKIbg+P^daQ^sf@\g3h;-uHiSrq[k32'qlhToJhX-^2!8X%C !3#p\!:Kje!0ilO!3#p\!:Kjl!1BkepqfT7U]5i~> [/^0s!or#(n`U#Cdb=0jd`2:e!8X%C!3#p\!:Kje!0ilO!3#p\!:Kjl!1BkepqTB3U]5i~> rr2ssr%7q%Ftka/2)[BR3]fJf5R5@GBeC[I!pHnJUrH-L51SBP'3+WR$sJ6St;RJUSFZ_W2Q_sXKJb3 Z*UgG\%'#\-bR.-^r""-`lG+!aN;TJc-FY_daQ^rf@\g3gtgiGiT'"]k3)$qm.p#KhX-^2!8[YT !3#nt!0mK`!:Kje!0mK`!3#nt!0mK`!:Kjl!<9)!pV992U]5i~> rr2t0r%3:K0/54=2)[ES3]fJg5=%V'77Kd<8kVfO:Jane[;BG'J:YI!pHnJV&N-L51VDP'3+VR$jG6SXuIIUSFZ_W2Q_tXKJb3 ZEppH\%0)]]Y;.q,Jh:9`Q"pta2uKIc-FY^daQ^rf@\d2h;-uHiT'"]k32'pm.p#KfBnt+!8X%C !3#p\!:Kje!0ilO!3#p\!:Kjl!1BkepqfT7U]5i~> [/^0s!or#(n`U#Cdb=0jd`2:e!8X%C!3#p\!:Kje!0ilO!3#p\!:Kjl!1BkepqTB3U]5i~> rr2t0r%7q%Ftb[-2)[ES3BKAf5 rr2tFr%7q%Ftb[.2)[ES3BKAf5=%V'77Kd<8P;]N:Jane<)m"%=^#$8?=7/M@q94bBPM=!DK'T8 F*2YMG^=[`IXciuK7nr(H>[;BG'J:YI!pHnJUrH,L51VCPBN4WR$sJ6SXuIIU84T^W2ZeuXKJb3 Z*UgG[^iu\-bR1.^qmq,`Q,!ua2uKIc-FY_daQ^sf@\d2h;-uHiSrq\kNM0rlhToJcL%#"!8X%C !3#p\!:Kje!0ilO!3#p\!:Kjl!1BkepqfT7U]5i~> [/^0s!or#(n`U#Cdb=0jd`2:e!8X%C!3#p\!:Kje!0ilO!3#p\!:Kjl!1BkepqTB3U]5i~> rr2tFr%7q%H8.341c@9Q3]fJf5R8AGBeCZH[U?mJV&N.L51VCPBN4XQ^O;3SXuLJUSO``W2Q_sXKA\2 ZEppH\%0&\]Y;.q,Jq@:`Q,!ta2uKIc-FY_daQ^sf@\g3h;-uHiSrq\k3)$qlhToJcL%#"!8[YT !3#nt!0mK`!:Kje!0mK`!3#nt!0mK`!:Kjl!<9)!pV992U]5i~> rr2t`r%7q%Ftkd01c@9Q3]fJf5=%V'6q0[;8kViQ:Jaqf<)lt$=^#$8?=72N@qB7bBkhI#D/aH6 F*)PJG^=^aIXcj!K7el(H>I/@G'J7YH[U?mJV&Q/L51SBPBW:XR$sJ6SXuIIU8+Q^W2Q_sXf\h4 ZEppH[^`o[-bR.-^qmq,`Q,!ua2uKIc-FY^daQ^sf@\g3h;-uIiSrq\k32'qm.p#K_sNlH!3#p\ !:KlM!3#p\!:Kme!!TD&pqT?/U]5i~> [/^0s!oho&n`U#Cdb=0jd`2=A!3#p\!:KlM!3#p\!:Kme!!TD&pqB3-U]5i~> rr2t`r%7q%F"oF,2)[BR3]fJg5I,>G'J:ZI!pHoJUrK.L51SBP'3+VR$sM7SXuIIU8+N]W2Q_tXKJb2 Z*UjH[OSet]=bhl^qmq,`Q"pta2uKIbg4V^daQ^sf@\g2h;-rGiSrq\kNM3slhToJ_sNlH!3#p\ !:KlM!3#p\!:Kme!!TD&pV'*,U]5i~> rr2u(r%3@M0/54=2)[BR3BTGg5=%V'77Kd=8P;`P:Jane<)lt$=^,-:?=72O@qB7bBPM=!D/XB5 F*)PJG^=[`IXcm!JqSi'H>I,?GBeCZI!pHoJV&Q/L51VCPBW:YR$jD5St;RJU84W_W2Q_tXKJb2 ZEppH[^`o[]Y2(q_SRJ7`Q,!ua2uKIc-FY_daQ^sf@\g3h;-rGiSrq\k32'qlhToJ\F#[a!8[YT !3#nt!0mK`!:Kje!0mK`!3#nt!0mK`!:Kjl!<9)!pqT?/U]5i~> [/^0s!oho&n`U#Cdb=0jd`2=A!3#nt!0k8!!:KlM!3#nt!0k8!!:Kme!!TD&pqB3-U]5i~> rr2u(r%7q%AMGqs2)[BR3BKAe5@&>G'J:YI!pHoJUrH-L51VCPBN4XR$jD5St;UKU84SEVPpJoX/rJ- Z*LaE[^WcX]=bhl^qmn+`Q"pta2uKIbg+P^daQatf\"m3h;7#HiT'"]kNM0rlhToJ\F#^=!3#nt !0k8!!:KlM!3#nt!0k8!!:Kme!!TD&pV'*,U]5i~> rr2uIr%7q%H8.022)[BR3]fJg5=%V&77Kd<8kViP:JaneI,?G'J7XI!pHnJV&N-L5(MAPBW:XR$jD5SXuLJUSO``W2ZeuXfek4 ZEppH[^`l[]Y;.q,Jh:9`Q,!ua2uKIbg+P^daQ^Xf@\d2h;-uHiQ($@kNM0rm.p#KX6l;T!8[YT !3#nt!0mK`!:Kje!0mK`!3#nt!0mK`!:Kjl!<9)!pqT?/U]5i~> [/^0s!oho&n`U#Cdb=0jde3V?deNhBdbXrX!3#nt!0k8!!:KlM!3#nt!0k8!!:Kme!!TD&pqB3- U]5i~> rr2uIr%7q%H8.341c@@&>GBe@ZI!pHnJV&N.L51VCP'3+WR$sJ6St;UKUSO`aW2Q_sXfek4 ZEpsI\%'#\]Y;.q,Jq@:`Q"psa2uKIc-FY_daQ^Xf@\d2h;-uHiQ1*Ak32'qlhToJX6l>0!3#nt !0k8!!:KlM!3#nt!0k8!!:Kme!!TD&pV'*,U]5i~> rr2umr%7q%H8%*22)[ES3]fJf5=%V&6q'U:8kViQ:Jane<)m"%=^#'9?=.,N@qB:cBkhI#D/XE7 F*2VKG^=[`I=H`tK7el'H>R5AGBe@YI!pHoJV&N.L51SBPBW:YR$jG6SXuIIU84W_W2Q_sXKJb3 ZEpsI\%0)]]tM1q,Jh:9`Q"psa2uKIbg+P^daQ^Xf@\d2gtglGiQ($Abfo>;lhToJSF)^E!8[YT !3#nt!0mK`!:Kje!0mK`!3#nt!0mK`!:Kjl!<9)!o"[^)U]5i~> [/^0s!or#(n`U#Cdb=0jde3V?deNhFdf9?qdc(5\!3#nt!0k8!!:KlM!3#nt!0k8!!:Kme!!TD& o"IO&U]5i~> rr2umr%3%D0/54=2)[ES3]fJg5=%V&6q0[;8P;`O:Jand<)lt$=^,-:?=72O@q94bBPM@"DJsN7 F*)PKG^=[`I=Hd!K7el'H>R5@GBeCZI!pEnJV&N.L51VCPBW:XQ^XA5SXuIIUSFZ_W2ZeuXKJb3 ZEppH[OSeu]=bhl^qmq,`Q,!ua2uKIc-FY_daQ^Xf@\g3gtglGiQ1*BbK];;lhToJSF)a!!3#nt !0k8!!:KlM!3#nt!0k8!!:Kme!!TD&n\.F%U]5i~> rVljor@S%&DDR8BGBeCZH[U?nJUrK.L51SBPBN4XR$sM6SXuIIU8+N]Vl?\sXKJe3 0=%pk[^WfY]=bkm^qmq,`Q,!ua2uKIZEqlc\'rj [/^0s!or#(n`U#Cdb=0jdes.FdLZB+df9?qs8UNqs3gqqs3glG!7Km,gAn2P!!&8!!!)HeOoVH\ !!&8!!!)Herr<5&s73lm%\s&S~> rVljor@NCL0/54=2)[BR3]oPh5=%V'77Kd<8P;]N:Jane<)m"%=^#$9?=72N@qB:cBPM@"DJsN8 F*2VLH$O^`I=HcuK7el(H>R8BG'J:YI!pHnJV&Q/L51VCP'3+VR$jG6St;RJUSFZ_W2Q_sXKJe4 ZEpsI\%0)^]Y2(p,Jh78`Q,!ua2uKIZ*_ib\'rj rVlkGr@NIN0/54=1c@BGBeCZI!pHnJUrH-L51VCP'3+VR$sJ5SXuLJUSO]`W2Q_tXKJe4 Z*UjH\%0)]]Y;.q_SRJ7`Q,!taN;T/bg+P^d^[f=f=fnmh88'hiQ($AbK];:m/$)Lc0Uhu!8[YT !3#nt!0mK`!:Kje!0mK`!3#nt!0mK`!:Kjl!<9)!o"[^)U]5i~> [/^0s!or#(n`U#Cdb=0jdf'1Gdes+Jdf7bqdf07Pdf7bqdf9?qdc(5\!3#nt!0k8!!:KlM!3#nt !0k8!!:Kme!!TD&o"IO&U]5i~> rVlkGr@NCM0JP=>1c@R5AGBeC[H[U?mJV&Q/L51SBPBW:XR$sJ5SXuLJUSFZ_Vl?\tXKJb3 Z*UjH\%0)]]Y;.q,Jh:9`Q"pta2uK.c-FY^d^[f=f=fnmh88$fiQ1*AbKT5:m/$)Lc0UkQ!3#nt !0k8!!:KlM!3#nt!0k8!!:Kme!!TD&n\.F%U]5i~> rVll!r@S%&0ekF?2)[ES3]fGe5=%V'77Kd<8kViQ:Jand<)m"%=^#'9?=.,M@qB7_,m+c]DJsOl !+pP(I!p>o";Y^*H$X@?IMN`7LQC+)/S=Q7ETqeBYVl6SpXK8P-Z*CXB [^WcX]"Gbl^qmq,`Q,!uaN;T/bg+PB\%'r"f=fnmgqqsfiQ1*BkNL4Wlh]uK]'Pgb!8[YT!3#nt !0mK`!:Kje!0mK`!3#nt!0mK`!:Kjl!<9)!prc58U]5i~> bl7h?>6l_'rr;iqrVm6!>6l_'s75a@g@4Xr!V"Okn,Uo8rrCLHs8LFKs3gqqrr3,Ls3gqqrVllG ir@a5W;chtPe[8!mf/FMW;chtPe[8!mf3:e"fhUtb")i6s*t~> rVll!r@S%&0ekF?1c@n";Y^*H$aC?I!3#nt!0k8! !:KlM!3#nt!0k8!!:Kme!!TD&prZ,6U]5i~> rVllTr@KQQ0/54=1c@9Q3BTDf5=%V'6q0[;8kVfP:Jand<)lt$=^#'9?=72N@qB:3rW!*7DJsMf *;oj?H@($g7/d0m(57'\DJ"<@G^4U_I=?ZsJqJc3LP^nOG*SA\R@9Y;StD^OUSXidW2co"Y->19 Za@0M\[oDc^;%G!_o0O7WlE-%b-9.9caMoEe@O;Gg"Y bl7["rVupJrr3"s55bK[rr@oT!!XqQo((hpnF>]CnC$%[!7LiG!7LlH#1EP"s3gqqrr3,Ls3gqq rVllGir@a5W;chtPe[8!mf/FMW;chtPe[8!mf3:e"fhUtb")i6s*t~> rVllTr@S%&.PNV72)[BR3BTGf5Ugcg0onm/X$MRG._?rr<%` ^]4B&s,mA\rr<%`^]4B&s8N'&WrMk:8-u'kJ,~> r;Qahr[n.'*\fE,2)[BR3BKAe5=%V'77Kd<8P;`O:Jane<)m"$rQ'[l,R[fq?TV;;m2b0jIX0&M.Z*CXC [^WfY]"Gbl^VRh+`Q,!uaN;TJZ*Vca\'qn!f@[gQh;-#hiQ($AbKT59lhg&LiTlm3!8[YT!3#nt !0mK`!:Kje!0mK`!3#nt!0mK`!:Kjl!<9)!prc58U]5i~> fDkd_!,VQ4!,)92!!rQ'!+5[)rVlk1rW!-.s75a@g@4Xr!V"P3nGNt"B'Jdbdes.FdM)Z/df7bD s8UNqs8UNqs3grIdaI+SgAn2P!!&8!!!)HeOoVH\!!&8!!!)Herr<5&s7j`-$)@NN~> r;Qahr[f6F0/,.<2)[ES3]fJf5=%V'6q0[;8kViP:Jand<)lt$rT:u2l2b0gHXK8S.Z*CXB [^N`X]=bkm^V[n,`Q"ptaN;TJZ*Vcb\'qn!f@[gQgtfofiQ($@bK];;lhg&LiTlod!3#nt!0k8! !:KlM!3#nt!0k8!!:Kme!!TD&prZ,6U]5i~> r;QbMr[n.'*\fE,1c@9Q3]fJg5Q'Rc*R[]k>T:u2`2a=:AX0&P/Z*C[C [^WfY]"Gbl^V[n,`Q,!ua2uKIbg+P]daQ^sf@\g3gtglHiSrq[k32'qlhg&Lb3PGq!8[YT!3#nt !0mK`!:Kje!0mK`!3#nt!0mK`!:Kjl!<9)!prc58U]5i~> fDkdL!+5X'"MFj:!+Pp,!+5[)rVm5DUd`2=A!3#nt!0k8! !:KlM!3#nt!0k8!!:Kme!!TD&prZ,6U]5i~> r;QbMr[f6F0/,1=1c@Q'Rc*R[]k>T:u2`2a=7@XK8S/Z*CXC [^WcX]=bhl^qmq,`Q"ptaN;TJc-FY^daQ^rf@\g3gtglGiSrq\k32'plhg&Lb3PJM!3#nt!0k8! !:KlM!3#nt!0k8!!:Kme!!TD&prZ,6U]5i~> r;Qc6r[f6F0/54=1c@9Q3]oPg5X<0U]5i~> fDkdL!+5U&"3,PPqu-Np?i:!&rs?\hR/?pSo&JHnn`U#CdeE80!!$0dn,UnVs4[OPrr<%`^]4B& s,mA\rr<%`^]4B&s8N'&WrM\07gu0mJ,~> r;Qc6r[n.'*\]?+1c@ qu7m%/M/V/0f(XD2E*WW4$>bl5XIh+7Rp!A91quT:f1+iIMNW.JQC"#.S=Z=EU&=sM5H1ZaXKA\2ZEpsI \%'#]]Y;.r_Sa=2a/[/#ai_fOcHjnde'uq"f\5*9h;@/LioK4`kiqC!r9XLJlBqVPh>[HTW;cht PlC^`mf*7ePlC`\W;chtPlC^`mf*Lls/Q+j`^gN5s*t~> fDkdL!+5dOdMf=W;chtPe[8!mf3:e"fhUo`CC?3s*t~> qu7m%/M/S.0etRB2E3]X4$>_k5sdq-7Rp!A91r#U:f1+i qu74W/M/S.0etRC2E*WV4$>_:qu?d:83ctO"&i0!2#%%O@q>H:"E&-tE@^tfs*=ZmqZ%amH@'L2 2\u]"":cP5=Fl'VJlFHB#m(5>-;]YjS=Q6Xp](l,Xfo"3CG?>&%4l8'^;%E4qu?dja0#4="4>TI P5>4dhOu_1#9`0ll0I^6m/YAqR/d6Crr<%trr<%`rr<&err<%`rrBL+rr<%`rr<&ers&Q(WrM\1 8.;9nJ,~> li-rDqu?e*s4dDNrr2tbp]1?oqZ-Tp!+5[)rr;iq%KH"ij1]7[%KcqT4Ct/akR-@5<@SL^#8]LO h#6^BNq`VQn-J9?5njJ73Jm#"n,P[C3%6!!&8!!!)Herr<5&s7=3"%& qu74W/M/S.0JYIB2E*WV4$>b;qu?d:83m%P"&i0!2#%%OA7bW<"E&-tE\%(gs*=ZmqZ%amH$X=/ 2\u]"":cP5=Fl'VJQ+?A#m(5>-;]\jS=Q6Xp](l,Y-5+3CG?>&%4l;(]t_?4qu?dja0#4="4GZJ PPY=ehOu_1#9W*llKdd6m/YAqRG._?rr<%`^]4B&s,m@-7n,m569mau4?GP_2Dm qu78L/M/V/0f(XC2E3]X4$5YY/,]GN)G*CQ')_e5;cHah3rK$`(Ht)M@q7qEr;Zt li.!tVu6Su?iT_q55bK\rrLoQr;Zg]rhoer!N/-[!<)ot?i:!(rrK#]r;[<,o(&gf!!#]OPACd1 )?/h-b5_N8NL!KF!!!P:rpTs7Sc&Ng3rY]Ln.*kr!!#3K4obR5f^SC7Sc&Nk?iT_q55bK\rrU"q '`A"5X8rA$!8mh2!3#nt!0k8!!:Klm!$;Cc1e_A'Ng#`oR$jG6StD^NUo(#fWN3,&YHY==[C3%6 !!&8!!!)Herr<5&s7X)p&u5JW~> qu78L/M/V00JYIA2E3]X4?PbZ.fB>M)G!=P')_e5;cHah3rK$`(I(/N@q7qEr;Zt qYq+%/M8\21GgsI3&ru\4?btqr;Zs=84lMpr;Zt!<)m"%r;['I?X[DRA7d1e!!I1YEH*N-!<7?H I"!aI!#UE8H4p8Y*I)jUHticoJV&Mr!&TOiP'0k)!!NamSXuLJr;[QrWN*&$Y,WNC!!]L5X9AS( /\]$:_u0Q<9#o&r9`4qpdaQ^sf22DG$5J$Ebpi_UkiqF!rTsUCl'VMOh>[HTW;chtPlC^`mf*7e PlC`lW;chtPlC^`mf*Lls/Q+m^./g2s*t~> l2U\^!+5a*!+5[)r;Z]q!+5X'!+5[)rVlk)r;cfr!+5[)#648b-NF-,rTF=%#9!O)#Km*NkihNa M>dJU'&ifYr;Zh#r9t-Y-ia5Qipbn3!!#%Irp]jd!+5a*!+5[)r;Qb(r;[! qYq+%/M8\11GgsI3&s#]4[)(rr;Zs=84lMpr;Zt!<)lt$r;['I?X[GSA7d1e!!I1XEH*N-!<7?H I"!aI!#UE9H4p8Y*I)jUHticnJV&Ps!&TLiP'0k)!!NanSt;UKr;[QsWN*&$Y,WNC!!]L4XT\\) /\]!9_u0Q<9$#,s9`4qpdaQ^rf22DG$5J$Ebpi_UkNV9urTsUCl'^9+W;chtPe[8!mf/FM0LnT$ 6UF('4Zkbc3&WTM1,(@6/h\q71c70N3BKAf5=%V(77Tm?92&&V:gAF>^Z!lG!!&8!!!)Herr<5& s7O&p&u5JW~> qYq+t/MAb21,LgG3&ru]4Zu"pr;Zs=84lMpr;Zsu l2U\^!+5a*!+5[)r;Z]q!+5X'!+5[)rVlk)r;cfr!+5[)!rqiRrVusKjo+BD=?$6C#MF4AkihNa hYdESPl:+M!!$1"n,S@F!!"tWn,P qYq+t/M8\21,LgG3&ru\4Zu"qr;Zs=84lMpr;Zsu<)lt$r;['I?X[DRAS*:f!!I1XEH*N-!<7?H I"!aI!!7k#FT)7Q'mFqLI!m[iJUrH$6["7n,m6 69m^t4?>J^2Dm9G0J>%20/54=2)dNU4$5Yj5sdq-7n6-D9288Z;H-Xs='9O.]&;HF!!&8!!!)He rr<5&s7O&p&u5JW~> qYq,r/h\n51,LjH3&s#]4Zu"qr;Zs=84cGor;Zsu[(!QU]"G_j_8=+.`lH3Dbg"G[dF$=dbfe/M a2Z'8_SEn!]XkV_[C! l2U\^!+5a*!+5[)r;Z]q!+5X'!+5[)rVlk)r;cfr!+5[)!rqiSr;ZpJFKa]tkQ:8%nGN=eB`7H! !!$1"n,PQL!!#jpn,Q5_!!#prnGN=e?iL'*?i:!&rr?F)!!'ggs+(0$!5JSK#:DrNH@1*hJ:W<* KnbGAMN!RVOckroQ^F21S=Z@HU84W_W2ZeuY-5(8['[b08,Ud*^7fcHOJS aN)<=_ns4']tCqd\@&]NZ*1@5X/`.tVPU&^TV$j@1CA[5hZ*h[s7F#p&YoAV~> qYq,r/h\k41,LjH2`Wo]4Zu"qr;Zs=84lMpr;Zt!<)lt$r;['I?X[GSA7d1e!!I1YEH3T.!<7?H I!m[H!!7k"FSu1O'g,`HI=?]tJV/Z2LP^nPG*W"+"@J`OTV;;a#!]&dXK8QTrW!'`[^Wb0rW!$d ^qmqe!!Gp7ai[ q>UtY0/#%81c.*M3B9/a5!M=2!!F328P:'%!!H2!EB I4tO!",2&I(]+1@"XdK(JV&N-In1[i!rDs#4.Vt8U&=rq5H(T`XKE$3!!GE\VPcTV!!=%P_SZ6O "A6bWb"Va6"k(lLe^mXr!".'2iSrq[k32*rli-8Ob355n!.k0$s+13$s0_k1WrM_+7M2EqJ,~> l2U\^!+5a*!+5[)r;Z]q!+5X'!+5[)rVlk)r;cfr!+5[)"97r_0Db_N$;%,mkQK[g2\H8j!!$4$ nGN=e=o@ah')hk2;#],J:]:=o*WGR,!!$C*rr?F)!;uis?i9s)mb7[@!.k0$s+13$s0_k1WrM_* 7M2EqJ,~> q>UtY/h\n71c70M3BB5b5!M=2!!F328kU0&!!H5# q>Uu]/h\n71c.*M3BB8c4[272!!F328kU0&!!H5"1UK6@k+!!4QA@f6903hDq8U&=rq5H1ZaXK;Tu!!<>;_8H3O"A6bWb"Va6 "jtfKf%3as!".Q@iT'"]k32*rm/HAPVs'NK!.k0$s+13$s0_k1WrM_+7M2EqJ,~> l2U\^!+5a*!+5[)r;Z]q!+5X'!+5[)rVlk)r;cfr!+5[)"TS&`]GUGE"]=FGkg(=L!!5H?Sc&Ng =oIjg!!$1"n,NUb!! q>Uu]/h\q71c.*M3BB8c4[272!!F328kU0&!!H2!1UK6@k+!!4QA@f6903h;k7U&=rq5H1Z`XKD[!!!<>;_8H3O"A6bWb"Va6 "k(lLe^mXr!".N>iT'"]k32'pli-8OVs'P"!.b-$!.b-W!!TD&o=d[+U]5i~> q#:hP0/57>1c@Kr;[;ai8N\Vk2tmllg4$+c0(Jp!.k0$s+13$s0_k1WrM_+7M2EqJ,~> l2U\^!+5a*!+#O'r;Z]q!+5X'!+5[)rVlk)r;cfr!+5[)#QOAcj3`oS#l=T(RHWj5rW!$=lI,2# !!$1#nGN=e=o@ah&cMb16M[timI9WD!!$C*rr?@'!;uis?i9uXrr<%Ms+13$s+13XrroG&oY*d, U]5i~> q#:hP0/57>1c@ q#:l[0/54<2)[BR3BTDf5=#>L!!F328kU$"!!H2!$uc&FB0@Z!!>-2K*qSX"##j]Q2L[c3h;k7U&=rq5H1ZaXK l2L_drVuq'rr2spr;ccqr;Zh)qu6Y'r;cfr!+5[)rVlk)r;[0(o('N@nEAi.2#RCV@-HedrW!$r nC$h)!!$1#nGN=e=o@ah3;rmX9(q`S"TAB$>lOa';#LClrr?F)!87AP!.k0$s+13$s0_k1WrMe3 7LQ!kJ,~> q#:l[0JP@?2)[ES3BKAe5-1K*qSX"##g\Q2L[c3h;k8U&=rq5H1ZaXK p\t_W0etRB2E3]X4$>_k5mI;g";OI"9+Ch""]A<"<`fG&!!a`V@6HMYAg[HV"E&-tE@^tf"F5?A I4tO!$&*YN!'>UQG^43*!!>34K*2)Q"##j]O8T%^3h;k7T`b8o#!SucBjRlJrW!?E[^WcX\qL2^ ^V[l$rW!'`aN;RKr;[#Le'ut#;#LA&hr*JQjQ>UflK[a'b3#)l!.k0$s+13$s0_k1WrMe57gl*l J,~> l2L`#rVupmrr2sKr;ccq!!W?%#@@H1S;[=F?i:!'rr?F)!<)ot?i9s.s75^\Jai[&!7:ZE"(^WZ "o\K(:[lfpr;Zh#rU9djrW!.)nF2Wom=YB p\t_W0etRC2E*WV4$>_k5mI;g";OI!9+Ch""]JB#<`fG&!!a`U@6?GYAg[HV"E&-tE@^tf"F>EB I4tO!$&*\O!'G[RG^+-)!!>34K*2)Q"##j^O8T%^3h;k7T`b8o#!SucBjRiIrW!?E[^N]W\qL2^ ^qmo$rW!'`a2uIJr;[#Le'uq";#LA&hr*JRjQ5OflKdg(b3#+C!.b-$!.b-W!!TD&oYj9-U]5i~> p\t`h2D[0I2E3]X4$>bl5SX1t!sqLj4T#0_;cHau=:G0/#9@/Y"UJ[O-N*oIDJsN7/,]GNH@($f 0DtkWKm@tE&U8JDG\d6X"'C/.&cMb4'9[NIr;[!^SXuII(&e1<1oR;Y%BZNDrW!=Y\%'#W.fu l2L`ZrW!$Crr:7@!;uis+oVHH:]L;$'`\2?r;cfr!+5[)rVlk)r;[$$o'uc+k5OQEbl%MDT'5AZ rW!$Dma@X(!!$1#n,OR0!!c-cljOQsj<":#!3Q7i"6h`Ha8YQ.9)\em+TDDcquHZp!+5[)g&D$P JcC<$JcC<$[JpE1s7XE$$`!`P~> p\t`h2D[0H2`NfY4?Ykm5SX1t!sqLj4T#0_;cQgu=:G0/#9@2Z"UJ[O-N*oID/XB5/,]JJH3/JC 0DtkWKmJ%F&U8MEG\d6X"'C/-&cMb4'9RHHr;[!^SXuII(&e1<1oR;Y%BcQDrW!=Y\%'#X.fu pAYSn1,LgG2`Wl[4Zu"p1&V(S'H[Phr;[!Z5#kZd.fKDQ"ZRb-/7h0dr;Zsj l2Larr;ZphCDeZ$!!0"1rr2tCrW!05Q pAYSn1,LjH3&ru\4Zu"q1&V(S'H[Phr;[!Z5#kWc.fKDQ"ZRb-/7h0dr;Zsk p&>M)1c70M3BB5b5!M>"-3F/H!XCS&qu@0> kl1[H$2so+)7^Ols7u]r:]L7k$VU&F;`,?q!X^/MU]'BWiCs1M !Bf!2!"4hVnEP?Q$j$\_GjG@u#j$h'&d&Fe?c2d1!Jq*]!!4%G?i0m*49*e*!8IMR!.k0$s+13$ s0_k1WrM_)6k6!lJ,~> p&>M)1c70M3B92b4[25!-3F/H!XCS&qu@0> p&ApM1c70M3BB5b4[21u6Upf[C3QT ]">Vh^VI\'`5T?8Kq$$'bK\>Yd*gCme^rI,gYCZCi8N_Wk2tmml`fH kPk\R\Z<^Ge,TI=!oho&o]QFuT;C,eg[G@)R&e4&ao;>@JcC<$JcC<$[JpE1s7Eum%\s&S~> p&B o`&cd1c@9Q3]fJg5I,?GBeCZI!pHnJUrH,L51VCP'3+VR$jD5St;RJU84W_W2ZetXKJb3Yq<;i[^WcW ]"G_k^qmq,`Q,!uaN;TJc-FY_daQ^sf\"p4gtglGiT'"]k32'Nj-]lIJcC<$JcC<$[JpE1s7*lp% \s&S~> [/^0s!oho&n`U#Cdb=0jd`2:e!.k0$s+13$s0_k1WrMV(7Ll3nJ,~> o`'#k1c@@# o`&e-<&Q]r3]oPg5I/@GBeCZI!pHnJUrH,L51VDP'3+WR$jD5SXuIIU8+N]W2ZetXKJe4Yq35h[^WcX ]=bhl^qmq,`Q,!uaN;TJbg4V^daQ^sf@\g3gtglGiSrq\k31U[R/d5 [/^0s!oho&n`U#Cdb=0jd`2:e!.k0$s+13$s0_k1WrMV(7Ll3nJ,~> o`'18 oD`XM2E3]X4$>bl5sdq,7Rp!A92&&U:f1.j$P?>?X[DSAS,RgC2@a(DfB`QA7fIgC2@d*E,ou@Fa&(VI!pHoJV&Q/LPUhGN/is]P*;/tR$jG6SY2[NUnsreWiN5( YHY=>[Cs6_EGZJ]t:kc\$iZMZEUL6X/`.tVPU&] TUq^ES!]S/Q'7AmNfK'VM2-h>KS"`(I=-BfG^":OEcH#8ChcZYJH,kRs7*lp%\s&S~> [/^0s!oho&n`U#Cdb=3PdJu1V!.b-f!,i9$7S$'B9MJ;Z;H$Oq='8^2?!guK@q91aBkhI%DK'W: FEMePH@1-iJ:W<*KnkJAMi<[WOckonQ^F21S=Q=HU84W_W2co"Y-5(8['dBQ\[oGe^VRe)`Q$!@ b0/&Ud*^7fcHXPTaMu6<_SSIN^:h.i\@8oRZa-gn5QBdYsOH,?[Mi!4D KnP&.Isl]kH?aXVF)l8=DJX&^'S-5fWrMV(7Ll3nJ,~> oDa$X2E3]X4$>_k5sdq,7Rp!A92&)V:f1.j$PB??X[GSAS5XhC27X'DfKf=F`hnQH?sse It*$%KS=_uCLhj;G^+O^I=?ZsJqSf3LP^nPG*SD]R@9Y;StMaNUSXidWN*&$Y-5+8ZaI6N\@T;b ]t_<*_Sa=2a/Z2BY-5(8Za@0L\@K2a]tV;!_SjF5a2uNJbVaqOJH16$JH1r8"fhUj^IA^.s*t~> o)Ea%2`Wo]4Zu"p6:4127n?6F9MSA[;,^Fo<`iL.>[:ZC@:EbYAnPdlCMdp-EH-&BFa&(VH[L9l J:W?+Km@u\A:8WGG^=acI=Hg"K7nu7M2II>Q'Rf*R[fq?T:r$TV5C2iWiW;(YHb@=['mEQ]"00" ]t_A!_o0O7Wl`E-c-F\`daQatf@\g3gtpuIioB+]kNV6QiMlkXJcC<$JcC<$[JpE1s7*lp%\s&S~> [/^0s!oho&n`U#Cdb=0jdc^*"bi,Q%!.k0$s+13$s0_k1WrMV(7Ll3nJ,~> o)E?o3&s#^4Zu"q6:4.17n?3E9MJ;Z;,^Ip<`iL.>[:ZD@:NeYAnPgmCM[m,EH-&AF`r%VH[L9l J:`E+KmJ&\A:8WGH$XjdIXcp#K8#&8Ll.@=Q'Rf+R[]k>T:r!SV5L8kWiW9TXg#(9ZaI6N\[oDc ^;%J#_o0O7Wl`E,c-F\adaQatf@em4h;7&IioK1^kNM0PiMqG/JH16$JH3%W"fhUj^IA^.s*t~> nc*`V3B9/a4[21u6UaI784cHJ9hnM^;cHat=BSg3?=%#J@Uit^B5)*rCi+*1EH?8FGBnL]I"$Qq JV/W0H?sC;I?tTD@Uiq\BPD3tD/O<5EccGJG^=acIXcp$KS>/;MMmFRO-,WiQ'[l,S"-(BTq\ [/^0s!o_f$n`U#Cdb=0jdcg0#g#/l]!.b.4!."l$5XIk,7Rp$B9MJ;Z;H$Oq='8a3?!guK@q91b BkhI$DK'W:FEMePH@1-iIt<6*KnbGAMi<[WOctuoQ^F52S=Z@HU8+Q^W2cl!Y-5(8['dBQ\[oGe ^VI_(`Q$!@bKS5Wd*^7fccjSTaiDB=_SO%%]t:kc\2q(*Za-d;XfJJ$Vl$8bTqS*LS=>q6QB[Sr OH, nc*`V3B9/a5!M>"6:F@684cHJ:/=\`;H-Xs='8^3?=$uI@q0(^B4u$qCi402EH?8FG'J=[I"$Qq JV&N.H$X7:IOjQ,Fcl.+^lJH16$JH16$ZiC90s7 nc*S$=#rE+5!M;!6UXC684lNJ9i"S_;cHat=BSg4?!^lG@q9._B4u$rCi402EH?5EGBeF\I"$Qq JqJ]0H?sC;I [/^0s!o_f$n`U#Cdb=0jdcp6%jf[OA!!%TMJcC<$JcE.X"fhUr^.&^0s*t~> nc*V%=#rH,5!M;!6:F@684cHI:/4V_;H-Xs=BSg4?!^oI@q0%^B4u$rCi402EH?8FG'J=ZI"$Qq JV/W0H@'F;IMN`4KQ^F51S"?4DTq\_9JH16$JH16$ZiC90s7 nGdIY4$,Sg5I,?GBeC[I!pHoJV&N.L51VCPBN4XR$sJ6SXuIIU8+Q^W2Q_tXKA_3Z*^pI[^`o[,/(_* ^qmq,`Q"pYXKJb2ZEppG\%&u\]Y2%p_SX71`lH+KJH16$`rLN+4$,Si5XIh+7S$*C9heD[;H$Rr =BSg3?!guJ@q91aBkhF#DJsN9FEVkRH@1-iJ:W<*KnkJAMi<[WOctuoQ^F22S=Q:GTqnN^W2Zeu Y-5(8['[9O\[oJf^VRe)`5]j>bKJ/Vd*^4eccsYUaN)<=_SX+&]t:kc\377,Za$a [/^0s!o_f$n`U#Cdb=3TdK.]FJH16$`rLN+4$,Si5XIh+7S$*C9heD[;H$Rr=BSg3?!guJ@q91a BkhF#DJsN9FEVkRH@1-iJ:W<*KnkJAMi<[WOctuoQ^F22S=Q:GTqnN^W2ZeuY-5(8['[9O\[oJf ^VRe)`5]j>bKJ/Vd*^4eccsYUaN)<=_SX+&]t:kc\377,Za$a nGd@W4$,Sg5@#=GBeCZI!pHoJUrH-L51VCPBN4WR$jD5SXuIIUSFW^W2Q_tXKJb3ZEppH[O&Go]"Gbl ^qmq,`Q"pYXKJb2ZEppG\%&u\]Y2%p_8=.0`lH+KJH16$JH16$OoPZcs7 n,IdM4?Ykm5sdn+7Rp!A92&)V:f1.k$G<>?X[DRAS5XhC27X'DfB];F`hnRH?sseIt3*& KSFf"D.J'=G^+O^I=?]tJV/Z2LP^nPG*SA\R@B_T8U~> [/^0s!oho&n`U#Cdb=0jd`2:e!.k0$s.')lpKInQc2Rb?!.k0KrroG&pUWa(U]5i~> n,I%84$>bl5XIe*7Rp!A92&&U:f1+i$P?>?X[DRAS,RhC2@^(DfKf=F`hkPH?ssfIt*$% K8"SsCh8$=G^+O]I=6WsJqJc3LPUhOGEnJ]R[T_;StD^OUSXidWN*&$Y->,ZZEppH\%0)^]Y2(q _Sa=2a/[J5daQ^rf@\g3gtglHiSrq[k32'pldt";!!%TMJcG*:=7XYV`P]O-^V.7k\[T#SZa-j> Xf\Y'W2?AdU7e-MS=>t7QBd\tOcYQ]Mi*=GKnG#.IsufmH?j^WFE2A?DJX-(BP1pe@prbO?!CH7 =&L(A%7!]_9`"fu69m^t4?>J]2Dd6G0J>%20/,1=2)dNV4$5Yj5sdt/7n?3E9MSA[;H-Xs=BSj5 ?=.,M@qB7bBkqO%DfKc mf.a;4Zu"q6:4.07n?6F9MSA[;,^Fo<`iL/>?tQC@:E_XAnPdlCMds-EH6,CF`r"UH@1-jJ:W?* L3e2_A:8ZHH$XgcI=Hg"K8#&7Ll.@=Q'Rf+R[]k>T:r$TUo1/iWiN5(YHb@>['mHR]"5Pg^V@Y' `5TcscdC1ieCFTO%b]Rkh;@/Lj5f=akiqBch95j!JcC<$g]%7@nc7, [/^0s!oho&n`U#Cdb=0jd`2:e!.k0$s4dPR6h16*rr@oT!!"MJrrK#]r;_EK^An*2nG`Zls7a)m &>T8U~> mf.a;4Zu"q6:4.17n?3E92/2Y;,^Fo='/U/>[C`E@:E_WAnPdlCi"!.EH-&AFa&(VH@10kJ:`E, KmJ&\A:8ZHH$apeIXcp"KS>/9M2IL@Q'[l+R[]k>T:r!SV5C2iWiN5(YHb@=[C3QT]"5Pg^VI\& `5Tcscd:+heCOZP%bf[mh;@/LioK7akiqBdh95j!JcC<$mJdgTaiMH?_nj.&]t:kc\$iZMZ7kbK 0:A/mQ'@GoO,f3XM26q@K7\Z(IslWhG]n4OEcH#8D/3j!B4b[a@:*>H>?Y020)bhS%8T\k0G=[CcG@Uiq\B5)*s DJsN7F*2VMH$XjdIt*'&KSG8T8U~> mJh$q5!M;!6UaI784lNK9i"S`;H6^t=BSj5?=%#J@Uiq\B5)*rD/O<4EH?8FGBeF\I"$QqJqJ]0 H$X==I [/^0s!oho&n`U#Cdb=0jd`2:e!.k0$s4dPT^Sa9o!;^m?/-+,u!,)92!!rQ'!+5[)ZiBt;!,Ret quH6d"fhUs\jR+)s*t~> mJhL)5!M;!6UaI784lNJ9i"S_;cQgu=BSg4?!^lH@Us%^B5)*rCi433EH?5EGBeF[I!pKpJV/W0 H?s@;IMN`7LQC+,0S"6.DTq\XhlJ(+_nj.'^:_(g\$rcOZ@m9K r;cgk2,$Y88fIc!R$O#%P*(fbNJiXLL4t83JU`,rH[9p[F`_YDE,KK-C1q6kA7K%U?=]ZgH !!NI"9M7tsr;]PY5X.Co3]T/X1c$m@0.nk10etRC2`Wl[4?btq6:=:57nH?I:/Fec<)m"%=^#': ?=@;QAS,RhC2@a*E,frAFa&.XH[UBoJqJ`2L].Vo$TsN5PEhH#R@B\:T:_gPUo('MU]1;orr2ru nG`Zls7Eok&>T8U~> m/MI#5X@_(77Kd<8kVfO:Jane<)m"%=^#'9?=.,N@qB7bBPM@#DK'T9F*2VKH$XdaIXcm!K7el( H>I2AG'J:ZI!pHoJV&Q/L51VCPBN4XR$sJ6St;UKUSFZ_W2Q_tXKA_2ZEpsI\%&u\]Y2(q_Sa=2 `i@A3daQas%bK@dgYCWBi8N\VjlYa\gWTWtJcC<$g&D%Zr;c]o!FGiTrrg":!!$L,rr?F)!42_( !!$Ags82ldrroG&o=dX(U]5i~> [/^0s!or#(n`U#Cdb=0jd`2:e!.k0$s4RDP?i:!$rrHI,df0H`!WW40rVlk)r;a2(r;Zh)OoP=Z nG`Zls7 m/Lmh5=%V'77Kd<8kViP:JaneI,?G'J7XI!pHnJV&N-L51VCPBW:XR$sJ6SXuLJU8+Q_W2Q_sXKA\2ZEpsI[^`o[*k]5%^qmq, `Q,")dF-Lnf%8R.gYCWBi8N\Vk2tj]gWTWtJcC<$nGa<^c-+8Oa2Z*9_8*h!]=YV_\$`QJYcg=j !(!KXUnOKSSN6b=R$O#%P*(fbNJiXLLP:A5J:E#rH[9p[F`_YDE,KK.C1q6l@q/qT?=][ih !!"*99hS(tr;]PY5X.Co3]T/W1c$j?0.nk10etRC2`Wo\4[)+s6:41384lNK:/=_b;cQk#=^,-; ?=78QA7fIgCM[j+EH-&BFa&.XH[^HpJV/W0M#@;e23TV8-VV5L94V#LDprr2ru nG`Zls7!`k /T~> li1mh5XIe*7Rp!A92&)V:f1+i$P?>?X[DRA7oOgC27[(E,fo>FEMbPH$XjeIt3*&KS=_u D.S-=G^+R_I=?]tJV/Z2LP^nPG*SD]R[Tb;StD^OUSOccW2co#Y->1:ZaI6N\[oAb]t_<"_Sa=2 a/[J5daQ^sf@\g3gtglGiSrq\k1eV6!!%TMJcFF'!+5[)qYpS'!7CfK`cmgIrVlk)r;a2(r;Zh) OoP=ZnG`Zls7 [/^0s!or#(n`U#Cdb=0jd`2:e!.k0$s4RDP?i:!$rrHI,dJj li1ad5sdq,7Rp!@92&)V:f1+i$G<>?X[GSAS,RgC2@^(DfB];F`hnQH?ssfIt3-'K8"Vt Ch8$=G^4U_I=?]tJqSi4LPUhOGEnJ]R@B_19ZaI6N\@T6l]Y;.r_Sa=2 `i@>2daQ^rf@\d2gtprHiT'"\k1eV6!!%TMJcG<@)>)D'c-4>Pa2Z'8_8*h!]=PP^[^EHIZ*-Fk !(!KYUnXNSSiQk>Q^3o#P)t`aNJiXLLP:D5J:E#qH?sg[F`_YDE,KK.BkV-jA7K(U?=$l?=]\Wi -SS=l9hS(tr;]PY5X%=n3]T,W1c$j?0.ee00JYIB2`Wo\4Zu"q6:=7484cHJ9i+\b<)lt$=^#*; ?XR>QAS,RhCM[j*EH6,CG'A7YI!pKpJV/W1M#@;g23 lMk@^6:+(/7n?6F9MSA[;,UCo='/U/>@(WD@:NeYAnPgmCM[m,EH-&BG'A1WH@1-jIt<6)KmJ&^ ApniIH$apeIXm!#K8#&8M2II>Q'Rc*R[fq?T:r$UV5L8jWiW;(YHb>WZaI6N\@T;b^;%J"_o0O7 Wm8u=e'ut#f\,!6h;7,LioK7UfusErJcC<$g&D%Zr;c]o!V#9orr?F)!5AI9i3TT4rql`o!!$Ag s82ldrroG&o=dX(U]5i~> [/^0s!or#(n`U#Cdb=0jd`2:e!.k0$s4RDP?i:!$rrMWPao;?Jr;aS3"Q6Vhci3hAr;Zh)OoP=Z nG`Zls7 lMl7"6:4127n?3E92/2Y;,^Ip<`iL.>[:ZC@:NeXAnPgmCi"!.EH-&AFa&(VH@10kJ:W?+KmJ&\ A:8WGG^FgdIXcp#K8#&8Ll.C?Q'[l+R[]k>T:r$TV5C/iWiW;)Yd(I>[C3QT]">Vh^VI_(`5Tcs cd:+heCN:)$JF1hhV[8Mj5f@VfusErJcC<$oD]`nda6:abK7lH`l,d2^q[Rp]=GDZ['R'CY<`$d 6)LHQU7e-LPDkorQBdYsOcPK]Mi*=FKnFu.IsuclH?j[VFE2A>DJX-(BP1pf@prbO?!LQ8=&r=" ;,C"^91g0%!<5>X5!;"i3B/oR1bpa?kKA @:E_WAnYmoCi402EcZAHG\U8ZAq,>_K7nu7r;[TjOHG]kQC!u-S"6.DTqeE[Vl?\tXk0KN!!*#u !!)Ng"fhUl^-rR-s*t~> l2PUn6UaF684lNK9i"S`;cQgu=BSg3?!^lH@q0(_B5)*sCi+*1EcZAGGBnL]I"$QqJV/W0H?sF> IMN`7LQC+,0S=Q7DTq\ [/^0s!or#(n`U#Cdb=0jd`2:e!.k0$s4RDP?i:!'rrHU0r;QcGqZ%-+V)&Dk9$RD9U,32f8^@;7 !$hCA#@FGi$jeJrrCOF!"T%*1C4^ec2[g<1^XabcMIPH pmFPc"VNt]q#:9ne,'+GlV.6W!AN=.rrAD\!0mN]!:^!lWrM\)71Z0nJ,~> l2PUn6UXC684lNK9i"S_;H-Xt=BSg4?=$uI@Uit]B5)*sCi432EH?5EGBnL]I"$QqJV/T/H@'F= Io!!$XKP$j$SG2b$:i%g)qM5u:HYq*'!XBQ'@qTLk=o/1" D']&["W2-.K7m%q!#(T_QC+,1SY)OJUSO`aWN*#$Y/R@>!!*#u!!)Ng"fhUl^-rR-s*t~> kl5J%6q0[;8P;]O:Jand<)lt$=^#$9?=.,N@qB7bBkhI#DJsN8F*2VLG^=[`IXcm!K7el(H>I,? GBeCZI!pHnJUrK.L51VDPBN4WR$jG6SXuIIUSO]_W2Q_tXf\e3ZEpsI\%0)^]Y;.q(;[o,`Q,") dF-Lof%8R-gYCWBi8N\Hf?=3pJcC<$g&D%Zr;cfr!Fl--rrV\f55bH]KDY]N$e94o!!*M]rr3#< ]DV^8(b1r(#64`Ymf*4eV`t%ZrVlk)r;cfr&)Sr=!(*;E!!"Y6s8VSd55bH]KDY]N$e94o!!*M] r;R;b/H>c;T0`MX0'<36n>AJK!!=uJDAW9P"Y'?Ks4jON!!#4^Vj.5Z!:^!lWrMh&6P6*nJ,~> [/^0s!oho&n`U#Cdb=0jd`2:e!.k0$s4RDP?i:!'rrHU0r;QifV`t%Z!/(1L!XmOtqu?a+g&D!P `Ol'K#T,%ZJ-Q&S1%,&@!N/-[!<)ot?i:!'rt"!=!!#?X63%! kl5>!6q0[;8P;`O:/Fhe<)m"%=^#$8?=.,M@qB:cBPM@"DJsN7F*2VLH$XdaI=H`tJqJc&H>@&> GBeCZH[U?nJV&N.L51VCPBW:XR$sJ6SXuIIU8+Q^Vl6VsXKJb2Z*UjH\%'#\)SEbu^qmq,`Q"q( dF-Lnf%8R.gYCWBi8N_If?=3pJcC<$pAZ0/g=4U!d*Bq\b/q`D`5BI-^V.7k\[])TZEg^<5lCZl Vkg,_4oh1ES!o\'@O1mP!(d"f!X,+V"AM!$;%*Ydj>*rr<&urr<&grroG&o=%(! U]5i~> kPo>47Rp!A92&&U:f1.j$P?>?t!PTA7fIfC2@^(E,fo>F`hnQH?sseIt3*&K8"VtCh.s; G^4U_I=?ZsJqSi4LP^nPGEnJ]R@9V9StD^OUSXidW2co"Y->19ZaI6N\[oAb^;%Dt_Sa=2`i@A3 daQ^rf@\d2gtgiFiRHH&!!%TMJcFF'!+5[)rNcMo!;c]q?i9s,39Jj&rW!'A2!3C!rVuq-r;Z]q "9REZs*XeG!*T:#!+5[)rVlk)r;cis%/27P!!r)omfrgm4oPB[!+5[)"$#Gq%K6>1*Alp1%K6>- @f?<8pF?4D#k7l_#64`erVlfs?i9s,AcMe?r;Zi(rVufr!+1lgquH6d"fhUs[mLb&s*t~> [/^0s!oho&n`U#Cdb=0jd`2:e!.k0$s4RDP?i:!'ZN3MqqYpP&r;ZpZk1C.B!!F kPo207Rp!A92&&U:f1.j$G9=?X[GTA7fIfC27X'E,]f_ns4(]t:ne\$iZMZEUJsr;[:L F)l:P!1o^MR@';*2uN^Y++859rW!'3)KTWtrW!*RF`_YDE;]b>!EiuD0`D%U+Br#P=!7GA"A_`b 9,mg0'1+rJ3skrf!])Yf!<<*-/h\q8'E%n5%6$*GrW!',%R<2\rW!ZT;cHat<=]'0"'Au:!rr<= BPVF$.K'5K06_\Dr;Zt)K7nu7r;[`nOHG`lQC!u-S"61DTqeE[Vl?YrXfen6ZKeLj!!*#u!!)Ng "fhUo[mLb&s*t~> k5Tq]?:[X\92/2Y;,^Fo<`iL.>?tQC@:E_WAnPdlCi"!-EH-&BFa&(UH@10kJ:W?*KmJ&]A:8ZH G^=acIXm!$KS5)8Ll.C>Q'Rf*R[]n?T:r!SV5C2iWiW;(Yd(I>['mHR]">Vh^VI\'`5Tcscd:+h eCN7(g=tE=hVHT0bQ%Wos+14'rr?F#!;c]q?i9s,]Dqmur;Zr1s8PIc!!"2?s8;ot0E1tOaSl/? !o [/^0s!oho&n`U#Cdb=0jd`2:e!.k0$s4RDP?hXQsrr?F)!!Bk5s$Q_b"1eI36iI&c+oMB=!!"\O rrC.>!!*/Wrr2t*r;cfr!+5[)rr2t^rVupZrr2sWrVur(rr2t*r;Zr3s8PIb!!Be3s$Qbc!$V=@ !0dB^!':,Z!&slW!4)V(!+5[)"3LTCnbiFfHN!mB!!$Ags82ldrroG&pU3F$U]5i~> k5Tq]>t@R\9MJ;Z;H$Op='/U/>[:ZC@:NeYB4kmmCi"!-EH-&BFa&+WH[L9lJ:W?+L3e/]@srQG G^=acIXcp"K7nu7M2IL?Q'Rf*R[ft@T:r!SV5C/iWiN5(YHb@=[C3NS]"5Pg^VI_(`5TcscdC1i eCN:)g=tE=hVQZ1bQ%Wos+14Fru^a`f@AC"dEp1`bK@rI`l,d2^qRLp]",;Y[Bm0DY!D^]#G.HT R[9>*2uN^YB8_Tlr;Zq+It&X@!!NmUFE2A?r;Zs6B4bXJrW!*&:g$q&+T29C:JFJS)uTa=69m^Z rW!'12Dd2trW!'E0/53qr;ZpM4['JV!!>&K8JM.("U\.,d.)`<_>PE_B"R@9V9T:hmQUnsugWiN8(YHbC?iN3%Z!<2uu!:^!lWrM\"6P6*n J,~> jo9btHV$k(9i"S_;H-Xt=BSg3?!^lH@q0(_B4u$qCi433EcZAGGBeF[I"$QpJV/T/H?sF>I [/^0s!or#(n`U#Cdb=0jd`2:e!.k0$s4RDP?i:!'o)W1uqYpP&r;Zres8Q4"!!DWgs&f7#!!iH% r;Zgprr2u_r;Zharr2t*r;cfr!+5[)rr2s_rVupurr2ssrVuq"rr2t*r;Zres8Q4"!!DWgs&f7# !!iK&!'gG_!*0$u!)rjs!*B1"!+5[)"7cEkrqufsAc;Z-!!$Ags82ldrroG&m^GLmU]5i~> jo9btHV-q):/=\`;cHau=BSg4?!^oI@q9._B4u$rCi+*1EcZAHG'J=[I"$QpJqJ]0H$X:;IMN`4KQ^F51S"6.CTq\5\F(2Ha0a+T29C:JFJS)uTa= 69m^FrW!'62Dd3$rW!'40/56rr;ZpZ4['Y[!!>PX8fI[/"ThS$b[aL55^-*&Wh?PEhH"R@9V9T:_gPUnsugWN3/(Yd(L?[G@tb!!*#u!!)Ng"fhUg [mCS"s*t~> j8XCp92&&U:f1.j?bB>?t!MSAS,RgC27X'DfKf=FEMbPH@($gIt*$%K8"SsD.S->G^+O^ I=?]tJV/Z2LP^nPGEnM^R[Tb;StD^NUSXidWN*&$Xg#(8Za@0M\[oAb^;%G!_SjF5WmB&>e'ut# f\5*8e^DYA!.k0$s4RDP?i:!'rrHU0qYpP&r;Zs!s8QI)!!E6#s'P^)r;Z]q!+#U(!;ZQn!-/#< !+5[)rVlk)r;cis!#,>3!*0$]!*&pt!$D4?!+5[)"9/?#?i9s,rr<"*r;cfr!#,>3!*0$]!*&pt !$D4?!+5[)!<2utr;Zh)rVufr!+1lgquH6d"fhUj[mCS"s*t~> [/^0s!or#(n`U#Cdb=0jd`2:e!.k0$s4RDP?i:!'rrHU0qYpP&r;Zs!s8QI)!!E6#s'P^)r;Z]q !+#U(!;ZQn!-/#3!*0$]!*&pt!$D4?!+5[)"9/?#?i9s,rr<"*r;cfr !#,>3!*0$]!*&pt!$D4?!+5[)!<2utr;Zh)rVufr!+1lgquH6d"fhUj[mCS"s*t~> j8XCq92&&U:f1+i?kK@?X[GTAS,RgC2@^(E,fl=F`hnRH?ssfIt3-'K8"VtCh8$e'uq" f\,$7e^DYA!.k0$s8)a=mb?IJf@JI#dEp1`bf\&J`l5j3^q[Oo]=GDZ[Bd*BY!Dpc%AoqsU-8RJ S=>t7QBaE-!!A1->-q$@Jp0/-s9\S+T29C:/+AS)uTa=69m^< rW!'70eY-jrW!'*0/56rr;Zp]4['_]!!>_^8f[d0"B/9"(6L]%2n23T:r$UVPgDmX0&P/ZEgjF\(e(c!!*#u!!)Ng"fhUg[mCS" s*t~> ir=5==%uIe;,^Fo='/U/>[:ZD@:NeXB4kmmCM[j+EH6,BFa&(UH@1-jJ:W?+Km@u\AUScIG^=^b IXm!#K8#&8Ll.C?Q'Rf*R[ft@TV8-VV5L8jWiN5(Yd(L?[C3QT]">Vh^VI\'`5TcscdC1ieCN7( g=js%bQ%Wos+14'rr?F)!<)ouc`d3F!+5[)rr2t*r;cis!+5[)r;Z]q!+5a*!<2os!+c*/!+5[) rVlk)r;cis!!Muq"9e]'s'P^)rr2t*r;cis!+5[)rVlj#p&G3urVun)r;cfrr;Zh)rVufr!+1lg quH6d"fhUj[mCS"s*t~> [/^0s!or#(n`U#Cdb=0jd`2:e!.k0$s4RDP?i:!'rrLHLqYpP&r;cis!+5[)rr2t*r;ccqr;Zh) rr2utr;Zh.rr2t*r;cfr!+5[)rr2s$p&G3urVun)r;cis!+5[)rr2t*r;cfr!!Muq"9e]'s'P^) rVufr!+5^)r;Zh)OoP=ZnG`Zls6d?_%\s&S~> ir=5==%uIe;,U@n<`iL.>[:ZC@:NeYAnPgmCM[j+EH-&BFa&(VH@1-jJ:W?*KmJ&]AUScIH$amd IXm!$K8#&8M2RR@Q'Rf*R[fq?TV8-UV5C/hWiW;)Yd(L?[C3NR]">Vh^VI_'`5TcscI((heCN7( g"Oj$bQ%Wos+14Is!$pfgtLE4f$i*rd*Bn[b/q]C`P]O-^:h.i\[T#TZEg^;5lCZlVPL#^Jo.*K S!fV/PrJXA",r.p1]7:UJ:E#$r;ZtCFE2A>r;ZsIB4YU`r;ZsG=]nfKr;Zsq9hS(tr;Zpd5X#5B !!E>H4r=.t"%PmS*;oj?;H-Xs!VQKr!buOh.K'5KFa/4Yr;ZsSK7nu8r;[lrOHG`k QC!u.S"61DTqeE[Vl?YsXfen5ZF%$K\D4:f!!*#u!!)Ng"fhUg[mCS"s*t~> iW"&dJko3?;H-Xt='8^3?!^oI@Uit]B5)*sCi433EH?5FGBnL]I"$QqJqJ]0H$X:;I [/^0s!oho&n`U#Cdb=0jd`2:e!.k0$s4RDP?i9usrr?F)!<2uu?i:!(rr?F)!;ulq!!$=(rrDln !!%$ iW"&cJko3?;cQh!=BSj4?!^oI@Uiq\B5)*rCi433EH?5FG'J=ZI"$QpJV/W0H@'F;IMN`4KQC+)/S=Q7DTq\_nj.&]t:ne\$i]MZEUMtr;[;(V50iYT:MLA R@';*2uN^YN/NNKr;ZqNIss'L!!IFcEcH's!!FW]ARo6J!!F]Q=]ZaE!!H(k91g0%!!>PQ4p:ib $kFa6-7'l]+sS]p1DB]e"$8Y/)#XF:7n?5lr;Zsu<)ls'rW!?F7nH9E9MA2WBl%Z9r;ZqCGC"T6 !!G!.KSG<]!$=([Ocu#qQ^O>5SY)OJUSO`aWN*&%Y-5+9ZaR?Q]&0al!!*#u!!)Ng"fhUlZp>7u s*t~> hu@]$:f1+i$PB??XRARA7fIgC27X&E,fo>F`hnRH?sseIt3-'K8"SsCh.s.[!!#ggrr?F)!<)rr!!$C)s8;ot?]kBd!:^!l WrMau5nKgkJ,~> [/^0s!oho&n`U#Cdb=0jd`2:e!.k0$s4RDP?i:!$rrVoWqu6Tq?i:!(rr?F)!<2uu?i:!&s8;ot ;?$Rql2:S^Qi@!b?i:!'rr?F)!<2uu48o3[:\Oeg?i:!(rr?F)!<2uu?i:!'rr>.[!!#ggrr?F) !<)rr!!$C)s8;ot?]kBd!:^!lWrMb!5nKgkJ,~> hu@]$:f1+j$G9=?t!MSAS5XiC2@^(E,fl=FEMeQH?sseIt3-'K8"VuCLhj:G^4U_I=6Tr JqJ`2LP^nOG*SA\R[Tbr;ZsDB4b[Xr;ZsY=]nfKr;Zsq9hS(tr;Zpd5X#\W!"9Gt 1c$m?0.nk10f'LA!!>;G4rF4u"%PmS*;oj?;H-Xs(&e1A*FE5a@qB7bBkhI%.K'5KG'J:Yr;ZsS K7nu8r;[rtOcbilQBmo,S=Q:FU8+N\W2ZbtXfen5ZF%'L\@T<6Z2Xe(rr2runG`Zls7!B]&>T8U~> hZ%NSKMtiM='/U/>[C`E@:E_XAnPdlCi"!-EH6,CF`r"TH@10kJ:W?+Km@u\A:8WGH$XjdIXcp# K8#&8Ll.C?Q'[l,R[ft@TV8-UV5C2iWiW;(YHb@=[C3QS]">Vg^V@Y'`5T`rcd:+heC)XebQ%Wo s+14'rr?F)!;c]sQN55.rr?F)!<2uu?i:!(rr?F)!;ulq!!"\OrrC+=!!*,Vrr2t*r;cfr!+5[) rr2tVrVupCr;Qi+")Io9!+5[)rr2t*r;cis!+5[)rVlkUrVupCr;Qi+")Io9!+5[)rVufr!+5^) !!W?%"^_6/S;[<2s82ldrroG&os6pqU]5i~> [/^0s!oho&n`U#Cdb=0jd`2:e!.k0$s4RDP?i:!$rrSMebPqMA?i:!(rr?F)!<2uu?i:!&s8;ot 0E1tOa8Q&>!T!bT!+5[)rVlk)r;cis!/pgV!$hFA!jr,Grr2t*r;cis!+5[)rr2t*r;cfr!/pgV !$hFA!jr,Grr2t*r;cfrr;Zh)rVlj$rW!+.s8SUIr0IB\!:^!lWrMb!5nKgkJ,~> hZ%NTKMkfM<`iL.>[C`D@:NeXAnPdlCi!s-EH-&BG'8+VH@1-jJ:W?+L3e/]A:8ZHH$XjdIXm!$ K8#&8Ll.@>Q'[l,R[]k>T:r!SUo()hWiW;(YHb@=[C3NS]">Vh^VI\&`5TcscdC1ieC)XebQ%Wo s+14Ls!@I!i838Eg=Y$.eC2glcHXPTaiDB>_nj.']t:kd\$i]NZEUJsr;[;(UnaZWT:K3eHC1"` 2uN^YN/NNKr;ZqMIss$K!!IFdEcH's!!EsJARnO6!!H)#=B?XD!!H(l91g0%!!>PQ4sBn*$j\aJ 1GLR,!>@+@1DB]e"$8Y/)#XF:7n?5lr;Zsu<)lsQrW!?9?X[DRAOunRCM[i:r;ZqCGBnN5!!P'/ KnbBcrW"*!OHE[CPa@f,S"6.DTqeE[Vl?\tXfen6ZEq!K\@T;bmBZ`l!<2uu!:^!lWrMRq5nKgk J,~> h#D0&@T?H2=^#$8?=72O@qB:cBPM=!DK'Q7F*)SKG^=[`IXcm!K7el(H>@&>G'J7YI!pEmJUrH- L51SBP'<1WR$sJ5SXuIIU8+N]W2Q_tXKJb3Z*UjH\%'#]]Y2(q_Sa=2a/[J4daQOcbQ%Wos+14' rr?F)!;c]sQN55.rr?F)!<2uu?i:!(rr?F)!;ulq!!EA[s8RHF!!$1#rr?F)!<)ot?i:!(rrM[5 rVur.rr3)q3Wmk1rr?F)!<2uu?i:!(rr?F)!<)ounf[o3!4`%."8FnZe,K@I?i:!'s8;ot?iC!) +oVHE:]L;$'UA^r!:^!lWrMau5nKgkJ,~> [/^0s!oho&n`U#Cdb=0jd`2:e!.k0$s4RDP?i:!$rrSMebPqMA?i:!(rr?F)!<2uu?i:!&s8;p# !oEtWHi=!F=oJ@#?i:!'rr?F)!<3!!nf[o3!4`%."8FnZe,K@I?i:!(rr?F)!<2uu?i:!'rrM[5 rVur.rr3)q3Wmk1rr?F)!<)rr!!$C)rr=5A!!H*tq[F7)s82ldrroG&os@!rU]5i~> h#D0&@T?H2=^#'9?=.,M@q91aBkhF"DJsN8F*2VLH$XgbI=Hd!K7nr)H>@#=GBeCZH[U?nJV&N. L51SBP'3+WR$jD5SXuLJU8+Q_W2Q_tXKJe3ZEppH\%'#\]Y2(p_8F41`i@A4daQOcbQ%Wos7QC$ r;69`p\=LXp\4IZqu3#`-N)l^i838Eg"=p,e'l^jcHXPTaiDB>_SO%%]t:kc\$i]NZEUMtr;[;( V5'cXT:K3eH^L+a2uN^YNJiWLr;ZqNIss$K!!IFcEcH's!!E=+An3Up!!OKL=]nfKr;Zsq9hS(t r;Zse5X%47rW!$NVS-0f'LA!<5.^4rF4u"%PmS*;oj@;H-Xs<"&[*$UnH5@q$5T=)2Vh .K'5KG'J:Yr;[!TK7nu8')hkT/ g](s^TN>5u>$G<>?t!MSAS,RgC27X&DfKf=F`hnRH?ssfIt3*&KS=_uCh.si V`t%ZqKE-6!6bE3V`t%Z"/kI_55bH`VtA\,r;ckqrr;os#T#"[J-GuR0^\l>!N/-[!!K4;s//'Z !#)9Js8UUm!!!CLU5po/RK*AJK !!B._fVeZJ!C!F\rr@,3s82ldrroG&n[:[kU]5i~> [/^0s!o_f$n`U#Cdb=0jd`2:e!.k0$s4dPT^Sa9o!;^mD7f^a4n>AJK!!B.bV`t%Z"/keF55bK] VuH_p!!jAkRXbSB!&3g>rrK#]r;Ztu_uHVur;[M/_uKbe+TMKMFeXpL".B2hn>AJK!!B.bV`t%Z "/keF55bK]VuH],eKFnm$[&2)/d%OAs6upMr;Zqtkh)g3!!,9]rr2tCrW!'2Q g](s^TN5/t>$P?>?X[DRA7oOgC2@^(DfKc1:Za@0M\@T;b^;%J"_o0O7WmB)=aij_bJcGHD#Q"#W iniMKi;VU>iT0:loCi%XrLX$9l/L[ZhV?l>f[n^(e'cRfc-+5NaMl*8_8*gu]=YV_[^=ZI5q!!G)> 9/%"W!#$k;5!:Y,!!!';+<(Re)_Ncr+V"AM""-&W&H)S201A))es&ck11 CM$'Ur;ZpoD.ZWC!!OKGKSG:JrW",J g&GXAN`fOi?=$uI@Uit^B5)*rCi402EcZ>FGBeCZI!pKpJV/T/H?sCgNpr;[(0WAb1j.tdNns7u]r:]L7k!)NUo#kO*A'*ARiA^CAU!7UcE!5nX5 !T0+;!<)p'o8c*L!t$Gfci3qEe+s%F]8QLcrr39"K/!f:#qLQ&PlCdbrrDNf"fhUm[Qk7rs*t~> [/^0s!o_f$n`U#Cdb=0jd`2:e!.k0$s4dPR6h13YbQ$&f!!'q5!!1u@q>gNpr;[(0WAb1j.tdNn s7u]r:]L7k!)NUo#kO*A'*ARiA^CAU!7UcE!5nX5!T0+;!<)p'o8c*L!t$Gfci3qEe+s%F]8QLc rr39"K/!f:#qLQ&PlCdb^] g&GXAN`fOj?!^lH@q0(^B5)*rCi402EH?8FGBeF\I!pKpJV/T/H$X79I MN`4KQC+)/S"6.DTq\^S;EH(jV$RS7W"9T2i>$Y?8=o&+!(ea]*&/7;k4#\8l"9AQ0 '.,:a0.H_t!&+0K!C&+2!"`.2=BSZ](C'sD&1CLjBkplJ!!-1gq>`!uL5:OR)[?BI(eTpVQ^F52 SY)RLUSOccWMur#Y->1;['dBQ]">Vh^tQ-p!W^"9n,EQks6I-Z%& fDf:.Kj7qj?X[GSAS,RgC2@^(DfKf=FEMbOH@($gIt3*&K8"VtCh%m;G^4U_I=?]tJqJc3LP^nP G*SA\R@9Y:StMdPUSOcbWN*#$Y-5+9Za@0L\@T8a]t_A"_o0O//`4bP!;F\=!6bH:bQ%Wos+13P s8;ot?\/6PrrN3#!:TpkWrMUt5RaFfJ,~> [/^0s!o_f$n`U#CdbF6lhDjEm!!)cn!W`6#pAY*mJcC<$XoJ>"!+1 fDf:.Kj7qj?t!PTAS5XhC2@^(DfKcKc.:S-kNqd6r;N_r;toD7io/hPgtUQ8f@JF"dEg+_bK@rJ `Pf[1^qRIn]",;Y['R'CY-"e*WMcVhUnXNSSsu4;Q^3o#Ocb]aNJ`RKL4k23J:E#rH[9p\F`_YD E;]c[-YI%$@pr_N?!CH7=&i7!;,C"^91h`F7RTR/5X%=n3]T,W1c-sA0.nn30f(XE2`Wo\4[)+t 6:=:584lNK:/Fed<)lt$=^,01;['dBQ]">Yi^qo?DrrN29!:TpkWrMCo5RaFfJ,~> ec0"%L0e7r@q0(^B5)*rCi+*1EcZ>FGBnL\I"$QpJV/W0H@'L?I [/^0s!oho&n`U#CdbXBphS6&jeGfLKo`"mkJcC<$XoJ>"!+1 ec0"%L0e4q@q0(^B5)*rCi402EH?5EGBeF\I!pKpJV/W0H?sCf[n[&e'ZOf c-+8Oa2Q$8_8*h!]=PP^[^J^2)I*D0J>"10JP=>2)dNV 4$>_k6:+(/7n?6F9MSD];H-Xs=BSj5?=.,M@qB7bBkqO&DfKc e,NS"O'uL.AS,RhC27X'E,fl=F`hnQH@($fIt3-'K8"VtD.S->G^4U_I=?]tJV/Z2LP^qQG*SA\ R@9Y:StMdOUSXidWN*&$Y-5+9Za@0M\[oAb^;%FoYl:X&!;t(@!<::C!<::A!<::A!<:7F!6bGe rW)uB#lr2n!!(4C!6i[c!<::C!;an>!.k0$s/l>"!!$AWs.fSq!<3&frroG&p9R!oU]5i~> [/^0s!oho&n`U#CdbjNpgV*Td!!)rsrrE*!rrE*!r;cltr;clt!s&?$s8E#urs8]*rr<'!!!*'! r;cltrrDoq!!%TMJcDkPr;Zh)JcDMF!W`6#n,EQks7Wfb%\s&S~> e,NS"OC2R.AS5XiC2@a(DfKc19ZaI6N\@T;b^;%IpZ2Ua'!;t(@!<::C!<::A!<::A!<:7F!6bGe rW)uB#lr2n!!(4C!6i[c!<::C!;an>!.k1Ks"aQEjNOlgCe?5m"q(bH'FbH]#n@Xb*[E0j4%3"O C3G?"XhDs.gtgfDh;7)Kjlu=0r42i,n`Jroio/eOgtUQ8f@JI#dEp1`bK7lH`Pf[1^q[Rp]=>>Y ['R'BYH=n+WMcViUS4?QSt):QAS5XiCM[j+EH6/DFa&+WI!pKpJqJ`2LPUhHNK0-aPE_B"R@9V9T:_gPUo('i W=c56Y->4;['mHR]">Yi^qmnC[Jp:.rrDNf"fhUmZp5+rs*t~> dJm5*TjqYGB5)*rCi402EcZAGG'J=ZI"$QpJV&N/H$X==I [/^0s!oho&n`U#Cdc'Zre@5@U!!)ut!!*#u*!$$=!<3'!!<3'!!<3'!!<3'!!<3'!rrE'!rrDus $3:,+!<3'!!<<'!qu6WrJcC<$YQ"X1Vu6Sr5,Wu3V#LJrrrDNf"fhUrZp5+rs*t~> dJm5*TjqYGB4u$rCi433EcZ>FGBnL\I"$QqJqJ`2H?sCMN`4KQC+,1 S=Q7DTqeBYVl6PoX/rJ.Z*L^D[^N]W]=bkdY5G:"!<(+A!<11^!6iXebQ,iebQ,iebQ,iebQ,ie bQ,l2!6bGe!;t%J!6iXebQ,iebfg(abQ%Wos8N$Ir9rIVRW;+W*"WJ]$471U%1EaQ$OHtF$4IOX 'ceJL1d=rQI?'emVl9Tps/cL7_p.'&oD-'!_nj.& ]t:kd\$iZMZEUL6XK&7uVPL#]TV%gFS!fV/Q'7>mO,]-WM26q?K7\Z(IXHHfG^":PE_o@+!.GeQ ARf4Z?X@#B=]e^)MN!OUOHG]kQC!u.S=Q:F TqeE[W;ih0X0&P/Z*LaE\%'#]]tV:u_o2,SrrN3#!:TpkWrMUr5RsRhJ,~> ci6l8\q+L-C2@^'DfKcG^4U_I=?ZsJV/Z2LP^nPGEnJ]R[]e; StMdPUSXleWN*&$Y->1:Za@0M\@T2UX88gr!<(+A!<11^!6iXebQ,iebQ,iebQ,iebQ,iebQ,l2 !6bGe!<14A!<:7J!6bGe!6iXeqof$?JcC<$YQ"SIq>c*HV#LJrrrDNf"fhUt\j?h#s*t~> [/^0s!or#(n`U#CdcBm!jN4S$WW3%trr<&uru;%=rrE'!rrE'!rrE'!rrE'!rrE'!s8N*!!<3&u s8E#urs&Q(!<3'!rrDrr!!%TMJcDqR!$h=?JcDPG!W`6#n,EQks7j2m%& ci6l8\q+L-C27X'DfKc19Za@0M\@T2UX88gr!<(+A!<11^!6iXebQ,iebQ,iebQ,iebQ,iebQ,l2 !6bGe!<14A!<:7J!6bGe!6iXeqof$?JcGcM)#`pT[#/0L*"`J[$l'd,-S6bp,p+-@$kWCG%0?bA #S7L[+tbrL<*Wc/@K0dDA8cmXW5$jCo)&C#s&AINkN1dbiS`SJgY1<3f$r0rcd'eYaiVTB`P]O- ^V.7k\[T#SZEg^;XfSP%W26;cU7e-LS"#h5QBdYsOH5B\MM[.DKnFu-IsufmH?aUUF)hig!,Z:W @UWVM?!CH7=&i6u;,C"]91hcG7R]X15X%=n3]T/W1c$j?0.eh10f(XE2`Ni\4[)(r6:=:584cHJ :/Fbc<)lt$=^,04;['mHR]">Vh^qdk+e@,AY!<3&frroG&o=70rU]5i~> bl:>iV/gBgD/XE6F*)PJG^=^aIXciuK7el'HYm>BGBeC[H[U?nJUrH-L51VCPBN4WR$sJ6SXuII U8+N]W2ZetXKJe4Z*UgG[^*(1WW3%tbQ%YBbT$W,bQ,iebQ,iebQ,iebQ,iebQ,iebfg(2!6bHB bR=Kq!6iXebQ,iebfg(abQ%Wos+13$s+13mrrN3#!:TpkWrMk*64BXhJ,~> [/^0s!or#(n`U#Cdc^*$m*rZAWW3%trr<&uru;%=rrE'!rrE'!rrE'!rrE'!rrE'!s8N*!!<3&u rsSo-!<<'!rrE'!s8N)rrr<%Ms+13$s+13mrrN3#!:TpkWrMk+64BXhJ,~> bl:>iV/gBgDJsN7F*2VLG^=^aI=Hd!K7el(H>I/@G'J:YI!pEmJUrK.L51VCPBN4XR$sJ5SXuLJ USO``W2Q_tXKJe4Z*UjH[^*(1WW3%tbQ%YBbT$W,bQ,iebQ,iebQ,iebQ,iebQ,iebfg(2!6bHB bR=Kq!6iXebQ,iebfg(abQ%Wos#pD]o%UR':G!Ci#7Cq[1eLkYB4bRYf[n^(e'ZLec-+5Na2Q!6_8*h! ]=PP^\$WKIYcb+0Wi;qoUnaZWT:VOAR@';*PEM&hNK&gPLk^V9K7JH#I!^0aG'.nIEH#f3CMINq ARf4Y?s[,C=]ea*?kKA@:E_XAnYmoCi+*1EcZAHG^=[`I=Hd!K8#&9M2R=PO-#NfPa7Z(S"-%A T:r$UVPgDnXKAY0ZEgjG\%'#]]tV:u_o0O_\,QL0rrDNf"fhUo\O$_"s*t~> ao=fUTQG*lEH?8FG'J=ZI!pKoJV/T/H$X==IbQ%Wos+13$s+13mrrN3#!:TpkWrMk*64BXhJ,~> [/^0s!or#(n`U#Cdd$<'mFT2HWW3%ss8N*!s8N*!s!@aG!<3'!!<3'!!<<'!!<3'!rrE'!s8N'! rr<'!!<3'!!<<'!!;c]q!.k0$s+13$s2t?C!<3&frroG&pq&j$U]5i~> ao=fUTQG*lEH?5EG'J=ZI!pKpJqAZ0H?s@bQ%Wos$$GWik:+B+q4ti&03DqCl4d]Y,nV!SmO,]*VM26q?K7\Z(IXHKgG^":PEcH&9Ci!j"B4bX`@:*>H >?P*10.eh20f(XD2`Wo\4[)(s6:=:584lNK:/Fbb <)lt$=^,0 `rA-MX+PJ9Fa&(VH@1-jJ:W?+Km@u]AUS`HG^=^bIXm!$KS>/9Ll.C>Q'[l,R[]k>TV8-UV5C2j WiW<$XoPQnWW3%=bQ%Wos+13$s+13mrrN3#!:TpkWrMk*64BXhJ,~> [/^0s!or#(n`U#Cdd?N*kL739WW3%=rr<%Ms+13$s+13mrrN3#!:TpkWrMk+64BXhJ,~> `rA-MX+PJ8G'A4XH[L9lJ:W?*L3\)]A:8ZHH$amdIXm!$K8#&8M2IL?Q'[l+R[]k>TV8*UV5C2j WiW?%XoPQnWW3%=bQ%Wos$6JMc'MQ_&-N@\01oo;X2NNEi8$4m+<)ZXj:/+AR84Q-;6UF%%4Zk_bF#Z'71GLO9/MAe51GgsK3B92b5!M>"6q'U:8 kViQ:f(%h$YHA@:NhZB4kpoCi+*1EcZAHGBnL^IXcm"K7nu8M2I7OO-,QgQ'Rc)S"#t@T ;&*VV5UAmXKAY0ZEgjG\%0)^]tV:u_SjF5o!n]$!<3&frroG&o=70rU]5i~> _uDXW_Ol='H?ssfIt3-'K8"SsD.\3?G^+O^I=?ZsJqSi4LPUhNGEnJ]R[Tb;StD^NUSOfcW2fit m]$6e`lnD_JcC<$JcC<$b5VMCrrDNf"fhUoZ9o8"s*t~> [/^0s!or#(n`U#Cddcf/m+]Xkm]$6e`r?#=JcC<$JcC<$b5VMCrrDNf"fhUoZpYP%s*t~> _uDXW_4Q1%H?sseIt*$%K8"VuD.J'=G^4X`I=?ZsJqSi4LP^qPG*SD]R@9V:StD^NUSXidW2fit m]$6e`lnD_JcA%2ij3_a&df*g4(=#F`SKhOq"ORXp\"%BkN(IOdDru+V4ETk@nf*>-7:,e-m^5e *?#M"$3CYV.n*p$W6+&krQ"qToBPW*kN1daiS`SKgY1<3f$i*rd*BnZb/q`E`P]O-^:h.i\[T#S ZEg^;XfSP%W2?AdU7e-LS=>t7QBdYrOcPK\Mi!7FKnFu.IsuckH?aUUFE);>DJX*'BP1md@UWVM ?!CH6=&i3t:f)7/9hS)L7n,m55sRXt4$#A\2)I*D0J>"10JP@?2)mTV4$>bm5sdt.7n?6F9MSD] ;H-Xs=BSj5?=.,N@qB:dBkqO%DfB`4;%^`[R\@T;c^;.S&`5TdQ\GlU1rrDNf"fhUjZ9f2!s*t~> ^]-"La/kDOIt3-'KS=_uD.S-=G^+R_I=?]tJqSi4LP^nPG*SA\R[Tb;StMdPUSXlfl)F^``lnD_ JcC<$JcC<$b5VMCrrDNf"fhUoZ9o8"s*t~> [/^0s!or#(n`U#Cde3)3jjqJ^lDaga`r?#=JcC<$JcC<$b5VMCrrDNf"fhUoZpYP%s*t~> ^]-"La/kDPIt3*&K8"VtD.S-=G^+O^I=?ZsJV/Z2LPUhOG*SA\R[]e;StD^OUSauhl)F^``lnD_ K)ZD\n^F"1,7+Vn4)1+tf^&80qYq6.rVQEdo^V;3ini8/];_$GE+NPY@2*'V>Z40S.MiI%$P"., 6thdpg$\d[s*4P1lK[TqjlGI\i83;Fg"=p,e'lakcHXPSaiDB=_nj.']Xtbc\$i]NZEUO7XK/=u VPL#]TV%gGS!fY0Q'7AnNfB$VLkpe>K7\W'IXQQhG^":PEH,o6Chm`uB4YU_@:*>H>?Y02 ]Dj;SiQJ[)P(e4.D.S-=G^+R_I=?ZsJV/Z2LP^nOGEnJ\R@9Y;TqnQajf/:\`lnD_JcC<$JcC<$ b5VMCrrDNf"fhUoZ9o8"s*t~> [/^0s!or#(n`U#CdeiM;khae/\ut1q!!(%=!!%TMJcC<$JcEmm!W`6#n,EQks7 ]Dj;SiQJ[)P(e4.D.S*=G^4U_I=?]tJqSi4LP^nOG*SA\R@9V;TqnQajf/:\`lnD_K)ZAYlbnKD )@dE4?^\sqp&+g[s!@[AqY0[NkhXS'[]Za3W2ckqV4!Bl?pcIc%LW^Q(c#*DZJ"XCb5Z8QmHX!# k2k[`iSWMIgtLE4f$r0rd*BnZaiMNA`5BF,^V%1i\[T#SZEg^q5QBdYs OH5B[MM[.DKnFu-IsuflH?aUUFE2A>D/=!&B4kdd@pr_N?!CH7=&i7K;c-@d9hS)M7n,m669m^t 4$#A]2)I*D0/"n10JP@?2E*WW4$>_l5sn%07n?6F9MSD];H-Xs=BSj6?=.)M@qB:dC27X'E,fo? F`r"UH@10kJ:`E,LPUbDN/`m[Ocu#qQ^O>5SY)OJUSOcbWN*&%Y->4<['mHR]=SB_^VI\'`5Td< lad#s!<3&frroG&m]o.lU]5i~> [Jq6DX/'/mO*Z(tH[L6jJ:W<)KnY8:LmUu/TVJ?]hl6YV`lnD_JcC<$JcC<$b5VMCrrDNf"fhUq [R:e(s*t~> [/V,[`K,Js`QcochW!Y[kih3kiniA [Jq6DX/'&hO*Q"sH[L6jJ:W<*KnY8:Lm_&1TqeH^hl6YV`lnD_K)Z;Vj0`k[%1=.EJ\1"[CcG@Uit^B5)-tDJsN8F*2YMH$XjeIt3-'KSG;>MN*UU OckomQC"#.S"61ETqeE\Vl?\tXfen6ZF%'L\@T;b^VI\'`5Td=gU[=c!<3&frroG&n[1auU]5i~> [/^05!a6tOnUCS>!8=FQ!634_!.k0$s5!\T2uEXU?e55^YY>u="Vrt9`;]u7>6l_'JcG$8!W`6# n,EQks7Nfg';PSX~> [/^05!a6tOnUCS>!8=FQ!65$=!.k0$s5!\T2uEXU?e55^YY>u="Vrt9`;]u7>6l_'JcG$8!W`6# n,EQks7Nii';PSX~> [/^05!`gPGnUCS>!8=FQ!634_!.t4YpYW)`-41&%;O5Suk5PP_qtg*dpDq5QBdYrOcPK\MM[.DKS+o.IsufmH?aUUF)c2=DJVof$3C88'J!Qt?!CK8=&i7! ;,C%^91h`F7RTR/5X%=m3]T,W1c$m@0.nk10f(XD2`Wl\4[!1<5sdt/7n?3E9MSD]:EBTJ7p0&% ?=.,NA7]CeBkqO&E,fo>F`r"TH[L9lJ:`E-L5:\DN/`m\Ocu&rQ^O;4SY)RLUnjibWN*&%Y->4; ['mHS]">Vh^qmq-`Q-'E\c2^2rrDNf"fhUm[6t\'s*t~> [/^05!a6tOnUCS>!8=FQ!634_!.k0$s5!\U];PT-!+4@X!,DK5"=KX`" [/^05!a6tOnUCS>!8=FQ!65$=!.k0$s5!\U];PT-!+4@X!,DK5"=KX`" [/^05!`gPGnUCS>!8=FQ!634_!.t4YpYDfT,7=l'=eXOCg&D]`o]Xi>SpOBl)@R#d,#F9;kkiX) /,\i%lK[TqjlGF[hqm/Dg"=p-eC2gkcHXSUaiDB>_SO%&]Xtbb\$i\sFo;:j5H1QWV5'`WT:MI@ R@';*PECrfNK&jQLkgY9Jq/?"I!U'_GBJ"JEGo_HrW#7r4YHjF?X@#B=]ea*<)ZXj:/";Q84Q-; 6:!k#4Zkbc2` [/U99Z!8=FQ!637P!.k0Gs7?:A#8%U`'c.]*)]]tB+X86Y-R^Gp/1rV21,CdG3BB2` 5!M;!6q'U:8P2]Pr;\;i<`iL/>?tTD@:Nk\B5)*sDJjH6F*2YMH$XjdIXm!%KnY;=MN!OTODk't 2KP=V4qjT_USO`aW2co"YHP4;['dBQ\\#Mg^VRe*`Q$!AbKS8Yd*g=fcHOJRaMu6;_SO"$r=0'- [^$"a*;c6Ig:/";Q84Q*:6:!h"4Zb\a2Du;H!!TD&pp<9qU]5i~> [/^05!adLYnUCS>!8=FQ!65'.!0Y5-`QQoup\t0dlIjA"f>A0<`lZNUh<4;%qu6NckLn,"g;EO_ .gHY"'GVE$)B0\<+<_sT,pt)j.kE;,0etOB2E?bB??t!PV AnPgmCi4-1EH?8GGBnL^I=?]tK8##7M2I7ONf\2X!&eneRm%LYTqeE[Vl6VrXKSh4Za@-L\@K5a ^;%M$`5Ta;b0/#Sd*U4gcd'bXaiMKA_ns7)^ASNH::@O9Z*1<"rW#auVPU#\TUq^ER[BG-P`q5k NfAsSM26n?K7SQ&I=-BeGBS(KEc>r7ChdZtAn>L^?sd2E>?Y*/<`;mn:JOSV8k;H@6pa1(5!:tg 3&WZ0V#U\!s7j&i%AWrR~> [/U99YZrWWnUCS>!8=FQ!637P!0SoA/12GM"p"`/&03,Lf.@Ob.k)be)%m;]!s&H/&fi;Lg+@jU JH2DE"fhUrZp5(qs*t~> [/U99Z!8=FQ!634_!.k0$s4dSP!!$BYrr@6@!!Mt_s5qVQs8;ot?i0j+]`J06@Y+RF rrW9$rrDNf"fhUtZp5(qs*t~> [/^05!adLYnUCS>!8=FQ!65$=!:g'h_h%ibrrBsXs8;ot?eGAYG5VCDopPjBcHlOh!!$C'rrg": !!$JZs6K[e!<<'!n,EQks7j&i%AWrR~> [/U99YZrWWnUCS>!8=FQ!637P!!"U%!;6Bms0;V)/V*nQ!29GsWrMe"5RjLgJ,~> [/U99Z!8=FQ!637P!.k0Gs7?:A$kX-f'c.`+)]]tA+X/-X-R^Dp/1rS11,LjH3BB5a 5!M;!6q'R98P;`Or;\;i<``I/>?tWE@Uiq\BPD6uDJsK7EclPLG^=acIt3-'KnY;=MN!OTO#R"; 2OKr'S=ZCIU84W`W2co"Y-5+:['dBQ\\#Mg^VRe*`Q$!@bKS8Xd*g:ecHOJSa2Z*:_SO"#r;^%i [^R$a/'PECreNJi[NLk^V9Jq/;uI!^*^G'%eGE,TW1C2%?nA7T.W ?X6o@>$"a)<)QRh9he8P84Q*:6U3k"4?>M_2Dlhm!<<'!!:TpkWrMk$5RjLgJ,~> [/^05!adLYnUCS>!8=FQ!65'.!0Y5-`QHcpp&+a]lIjD#nAG;+k/.YIaj8Z&o(r=_p?:2R`nSE' !%SHi',;5u)&aG7*ZlOL,:4cd.4d#&0/54=2)[HU4$5\k5XIk-7S$*D9MPHc.Nhbn>$G3:?smGR A7fLhCM[m,E,ouAG'A1WI!pKpJqJc2LP^nINK0&Yr;\aCR[fn>TV8*UV5L8lX/rJ-Z*UgF\%&u\ ]Y;.s_SjF5aN;WLcHjkcd*L"]bK@lF`PfX0^V0RG>=>p,Za$^:XG'G]USai]TqJ!IS=5h4Q'@Jp OH,[(B5<`N*s;,9n\91_ZE779L.5<_1j 3]K#T-Fs3Wrr<&frroG&ppWR!U]5i~> [/U99YZrWWnUCS>!8=FQ!637P!0SoA/1;SQ#6Fr3&0*#In1F\?jt.#n.3olH$3UA2#8%q&/))Y, !.b-E!!TD&p9['oU]5i~> [/U99Z!8=FQ!634_!.k12rr<&*rr<&?s8;ot?eGAY?i9ucrrh8dY0[+6s8;ot?ebS` i3TT4repdY!<<'!n,EQks7ird%AWrR~> [/^05!adLYnUCS>!8=FQ!65$=!.k12rr<&*rr<&?s8;ot?eGAY?i9ucrrh8dY0[+6s8;ot?ebS` i3TT4repdY!<<'!n,EQks7j&i%AWrR~> [/U99YZrWWnUCS>!8=FQ!6366!9=+]rrE(M!.b-$!7UuPWrMe"5RjLgJ,~> [/^05!a@(QnUCS>!8=FQ!6366!"8uH6&!GIo&[K04Ve.i!!E6$!<;0]$jRqMNlp\]n^!.a)$S=d .h<4*'bqN&)B0\<+#J6N$m4+BDTI>?k>l)@-BL (d)DGCi4-0@l"l*!<`lT2HPE\K8#&9M2I4NHM@IPS=ZCIU2i1,"pPf&Gcn [/^05!a@(QnUCS>!8=FQ!65%i!"8uH6&!GIo&[K04Ve.i!!E6$!<;0]$jRqMNlp\]n^!.a)$S=d .h<4*'bqN&)B0\<+#J6N$m4+BDTI>?k>l)@-BL (d)DGCi4-0@l"l*!<`lT2HPE\K8#&9M2I4NHM@IPS=ZCIU2i1,"pPf&Gcn [/^05!a$bKnUCS>!8=FQ!6366!9=+^rr<'!JH16$JH44#"fhUtZp>1ss*t~> [/^05!a@(QnUCS>!8=FQ!634_!.k12s8E#+rr<&Grs,b4!!"L;INJFf!+5^)$K!E8!(*;E!!"Y6 rr3>@$31')R\G!=!#t\4!qWAJK!!=uJDAW9P!@dpF rsHOK!!#rdU3@4M)k6j0!<<'!n,EQks80/i%\s&S~> [/^05!a@(QnUCS>!8=FQ!65$=!.k12s8E#+rr<&Grs,b4!!"L;INJFf!+5^)$K!E8!(*;E!!"Y6 rr3>@$31')R\G!=!#t\4!qWAJK!!=uJDAW9P!@dpF rsHOK!!#rdU3@4M)k6j0!<<'!n,EQks808l%\s&S~> [/^05!a$bKnUCS>!8=FQ!6366!9=+[s8Duus+(0$!.b.$!!TD&pp< [/^05!a@(QnUCS>!8=FQ!6366!"Ao:.Uo=6p[d:JEAeC3nc/[ir;Zitk5Yks.q,:.nF+np:`p%i !$i*f&eu,t(`FA7*ZuXO,UOle.P!&&0JP@?2E*TV4$>em5W],J!!>GY9dT`<.Nhbn>$)=9!!?G8 ?3:0-)Ja2.'*&"QGB\=YC'4urJV/Z2LP^nHNK0)Yr;[%hR[fn?SKn+6",a%WNW&n].'L"c[mg5q "&-PJNVrh\O3Gnrb:*>i$@9n;aMK;)Vnp-]r;['j[C!6EYHC.h!!K0pU7NV/!!@_$-Ip2dN/lQk5E>/BQ)f'/$AlSp??sd5F>?Y*/6pj4(5!:tg3&``P \cDd1!!)Kf"fhV"ZpG7ts*t~> [/^05!a@(QnUCS>!8=FQ!65%i!"Ao:.Uo=6p[d:JEAeC3nc/[ir;Zitk5Yks.q,:.nF+np:`p%i !$i*f&eu,t(`FA7*ZuXO,UOle.P!&&0JP@?2E*TV4$>em5W],J!!>GY9dT`<.Nhbn>$)=9!!?G8 ?3:0-)Ja2.'*&"QGB\=YC'4urJV/Z2LP^nHNK0)Yr;[%hR[fn?SKn+6",a%WNW&n].'L"c[mg5q "&-PJNVrh\O3Gnrb:*>i$@9n;aMK;)Vnp-]r;['j[C!6EYHC.h!!K0pU7NV/!!@_$-Ip2dN/lQk5E>/BQ)f'/$AlSp??sd5F>?Y*/6pj4(5!:tg3&``P \cDd1!!)Kf"fhV"[mCS"s*t~> [/^05!a$bKnUCS>!8=FQ!6366!9=+[s8;ots+(0$!.b.%!!TD&pp< [/U99ZX,,]nUCS>!8=FQ!634_!.k12s82l+rr<&Hrr@EF!!"MJrrC=B!!$C*rrA8^!!#(Zrr>"W !!9J+o)8Ui0)Y\J!F\+`rr?F)!;uisSc/Th-2miD,lRcDSc8Wh?i9s,aoDD2r;ZhDrr2tbrVus0 qu-NrU&`sIs8;ot?i0j'?i:!(rrAVh!!">Drr=>D!!&Shrr?F)!!C@Cs7-$f"+("Io)8Ui0)Y\J !F\*[rrW9$rrDNf"fhUr[6P.qs*t~> [/^05!aR:UnUCS>!8=FQ!65$=!.k12s82l+rr<&Hrr@EF!!"MJrrC=B!!$C*rrA8^!!#(Zrr>"W !!9J+o)8Ui0)Y\J!F\+`rr?F)!;uisSc/Th-2miD,lRcDSc8Wh?i9s,aoDD2r;ZhDrr2tbrVus0 qu-NrU&`sIs8;ot?i0j'?i:!(rrAVh!!">Drr=>D!!&Shrr?F)!!C@Cs7-$f"+("Io)8Ui0)Y\J !F\*[rrW9$rrDNf"fhUr\3UOus*t~> [/U99Z!8=FQ!6366!9=+[s82iss+(0$!.b.&!!TD&o [/U99ZX,,]nUCS>!8=FQ!6366!"Ju2&N=a:iV3-(XD0U+!V69ks8)crs6K^q!3_"<^`I=Vgu: "<_,_AKh$Q![V_ur;[KF4Bm#WI=HcuK8##7M2I7ONfZ0t!!SaYS"-'"rW!*UVPpMq1&_.U0XS9t 7K!2g[DB_tr;Zssbg"HjrW!<^bfe/M`jKls_8!\^!!bp"['R!?Y!Dpc"/_lh.fKDO/Xi&oQ7Dk6 "=B+dMDP22"+#KIIJj-J06M>Qr;\/W2,7Xl@q&hR?!LT:=B8F#;Gg4a9hS&K7R]^35sIOq4$#>Z 2)2ZBs8N'!n,EQks7Wic%& [/^05!aR:UnUCS>!8=FQ!65%i!"Ju2&N=a:iV3-(XD0U+!V69ks8)crs6K^q!3_"<^`I=Vgu: "<_,_AKh$Q![V_ur;[KF4Bm#WI=HcuK8##7M2I7ONfZ0t!!SaYS"-'"rW!*UVPpMq1&_.U0XS9t 7K!2g[DB_tr;Zssbg"HjrW!<^bfe/M`jKls_8!\^!!bp"['R!?Y!Dpc"/_lh.fKDO/Xi&oQ7Dk6 "=B+dMDP22"+#KIIJj-J06M>Qr;\/W2,7Xl@q&hR?!LT:=B8F#;Gg4a9hS&K7R]^35sIOq4$#>Z 2)2ZBs8N'!n,EQks7Wrg%& [/U99Z!8=FQ!6366!9=+[s8)crs+(0$!.b.'!!TD&o [/U99ZX,,]nUCS>!8=FQ!634_!.k12s7u_OrrC s#'ZR!Xhi5o`"nur;ccq!#5D4!*]@$!*K4#!#>M5!+5[)!<2utr;Zh)rr2s3rVuq"pAb'k!+5X' !+5[)rr2s4rVuq%rVlk"rVup5rr2t*r;Zisrr;os!+5a*!&aWR!Xhi5Rf [/^05!aR:UnUCS>!8=FQ!65$=!.k12s7u_OrrC s#'ZR!Xhi5o`"nur;ccq!#5D4!*]@$!*K4#!#>M5!+5[)!<2utr;Zh)rr2s3rVuq"pAb'k!+5X' !+5[)rr2s4rVuq%rVlk"rVup5rr2t*r;Zisrr;os!+5a*!&aWR!Xhi5Rf [/U99Z!8=FQ!6366!9=+[s7u]qs+(0$!.b.(!!TD&o [/^05!adLYnUCS>!8=FQ!6366!<3$.!uF.K^?PFahn"M;,nT\K!<;rss8VKe&-3"L*[`B`.QgjQ E*,"9#m/EQ,7G.s'bqN%)B0\<+!DjR-7:2k.kE;,0etRC2`Ni[4[2.r!WE'%)bE[r:Ak.q+BDTI !VQKr!c;g\%J]u5/:W5'KnbD?MN!OTO#Hq:"dkaKSY$#`!!PN`W2cm_rW!'(['dA3r;Zr8_8=.h !!H!>cHcUl!"2HDbK@lF`PfX0^V9XH#=Pu,ZE^U95lCZbV50gfrW!*^R[BG,2Z<[Z"-&4r1]7:U JUi2tr;[!PF`VS/%/BlG,%"\`>[(?5<`N*s:ese[8kDQD779I-5<_1k3]K&V-Fs3Ws6]jjWrMe" 6PH6pJ,~> [/^05!a[CWnUCS>!8=FQ!65%i!<3$.!uF.K^?PFahn"M;,nT\K!<;rss8VKe&-3"L*[`B`.QgjQ E*,"9#m/EQ,7G.s'bqN%)B0\<+!DjR-7:2k.kE;,0etRC2`Ni[4[2.r!WE'%)bE[r:Ak.q+BDTI !VQKr!c;g\%J]u5/:W5'KnbD?MN!OTO#Hq:"dkaKSY$#`!!PN`W2cm_rW!'(['dA3r;Zr8_8=.h !!H!>cHcUl!"2HDbK@lF`PfX0^V9XH#=Pu,ZE^U95lCZbV50gfrW!*^R[BG,2Z<[Z"-&4r1]7:U JUi2tr;[!PF`VS/%/BlG,%"\`>[(?5<`N*s:ese[8kDQD779I-5<_1k3]K&V-Fs3Ws6]jjWrMe$ 6kc?qJ,~> [/^05!a@(QnUCS>!8=FQ!6366!9=+[s82lss+(0$!.b.'!!TD&o [/^05!adLYnUCS>!8=FQ!634_!.k12s8E"Orr [/^05!a[CWnUCS>!8=FQ!65$=!.k12s8E"Orr [/^05!a@(QnUCS>!8=FQ!6366!9=+[s8E#us+(0$!.b.%!!TD&o [/^05!adLYnUCS>!8=H(!5\^H"rKd\_<(@go@gX(:+$\UpAbfJ% #m/?O,6neo'GVE$)B0\<+!DjS-7:2j.kE;,0etRD2E3`Z4?btq%fQG2'hM%l8c8Vl+BDTI(&e1F *b&VjAnYmnCi4/tD0'f>d%;"dkaJS=_>2!!P'SWN*!RrW!'T['dA3 r;Zr7_8=.h!!H!>cHnHJ!"1R+bK@oG[@=>8^V0RG#=Pu,Za$^:5lCZbVPKq:rW!*QR[BG,.fKDN -B=%B1]7:UJUi5ur;[0UFE;J0Bl7a#9,IO,+"1K&>?b64<`N'r;,9n\8kDQC6ps@,5<_4l3]K&V 'r:m6WrMe"6PH6pJ,~> [/^05!a[CWnUCS>!8=H(!5\^H"rKd\_<(@go@gX(:+$\UpAbfJ% #m/?O,6neo'GVE$)B0\<+!DjS-7:2j.kE;,0etRD2E3`Z4?btq%fQG2'hM%l8c8Vl+BDTI(&e1F *b&VjAnYmnCi4/tD0'f>d%;"dkaJS=_>2!!P'SWN*!RrW!'T['dA3 r;Zr7_8=.h!!H!>cHnHJ!"1R+bK@oG[@=>8^V0RG#=Pu,Za$^:5lCZbVPKq:rW!*QR[BG,.fKDN -B=%B1]7:UJUi5ur;[0UFE;J0Bl7a#9,IO,+"1K&>?b64<`N'r;,9n\8kDQC6ps@,5<_4l3]K&V 'r:m6WrMe$6kc?qJ,~> [/^05!a@(QnUCS>!8=H(!2ol"rrE*!JH16$JH44#"fhUoZ9f5"s*t~> [/^05!amU[nUCS>!8=FQ!62#=!.k0$s5a1[I/X*G.fTGJc2@VB?iL'*MuE\V,Q.QG[0(4ErrAGb rrD0Z!!$p1rr?F)!;uisTDefj-2miD-2mlETDnij?i:!'s8;ot?iL'*Qi6sc%f?5)!cn@>rr2s% rW!10s8SUIr;U.&!<2uuTDefj-2miD-2mlETDnij?i:!'s8;ot?iL'+!1<`b!9O.Z!,dPk"fhV! ZpG7ts*t~> [/^05!amU[nUCS>!8=FQ!62#=!.k0$s5a1[I/X*G.fTGJc2@VB?iL'*MuE\V,Q.QG[0(4ErrAGb rrD0Z!!$p1rr?F)!;uisTDefj-2miD-2mlETDnij?i:!'s8;ot?iL'*Qi6sc%f?5)!cn@>rr2s% rW!10s8SUIr;U.&!<2uuTDefj-2miD-2mlETDnij?i:!'s8;ot?iL'+!1<`b!9O.Z!,dPk"fhV! [mLY#s*t~> [/^05!aR:UnUCS>!8=FQ!62$i!94%Zs+(0$!.b.!!!TD&pTd'pU]5i~> [/^05!amU[nUCS>!8=FQ!62$i!;um0";W^uPJlGPs7G'VLK,i@"p*Z_$j.2*FgU-$o?)\N(^7t\ ,7kM&'c.]**$$(C+sS?[-R^Do/1rV21Gh!J3'',a5!M=p"TAB'5>+]sr;[!D<`iL*%/p5<7q6+B AJbGNDJfFfD0:#GCAe,@=+Z'YL5:\DN/ip[2Z3U[R$sP8St78-!!A+XWfR,Z"Y$^`[C8U'!!C!Q _SlBQ"\d.bccdg:!"4+raiLk$'YM8s]bp_K#?b63<`N'r;,9n[91_ZE779I-5<_4k3]K#PU]:Ru s8')h%\s&S~> [/^05!amU[nUCS>!8=FQ!62$i!;um0";W^uPJlGPs7G'VLK,i@"p*Z_$j.2*FgU-$o?)\N(^7t\ ,7kM&'c.]**$$(C+sS?[-R^Do/1rV21Gh!J3'',a5!M=p"TAB'5>+]sr;[!D<`iL*%/p5<7q6+B AJbGNDJfFfD0:#GCAe,@=+Z'YL5:\DN/ip[2Z3U[R$sP8St78-!!A+XWfR,Z"Y$^`[C8U'!!C!Q _SlBQ"\d.bccdg:!"4+raiLk$'YM8s]bp_K#?b63<`N'r;,9n[91_ZE779I-5<_4k3]K#PU]:Ru s8'2l%\s&S~> [/^05!aR:UnUCS>!8=FQ!62$i!.b-$!.b-W!!TD&pTd'pU]5i~> [/^05!amU[nUCS>!8=FQ!62#=!.k0$s5X+aYQb(-.[ki/r;[?t]B0(meKFnm$[&2)/d%O@s8N'% -&A@V-N3uF>PJ.!qklXV!<8qskl1Snlp:[P+d8-7!!#CQs8VSd55bH`Vs)d2r;Zj^VuH]'juEDA "Da]g+:>m^rr@-HV`t%Z'W8kKs6N&P!$RPj+ohU1m/R+TV`t%Z"/kA8Vu6T&5,\G\ !!"=$Ul?`#!!$5WrroG&qQrR!U]5i~> [/^05!amU[nUCS>!8=FQ!62#=!.k0$s5X+aYQb(-.[ki/r;[?t]B0(meKFnm$[&2)/d%O@s8N'% -&A@V-N3uF>PJ.!qklXV!<8qskl1Snlp:[P+d8-7!!#CQs8VSd55bH`Vs)d2r;Zj^VuH]'juEDA "Da]g+:>m^rr@-HV`t%Z'W8kKs6N&P!$RPj+ohU1m/R+TV`t%Z"/kA8Vu6T&5,\G\ !!"=$Ul?`#!!$5WrroG&qR8g%U]5i~> [/^05!aR:UnUCS>!8=FQ!62$i!.b-$!.b-W!!TD&pTd'pU]5i~> [/^05!amU[nUCS>!8=H(!5ALI"W/jnLUu:5s7P9`O_7'9*"N5Ujo>hl&2eF4j8/W5Z>D?."3:Hl #87ge(E",1*?H=H,:"Q_-n-]!/hf"81c@9P3]fJg5i&&"r]i*!%'R+>?k>i(^C'E&1LUp Ci4/X//\ft!_J[cd:+c Ld2^["WL7:_ns7)^:7Pr#lt5O>->(*!"h#]Tq@ll1D0ip&i!sZOH,?Cq>^P&7J[!7F)jSs(^gEH ":ueI@UNPK>[(?4<`N'r;,9n\91_ZE779I-5<_1j3]K#3U]:Rus8')h%\s&S~> [/^05!amU[nUCS>!8=H(!5ALI"W/jnLUu:5s7P9`O_7'9*"N5Ujo>hl&2eF4j8/W5Z>D?."3:Hl #87ge(E",1*?H=H,:"Q_-n-]!/hf"81c@9P3]fJg5i&&"r]i*!%'R+>?k>i(^C'E&1LUp Ci4/X//\ft!_J[cd:+c Ld2^["WL7:_ns7)^:7Pr#lt5O>->(*!"h#]Tq@ll1D0ip&i!sZOH,?Cq>^P&7J[!7F)jSs(^gEH ":ueI@UNPK>[(?4<`N'r;,9n\91_ZE779I-5<_1j3]K#3U]:Rus8'2l%\s&S~> [/^05!aR:UnUCS>!8=H(!.b-$!.b-$!;HNtWrMh!5n9[iJ,~> [/^05!aR:UnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrMh-6OKUgJ,~> [/^05!aR:UnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMh171,giJ,~> [/^05!a-kMnUCS>!8=FQ!64.$!.k1Irtt_$d]Rmc*=<)\*B[STS@?`!lL=K@qYU9Yrs\YXY])K6 $4\V"Wn[9gs*jt7lKRNpjlGF[hqd)Bg=Y$-eC2gkcHXPTaMu3;_nj.&]Xtbb\$`TKZELF5XK&7t V50l[TV%dER[KM.Q'7>lO,]-VLkpe>K7\Z(IXHHfG]n4OEcH#7ChmcuAn>I]?sd5F>?P*00.eh10f(XE3&s#^4[)+s6:F@684lNL:/Fbb<)m"%=^,0< ?X[GSAS5[kCM[m,EH6/DGBeF[I"$QqJqJc3Ll%%KNK93aPEhH#R@B_;T:hpSUo(&hWiN8*Yd1UB \$roZ]=ktp_8F41a3":UrroG&o=RBsU]5i~> [/^05!aR:UnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrMh-6OKUgJ,~> [/^05!aR:UnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMh171,giJ,~> [/^05!a-kMnUCS>!8=FQ!64.$!.k1HruD%)f<0Be+U\Ga)(@gSGET)Dc.Lk5m-s`DqYU9_rsekh `Jm\9$4%P;Ku*$O`rCJYlKRNpjlGF[hqm/Cg"=p,e'l^jcHXPSaMu3;_SO%%]t:kc\$iZMZEUL6 X/W(sV50l[TV%dES!fV/P`q5lNfB!TLkpe=K7\W'IXHHeGBS+MEH,o6ChmcuB4YR_@:*>G>?P'0 /hJ_01,LgG2`Wo\4[)+t6UXC684lNL:/Fed$G9=?t!PUAS5[jCM[j,EH6,CG'J=[I"$QqJqJ`2LkptJNK93aPE_B"R@B\;T:hpSUo()iWiW>+ Yd1UB[^WcX]=ktp_8F72a5!Hi"fhUo]Kut#s*t~> [/^05!aR:UnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrMh-6OKUgJ,~> [/^05!aR:UnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMh171,giJ,~> [/^05!a-kMnUCS>!8=FQ!64.$!.k1Fs!$gZXa3M_'FkBX(aD":Bn)8;VmXIhg#;#Um.']Bp\=U^ rVQU(rU/%,BJL2*$7/uMeb-o]GPg[jkiV!eio/eOgtUN6f@A?udEg+_bK@rH`Poa2^qRIn]"#5X ['R$AY-"e*WMcVhUS4 [/^05!b*d^nUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrMt,6P-$mJ,~> [/^05!b*d^nUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMt/6kH-nJ,~> [/^05!a[@VnUCS>!8=FQ!64.$!.k1Fs#0lDfW]s.1`6T,#n%Fg/j;p/?Z(FYUT1]9`m<8ji8Wk` n+HGMp\=FJe>[OV*=2rb3d\I"qo&MNn*9-"jl>@Zhqm/Dg"=p,eC2gkcHOJRaiDB=_nj.&]Xtbb \$iZLZEUL6X/`.sV50l[TV%dER[KM.P`q5lO,]*ULkpe>K7\W'IXHHeGBS+MEcH#7ChdZtB4YR_ @:*>H>?P'01;[C3QT]">Yi^qmn+`RU^_"fhUt[mCY$s*t~> [/^05!b*d^nUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrMt,6P-$mJ,~> [/^05!b*d^nUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMt/6kH-nJ,~> [/^05!a[@VnUCS>!8=FQ!64.$!.k1Es#'cBfX[,U4sC^L#RLbL()\5?/jN9<@W$LFO.2rHZF@]p f%o6Ahq5uJGsibe#n/+_RaL[(`;b,Yl0.9kj5T%UhV?l=f@SR%da?Cdc-+5M`l5m5_8*du]=PM] [^?tQB@UinZB4u$qCi433EccGJG^4U_IXcm"K8#&9M2R@QO-#KfQ'Rc)S"#t@TVA3W VPpJoXKAY0ZEgjG\%0,_]t_A!_o9U`UAkCss7j&i&>T8U~> [/^05!b*d^nUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrMt,6P-$mJ,~> [/^05!b*d^nUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrMt/6kH-nJ,~> [/^05!a[@VnUCS>!8=FQ!64.$!.k1Ds"jWEil7^=<]VKD%1!CJ#7UqK(EOkL/N5g^;da6PEIX%@ VQ-f!TT=%_+q"Yg+\77!jnZdnGjjkYjlGF[hqd)Bg"4j+e'cXicHOGQai;<<_SO%%]Xtbb\$iZL Z*1=4X/`.tV50l\T:_[DS!fY0Q'7>mO,]*ULkpe>K7SQ&IXHKgG]n4NEH,o6Chm`tB4YR^@:!8G >?P'0*Yd(OA[^WfZ]=ktp_8F4@U&P:rs7j&i&>T8U~> [/U99Y\?"qnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN(,64TdjJ,~> [/^05!bjQmnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN(/6OomkJ,~> [/U99X_0JjnUCS>!8=FQ!64.$!.k1Cs"aTHkL-i+H!?tQB@:NeYB4ksqCi402F*)PJG^=^aIXcm"K7nu8M2R=PO-,QhQ'Rf*S"-%ATVA3XV5UAn XKA\1Z*UgG\%'#]]Y;1u_o;2?rroG&qm8TuU]5i~> [/U99Y\?"qnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN(,64TdjJ,~> [/^05!bjQmnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN(/6OomkJ,~> [/U99X_0JjnUCS>!8=FQ!64.$!.k1As"F9?j3G-)K5Faa4>A9*((1K[#Rh%?#7:hP$k*jj,:4ik -R'TI&-iFR1hrc3mess$J+2U^jPo.VhV?l=f[n[&e'ZLebfe/N`l5m6^qd[s]=PM][^?tQB@Uiq[B4u!pCi433EccGIG^=[aIXcm"K8#):M2R@QO-,ThQ'Rf*S"-%ATV80WV5UAnXKA\1 ZEppH\%0,_]YD7u_q^pb"fhV"Zp5+rs*t~> [/U99Y\?"qnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN(,64TdjJ,~> [/^05!bjQmnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN(/6OomkJ,~> [/U99X_0JjnUCS>!8=FQ!64.$!.k1@s"40EnDr'9Yb7//E+)L'/12bg+;YIt$Od[V#mpqJ$OmdY $46qD#n84`Q,i+c^]/f_kiLmbiSWMIgtC?3e^Msocd'bXb/hWB`59@+^:_(h\[T#SZEg[:XfJJ$ Vkp2aU7e-LS!ob3QB[SqOH5B[MMR(CKS+i+IslZiH?XOTF)l8=DJX*&B4kdc@UNPL>Zt95<`N*s :f'n\91_ZE779I.5<_4l3]T,V1c$ld053!k0/57>2)dNV4$>bm5sn%07nH5SY)RLUSOccWN3,&Y->4; [C3QS]">Yj^qn%hT`51qs80/g%\s&S~> [/U99Y\?"qnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN(,64TdjJ,~> [/^05!bjQmnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN(/6OomkJ,~> [/U99X_0JjnUCS>!8=FQ!64.$!.k1>s!n!DoBYDfcb[#eP(.C\@9ZZ"3AN*7.NoZ>#S.:P'FYD/=!%BP1jc@piYM>Zt95=&i3u;,C"] 91_ZE779I.5bm5sdt.7n?6F9MSD\;cHe!=BSj6?=72O A7]CeBkqO&E,fo?F`r"UH[U?mJ:iN/L5:\EN/`m\Ocu&rQ^XD6SY)RLUnjldWN*&%Y->4;[C3QT ]">Yj^qo?/rroG&qm8TuU]5i~> [/^05!b=$cnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN(,6PH6pJ,~> [/^05!b3panUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN(/72)HrJ,~> [/^05!amU[nUCS>!8=FQ!64.$!.k1 [/^05!b=$cnUCS>!8=FQ!64.$!.k0$s+14Jrr^2hJ"_Gn^AeA:s8KGo';PSX~> [/^05!b3panUCS>!8=FQ!65$=!.k0$s+14Jrr^2hJ"_Gn^AeA:s8KPt';PSX~> [/^05!amU[nUCS>!8=FQ!64.$!.k19s!7UBrVH6WlJpg[g"+He]sFfq5 QB[SqOcPK\Mhm1DKS+l,Isl]jH$FLTF)c2en6:+(07nH [/^05!b=$cnUCS>!8=FQ!64.$!.k0$s+14Krrh^,!$:'Ls1\L:WrN(,6PH6pJ,~> [/^05!b3panUCS>!8=FQ!65$=!.k0$s+14Krrh^,!$:'Ls1\L:WrN(/72)HrJ,~> [/^05!amU[nUCS>!8=FQ!64.$!.k14ruV.9qY0aZoC2)/j5Se>`ji4TX/rJ)WN325bM2=UrOMrX r8HVmh;$c?tQC@UinZB4u!qCi402EccGI G^=[`IXcm"K8#&9M2I:PO-,TiQ'Rf*S"-(BTVA3XVPpJoXKAY1ZEpsJ\%'#]]tX63rroG&r3Sd( U]5i~> [/U99Y[fJgnUCS>!8=FQ!64.$!.k0$s+14KrrZC(*8Q2G^&J89s8KVs%& [/^05!b=$cnUCS>!8=FQ!65$=!.k0$s+14KrrZC(*8Q2G^&J89s8BZ"%& [/U99X^Wr`nUCS>!8=FQ!64.$!.k1,rs8T#qY9dSm,m7*h[/5uh;7)QmIgAT\,UpOiSWJHgY(61 e^N!pcd'bWaiMNA`59=*^:_(g\@8lQZEg[:XfJG#Vkp2aTq@sJS!ob3QB[SqOH,[(?5<`N*s:f'n\91h`F779I.5X%=n3]T,V1c$j>0.m2W @M&SE0/tsQ4?Yno5sn%07nHF`r"UH[U?mJ:`E, L5:_FNK0'^P*;/sQ^XD6StD[MUSOccWN3,&Y->4<[C3QT]">ZCSGrbms80>m%& [/U99Y[fJgnUCS>!8=FQ!64.$!.k0$s1/1.'*)jlrr]A');9ZA]`//8s8KVs%& [/^05!b=$cnUCS>!8=FQ!65$=!.k0$s1/1.'*)jlrr]A');9ZA]`//8s8BZ"%& [/U99X^Wr`nUCS>!8=FQ!64.$!.k1'rseu)qY9gZq"ORWpA"L]ZilNfB!TM26n?K7SRO$#qbFF`hbF E,TW1CM@EoARf1W?X@#B=]e^)<)QRh:/";Q7n6$:6:!h"4?GP`2`3EI0eY130-L [/U99Y[fJgnUCS>!8=FQ!64.$!.k0$s1/1.!!$BMrr_X0)qTZ@]Di&7s8KVs%& [/^05!b=$cnUCS>!8=FQ!65$=!.k0$s1/1.!!$BMrr_X0)qTZ@]Di&7s8BZ"%& [/U99X^Wr`nUCS>!8=FQ!64.$!.k0$s8;m`nD;sTg"4g*e'cXicHOGQai;<<_SO%%]t:kc\$`QJ ZEUL6XJr.rVPKr[T:VUCS!]P.P`h/jNfB!TLkpe=K7\XP!.-;AG'.kGE,TT0CM@HpA7K(V?X?u@ =]e^)<)QOh:/";P84Q-;6:!h!4?GS`2`3EJ0eY.2/-Z8/1c@m%& [/^05!amX\nUCS>!8=FQ!64.$!.k0$s1/1.!!$AWs+:7SWrMk,64'FeJ,~> [/^05!amU[nUCS>!8=FQ!65$=!.k0$s1/1.!!$AWs+:7SWrMk06OBOfJ,~> [/^05!aR=VnUCS>!8=FQ!64.$!.k0$s82g^mbHRNf[n[&e'ZLec-"/L`l5m5^qd[t]=PM][C!6F Ycb+/WMl_lUnaWVT:MI@R$X,(PECrfNJraNLk^S8JUm\!CFsdSF`VSCDf'<+BkM'i@q&hQ? [/^05!amX\nUCS>!8=FQ!64.$!.k0$s1/1.!!$AWs+:7SWrMk,64'FeJ,~> [/^05!amU[nUCS>!8=FQ!65$=!.k0$s1/1.!!$AWs+:7SWrMk06OBOfJ,~> [/^05!aR=VnUCS>!8=FQ!64.$!.k0$s8)a\mG$=Hf@A@!dEg+^b/qcG`PfX0^qRLo]"#5W['I!A Y-"b(WMcSgUS4=D/=!%B4kab@piYM>[(?5 <`N*s;,9q]91h]E770C-5Wq4k3B8uT1bpd>/hJ_10f(XE3&s#^4[21t6UaI784lNL:Jand4<[(!O"R/[>is7X#i$)@NN~> [/^05!amX\nUCS>!8=FQ!64.$!.k0$s1A:2QhUO]s0);"&c]=$#RD[Tq4M"G&Hi@V5_eS#rsJY! 9c=3A*CY@prr)j&pmFPc"VNt]q"t'spmFPc"VNt]q#(-uhJk7\!sfr7Dm+`lh#@PXs7j5n$)@NN~> [/^05!amU[nUCS>!8=FQ!65$=!.k0$s1A:2QhUO]s0);"&c]=$#RD[Tq4M"G&Hi@V5_eS#rsJY! 9c=3A*CY@prr)j&pmFPc"VNt]q"t'spmFPc"VNt]q#(-uhJk7\!sfr7Dm+`lh#@PXs7jAs$)@NN~> [/^05!aR=VnUCS>!8=FQ!64.$!.k0$s7u[Ymb-4De^N!pcd'eYaiMK@`59@+^:_(h\@8lQZa$^: XfJG#Vl$8bTq@pIS"#e3QBdVqOH,67NZS!/3BK>d5!V@]&dA@?&h?UN:f1.j9.(;T!*Z*L^C[b[;M "fhUr\j6Xts*t~> [/^05!amX\nUCS>!8=FQ!<)$[!<)$]!9O:0jo>C4s+13^rrLoQr;Zg]rhfku_)E),!!95&!WE'- s5*eV;Oa:i!rr<4^\n*>j>Hu<"(e*g1]RO1rr3>_/H>c;T0`MX0'<-4$K!E8!(*;E!!"Y6rr3>@ $31')R\G!=!#pLhh#@PXs7j5n$)@NN~> [/^05!amU[nUCS>!8=FQ!<)ot!<)p!!<3&Irr<%Ms+13^rrLoQr;Zg]rhfku_)E),!!95&!WE'- s5*eV;Oa:i!rr<4^\n*>j>Hu<"(e*g1]RO1rr3>_/H>c;T0`MX0'<-4$K!E8!(*;E!!"Y6rr3>@ $31')R\G!=!#pLhh#@PXs7jAs$)@NN~> [/^05!aR=VnUCS>!8=FQ!<)$[!<)$]!9O:0jo>C4s+14Fs$#r(f%&6tdEg+^bK7iF`Pf[1^qRIn \[],W['Hs?Y-"b)WMcSgUS=BQSXc.:Q^3o#OcYT_Mi*@IL4k1u<;ce%*D]C(FB04br;ZgequCG; ;?-\;2)ZWZ!!!0`9M7uK7m@I`!!*o`+q+GO/i5@=.0onR$m,oY!"(MC4?Ykf$ig8?//&!`%S'>m ;a:Eb!$+![/-c.^A7]CeC27X'DfKf>Fa&(VH[L9lJV&N.L5:\EN/`m\OVj:IQC"&0S=Z@GU8+Q^ W2Zi!Xfnt7ZaJeYrroG&p: [/^05!amRZnUCS>!8=FQ!;P[X!9O:YjoYVG!!(g:!!%TMJcE:\r;Zh)qu6Y'r;[-@O8.lk!<:pV A,ZE-P5YF^'CYr#!VnGK!!&Dcs!RY!!8IPRpF?4D#k7l_#64`erVuol.f]PTnGhq^!!#1\s8OVM !'gG^!ndhuJcFO*"fhV#ZU#(rs*t~> [/^05!amRZnUCS>!8=FQ!;QQq!<3&rrrW9$!!(gS!!%TMJcE:\r;Zh)qu6Y'r;[-@O8.lk!<:pV A,ZE-P5YF^'CYr#!VnGK!!&Dcs!RY!!8IPRpF?4D#k7l_#64`erVuol.f]PTnGhq^!!#1\s8OVM !'gG^!ndhuJcG6>!5S%&"fhV"[mCS"s*t~> [/^05!a[@VnUCS>!8=FQ!;P[X!9O:YjoYVG!!(g:!!%TMJcGKE4nI:Ue'cUhcHXMRaMu3;_SO%% ]Xtbb\$iZLZ*:C5XK&7tV50l[TUq^DS!fV/Q'7>lO,]*ULkpe=K7\XP!!b*#G'.kHE@Lhd%LP7+ =qUgB;?.qE=BAKVrW!-,7nZHE71K4rCF22-4#mZK/i5@;#QOi*/M]!\!!!Kj4?Yh8!!!'e7md=X !#&.+;[rd-(0OjI?;^k4A7]CeBl%U'DfKf>F`r%VH[UBnJV&N.LPUeFNK0'^P*;2tQ^O>5StD[M UnsrdWN*&%Y->4 [/^05!amRZnUCS>!8=FQ!<)$]!9WGC!!MEak2l[Ck5PG]jo>D;jo>C4s+13\s8;ot?i0j'?i9s) @/g00R03KXJ):/(!:9Xa!1j,h!13Zb!>#)+rro+sg].;;rVupZrr2sWrW!&+s8S;^!!#(Zrr>"W !!9J+o)8Ui0)Y\J!F\*As4mVXWrN"'5n9[iJ,~> [/^05!amRZnUCS>!8=FQ!<)p!!<<)u!!N<%s8N)us8N*!rr<&Trr<%Ms+13\s8;ot?i0j'?i9s) @/g00R03KXJ):/(!:9Xa!1j,h!13Zb!>#)+rro+sg].;;rVupZrr2sWrW!&+s8S;^!!#(Zrr>"W !!9J+o)8Ui0)Y\J!F\*As7$$g_!_4+WrMt*64TdjJ,~> [/^05!a[@VnUCS>!8=FQ!<)$]!9WGC!!MEak2l[Ck5PG]jo>D;jo>C4s+14Ds#g,1e'l^jcHXPS aN)9<_SO%%]t:kc\$`TKZ*:C5X/W(rV50l\T:VUCS!fV/P`q5kNfAsTLkpe=K7\XP!!b*#F`hbF E@Lhd%OYn"@lj]u=>!?O=B8Esr;ZsR91_Z(rW!+Z+9M*rrBk&rroG&qQ`?rU]5i~> [/^05!amRZnUCS>!8=FQ!<)$m!9O:DjoFNDjoFNDk2lXDk2l["jo>C4s+13\s8;ot?i0j'?i9s) _"7U)!!$s:rr>=`!!#7]rrq\Snc/VRrVupurr2ssrW!%%s8P=_!!$$urr?!s!!67%oDJXk/:bP2 JcFF'"fhV#ZU#(rs*t~> [/^05!amRZnUCS>!8=FQ!<)p1!<3'!rrE'!rrE'!s8N'!s8N)Trr<%Ms+13\s8;ot?i0j'?i9s) _"7U)!!$s:rr>=`!!#7]rrq\Snc/VRrVupurr2ssrW!%%s8P=_!!$$urr?!s!!67%oDJXk/:bP2 JcG-;!5S%&"fhV"[mCS"s*t~> [/^05!a[@VnUCS>!8=FQ!<)$m!9O:DjoFNDjoFNDk2lXDk2l["jo>C4s+14Bs#T)edEg+_b/qcF `Pf[1^qRLo]"#5WZa-j?Y-"b)WMcSgUS4?QSXZ(8Q^3l"OcYW`N/EFHL4k21JGfHQ/U)A\F)c.J r;[=&B4PL]@:*>H>$4s.@:lLA7fIfBkqO&E,fo?F`r"UH[L5 SY)RKUnsreWN*&%YK*O?!5S%&"fhV!Z9Snps*t~> [/^05!a6tOnUCS>!8=FQ!<)$c!9O:DjoFNDk5G>bjoFNDk2l["jo>C4s+13\s8;ot?i0j'?i9s) meZqdnq]CB"T&0!@/g0+'E.t3=82^p'E.t3 [/^05!a6tOnUCS>!8=FQ!<)p'!<3'!rrE'!s8E!&rrE'!s8N)Trr<%Ms+13\s8;ot?i0j'?i9s) meZqdnq]CB"T&0!@/g0+'E.t3=82^p'E.t3 [/U99ZWJNRnUCS>!8=FQ!<)$c!9O:DjoFNDk5G>bjoFNDk2l["jo>C4s+14As#K>kcd'eXaiMK@ `59@*^:_(h\@8lQZEg[:XfSM$Vkp2aTq@pIS!ob3QB[PpOH,gP2mf*Hjs8T>f%& [/^05!a6tOnUCS>!8=FQ!<)$d!9O:DjoFNDjoGDC"T[Zbk2l["jo>C4s+13\s8;ot?i0j'?i9s) rVQTqj!"C%!_&f\r;Zh)rr2s$rVuq(p\t3rp&G0trVm#o!!EH's3ht`!!-7$JcFR+"fhV&ZTekn s*t~> [/^05!a6tOnUCS>!8=FQ!<)p(!<3'!rrE'!rrE&u"T\Q&s8N)Trr<%Ms+13\s8;ot?i0j'?i9s) rVQTqj!"C%!_&f\r;Zh)rr2s$rVuq(p\t3rp&G0trVm#o!!EH's3ht`!!-7$JcG9?!5S%&"fhV& [Qk7rs*t~> [/U99ZWJNRnUCS>!8=FQ!<)$d!9O:DjoFNDjoGDC"T[Zbk2l["jo>C4s+14@s#BVucHXMRaMu3; _SEt$]Xtbb\$iWKZ*:C5X/W%qVPKu\T:_XDS!]M-P`q5kNfAsSLkpe=K7\XP!!b*"G'.kGE@Lhd s(2IG@q&hP;[iX*!Z*aRr;Zs?91h_UrW! [/^05!a6tOnUCS>!8=FQ!<)$]!9WGC!"7ohk2lXDjoFQ+!!(g:!!%TMJcE:\r;Zh)qu6Y'r;c]o !*fF&"!.4;s8;ot?iL'*'E.t3=82^p')hk27ese#r;RE/!!#La^BXW9s7D[L$2X]&W.G!)rroG& s0FouU]5i~> [/^05!a6tOnUCS>!8=FQ!<)p!!<<)u!"8f,s8N'!rrE*!!!(gS!!%TMJcE:\r;Zh)qu6Y'r;c]o !*fF&"!.4;s8;ot?iL'*'E.t3=82^p')hk27ese#r;RE/!!#La^BXW9s7D[L$2X]&W.G!=rrBk& rroG&s0b0$U]5i~> [/U99ZWJNRnUCS>!8=FQ!<)$]!9WGC!"7ohk2lXDjoFQ+!!(g:!!%TMJcG6>2W)d&aiMK@`59=* ^:h.i\@8lPZE^X:XfJG#Vkp2`Tq@pIS!ob3QB[SqOH, [/U99ZY;=tnUCS>!8=FQ!:]+N!8-E6!.k0$s1/1.!!$C'rr?F)!;c]q'E.t3=8r6u!!$C*rr>@a !!#4\rrq]2jo>?BrVupop\t4TrVupop\tHLo`+sc[Q49d!,@)bh>[YYs7rZX&YoAV~> [/^05!bjQmnUCS>!8=FQ!:^!g!8.;O!.k0$s1/1.!!$C'rr?F)!;c]q'E.t3=8r6u!!$C*rr>@a !!#4\rrq]2jo>?BrVupop\t4TrVupop\tHLo`+sc[Q49d!,@)bnc&U)mf*Hjs7rc\&YoAV~> [/U99Y\,hnnUCS>!8=FQ!:]+N!8-E6!.k0$s6otFn&ibn`l5m5^qd[s]=PM][^R?s5(P*(leNJraNLP:D6JUm\!#;(.BF`VPB.K'5OBP1md@UNLIrW!$A=&i5u!!F97 8OjEm!"0?&5!:tg1Fk.91CO0^$P+pH1c.*L3BB8c&,lP@'h1\b92&&U:f:4_;HR%%5o'=u0IgXH BPD:!DK'T9FEMePH@('hIt30(KnkJ@MiEaXOckooQC"&0S=Z@GTqnN^VrOKN!5S%&"fhUsW&tZe s*t~> [/U99ZY;=tnUCS>!8=FQ!64.$!.k0$s1/.0"o\K,?N:%qMuO&o_eai?iL'* Qi6sc%f?5)"`j[As8S#V!!"8Arroe4C]FEmrVupCr;Qu/")Ir:!1<`b!9O.Z!,dAfh>[YYs7rZX &YoAV~> [/^05!bjQmnUCS>!8=FQ!65$=!.k0$s1/.0"o\K,?N:%qMuO&o_eai?iL'* Qi6sc%f?5)"`j[As8S#V!!"8Arroe4C]FEmrVupCr;Qu/")Ir:!1<`b!9O.Z!,dAfnc&U)mf*Hj s7rc\&YoAV~> [/U99Y\,hnnUCS>!8=FQ!64.$!.k0$s6]hCgrROT`5BC+^:_(h\@8lQZEg[:XfJJ$Vkp2aTq@sI S!ob3QBdYrOH, [/U99ZY;=tnUCS>!8=FQ!64.$!.k0$s1/.0+oVHH:]L;$'`\2?r;c]o!$V=A"!mjFVYpJp?iL'+ q(_jK!1 [/^05!bjQmnUCS>!8=FQ!65$=!.k0$s1/.0+oVHH:]L;$'`\2?r;c]o!$V=A"!mjFVYpJp?iL'+ q(_jK!1ls*t~> [/U99Y\,hnnUCS>!8=FQ!64.$!.k0$s6TbAo$,.l_SO%$]Xtbb\$`TKZ*:@4X/`.sV50l[TV%dE R[BG-P`q5kNfB!TLkg_ [/U99ZY;=tnUCS>!8=FQ!64.$!.k0$s1/.0Gl@[J%[LH%Eq#tjr;ckqr;QbBr;ZmeBI`r\%mHoH s8V4A!!!.;To's"^]"0>eKFnm$[&2)/d%O?rsI:"!!!CLU5po/RK!6d!!FU(Ul?`#!!$5Ss4mVX WrMmp4V=IhJ,~> [/^05!bjQmnUCS>!8=FQ!65$=!.k0$s1/.0Gl@[J%[LH%Eq#tjr;ckqr;QbBr;ZmeBI`r\%mHoH s8V4A!!!.;To's"^]"0>eKFnm$[&2)/d%O?rsI:"!!!CLU5po/RK!6d!!FU(Ul?`#!!$5Ss7$$g _!_4+WrMms4qXRiJ,~> [/U99Y\,hnnUCS>!8=FQ!64.$!.k0$s6BV=ji#'P^qRIn]"#5WZa-m?Y,n\'WMcSgUS4_!_4+WrMgl4;"@gJ,~> [/U99U1,^SnUCS>!8=FQ!64.$!.k0$s1/.9q1CC2!XUB-qU>6?r;Qfl;uH[s8`]aK!13]b#lLVt *!ZZmB&!4_#kO*A'*ARiA^C8R#kO*A'*ARiA^C>T$(#*\)$^3N-X*j-s4dPWWrN$s4V"7eJ,~> [/U99V.)$VnUCS>!8=FQ!65$=!.k0$s1/.9q1CC2!XUB-qU>6?r;Qfl;uH[s8`]aK!13]b#lLVt *!ZZmB&!4_#kO*A'*ARiA^C8R#kO*A'*ARiA^C>T$(#*\)$^3N-X*j-s6osf_!_4+WrN!t4V"7e J,~> [/U99T3s4MnUCS>!8=FQ!64.$!.k0$s60JBg;(M<]Xt_a\$`QJZ*:@4X/W(rV50l[TUq^DR[BD, P`h/jNfB!TM2-h=K7\W$5Ss\+";En:?MOR*ARf1W?<\KL!!*p/qZ(+V84Q*9.hi3i!=0Jr2Dm!q$j6S4#SepO3]oPi5X$M,"T\]6*^ [/U99U1,^SnUCS>!8=FQ!64.$!.k0$s.KAogTS$FJcD2="fhV$WBC`ds*t~> [/U99V.)$VnUCS>!8=FQ!65$=!.k0$s.KAogTS$FJcDnQ!5S%&"fhV#X$$rfs*t~> [/U99T3s4MnUCS>!8=FQ!64.$!.k0$s6'E-psZsi]=GG\[^39EYcb+/Wi;nnUnaWUT:MI?R$X,( PECreNJraNLk^S8Jq&8uH[9s]F`hbGEGo]1CM@HoA7K(V?X?u34[)S?<)QOh9h\2P84Q*:6:!h" 4?GS`2Dm[:ZC@Uiq[B4u$rCi402 EccGJH$XgbIt*$%KS>/:MMmFQOHG]jQ'Rf*S%A6[rrBk&rroG&qklLcU]5i~> [/U99U1,^SnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN$s4V"7eJ,~> [/U99V.)$VnUCS>!8=FQ!65$=!.k0$s+13$s2k9@_!_4+WrN!t4V"7eJ,~> [/U99T3s4MnUCS>!8=FQ!64.$!.k0$s5j91o?OtY\@8oQZE^X9XfJJ#Vkp2aTqJ!IS"#e2QBdYr OH,[(?5=&i3t:eseZ91_ZE770C-5 [/U99T4B[VnUCS>!8=FQ!64/P!.b.0!+H?m7n?6F9hnM^;H$Rr=B\p6?=72OA7]@dBkqO&DfB`< Fa&(VH[L9lJ:`H.L51YDN/`m\P*;/sR$jD5SY)UMUSXicWN*#%YHY==['mKS]">Yi^qmq,`l?-C bKS;Zcq;a5ccs\WaiDE?_ns7)]tCtf\@/fPZEUO8XfAA!VPU)_Tq@pHS!o_2Q'7AnO,f3WMM[+B KS"c*IXHNgH$=FRF)c/:DJNu]'S-5fWrN*u4:J"bJ,~> [/U99TjogWnUCS>!8=FQ!65%i!.b.0!+H?m7n?6F9hnM^;H$Rr=B\p6?=72OA7]@dBkqO&DfB`< Fa&(VH[L9lJ:`H.L51YDN/`m\P*;/sR$jD5SY)UMUSXicWN*#%YHY==['mKS]">Yi^qmq,`l?-C bKS;Zcq;a5ccs\WaiDE?_ns7)]tCtf\@/fPZEUO8XfAA!VPU)_Tq@pHS!o_2Q'7AnO,f3WMM[+B KS"c*IXHNgH$=FRF)c/:DJNu]'S-5fWrN+"4Ue+cJ,~> [/U99SRO:QnUCS>!8=FQ!64/P!.b-$!.b-W!!TD&rhqmeU]5i~> [/U99T4B[VnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN*u4:J"bJ,~> [/U99TjogWnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN+"4Ue+cJ,~> [/U99SRO:QnUCS>!8=FQ!64/P!.b-$!.b-W!!TD&rhqmeU]5i~> [/U99T4B[VnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN*u4:J"bJ,~> [/U99TjogWnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN+"4Ue+cJ,~> [/U99SRO:QnUCS>!8=FQ!64/P!.b-$!.b-W!!TD&rhqmeU]5i~> [/U99VJ%ienUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN*t4V4CgJ,~> [/U99W+\&gnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN*u4qOLhJ,~> [/U99ULuB_nUCS>!8=FQ!64/P!.b-$!.b-W!!TD&rh_giU]5i~> [/U99VJ%ienUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN*t4V4CgJ,~> [/U99W+\&gnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN*u4qOLhJ,~> [/U99ULuB_nUCS>!8=FQ!64/P!.b-$!.b-W!!TD&rh_giU]5i~> [/U99VJ%ienUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN*t4V4CgJ,~> [/U99W+\&gnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN*u4qOLhJ,~> [/U99ULuB_nUCS>!8=FQ!64/P!.b-$!.b-W!!TD&rh_giU]5i~> [/U99VJ%ienUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN*t4V4CgJ,~> [/U99W+\&gnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN*u4qOLhJ,~> [/U99ULuB_nUCS>!8=FQ!64/P!.b-$!.b-W!!TD&rh_giU]5i~> [/U99SRO7PnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN$s4:S(cJ,~> [/U99Smj=PnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN!s4Un1dJ,~> [/U99RpdkJnUCS>!8=FQ!64/P!.b-$!.b-W!!TD&qkuRcU]5i~> [/U99SRO7PnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN$s4:S(cJ,~> [/U99Smj=PnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN!s4Un1dJ,~> [/U99RpdkJnUCS>!8=FQ!64/P!.b-$!.b-W!!TD&qkuRcU]5i~> [/U99SRO7PnUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN$s4:S(cJ,~> [/U99Smj=PnUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN!s4Un1dJ,~> [/U99RpdkJnUCS>!8=FQ!64/P!.b-$!.b-W!!TD&qkuRcU]5i~> [/U99W+e/inUCS>!8=FQ!64.$!.k0$s+13$s0_k1WrN$r3XqkaJ,~> [/U99WbFAknUCS>!8=FQ!65$=!.k0$s+13$s0_k1WrN$s3t7tbJ,~> [/U99VIqcdnUCS>!8=FQ!64/P!.b-$!.b-W!!TD&qkcC`U]5i~> [/U68W+e0YWW3%QWW3%=jo>C4s+13$s+13XrroG&rMVadU]5i~> [/U68WbFB[WW3%QWW3%=rr<%Ms+13$s+13XrroG&rM_jfU]5i~> [/U68VIqdTWW3%QWW3%=k(*M`!.b-$!42_0WrMsn3XqkaJ,~> [/U99W+e/io)AakWW [/U99WbFAko)AakWW [/U99VIqcdo)AakWW [/U<:RU\"Ns7E;n;uiourMfhtri-A,Wi?%!Wi?'!WW9%!n#??f`i9"=JcC<$JcC<$[JpE1s8JoW% AWrR~> [/U<:Rq"+Os7E;n;uiourMfhtri-A,Wi?%!Wi?'!WW9%!n#??f`i9"=JcC<$JcC<$[JpE1s8JrY% AWrR~> [/U<:QshSHs7E;n;uiourMfhtri-A,Wi?%!Wi?'!WW9%!n#??f`i=RiJH16$JH3%W"fhV$VE,0] s*t~> [/U<:RU\"Ns7E;n;uiourMfhtri-#"WW<$u"TYP&WW3%eWW3%=WW3$Ms+13$s+13XrroG&rhhdd U]5i~> [/U<:Rq"+Os7E;n;uiourMfhtri-#"WW<$u"TYP&WW3%eWW3%=WW3$Ms+13$s+13XrroG&rhqmf U]5i~> [/U<:QshSHs7E;n;uiourMfhtri-#"WW<$u"TYP&WW3%eWW3%=Wdt/$!.b-$!42_0WrN$p3Xqka J,~> [/U<:RU\"Ns8/er!;ibu;uiourMfhtri-,%Wi?%!Wr;u!WW;Fd!!($=!!%TMJcC<$JcE.X"fhV% V`G9^s*t~> [/U<:Rq"+Os8/er!;ibu;uiourMfhtri-,%Wi?%!Wr;u!WW;Fd!!($=!!%TMJcC<$JcE.X"fhV% W&kH`s*t~> [/U<:QshSHs8/er!;ibu;uiourMfhtri-,%Wi?%!Wr;u!WW;Fd!!($=JH16$JH16$ZiC90s8AfU% AWrR~> [/U<:RU\"Ns88ku;ufnqWWQ3#WWbKJ/Vd*^7fccsYUaiDE>^8dKLBi7#;$@r3!!!TD& rhhddU]5i~> [/U<:Rq"+Os88ku;ufnqWWQ3#WWbKJ/Vd*^7fccsYUaiDE>^8dKLBi7#;$@r3!!!TD& rhqmfU]5i~> [/U<:QshSHs88ku;ufnqWWQ3#WW [/U<:VdD'Vs88nr!;ri!;uiour2T_rs/Q)!ri5tu!NH.eWW3%=jo>C4s+13$s+13XrroG&r1uF_ U]5i~> [/U<:W*_0Ws88nr!;ri!;uiour2T_rs/Q)!ri5tu!NH.eWW3%=rr<%Ms+13$s+13XrroG&r1uI` U]5i~> [/U<:V-bgSs88nr!;ri!;uiour2T_rs/Q)!ri5tu!NH.eWW3%=jo>C4s+13Es"!m0gs3aCWLf9/ Is#R>?<:$!84>j15!;(o5XS%7:f^n8E.*S/V7":mjnOE,_#FS [/U<:VdD'Vs8Aqt<;ljt<;ig!;uioug8Y,Q`o[7$JcC<$JcC<$[JpE1s88]S%& [/U<:W*_0Ws8Aqt<;ljt<;ig!;uioug8Y,Q`r?#=JcC<$JcC<$[JpE1s88]T%& [/U<:V-bgSs8Aqt<;ljt<;ig!;uioug8Y,Q`o[7$JcC<$JcC<$[JpE1s8/QP%& [/U<:VdD'Vs8Atq!<&o";uioug8Y,Q`o[7$JcC<$JcC<$[JpE1s88]S%& [/U<:W*_0Ws8Atq!<&o";uioug8Y,Q`r?#=JcC<$JcC<$[JpE1s88]T%& [/U<:V-bgSs8Atq!<&o";uioug8Y,Q`o[7$JcC<$JcC<$[JpE1s8/QP%& [/U<:Ve%T_s8K"u<;Z^r<;rm";uioug8Y,Q`o[7$JcC<$JcC<$[JpE1s8SuZ%\s&S~> [/U<:WF[fas8K"u<;Z^r<;rm";uioug8Y,Q`r?#=JcC<$JcC<$[JpE1s8T#\%\s&S~> [/U<:V.;<\s8K"u<;Z^r<;rm";uioug8Y,Q`o[7$JcC<$JcC<$[JpE1s8SoW%\s&S~> [/U<:Ve%T_s8K%p! [/U<:WF[fas8K%p! [/U<:V.;<\s8K%p! [/UE=Ve%T_s/N(uq>^_!WiB"uWW:bQ!!(%$!!%TMJcC<$JcE.X"fhV&V`YHas*t~> [/UE=WF[fas/N(uq>^_!WiB"uWW:bQ!!(%=!!%TMJcC<$JcE.X"fhV&W'(Wcs*t~> [/UE=V.;<\s/N(uq>^_!WiB"uWW:bQ!!(%$!!%TMJcC<$JcE.X"fhV&V)o0^s*t~> [/UB [/UB [/UB [/U<:S7FCTs7E;n;uioug8Y,Q`o[7$JcC<$JcC<$[JpE1s8J`T';PSX~> [/U<:Sn'UVs7E;n;uioug8Y,Q`r?#=JcC<$JcC<$[JpE1s8JcV';PSX~> [/U<:RUe.Qs7E;n;uioug8Y,Q`o[7$JcC<$JcC<$[JpE1s8AWQ';PSX~> [/U<:S7FCTs7E;n;uioug8Y,Q`o[7$JcC<$JcC<$[JpE1s8J`T';PSX~> [/U<:Sn'UVs7E;n;uioug8Y,Q`r?#=JcC<$JcC<$[JpE1s8JcV';PSX~> [/U<:RUe.Qs7E;n;uioug8Y,Q`o[7$JcC<$JcC<$[JpE1s8AWQ';PSX~> [/U<:S7FCTs791k!3-%QWW3%=jo>C4s+13$s+13XrroG&rh;LgU]5i~> [/U<:Sn'UVs791k!3-%QWW3%=rr<%Ms+13$s+13XrroG&rhDUiU]5i~> [/U<:RUe.Qs791k!3-%QWW3%=jo>C4s+13$s+13XrroG&rLl:dU]5i~> [/U99Q"MqRnGiQhJH16$JH16$JH4$s"fhV&TK*RYs*t~> [/U99QY/.TnGiQhJH16$JH16$JH4$s"fhV&TK*RYs*t~> [/U99P[uYNnGiQhJH16$JH16$JH4$s"fhV&Si@:Vs*t~> [/U68Q"MrBWW3$MWe%1$We%1$WmIdGrrSiR&>T8U~> [/U68QY//DWW3$MWe%1$We%1$WmIdGrrSiR&>T8U~> [/U68P[uZ>WW3$MWe%1$We%1$WmIdGrrScO&>T8U~> [/U99Q"MqRo)AdlWW9'irrE,"o)A^jWq-/i!.fWNIt<*#It`CPWrN)#TK*RYs*t~> [/U99QY/.To)AdlWW9'irrE,"o)A^jWq-/i!.fWNIt<*#It`CPWrN)#TK*RYs*t~> [/U99P[uYNo)AdlWW9'irrE,"o)A^jWq-/i!.fWNIt<*#It`CPWrN)#Si@:Vs*t~> [/U<:QYSU]s7E;p;uiouWrM^k"&o9#s7E;n;uiruoVqpk!.fWNIt<*#It`CPWW`A$TfWm^s*t~> [/U<:RVOp`s7E;p;uiouWrM^k"&o9#s7E;n;uiruoVqpk!.fWNIt<*#It`CPWW`A$UH9*`s*t~> [/U<:QYSR\s7E;p;uiouWrM^k"&o9#s7E;n;uiruoVqpk!.fWNIt<*#It`CPWW`A#TK3^\s*t~> [/U<:QYSU]s7E;p;uiouWrM^k"&o9#s7E;n;uiruoVqpk!.fWNIt<*#It`CPWW`A$TfWm^s*t~> [/U<:RVOp`s7E;p;uiouWrM^k"&o9#s7E;n;uiruoVqpk!.fWNIt<*#It`CPWW`A$UH9*`s*t~> [/U<:QYSR\s7E;p;uiouWrM^k"&o9#s7E;n;uiruoVqpk!.fWNIt<*#It`CPWW`A#TK3^\s*t~> [/UB [/UB [/UB [/UE=XDL&!s/N(uq>^e#WiB"uWW9(!qPjNprW)tu"]PK%s/N*u!!$!pWWQ3#WrN$t"'#[8/,ZCJ ;uhK!JU`6#JU`B's/Q,!!i%dcU]5i~> [/UE=X_g/"s/N(uq>^e#WiB"uWW9(!qPjNprW)tu"]PK%s/N*u!!$!pWWQ3#WrN$t"'#[8/,ZCJ ;uhK!JU`6#JU`B's/Q,!!i.jdU]5i~> [/UE=Wba\qs/N(uq>^e#WiB"uWW9(!qPjNprW)tu"]PK%s/N*u!!$!pWWQ3#WrN$t"'#[8/,ZCJ ;uhK!JU`6#JU`B's/Q,!!hhU`U]5i~> [/U<:XDL&!s8K%p! [/U<:X_g/"s8K%p! [/U<:Wba\qs8K%p! [/U<:XDL&!s8K"u<;Z^r<;rm$;uiouWrN'u!*&dps/H6%!36(!Wql\q<;rm";uiruri-,/'jm6@ j8GtY;uhK!JU`6#JU`B's/Q,!!i%dcU]5i~> [/U<:X_g/"s8K"u<;Z^r<;rm$;uiouWrN'u!*&dps/H6%!36(!Wql\q<;rm";uiruri-,/'jm6@ j8GtY;uhK!JU`6#JU`B's/Q,!!i.jdU]5i~> [/U<:Wba\qs8K"u<;Z^r<;rm$;uiouWrN'u!*&dps/H6%!36(!Wql\q<;rm";uiruri-,/'jm6@ j8GtY;uhK!JU`6#JU`B's/Q,!!hhU`U]5i~> [/U<:XDL&!s8Atq!<&o&;uiouWrK*!p]1>o"]PK%s/N*o!<9&$;uiruri-,/8sRs!oDPZi;uhK! JU`6#JU`B's/Q,!!i%dcU]5i~> [/U<:X_g/"s8Atq!<&o&;uiouWrK*!p]1>o"]PK%s/N*o!<9&$;uiruri-,/8sRs!oDPZi;uhK! JU`6#JU`B's/Q,!!i.jdU]5i~> [/U<:Wba\qs8Atq!<&o&;uiouWrK*!p]1>o"]PK%s/N*o!<9&$;uiruri-,/8sRs!oDPZi;uhK! JU`6#JU`B's/Q,!!hhU`U]5i~> [/U<:Q!uAGs8Aqt<;ljt<;ig#;uiouWrN'u!*&dps/H6%!36(!Wql\q<;rm";uiruri-,PC;9E@ ci'jE;uhK!JU`6#JU`B's/Q,!!hD:\U]5i~> [/U<:QXVSIs8Aqt<;ljt<;ig#;uiouWrN'u!*&dps/H6%!36(!Wql\q<;rm";uiruri-,PC;9E@ ci'jE;uhK!JU`6#JU`B's/Q,!!hM@]U]5i~> [/U<:P[Q/Ds8Aqt<;ljt<;ig#;uiouWrN'u!*&dps/H6%!36(!Wql\q<;rm";uiruri-,PC;9E@ ci'jE;uhK!JU`6#JU`B's/Q,!!h;4[U]5i~> [/U<:Q!uAGs88nr!;ri#;uiouWrN!s!*&jrs/H6%!36(!Wr)hs<;``u;uirurMfsWj7D%'WW?'! JU`6#JU`6#Kn'-&s8N.k3"D_`J,~> [/U<:QXVSIs88nr!;ri#;uiouWrN!s!*&jrs/H6%!36(!Wr)hs<;``u;uirurMfsWj7D%'WW?'! JU`6#JU`6#Kn'-&s8N.l3"D_`J,~> [/U<:P[Q/Ds88nr!;ri#;uiouWrN!s!*&jrs/H6%!36(!Wr)hs<;``u;uirurMfsWj7D%'WW?'! JU`6#JU`6#Kn'-&s8N.j3"D_`J,~> [/U<:Q!uAGs88ku;ufnqWWc?%WW9(!qPjNprW)tu"]PK%s/N*u!!$!pWWQ3#WrM^k!E9&MIt<*# It<*'J,cPKrrS`N%\s&S~> [/U<:QXVSIs88ku;ufnqWWc?%WW9(!qPjNprW)tu"]PK%s/N*u!!$!pWWQ3#WrM^k!E9&MIt<*# It<*'J,cPKrrScO%\s&S~> [/U<:P[Q/Ds88ku;ufnqWWc?%WW9(!qPjNprW)tu"]PK%s/N*u!!$!pWWQ3#WrM^k!E9&MIt<*# It<*'J,cPKrrS]M%\s&S~> [/U<:O_?VPs8/er!;ic";uiouWrMjo$WI,+W`/tus/N(!<; [/U<:P%Z_Qs8/er!;ic";uiouWrMjo$WI,+W`/tus/N(!<; [/U<:O(^DNs8/er!;ic";uiouWrMjo$WI,+W`/tus/N(!<; [/U<:O_?VPs7E;p;uiouWrM^k"&o9#s7E;n;uiruoVqpk!.fWNIt<*#It`CPWW`A$W&b?^s*t~> [/U<:P%Z_Qs7E;p;uiouWrM^k"&o9#s7E;n;uiruoVqpk!.fWNIt<*#It`CPWW`A$W&b?^s*t~> [/U<:O(^DNs7E;p;uiouWrM^k"&o9#s7E;n;uiruoVqpk!.fWNIt<*#It`CPWW`A#V`G6]s*t~> [/U<:O_?VPs7E;p;uiouWrM^k"&o9#s7E;n;uiruoVqpk!.fWNIt<*#It`CPWW`A$W&b?^s*t~> [/U<:P%Z_Qs7E;p;uiouWrM^k"&o9#s7E;n;uiruoVqpk!.fWNIt<*#It`CPWW`A$W&b?^s*t~> [/U<:O(^DNs7E;p;uiouWrM^k"&o9#s7E;n;uiruoVqpk!.fWNIt<*#It`CPWW`A#V`G6]s*t~> [/U<:UM2Wds791m!3-%!s791k!36(j [/U<:UM2Wds791m!3-%!s791k!36(j [/U<:Tk?3^s791m!3-%!s791k!36(j [/U99UM2WdnGiWj!35Ph!35Ph!35PhJU`6#JU`6#Kn'-&s8N.n2[lJ]J,~> [/U99UM2WdnGiWj!35Ph!35Ph!35PhJU`6#JU`6#Kn'-&s8N.o3"2S^J,~> [/U99Tk?3^nGiWj!35Ph!35Ph!35PhJU`6#JU`6#Kn'-&s8N.m2[lJ]J,~> [/U68UM2XTWW3$MWe%1$We%1$WmIdGrrSiP%& [/U68UM2XTWW3$MWe%1$We%1$WmIdGrrSlR%& [/U68Tk?4NWW3$MWe%1$We%1$WmIdGrrSfO%& [/U68Rui^-p%S1Zp%S1Pp&=R^o(;PPo_A+OoDS=\p&=URoDS=\oD\C]p%S1Zp[n7WpAXg_q"sg^ q!n(Wp\4I^q>0gap\Xg`q>9pbq"X[`q#:*]q#:!dp\O[Zq>U0gq>0m`qY0mdr;QZnrdk+Bs8Mur rr2rrrqlWmqYg3dp\ssdpA=U\o[3:)nc&%Vn,DkVnG_nKnFuJFoD8+Yp&=[ap\jmdp@n@]q>U0f qtU!`qY9jgrg>_YU]5i~> [/U68SoDS4Yo)A1YnGVePnG_kSn+?,HnbVkVo)&%Tp&=[ap\jmdp@7qVqtp0f q>L0hq=s^ergGeZU]5i~> [/U68RZ [/U37NFVlqrg*PKrKR;Hrg*;Cqig<0rf[#qiL?1rK$i;qN9s(rfd5DrK[AKrg!JIrK[ALrg*DIrg<\Org*MJlBM:5 rfmDIqNUuCqNUlBoU#E?rg!AFrK[AJqj%#Brfc`4rfR2ArfR/@plYN:plb96qNLZrf?o [/U37Nb&&trg3VMrKR;Irg3AEqiprBnWa$:n<3[1f8oljmZ%(%rf-o9m>_"'kE#V)rK-f:oTK07 qiU9/oTT0:rg!GJrg3VMrg!GJrgEMIrgrfR2CrK6lDpQGNoT'&\/.JBSJ,~> [/U37MdcNkrfmDGrK@/Drfm&Erfd)>rfHW1qi:Z7pPo$.nW!O,rf-3$qMP91qhk$( oSia.rf$`6rJ^W5oT&I&pQ"X%rfI#>rK.#@rf[,Arfm/@rg*;Crg*GGrKHN0rfd>Erfd2ArfR&? qigE3rfd5BrKI5FpQPT>rfR2ArK$i;pQ,<6rf@#!,rf6K/mZ%4,rJpc7qMtH6rJpc7qMYJ\/.JBSJ,~> [/U3!=#K\-rAEFjpGW"0rAO:*r\hnVr\XR0r\XL0qDA(*n202`q_[e"r\VbToJZ\-qDS=1pGVb' r\j:(rAOO1pGVn-qDeI5r\j^6lT"/goJZ\-rAO:,nM^8(rAXU5r\j^6pbqCph),*er\XR0oJH(o r\VkUj>6rf/eAMfs*t~> [/U3#=>g"4r\XU1rAFI2r]'("pGVk,q_nF2qDQJRpGDM"q_\7/q_[+dr\VVPr\ja5r\j^4pbr(0 r\jX4oJZY,nM]npoJZY,r\ja8r\s[5q`!FmpG`(2r\sg7i&CWnpG_V%qD\1-l8APtqDJ7/pGMh) rAF4(r\aR0rAF@,rA44*rA4=-j>6`kq_Rt'mPP(q/eAMfs*t~> [/U2s [/U.R&bQ_6&+gA/&+gA2&,d(:&c*(9&,-S.&,6Y5&,6Y,&,-Y3%fQq*%fHk6%fQq6%egP#%fHq; &Gm"'&GH_7%f-_8&H34>%fHq8&H34=%djo#%fR"5%fHk9%f6\/%eL5#%/gY$%/LA2%.O]$$1nMk $2P#$$fhWn$Mk2*$i:A3$iLM2$iULh$hOl($e,L]$N:G4$LS3#!WEP's*t~> [/U.S&bQ_6&+gA/&+gA2&,d(:&c*(9&,-S.&,6Y5&,6Y,&,-Y3%fQq*%fHk6%fQq6%egP#%fHq; &Gm"'&GH_7%f-_8&H34>%fHq8&H34=%djo#%fR"5%fHk9%f6\/%eL5#%/gY$%/LA2%.O]$$1nMk $2P#$$fhWn$Mk2*$i:A3$iLM2$iULh$hOl($e,L]$N:G4$LS3#!WEP's*t~> [/U.R&bQ_6&+gA/&+gA2&,d(:&c*(9&,-S.&,6Y5&,6Y,&,-Y3%fQq*%fHk6%fQq6%egP#%fHq; &Gm"'&GH_7%f-_8&H34>%fHq8&H34=%djo#%fR"5%fHk9%f6\/%eL5#%/gY$%/LA2%.O]$$1nMk $2P#$$fhWn$Mk2*$i:A3$iLM2$iULh$hOl($e,L]$N:G4$LS3#!WEP's*t~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> JcC<$JcC<$JcC<$M>r)~> %%EndData showpage %%Trailer end %%EOF fxt-0.3.15/PaxHeaders/depcomp0000644000000000000000000000013213314420545013032 xustar0030 mtime=1530012005.179819836 30 atime=1746715490.267509394 30 ctime=1746716504.667239371 fxt-0.3.15/depcomp0000755000175000017500000005601713314420545012534 0ustar00samysamy#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2016-01-11.22; # UTC # Copyright (C) 1999-2017 Free Software Foundation, Inc. # 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, see . # 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 Alexandre Oliva . case $1 in '') echo "$0: No command. Try '$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by 'PROGRAMS ARGS'. object Object file output by 'PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputting dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac # Get the directory component of the given path, and save it in the # global variables '$dir'. Note that this directory component will # be either empty or ending with a '/' character. This is deliberate. set_dir_from () { case $1 in */*) dir=`echo "$1" | sed -e 's|/[^/]*$|/|'`;; *) dir=;; esac } # Get the suffix-stripped basename of the given path, and save it the # global variable '$base'. set_base_from () { base=`echo "$1" | sed -e 's|^.*/||' -e 's/\.[^.]*$//'` } # If no dependency file was actually created by the compiler invocation, # we still have to create a dummy depfile, to avoid errors with the # Makefile "include basename.Plo" scheme. make_dummy_depfile () { echo "#dummy" > "$depfile" } # Factor out some common post-processing of the generated depfile. # Requires the auxiliary global variable '$tmpdepfile' to be set. aix_post_process_depfile () { # If the compiler actually managed to produce a dependency file, # post-process it. if test -f "$tmpdepfile"; then # Each line is of the form 'foo.o: dependency.h'. # Do two passes, one to just change these to # $object: dependency.h # and one to simply output # dependency.h: # which is needed to avoid the deleted-header problem. { sed -e "s,^.*\.[$lower]*:,$object:," < "$tmpdepfile" sed -e "s,^.*\.[$lower]*:[$tab ]*,," -e 's,$,:,' < "$tmpdepfile" } > "$depfile" rm -f "$tmpdepfile" else make_dummy_depfile fi } # A tabulation character. tab=' ' # A newline character. nl=' ' # Character ranges might be problematic outside the C locale. # These definitions help. upper=ABCDEFGHIJKLMNOPQRSTUVWXYZ lower=abcdefghijklmnopqrstuvwxyz digits=0123456789 alpha=${upper}${lower} if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Avoid interferences from the environment. gccflag= dashmflag= # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi cygpath_u="cygpath -u -f -" if test "$depmode" = msvcmsys; then # This is just like msvisualcpp but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvisualcpp fi if test "$depmode" = msvc7msys; then # This is just like msvc7 but w/o cygpath translation. # Just convert the backslash-escaped backslashes to single forward # slashes to satisfy depend.m4 cygpath_u='sed s,\\\\,/,g' depmode=msvc7 fi if test "$depmode" = xlc; then # IBM C/C++ Compilers xlc/xlC can output gcc-like dependency information. gccflag=-qmakedep=gcc,-MF depmode=gcc fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## Note that this doesn't just cater to obsosete pre-3.x GCC compilers. ## but also to in-use compilers like IMB xlc/xlC and the HP C compiler. ## (see the conditional assignment to $gccflag above). ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). Also, it might not be ## supported by the other compilers which use the 'gcc' depmode. ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The second -e expression handles DOS-style file names with drive # letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the "deleted header file" problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. ## Some versions of gcc put a space before the ':'. On the theory ## that the space means something, we add a space to the output as ## well. hp depmode also adds that space, but also prefixes the VPATH ## to the object. Take care to not repeat it in the output. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e "s|.*$object$||" -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like '#:fec' to the end of the # dependency line. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' \ | tr "$nl" ' ' >> "$depfile" echo >> "$depfile" # The second pass generates a dummy entry for each header file. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" ;; xlc) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts '$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done aix_post_process_depfile ;; tcc) # tcc (Tiny C Compiler) understand '-MD -MF file' since version 0.9.26 # FIXME: That version still under development at the moment of writing. # Make that this statement remains true also for stable, released # versions. # It will wrap lines (doesn't matter whether long or short) with a # trailing '\', as in: # # foo.o : \ # foo.c \ # foo.h \ # # It will put a trailing '\' even on the last line, and will use leading # spaces rather than leading tabs (at least since its commit 0394caf7 # "Emit spaces for -MD"). "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each non-empty line is of the form 'foo.o : \' or ' dep.h \'. # We have to change lines of the first kind to '$object: \'. sed -e "s|.*:|$object :|" < "$tmpdepfile" > "$depfile" # And for each line of the second kind, we have to emit a 'dep.h:' # dummy dependency, to avoid the deleted-header problem. sed -n -e 's|^ *\(.*\) *\\$|\1:|p' < "$tmpdepfile" >> "$depfile" rm -f "$tmpdepfile" ;; ## The order of this option in the case statement is important, since the ## shell code in configure will try each of these formats in the order ## listed in this file. A plain '-MD' option would be understood by many ## compilers, so we must ensure this comes after the gcc and icc options. pgcc) # Portland's C compiler understands '-MD'. # Will always output deps to 'file.d' where file is the root name of the # source file under compilation, even if file resides in a subdirectory. # The object file name does not affect the name of the '.d' file. # pgcc 10.2 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using '\' : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... set_dir_from "$object" # Use the source, not the object, to determine the base name, since # that's sadly what pgcc will do too. set_base_from "$source" tmpdepfile=$base.d # For projects that build the same source file twice into different object # files, the pgcc approach of using the *source* file root name can cause # problems in parallel builds. Use a locking strategy to avoid stomping on # the same $tmpdepfile. lockdir=$base.d-lock trap " echo '$0: caught signal, cleaning up...' >&2 rmdir '$lockdir' exit 1 " 1 2 13 15 numtries=100 i=$numtries while test $i -gt 0; do # mkdir is a portable test-and-set. if mkdir "$lockdir" 2>/dev/null; then # This process acquired the lock. "$@" -MD stat=$? # Release the lock. rmdir "$lockdir" break else # If the lock is being held by a different process, wait # until the winning process is done or we timeout. while test -d "$lockdir" && test $i -gt 0; do sleep 1 i=`expr $i - 1` done fi i=`expr $i - 1` done trap - 1 2 13 15 if test $i -le 0; then echo "$0: failed to acquire lock after $numtries attempts" >&2 echo "$0: check lockdir '$lockdir'" >&2 exit 1 fi if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[$lower]*:,$object:," "$tmpdepfile" > "$depfile" # Add 'dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else make_dummy_depfile fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. 'cc -MD -o foo.o ...' puts the dependencies into 'foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in 'foo.d' instead, so we check for that too. # Subdirectories are respected. set_dir_from "$object" set_base_from "$object" if test "$libtool" = yes; then # Libtool generates 2 separate objects for the 2 libraries. These # two compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir$base.o.d # libtool 1.5 tmpdepfile2=$dir.libs/$base.o.d # Likewise. tmpdepfile3=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d "$@" -MD fi stat=$? if test $stat -ne 0; then rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done # Same post-processing that is required for AIX mode. aix_post_process_depfile ;; msvc7) if test "$libtool" = yes; then showIncludes=-Wc,-showIncludes else showIncludes=-showIncludes fi "$@" $showIncludes > "$tmpdepfile" stat=$? grep -v '^Note: including file: ' "$tmpdepfile" if test $stat -ne 0; then rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" # The first sed program below extracts the file names and escapes # backslashes for cygpath. The second sed program outputs the file # name when reading, but also accumulates all include files in the # hold buffer in order to output them again at the end. This only # works with sed implementations that can handle large buffers. sed < "$tmpdepfile" -n ' /^Note: including file: *\(.*\)/ { s//\1/ s/\\/\\\\/g p }' | $cygpath_u | sort -u | sed -n ' s/ /\\ /g s/\(.*\)/'"$tab"'\1 \\/p s/.\(.*\) \\/\1:/ H $ { s/.*/'"$tab"'/ G p }' >> "$depfile" echo >> "$depfile" # make sure the fragment doesn't end with a backslash rm -f "$tmpdepfile" ;; msvc7msys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for ':' # in the target name. This is to cope with DOS-style filenames: # a dependency such as 'c:/foo/bar' could be seen as target 'c' otherwise. "$@" $dashmflag | sed "s|^[$tab ]*[^:$tab ][^:][^:]*:[$tab ]*|$object: |" > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this sed invocation # correctly. Breaking it into two sed invocations is a workaround. tr ' ' "$nl" < "$tmpdepfile" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # X makedepend shift cleared=no eat=no for arg do case $cleared in no) set ""; shift cleared=yes ;; esac if test $eat = yes; then eat=no continue fi case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -arch) eat=yes ;; -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix=`echo "$object" | sed 's/^.*\././'` touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" # makedepend may prepend the VPATH from the source file name to the object. # No need to regex-escape $object, excess matching of '.' is harmless. sed "s|^.*\($object *:\)|\1|" "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process the last invocation # correctly. Breaking it into two sed invocations is a workaround. sed '1,2d' "$tmpdepfile" \ | tr ' ' "$nl" \ | sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' \ | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi # Remove '-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E \ | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test "X$1" != 'X--mode=compile'; do shift done shift fi IFS=" " for arg do case "$arg" in -o) shift ;; $object) shift ;; "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E 2>/dev/null | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::\1:p' | $cygpath_u | sort -u > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::'"$tab"'\1 \\:p' >> "$depfile" echo "$tab" >> "$depfile" sed < "$tmpdepfile" -n -e 's% %\\ %g' -e '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; msvcmsys) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # 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-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: fxt-0.3.15/PaxHeaders/ChangeLog0000644000000000000000000000013215007141471013231 xustar0030 mtime=1746715449.007322373 30 atime=1746715456.916075847 30 ctime=1746716504.660087797 fxt-0.3.15/ChangeLog0000644000175000017500000007227615007141471012735 0ustar00samysamy2024-11-23 22:34 sthibaul * tools/Makefile.am: make sure bindir is created before install-exec-local 2024-11-07 11:01 sthibaul * tools/: fut_bench.c, fut_record.c: Fix build with gcc-14 on 64bit systems where pthread_self returns a pointer Casting to uintptr_t allows to transtype from pointer to integer, and then down/upcasting between integer types will be fine. 2024-11-07 10:59 sthibaul * tools/ev.c: Fix failure test 2024-06-05 11:28 sthibaul * tools/fut-template.h: Note how fut.h is generated 2023-08-21 18:50 sthibaul * tools/fxt.h: Fix building on unknown archs supported by gcc 2023-08-05 10:14 sthibaul * tools/fut_record.c: fut_record: fix typo in fut_getstamp on windows 2021-04-30 09:50 sthibaul * configure.ac: 0.3.14 released 2021-04-30 09:44 sthibaul * configure.ac, tools/Makefile.am: Cope with missing help2man 2021-04-30 09:43 sthibaul * configure.ac: 0.3.13 released 2021-01-02 17:23 sthibaul * tools/fut-template.h: Make the non-fut path the fastpath 2020-12-31 15:21 sthibaul * TODO, tools/fxt.h: Convert files to utf-8 2020-12-31 15:20 sthibaul * tools/test.c: Avoid latin encoding 2020-10-27 18:39 sthibaul * configure.ac: 0.3.12 release 2020-10-27 18:35 sthibaul * tools/: ev.c, fxt.h: Add fxt_blockev_leave to free fxt_blockev_t 2020-10-27 18:35 sthibaul * tools/fxt.c: Really free fxt_t content 2020-10-26 12:56 sthibaul * tools/: fxt.c, fxt_internal.h: Don't try not to close user-provided fd (it's always closed by fclose...) 2020-10-26 12:50 sthibaul * tools/fxt.c: Fix fxt_close logic... 2020-09-25 12:32 sthibaul * tools/: fxt.c, fxt_internal.h: Add missing fxt_close 2020-09-25 12:25 sthibaul * doc/fr-plain.bst: Add fr-plain.bst which isn't in texlive any more 2020-06-05 10:31 sthibaul * tools/: get_cpu_info.c, pids.c: iAvoid opening /proc files on MacOS It doesn't have them anyway. Submitted by Raymond Namyst. 2020-03-26 01:34 sthibaul * configure.ac, tools/Makefile.am: Fix soname version 2020-03-26 01:28 sthibaul * tools/Makefile.am: Clean generated manpage 2020-03-26 01:22 sthibaul * tools/fut-template.h: Add missing parameters 2020-03-26 01:19 sthibaul * tools/: fut-template.h, fut_setup.c, fxt_internal.h: Add missing filename const qualifier 2020-03-26 00:55 sthibaul * tools/: fut_record.c, fut_setup.c: Fix crash when trying to record an event after fut_done is over 2020-02-26 20:15 sthibaul * tools/: fxt.c, fxt.h: Also make fxt_setupeventsbuffer use large size 2020-02-26 20:10 sthibaul * tools/: fut-template.h, fut_record.c, fut_setup.c, fxt_internal.h: support big buffers (>= 2GB) We need to make all size parameters bigger. This will require an ABI bump on release. From Philippe Swartvagher 2019-12-14 19:04 sthibaul * tools/Makefile.am: Add whatis section to generated manpage 2019-12-14 18:59 sthibaul * tools/: Makefile.am, fxt_print.c: generate manpage from help 2019-07-12 12:01 vdanjean * configure.ac: new release 2019-07-12 12:00 vdanjean * tools/: .cvsignore, Makefile.am, fut-template.h, fxt.h, template2h.pl.in: Add macro for 32 parameters (and ABI accept up to 254 parameters) 2019-07-12 11:17 vdanjean * .cvsignore, Makefile.am, configure.ac, doc/Makefile.am, m4/.cvsignore, m4/amx_silent_rules.m4, tools/Makefile.am: cleanup build system 2018-07-30 15:31 sthibaul * tools/pids.c: Fix overflow on systems with 32bit pids 2018-06-26 13:20 sthibaul * configure.ac: release 2018-06-26 13:19 sthibaul * tools/fxt.h: Add riscv64 arch 2018-06-26 13:13 sthibaul * tools/: fut-template.h, fxt.h: Fix link of c++ programs 2017-11-22 17:05 sthibaul * configure.ac: upload 2017-11-22 17:05 sthibaul * tools/fxt.h: Use limits.h to determine 32bit vs 64bit 2017-11-22 16:58 sthibaul * tools/fxt.h: Fix mips64el 2017-11-22 15:41 sthibaul * configure.ac: release 2017-11-22 15:41 sthibaul * tools/fxt.h: Fix sparc64 2017-11-22 15:28 sthibaul * tools/test.c: Fix output check on big-endian systems 2017-11-22 15:28 sthibaul * tools/fxt.c: Fix error check 2017-11-22 11:29 sthibaul * configure.ac: release 2017-11-22 11:23 sthibaul * tools/: Makefile.am, fxt.h, test.c: Fix ppc64el, and actually test output of fxt_print 2017-08-03 16:58 sthibaul * configure.ac: release 2017-07-05 17:28 sthibaul * tools/fxt_internal.h: Fix declaration of variable 2017-06-04 10:59 sthibaul * tools/pids.c: Fix unbound buffer filling 2017-06-02 21:05 sthibaul * tools/symbols.c: fix memleaks 2017-06-02 21:04 sthibaul * tools/names.c: Fix array overflow 2017-06-02 21:01 sthibaul * tools/get_cpu_info.c: Fix bogus parenthesis 2017-06-02 20:54 sthibaul * tools/: fut-template.h, fxt_internal.h: Move fut_slot_lock declaration, we do not need to expose it 2017-03-24 09:35 sthibaul * tools/fut_setup.c: Use FUT_CODE macro instead of hardcoded computation 2017-03-22 18:38 sthibaul * configure.ac: release 2017-03-22 18:17 sthibaul * tools/: fut-template.h, fut_record.c, fut_setup.c, fxt_internal.h: Fix flushing: it needs to be passed the proper start of buffer for double-buffering 2017-03-22 18:13 sthibaul * tools/: fut-template.h, fut_record.c, fut_setup.c: Avoid macro name conflict 2017-03-22 18:12 sthibaul * tools/fut-template.h: Fix warning 2017-03-22 18:10 sthibaul * tools/: fut_record.c, fut_setup.c, fxt_internal.h: Implement double-buffering to avoid making all threads get stuck while one of them is flushing the trace 2017-03-22 14:05 sthibaul * tools/fut_record.c: Tell the compiler that it is unlikely to have conflicts 2017-03-22 14:02 sthibaul * tools/fut_record.c: Do not use CLOCK_MONOTONIC_RAW, it is slower than CLOCK_MONOTONIC, and we actually want NTP synchronization for traces over several machines 2017-03-03 16:07 sthibaul * tools/fut-template.h: Add FUT_DO_ALWAYS_* macros which ignore the fut_active keymask 2016-10-17 20:10 sthibaul * tools/get_cpu_info.c: Fix crash on short read from /proc/cpuinfo 2016-10-17 17:36 sthibaul * tools/: get_cpu_info.c, pids.c, symbols.c: Avoid warning about /proc not being available on windows. 2016-10-17 17:27 sthibaul * example.c: remove bogus example 2016-10-17 17:23 sthibaul * configure.ac: Release 0.3.2 2016-10-17 17:23 sthibaul * README: Fix example path 2016-10-17 16:23 sthibaul * tools/fut_setup.c: Add missing initialization 2016-09-20 15:59 sthibaul * tools/fut_record.c: drop knl port attempt: it's really an x86_64 for barriers 2016-09-20 13:44 sthibaul * tools/fut_record.c: try to support KNL 2016-09-20 10:08 sthibaul * tools/: Makefile.am, test.c: Add a small test 2016-09-20 10:08 sthibaul * tools/fut_record.c: Fix memory barriers on Xeon Phi 2016-09-20 10:07 sthibaul * configure.ac: make sure we have bfd.h before enabling using libbfd 2016-09-19 18:56 sthibaul * configure.ac: Drop detecting malloc/realloc, we don't provide rpl_malloc and rpl_realloc, and we don't need the semantic anyway 2016-09-04 19:31 sthibaul * tools/fkt_print.c: fix insecurely not using a format 2016-08-23 16:15 sthibaul * tools/: fut_bench.c, fut_record.c: mingw32 build fixes 2015-10-01 15:04 sthibaul * tools/fut-template.h: Don't use pthread_spinlock_t when not using spinlocks 2015-03-06 10:38 sthibaul * configure.ac: release version 0.3.1 2014-10-29 12:48 sthibaul * configure.ac: Only explicitly pull libiberty and libz if linking libbfd alone failed. 2014-09-01 12:51 sthibaul * tools/: fut-template.h: Avoid void* arithmetic, it is refused by msvc 2014-08-26 13:50 sthibaul * doc/manuel.tex: Fix URLs, thanks Sylvain Henry for the report 2014-04-30 11:22 sthibaul * tools/fut-template.h: Fix STR macros 2014-04-30 11:06 sthibaul * configure.ac, tools/fut-template.h: Fix some buffer overflow 2014-04-14 18:11 sthibaul * tools/: fut-template.h, fut_record.c, fut_setup.c: Fix flush atomicity 2013-11-08 15:51 sthibaul * tools/fut-template.h: Add 7-parameter macro 2013-10-30 17:45 ftrahay * tools/: fut-template.h, fut_record.c, fut_setup.c: fix a compilation error on MacOSX (pthread_spinlock is not available on MacOSX) 2013-10-22 16:56 sthibaul * tools/fut-template.h: Rename 'args' variable used in macros into __args, to avoid warnings about clashing with application variables 2013-07-11 11:02 ftrahay * tools/fut-template.h: fix a type conversion error that occurs with some compilers (eg. nvcc) 2013-04-23 11:02 sthibaul * tools/fut_setup.c: Try to rename the output file when fut_set_filename is called after fut_flush, instead of just printing an error 2013-04-02 15:26 sthibaul * configure.ac: release 0.2.14 2013-04-02 15:25 sthibaul * tools/fxt.h: Add more architectures 2013-04-02 13:07 sthibaul * configure.ac: New version 2013-01-30 14:44 sthibaul * configure.ac, tools/Makefile.am: Fix static link of libbfd. AC_HAVE_LIBRARY *prepends* the library to LIBS, so we have to look for libz and libiberty *before* looking at libbfd 2013-01-30 14:20 sthibaul * tools/Makefile.am: Pass libfxt.la in LDADD instead of -lfxt, which fixes all dependency issues 2013-01-25 17:48 sthibaul * configure.ac: Release fix 2013-01-25 17:47 sthibaul * tools/fut_setup.c: Fix closing and restarting a trace recording 2012-12-14 17:11 sthibaul * tools/fut_bench.c: add missing file 2012-12-14 17:10 sthibaul * tools/fut-template.h: Fix build 2012-12-10 14:57 sthibaul * tools/: Makefile.am, fut-template.h, fut_record.c, fut_setup.c, fxt_internal.h: Add spinlock method for locking slots, but not enabled for now. Add fut_bench to measure the inefficiency. 2012-12-01 00:56 sthibaul * configure.ac: release version 0.2.11 2012-11-30 19:48 sthibaul * tools/: fut-template.h, fut_record.c: Permit application to provide its own time stamps, useful for simgrid for instance 2012-08-10 03:48 sthibaul * tools/fut_record.c: Use GetCurrentThreadId instead of GetCurrentThread since the latter only returns a pseudo-handle. 2012-08-09 20:13 sthibaul * configure.ac, tools/Makefile.am, tools/dolib.c, tools/fkt_print.c, tools/fkt_record.c, tools/fut_record.c, tools/fut_setup.c, tools/fxt-tools.h, tools/fxt.c, tools/fxt_print.c, tools/pids.c, tools/symbols.c: Add mingw build support 2012-08-03 21:48 sthibaul * configure.ac, tools/fut_setup.c: Do not reset fut_active on fut_flush, as that would actually stop record although enable_fut_flush was called 2012-08-03 16:16 sthibaul * tools/fut-template.h: add yet another prototype... 2012-08-03 15:25 sthibaul * configure.ac: release 2012-08-03 15:25 sthibaul * tools/: fkt_record.c, fut_record.c, fut_setup.c, fxt_internal.h, fxt_print.c: fix build warnings 2012-08-03 15:20 sthibaul * tools/fut-template.h: Add enable/disable_fut_flush prototypes 2012-04-09 23:09 sthibaul * configure.ac: Release version 0.2.6 2012-04-09 23:08 sthibaul * tools/fut_record.c: Do not set fut_active to 1, it is not reset to 0 2012-04-05 18:12 ftrahay * tools/: ev.c, fut-template.h, fut_record.c, fut_setup.c: implement fut_flush. When enabled (by calling enabel_fut_flush), when the buffer is full of events, it is dumped to disk, allowing to record remaining events. 2012-03-07 15:42 ftrahay * configure.ac, tools/Makefile.am, tools/template2h.pl, tools/template2h.pl.in: use @PERL@ instead of hardcoded /usr/bin/perl 2012-03-01 01:53 sthibaul * configure.ac, tools/Makefile.am: Fix libbfd link, by including libiberty and libz 2012-02-28 14:11 sthibaul * tools/Makefile.am: Restore cleaning temporary sources 2012-02-28 14:09 sthibaul * configure.ac: release a 0.2.4 2012-02-28 14:08 sthibaul * tools/Makefile.am: Fix make -j 2012-02-01 11:13 sthibaul * tools/fxt_print.c: Fix 'security' issue 2011-11-14 13:09 sthibaul * configure.ac, tools/ev.c, tools/fxt-tools.h, tools/fxt.c, tools/fxt.h, tools/fxt_internal.h, tools/names.c, tools/pids.c, tools/symbols.c: Propagate using streams to all reading function, to avoid fd vs stream mess 2011-10-11 14:01 ftrahay * configure.ac: improve the way awk is detected during configure. This prevents from selected mawk (which lead to an error because of gensub being unavailable) 2011-08-26 16:24 ftrahay * tools/: Makefile.am, ev.c, fxt-tools.h, fxt.c, fxt_internal.h, symbols.c: use fread instead of read to improve performance. 2011-04-13 11:12 sthibaul * kernel/linux-fkt/include/linux/fkt.h, tools/fut-template.h: Add *PROBE6 functions, thanks to Charles Aulagnon 2011-03-14 13:22 sthibaul * configure.ac, tools/fut_record.c: only use gettid if requested at configure time (it's not portable) 2011-03-14 13:13 sthibaul * tools/symbols.c: drop unneeded variable 2011-03-11 14:23 ftrahay * configure.ac, tools/Makefile.am, tools/fut-template.h, tools/fut_record.c, tools/fut_setup.c: recording the thread id is now decided at runtime. 2011-03-10 20:49 sthibaul * tools/names.c: comment spurious stdout output 2011-03-10 13:14 ftrahay * configure.ac: enable the recording of thread id by default (you can disable it with --disable-record-tid ) 2011-03-10 09:25 ftrahay * configure.ac, tools/Makefile.am, tools/ev.c, tools/fut_record.c: add an option that enables the collection of thread id when recording an event. 2011-03-03 17:46 ftrahay * configure.ac, tools/Makefile.am: * add missing tbx_timing.h in the tarball * librt is only needed if clock_gettime was found --> this should be enough for compiling fxt on Mac OS X 2011-01-12 17:33 sthibaul * tools/symbols.c: drop debugging printfs 2011-01-06 18:51 sthibaul * README: mention FUT doesn't need kernel patches 2011-01-06 18:47 sthibaul * doc/manuel.tex: quickfix elderly documentation 2010-10-08 11:35 sthibaul * README: clearly say that FUT and FKT are parts of FxT 2010-10-08 11:30 sthibaul * README, example.c: clarify FUT documentation 2010-10-08 11:28 sthibaul * Makefile.am: fix installation 2010-10-08 11:19 sthibaul * AUTHORS, NEWS: drop empty files 2010-10-08 11:19 sthibaul * INSTALL-autoconf, INSTALL.FKT: Restore original INSTALL file. Drop INSTALL-autoconf, as that's now INSTALL 2010-10-05 18:09 sthibaul * configure.ac: on to 0.3 2010-10-05 17:48 sthibaul * configure.ac: don't require a ChangeLog 2010-10-05 17:44 sthibaul * ChangeLog: Drop re-generatable file 2010-10-05 17:42 sthibaul * .cvsignore: ignore generated files 2010-10-05 17:42 sthibaul * INSTALL: drop generated file 2010-09-11 01:39 sthibaul * configure.ac: fix autoconf prereq (thanks Olivier for the report) 2010-06-17 14:34 sthibaul * tools/pids.c: some compilers don't consider strlen() to be constant 2010-05-27 14:13 caugonne * tools/fut_setup.c: Memset the buffer at during fut_setup to avoid page faults and to prevent valgrind's warnings. 2010-05-12 11:58 sthibaul * doc/Makefile.am: do not abort if the documentation can not be generated 2010-04-16 14:37 ftrahay * tools/fut-template.h: Fix possible SIGSEVG when calling FUT_DO_PROBE while profiling is stopped 2010-03-11 14:53 sthibaul * example.c: add trivial example 2010-03-05 17:35 sthibaul * configure.ac, tools/fut_record.c: use clock_gettime by default when available 2010-03-05 17:20 sthibaul * tools/: fut_record.c, fxt-tools.h: fix unsignedness 2009-10-15 16:04 caugonne * tools/: pids.c, symbols.c: Remove useless (and annoying) printf debug outputs. 2009-09-20 22:01 sthibaul * tools/pids.c: fix memory leak 2009-06-24 11:32 sthibaul * Makefile.am, configure.ac, fxt.pc.in: Add a pkg-config file to properly fix static linking 2009-05-10 16:06 caugonne * configure.ac, tools/Makefile.am, tools/fut_record.c: In case we do not have synchronous clocks on the different processors, we may use a monotonic clock instead of processor ticks. This non-portable option can be enabled using --enable-sync-clock. 2009-03-28 16:08 caugonne * tools/fut-template.h: fut.h depends on fxt.h so we include it 2009-03-16 12:01 sthibaul * tools/: ev.c, fkt_print.c, symbols.c: use PRI*64 where useful 2009-03-16 12:00 sthibaul * configure.ac: add X11/Xlib.h and X11/Xutil.h headers check 2008-10-04 18:39 caugonne * tools/fut_record.c: cursp is never used anyway : that fixes my some trace corruption problem (at last) 2008-09-10 11:29 caugonne * tools/fut_record.c: make cmpxchg safe using GCC intrinsics 2008-08-12 11:52 caugonne * tools/fkt_select.c: Recent kernels should not include anymore, we remove it since it compiles without it as well. 2008-04-22 19:16 caugonne * tools/: Makefile.am, fut_record.c, fut_setup.c, tbx_timing.h: Starts the process of making FxT independant of PM2 so that it may be used without rewriting all the code that was put in PM2 to initialize the FUT lib. For now, this mostly consists in taking files from the PM2 project. It was only tested on x86_64 for now. 2008-01-25 00:34 sthibaul * configure.ac, doc/Makefile.am: Don't build doc when latex or pstopdf is not available 2007-10-28 11:14 sthibaul * INSTALL: distributions use texlive nowadays 2007-10-28 11:09 sthibaul * configure.ac: documentation build needs epstopdf 2007-07-10 18:55 sthibaul * tools/pids.c: make valgrind happy 2007-07-05 17:56 sthibaul * tools/symbols.c: c++ generates long names... 2007-07-04 16:28 sthibaul * tools/Makefile.am: library objects are suffixed .lo, not .o... 2007-05-25 10:32 sthibaul * tools/fxt_internal.h: comment 2007-05-07 15:45 sthibaul * tools/fxt.h: ev_32 and ev_native are not that useful actually 2007-05-07 15:37 sthibaul * tools/Makefile.am: add missing dependency 2007-05-07 15:30 sthibaul * tools/: ev.c, fkt_print.c, fxt.c, fxt.h, fxt_internal.h, fxt_print.c: factorization of cpu detection code for FUT 2007-04-04 15:58 sthibaul * tools/fut-template.h: fix c++ compilation 2007-03-21 10:54 sthibaul * doc/remark.sty: this style is needed 2007-03-20 16:08 sthibaul * tools/: ev.c, fut-template.h, fxt.h: added facilities for putting strings in probes 2007-03-15 23:49 vdanjean * Makefile.am, doc/LaTeX.mk, doc/pdfswitch.sty, doc/remark.sty, doc/texdepends, tools/Makefile.am: add all needed files in dist 2007-03-15 23:39 vdanjean * .cvsignore, ChangeLog, Makefile.am, bootstrap, config.guess, config.sub, configure.ac, configure.in, depcomp, install-sh, ltmain.sh, missing, mkinstalldirs, doc/Makefile-doc.in, doc/Makefile.am: Cleanup build system 2007-03-02 12:10 sthibaul * tools/fxt-tools.h: don't use same local variable as in caller. It was pure luck that it was working... 2007-02-02 18:25 sthibaul * configure.in, tools/Makefile.am: permit X11-less compiling 2007-01-30 16:18 sthibaul * tools/pids.c: fix for systems that don't have /proc 2007-01-30 15:52 sthibaul * tools/: ev.c, fkt_extract.c, fkt_select.c, fkt_setmask.c, fxt.c, get_cpu_info.c, names.c, pids.c, symbols.c, time.c, timer.c: always include config.h first 2007-01-24 19:27 sthibaul * tools/fxt.c: typo 2007-01-24 17:40 sthibaul * tools/fxt_print.c: fixup 2007-01-23 15:13 sthibaul * configure.in, tools/ev.c, tools/fxt-tools.h, tools/fxt.c, tools/fxt.h, tools/fxt_internal.h: hopefully fixed little/bigendian issue 2007-01-13 13:55 sthibaul * tools/: Makefile.am, fkt_print.c, fxt_print.c: LFS fixes 2007-01-02 19:37 sthibaul * INSTALL: package dependencies documentation 2006-12-06 12:19 sthibaul * tools/fkt_select.c: sendfile is not used 2006-12-05 16:24 sthibaul * tools/: fkt_print.c, fkt_record.c, fxt_print.c: sys/mount.h n'est pas disponible partout, et BLKGETSIZE encore moins, du coup 2006-11-29 11:49 sthibaul * tools/pids.c: fix 64bit-pid printing 2006-11-29 11:47 sthibaul * tools/fxt.h: uint64_t needs stdint.h 2006-11-29 11:44 sthibaul * tools/: fxt.h, fxt_internal.h, pids.c: fix the pid size to 64bits 2006-11-29 10:39 sthibaul * tools/fkt_extract.c: systems don't necessarily have PAGE_SIZE, but getpagesize() yes 2006-11-28 18:07 sthibaul * tools/fxt.h: AIX support 2006-11-28 17:21 sthibaul * tools/fxt.h: definition dependency 2006-11-28 17:19 sthibaul * doc/LaTeX.mk: no need for -n here (and it makes make clean fail on AIX) 2006-11-28 17:04 sthibaul * tools/: fkt_print.c, fxt.c, fxt.h, fxt_print.c: centralized arch-specific defines 2006-11-27 17:57 sthibaul * TODO, configure.in, tools/Makefile.am, tools/ev.c, tools/fxt.c, tools/fxt_internal.h, tools/get_cpu_info.c, tools/pids.c: don't use off64_t/lseek64 (linuxism), use _FILE_OFFSET_BITS instead 2006-11-27 17:55 sthibaul * doc/Makefile.am: use clean-local instead of clean 2006-11-24 17:35 sthibaul * TODO, tools/fkt_print.c, tools/fxt.c, tools/fxt.h, tools/fxt_print.c, tools/get_cpu_info.c, tools/pids.c, tools/symbols.c: portability fixes 2006-11-24 10:50 sthibaul * configure.in, tools/Makefile.am, tools/symbols.c: we can work without libbfd 2006-11-24 10:31 sthibaul * configure.in: We need gawk, not only any awk clone. Look for latex in the PATH, not only /usr/bin 2006-11-08 15:56 sthibaul * kernel/linux-fkt/arch/i386/kernel/fkt_header.S: new compilers don't like such comments 2006-10-18 16:09 sthibaul * tools/: fkt_print.c, fxt.h, fxt_internal.h, pids.c: x86_64 support 2006-10-18 15:36 sthibaul * tools/fkt_print.c: x86_64 support 2006-10-18 15:21 sthibaul * tools/fut-template.h, kernel/linux-fkt/include/linux/fkt.h: x86_64 support 2006-10-18 15:17 sthibaul * tools/fxt.h: x86_64 support 2006-10-18 15:13 sthibaul * tools/fkt_print.c: missing braces 2006-06-09 18:42 sthibaul * tools/symbols.c: strange symboles are not so strange on x86_64 2006-06-09 18:06 sthibaul * ChangeLog, TODO, tools/fkt_print.c, tools/fxt.c, tools/fxt.h, tools/fxt_print.c: x86_84 support 2006-06-06 15:16 sthibaul * tools/pids.c: the process name may contain a space character 2006-05-22 16:14 sthibaul * tools/fkt_print.c: typo 2006-05-04 11:01 sthibaul * TODO: use vmsplice() 2006-05-03 17:06 sthibaul * tools/fkt_record.c: negative integers don't necessarily mean an error, only -1 does 2006-04-29 01:03 sthibaul * tools/fut-template.h: fut_getstampedbuffer prototype is needed early 2006-04-27 14:01 sthibaul * tools/fut-template.h: the _pointer_ is volatile, not data... 2006-03-27 14:21 sthibaul * tools/fkt_print.c: correction noms threads pour FUT 2006-02-23 11:47 sthibaul * kernel/linux-fkt/kernel/fkt-mod.c: kernel_thread is deprecated 2006-02-02 19:27 sthibaul * configure.in: we need latex for documentation 2006-02-02 19:08 sthibaul * configure.in: use X_LIBS flags for checking for X 2006-02-02 19:01 sthibaul * configure.in: we need X too 2006-02-02 18:53 sthibaul * ChangeLog: il faut un ChangeLog pour automake 2006-02-01 13:49 sthibaul * tools/fxt_print.c: we added the tid as first parameter 2006-02-01 12:02 sthibaul * tools/fxt.h: plus de commentaires 2005-12-23 22:48 sthibaul * tools/symbols.c: correction tailles des champs 2005-12-23 22:47 sthibaul * tools/fxt_internal.h: correction tailles champs, fixes désormais 2005-12-23 22:47 sthibaul * tools/fxt.c: oubli écriture du type d'archi 2005-10-18 15:34 sthibaul * tools/: ev.c, fkt_print.c, fxt-tools.h, fxt_print.c, names.c, symbols.c: corrected printf formats 2005-10-18 15:28 sthibaul * tools/fxt_internal.h: besoin de pouvoir lire des adresses 64 bits sur archi 32 bits 2005-10-11 16:04 sthibaul * AUTHORS, NEWS: required by automake-1.7 2005-09-06 16:00 sthibaul * tools/fkt_print.c: FUT corrections 2005-09-06 16:00 sthibaul * tools/ev.c: Hum, bad commit 2005-09-06 15:59 sthibaul * aclocal.m4: fichier généré 2005-09-06 14:20 sthibaul * tools/ev.c: forgot a little break; ... 2005-09-06 14:11 sthibaul * tools/Makefile.am: installer fxt-tools.h aussi pour pm2 2005-07-26 15:46 sthibaul * .cvsignore, config.h.in: config.h.in is generated too 2005-07-26 15:45 sthibaul * .cvsignore: cvs ignore 2005-07-26 15:42 sthibaul * COPYING, INSTALL, INSTALL-autoconf, Makefile.am, README, TODO, aclocal.m4, config.guess, config.h.in, config.sub, configure.in, depcomp, install-sh, ltmain.sh, missing, mkinstalldirs, doc/FxT.bib, doc/Makefile-doc.in, doc/Makefile.am, doc/manuel.tex, doc/LaTeX.mk, doc/paje.eps, doc/pdfswitch.sty, doc/remark.sty, doc/texdepends, kernel/Makefile, kernel/Makefile.config, kernel/apply/fkt_patch, kernel/linux-fkt/arch/i386/kernel/fkt_header.S, kernel/linux-fkt/include/linux/fkt.h, kernel/linux-fkt/kernel/fkt-mod.c, kernel/linux-fkt/kernel/fkt.c, kernel/linux-patches-2.6.12-rc2/arch/i386/Kconfig.patch, kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/Makefile.patch, kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/entry.S.patch, kernel/linux-patches-2.6.12-rc2/fs/buffer.c.patch, kernel/linux-patches-2.6.12-rc2/fs/exec.c.patch, kernel/linux-patches-2.6.12-rc2/fs/ioctl.c.patch, kernel/linux-patches-2.6.12-rc2/fs/open.c.patch, kernel/linux-patches-2.6.12-rc2/fs/read_write-sys.c.patch, kernel/linux-patches-2.6.12-rc2/fs/read_write.c.patch, kernel/linux-patches-2.6.12-rc2/fs/select.c.patch, kernel/linux-patches-2.6.12-rc2/include/linux/buffer_head.h.patch, kernel/linux-patches-2.6.12-rc2/include/linux/interrupt.h.patch, kernel/linux-patches-2.6.12-rc2/include/linux/mm.h.patch, kernel/linux-patches-2.6.12-rc2/include/linux/page-flags.h.patch, kernel/linux-patches-2.6.12-rc2/include/linux/pagemap.h.patch, kernel/linux-patches-2.6.12-rc2/kernel/Makefile.patch, kernel/linux-patches-2.6.12-rc2/kernel/fork.c.patch, kernel/linux-patches-2.6.12-rc2/kernel/pid.c.patch, kernel/linux-patches-2.6.12-rc2/kernel/sched.c.patch, kernel/linux-patches-2.6.12-rc2/kernel/signal.c.patch, kernel/linux-patches-2.6.12-rc2/kernel/softirq.c.patch, kernel/linux-patches-2.6.12-rc2/kernel/timer.c.patch, kernel/linux-patches-2.6.12-rc2/mm/filemap.c.patch, kernel/linux-patches-2.6.12-rc2/mm/page_alloc.c.patch, kernel/linux-patches-2.6.12-rc2/mm/swap.c.patch, kernel/unpatch/fkt_patch, tools/Makefile.am, tools/depcomp, tools/ev.c, tools/fkt_bufstats, tools/fkt_code_name.h, tools/fkt_extract.c, tools/fkt_print.c, tools/fkt_record.c, tools/fkt_select.c, tools/fkt_setmask.c, tools/fkt_timestats, tools/fkt_timestats-log, tools/fut-template.h, tools/fxt-tools.h, tools/fxt.c, tools/fxt.h, tools/fxt_internal.h, tools/fxt_print.c, tools/get_cpu_info.c, tools/makediff, tools/names.c, tools/pids.c, tools/sigmund, tools/symbols.c, tools/template2h.pl, tools/time.c, tools/timer.c, tools/timer.h, tools/fxt/syscall_names.h, tools/fxt/sysirq_names.h, tools/fxt/trap_names.h: Initial revision 2005-07-26 15:42 sthibaul * COPYING, INSTALL, INSTALL-autoconf, Makefile.am, README, TODO, aclocal.m4, config.guess, config.h.in, config.sub, configure.in, depcomp, install-sh, ltmain.sh, missing, mkinstalldirs, doc/FxT.bib, doc/Makefile-doc.in, doc/Makefile.am, doc/manuel.tex, doc/LaTeX.mk, doc/paje.eps, doc/pdfswitch.sty, doc/remark.sty, doc/texdepends, kernel/Makefile, kernel/Makefile.config, kernel/apply/fkt_patch, kernel/linux-fkt/arch/i386/kernel/fkt_header.S, kernel/linux-fkt/include/linux/fkt.h, kernel/linux-fkt/kernel/fkt-mod.c, kernel/linux-fkt/kernel/fkt.c, kernel/linux-patches-2.6.12-rc2/arch/i386/Kconfig.patch, kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/Makefile.patch, kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/entry.S.patch, kernel/linux-patches-2.6.12-rc2/fs/buffer.c.patch, kernel/linux-patches-2.6.12-rc2/fs/exec.c.patch, kernel/linux-patches-2.6.12-rc2/fs/ioctl.c.patch, kernel/linux-patches-2.6.12-rc2/fs/open.c.patch, kernel/linux-patches-2.6.12-rc2/fs/read_write-sys.c.patch, kernel/linux-patches-2.6.12-rc2/fs/read_write.c.patch, kernel/linux-patches-2.6.12-rc2/fs/select.c.patch, kernel/linux-patches-2.6.12-rc2/include/linux/buffer_head.h.patch, kernel/linux-patches-2.6.12-rc2/include/linux/interrupt.h.patch, kernel/linux-patches-2.6.12-rc2/include/linux/mm.h.patch, kernel/linux-patches-2.6.12-rc2/include/linux/page-flags.h.patch, kernel/linux-patches-2.6.12-rc2/include/linux/pagemap.h.patch, kernel/linux-patches-2.6.12-rc2/kernel/Makefile.patch, kernel/linux-patches-2.6.12-rc2/kernel/fork.c.patch, kernel/linux-patches-2.6.12-rc2/kernel/pid.c.patch, kernel/linux-patches-2.6.12-rc2/kernel/sched.c.patch, kernel/linux-patches-2.6.12-rc2/kernel/signal.c.patch, kernel/linux-patches-2.6.12-rc2/kernel/softirq.c.patch, kernel/linux-patches-2.6.12-rc2/kernel/timer.c.patch, kernel/linux-patches-2.6.12-rc2/mm/filemap.c.patch, kernel/linux-patches-2.6.12-rc2/mm/page_alloc.c.patch, kernel/linux-patches-2.6.12-rc2/mm/swap.c.patch, kernel/unpatch/fkt_patch, tools/Makefile.am, tools/depcomp, tools/ev.c, tools/fkt_bufstats, tools/fkt_code_name.h, tools/fkt_extract.c, tools/fkt_print.c, tools/fkt_record.c, tools/fkt_select.c, tools/fkt_setmask.c, tools/fkt_timestats, tools/fkt_timestats-log, tools/fut-template.h, tools/fxt-tools.h, tools/fxt.c, tools/fxt.h, tools/fxt_internal.h, tools/fxt_print.c, tools/get_cpu_info.c, tools/makediff, tools/names.c, tools/pids.c, tools/sigmund, tools/symbols.c, tools/template2h.pl, tools/time.c, tools/timer.c, tools/timer.h, tools/fxt/syscall_names.h, tools/fxt/sysirq_names.h, tools/fxt/trap_names.h: initial import fxt-0.3.15/PaxHeaders/bootstrap0000644000000000000000000000007410576345411013432 xustar0030 atime=1746715490.267509394 30 ctime=1746716504.677469403 fxt-0.3.15/bootstrap0000755000175000017500000000612110576345411013116 0ustar00samysamy#!/bin/sh # vim:ts=4:sw=4 # Calls autotools to build configure script and Makefile.in. # Generated automatically using bootstrapper 0.2.1 # http://bootstrapper.sourceforge.net/ # # Copyright (C) 2002 Anthony Ventimiglia # # This bootstrap script 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. # # # Calls proper programs to create configure script and Makefile.in files. # if run with the --clean option, bootstrap removes files it generates. To # clean all autogenerated files (eg: for cvs imports) first run # make distclean, then bootstrap --clean # see bootstrapper(1) for more infor if test x"$1" = x"--help"; then echo "$0: automatic bootstrapping utility for GNU Autotools" echo " cleans up old autogenerated files and runs autoconf," echo " automake and aclocal on local directory" echo echo " --clean clean up auto-generated files without" echo " creating new scripts" echo exit 0 fi ACLOCAL="aclocal" ACLOCAL_FILES="aclocal.m4" ALWAYS_CLEAN="config.status config.log config.cache libtool" AUTOCONF="autoconf" AUTOCONF_FILES="configure" AUTOHEADER="autoheader" AUTOHEADER_FILES="kaapi_config.h.in" AUTOMAKE="automake --add-missing --copy" AUTOMAKE_FILES="config.sub stamp-h.in ltmain.sh missing mkinstalldirs install-sh config.guess depcomp" CONFIG_AUX_DIR="." CONFIG_FILES="stamp-h ltconfig" CONFIG_HEADER="kaapi_config.h" #LIBTOOLIZE="/usr/bin/libtoolize --force" #LIBTOOLIZE_FILES="config.sub ltmain.sh config.guess" #LIBTOOLIZE="libtoolize --copy" #LIBTOOLIZE="glibtoolize --copy" RM="rm -v" SUBDIRS="$(sed -e '/Makefile/s, \([^ ]*\)/\?Makefile,./\1,p;d' configure.ac)" if libtoolize --version 2>&1 >/dev/null; then LIBTOOLIZE="libtoolize --copy --force" else # for non GNU OS LIBTOOLIZE="glibtoolize --copy --force" fi # These are files created by configure, so we'll always clean them for i in $ALWAYS_CLEAN; do test -f $i && \ $RM $i done if test x"$1" = x"--clean"; then # #Clean Files left by previous bootstrap run # if test -n "$CONFIG_AUX_DIR"; then CONFIG_AUX_DIR="$CONFIG_AUX_DIR/" fi # Clean Libtoolize generated files for cf in $LIBTOOLIZE_FILES; do cf="$CONFIG_AUX_DIR$cf" test -f $cf && \ $RM $cf done #aclocal.m4 created by aclocal test -f $ACLOCAL_FILES && $RM $ACLOCAL_FILES #Clean Autoheader Generated files for cf in $AUTOHEADER_FILES; do cf=$CONFIG_AUX_DIR$cf test -f $cf && \ $RM $cf done # remove config header (Usaually config.h) test -n "$CONFIG_HEADER" && test -f $CONFIG_HEADER && $RM $CONFIG_HEADER #Clean Automake generated files for cf in $AUTOMAKE_FILES; do cf=$CONFIG_AUX_DIR$cf test -f $cf && \ $RM $cf done for i in $SUBDIRS; do test -f $i/Makefile.in && \ $RM $i/Makefile.in done #Autoconf generated files for cf in $AUTOCONF_FILES; do test -f $cf && \ $RM $cf done for cf in $CONFIG_FILES; do cf="$CONFIG_AUX_DIR$cf" test -f $cf && \ $RM $cf done : else set -x $LIBTOOLIZE $ACLOCAL $AUTOHEADER $AUTOMAKE $AUTOCONF set +x fi fxt-0.3.15/PaxHeaders/README0000644000000000000000000000013213001166276012341 xustar0030 mtime=1476717758.690390964 30 atime=1746715490.267509394 30 ctime=1746716504.662108749 fxt-0.3.15/README0000644000175000017500000002414213001166276012032 0ustar00samysamy FxT - Fast User or Kernel Tracing University of New Hampshire FxT is a fast tracing engine that can be used either in user land, in kernel land, or both, maintained mostly by samuel.thibault@ens-lyon.org FUT - Fast User Tracing FUT is the Fast User Tracing, the User part of FxT. It permits recording the execution trace along functions within applications (without any kernel patching). To install FUT on your system, simply use the usual GNU way: $ ./configure $ make $ sudo make install This will notably install a fxt.pc file in /usr/local/lib/pkgconfig so that to build your application you just need to add $(pkg-config --cflags fxt) to your CFLAGS and $(pkg-cnfig --libs fxt) to your LDFLAGS. tools/test.c shows an example of the use of FUT. FKT - Fast Kernel Tracing FKT is the Fast Kernel Tracing, the Kernel part of FxT. It permits recording the execution trace along functions within the kernel. Its purpose is originately to instrument parts of the kernel, but it also revealed to be useful for debugging or teaching. Please read 'INSTALL.FKT' first to setup FKT on your system for your kernel. Note that you do _not_ need to install FKT if you only need the Userland FUT part. Once FKT is properly installed, running, the tools built and installed in the PATH, tracing is quite easy: fkt_record -f output -k 0xf -- scp machine:file . Will trace the execution of 'scp machine:file .' and write the result in file output. Then you can use fkt_print to analyze the recording (you don't need to be running the fkt kernel, but having the proper modules in /lib/modules might sometimes help). fkt_print -f output -t output.timedat > stats Then you can have a look at the stats file. fkt_timestats output,timedat Will produce output.eps, which will show you how long did each page of data to get filled, hence, to some extent, the load of the system. Table of contents ----------------- - fkt_record - fkt_setmask, fkt_enable and fkt_disable - fkt_print - Adding probes fkt_record ---------- fkt_record opens /dev/fkt and the output file and calls sendfile() between them, which triggers the tracing. Before calling sendfile(), it can fork() to exec() a user program as needed. The recording stops whenever the file system is full or the given size (-s option) is reached, or a signal is caught. As a result, one can stop the recording by pressing ^C for instance, or as soon as the son exits if any (it sends a SIGCLD to fkt_record). Options: -f file precises the output record file. The location of that file should be carefully chosen: its recording shouldn't compete with what is actually traced, since not only will it interfere with the mere measures, but it may not be able to actually flush the recording when some blasting is running for instance. The best thing to do might be using a separate drive, with a single big partition, and use its block device as file name, since it would avoid all the filesystem stuff. -k mask chooses which keymask will be set for the recording. It defaults to 0x1, which is only system calls, irqs and traps, but setting it to 0x3 activates probes from network device drivers, setting it to 0x7 also activates the ip probes, while setting it to 0x5 only activates ip probes. include/linux/fkt.h holds the definition of KEYMASKs for sets of probes which can be enabled and disable this way. Avoiding including useless layers gives better measurements. It can even be set to 0, which will prevent fkt from recording anything before fkt_enable is used for instance. -s size restricts the recording to a given size. Suffixes like G, M, k are accepted. By default, the available size of the filesystem or the block device will be used -n prevents fkt_record from fork()ing, so pressing ^C will be the only way to stop fkt_record. -S System.map will load the given System.map file to include addresses of every function of the kernel, enabling proper display by fkt_print when -finstrument-functions in the built-in kernel. If not given, only addresses available in /proc/ksyms will be included in the trace. this option may be set several times. -p pow will ask fkt to allocate 2^pow pages for its recording buffer. it is useful if load pikes are expected during the recording. the default is 7. -h prints some reference help fkt_setmask, fkt_enable, fkt_disable ------------------------------------ These tools are particularly useful when fkt_record was given the -n option: they modify the current keymask `on the fly' by doing an ioctl() on /dev/fkt. For instance, fkt_record -k 0 -n & fkt_setmask 0xf some network stuff fkt_disable 1 some other network stuff killall fkt_record Will record both network stuff in the same record file, but the second one will not have any device driver (bit 1, i.e. mask 0x2) probe entry. fkt_print --------- This tool analyzes a trace produced by fkt_record. It first shows the recording header. Then the full recording is dumped: for each probe triggered during the recording, the following is shown: - the time since last probe record for the same cpu - the cpu on which it was running - the pid of the current process on this cpu - the code of the probe - the name corresponding to the code - the parameters of the probe, if any It then shows some statistics computed during reading the recording. - Cpu cycles: it should be quite similar between cpus - Process cycles: the number of cycles spent between every process, both user&kernel level, so this adds to 100%. - Functions cycles: the time each function spent to achieve its work. Note that testing is not computed here, so this doesn't adds to kernel time. - Nesting summary: for each encountered function, the functions it called are displayed along with the time they spent to achieve their work. The cycles this function spent itself is also displayed, so this is a good summary to know the balance of the whole work for this function. - Accounting for every cycle exactly once: this summary shows each spent cycle, either in system calls (S), traps (T), Irqs handling (I), kernel functions (F) or processes: idle (i), fkt_record (f), son of fkt_record (u), or other (o). Note that nesting is taken into account here, so the total should be exactly 100%. - Histogram account for every cycle exactly once: this is the same as above, except it is drawn as an histogram, allowing fast comparisons, especially between records. Options: -f file precises the input record file -s pid asks fkt_print to start taking statistics when the first entry for this pid is encountered. setting pid to 0 asks for no statistics at all, and setting it to -1 asks for full statistics (default). -p pid asks fkt_print to start printing trace items when the first entry for this pid is encountered. With a prepended '+', only items for this pid will be printed. setting pid to 0 asks for no printing at all, and setting it to -1 asks for full printing (default). -d enables debugging. It shouldn't be useful unless an analysis error happens (prefixed with ===) -k asks fkt_print to have the histogram only show kernel cycles, getting rid of process time which might flatten it. -b file asks fkt_print to print statistics about the fkt buffering mecanism in the given file. fkt_bufstats can then be used to get an .eps file from it, provided gnuplot is installed. -t file asks fkt_print to print the time each page took to get filled. fkt_timestats can be used to get an .eps from it. fkt_timestats does the same, with a logarithmic scale. To some extent, it quickly shows the load of the machine during the recording. -h prints some reference help fkt_extract, fkt_select ----------------------- The problem with big traces is that it takes a long time to analyze them. fkt_extract can extract a subtrace from a trace: fkt_extract trace_file1 trace_file2 23 4053 Will extract 4031 pages from trace file trace_file1, starting from page 23 and write them to trace_file2. All the headers are copied as well, so fkt_print will still work on trace_file2. To know the page numbers, you can use fkt_select. fkt_select trace.timedat Will open a window where the activity is drawn: it shows how fast pages were filled during the trace, the x axis being absolute time in processor cycles. a part of it can then be selected, zoomed, unzoomed, and finaly pressing 's' will print the extrema pages numbers on standard output, which can be used as are. trace.timedat is obtained by fkt_print thanks to the -t option. Hopefully, -p 0 -s 0 can be set to fasten its run, if only the .timedat file is wanted for extracting a small part of the trace for a thorough analysis for instance. Adding probes ------------- The fastest way to add probes to file.c for instance is adding CFLAGS_file.o += -finstrument-functions to the Makefile, which tells gcc to automatically call probes at entry and exit of every function of file.c. If file.o is loaded as a module, it should be loaded *just before* launching fkt_record, for it needs both its address and the file itself, to have the base address of the module in memory and the offset of functions within the module. The drawback is that you can't get parameters or return code for instance. Adding probes to every function might also be too much. Adding __attribute__ ((no_instrument_function)) before the name of a function in its definition will prevent gcc from adding the call for this function. Probes can then be added by hand: void __attribute__ ((no_instrument_function)) myfun(int param1, int param2) { int ret=0; FKT_PROBE2(FKT_SOME_KEYMASK,FKT_MYFUN_ENTRY_CODE,param1,param2); work... Do some ret = -ESOMETHING if needed... FKT_PROBE1(FKT_SOME_KEYMASK,FKT_MYFUN_EXIT_CODE,ret); return ret; } FKT_MYFUN_ENTRY_CODE and FKT_MYFUN_EXIT_CODE must be uniquely defined in include/linux/fkt.h and fkt/tools/names.c to be properly printed by fkt_print. But -finstrument-functions and hand-inserted probes should be removed from any production release, since it will fail to be built in any non-fkt patched kernel. -- vim: textwidth=80 fxt-0.3.15/PaxHeaders/compile0000644000000000000000000000013213314420545013033 xustar0030 mtime=1530012005.103820089 30 atime=1746715490.267509394 30 ctime=1746716504.664209835 fxt-0.3.15/compile0000755000175000017500000001624513314420545012534 0ustar00samysamy#! /bin/sh # Wrapper for compilers which do not understand '-c -o'. scriptversion=2012-10-14.11; # UTC # Copyright (C) 1999-2014 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, see . # 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 # . nl=' ' # We need space, tab and new line, in precisely that order. Quoting is # there to prevent tools from complaining about whitespace usage. IFS=" "" $nl" file_conv= # func_file_conv build_file lazy # Convert a $build file to $host form and store it in $file # Currently only supports Windows hosts. If the determined conversion # type is listed in (the comma separated) LAZY, no conversion will # take place. func_file_conv () { file=$1 case $file in / | /[!/]*) # absolute file, and not a UNC file if test -z "$file_conv"; then # lazily determine how to convert abs files case `uname -s` in MINGW*) file_conv=mingw ;; CYGWIN*) file_conv=cygwin ;; *) file_conv=wine ;; esac fi case $file_conv/,$2, in *,$file_conv,*) ;; mingw/*) file=`cmd //C echo "$file " | sed -e 's/"\(.*\) " *$/\1/'` ;; cygwin/*) file=`cygpath -m "$file" || echo "$file"` ;; wine/*) file=`winepath -w "$file" || echo "$file"` ;; esac ;; esac } # func_cl_dashL linkdir # Make cl look for libraries in LINKDIR func_cl_dashL () { func_file_conv "$1" if test -z "$lib_path"; then lib_path=$file else lib_path="$lib_path;$file" fi linker_opts="$linker_opts -LIBPATH:$file" } # func_cl_dashl library # Do a library search-path lookup for cl func_cl_dashl () { lib=$1 found=no save_IFS=$IFS IFS=';' for dir in $lib_path $LIB do IFS=$save_IFS if $shared && test -f "$dir/$lib.dll.lib"; then found=yes lib=$dir/$lib.dll.lib break fi if test -f "$dir/$lib.lib"; then found=yes lib=$dir/$lib.lib break fi if test -f "$dir/lib$lib.a"; then found=yes lib=$dir/lib$lib.a break fi done IFS=$save_IFS if test "$found" != yes; then lib=$lib.lib fi } # func_cl_wrapper cl arg... # Adjust compile command to suit cl func_cl_wrapper () { # Assume a capable shell lib_path= shared=: linker_opts= 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'. eat=1 case $2 in *.o | *.[oO][bB][jJ]) func_file_conv "$2" set x "$@" -Fo"$file" shift ;; *) func_file_conv "$2" set x "$@" -Fe"$file" shift ;; esac ;; -I) eat=1 func_file_conv "$2" mingw set x "$@" -I"$file" shift ;; -I*) func_file_conv "${1#-I}" mingw set x "$@" -I"$file" shift ;; -l) eat=1 func_cl_dashl "$2" set x "$@" "$lib" shift ;; -l*) func_cl_dashl "${1#-l}" set x "$@" "$lib" shift ;; -L) eat=1 func_cl_dashL "$2" ;; -L*) func_cl_dashL "${1#-L}" ;; -static) shared=false ;; -Wl,*) arg=${1#-Wl,} save_ifs="$IFS"; IFS=',' for flag in $arg; do IFS="$save_ifs" linker_opts="$linker_opts $flag" done IFS="$save_ifs" ;; -Xlinker) eat=1 linker_opts="$linker_opts $2" ;; -*) set x "$@" "$1" shift ;; *.cc | *.CC | *.cxx | *.CXX | *.[cC]++) func_file_conv "$1" set x "$@" -Tp"$file" shift ;; *.c | *.cpp | *.CPP | *.lib | *.LIB | *.Lib | *.OBJ | *.obj | *.[oO]) func_file_conv "$1" mingw set x "$@" "$file" shift ;; *) set x "$@" "$1" shift ;; esac fi shift done if test -n "$linker_opts"; then linker_opts="-link$linker_opts" fi exec "$@" $linker_opts exit 1 } eat= 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 $? ;; cl | *[/\\]cl | cl.exe | *[/\\]cl.exe ) func_cl_wrapper "$@" # Doesn't return... ;; esac ofile= cfile= 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 's|^.*[\\/]||; s|^[a-zA-Z]:||; 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 test "$cofile" = "$ofile" || mv "$cofile" "$ofile" elif test -f "${cofile}bj"; then test "${cofile}bj" = "$ofile" || 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-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: fxt-0.3.15/PaxHeaders/Makefile.in0000644000000000000000000000013215007143522013523 xustar0030 mtime=1746716498.224868059 30 atime=1746716502.802089717 30 ctime=1746716504.648718259 fxt-0.3.15/Makefile.in0000644000175000017500000007152315007143522013221 0ustar00samysamy# Makefile.in generated by automake 1.17 from Makefile.am. # @configure_input@ # Copyright (C) 1994-2024 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@ VPATH = @srcdir@ am__is_gnu_make = { \ if test -z '$(MAKELEVEL)'; then \ false; \ elif test -n '$(MAKE_HOST)'; then \ true; \ elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \ true; \ else \ false; \ fi; \ } am__make_running_with_option = \ case $${target_option-} in \ ?) ;; \ *) echo "am__make_running_with_option: internal error: invalid" \ "target option '$${target_option-}' specified" >&2; \ exit 1;; \ esac; \ has_opt=no; \ sane_makeflags=$$MAKEFLAGS; \ if $(am__is_gnu_make); then \ sane_makeflags=$$MFLAGS; \ else \ case $$MAKEFLAGS in \ *\\[\ \ ]*) \ bs=\\; \ sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \ | sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \ esac; \ fi; \ skip_next=no; \ strip_trailopt () \ { \ flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \ }; \ for flg in $$sane_makeflags; do \ test $$skip_next = yes && { skip_next=no; continue; }; \ case $$flg in \ *=*|--*) continue;; \ -*I) strip_trailopt 'I'; skip_next=yes;; \ -*I?*) strip_trailopt 'I';; \ -*O) strip_trailopt 'O'; skip_next=yes;; \ -*O?*) strip_trailopt 'O';; \ -*l) strip_trailopt 'l'; skip_next=yes;; \ -*l?*) strip_trailopt 'l';; \ -[dEDm]) skip_next=yes;; \ -[JT]) skip_next=yes;; \ esac; \ case $$flg in \ *$$target_option*) has_opt=yes; break;; \ esac; \ done; \ test $$has_opt = yes am__make_dryrun = (target_option=n; $(am__make_running_with_option)) am__make_keepgoing = (target_option=k; $(am__make_running_with_option)) am__rm_f = rm -f $(am__rm_f_notfound) am__rm_rf = rm -rf $(am__rm_f_notfound) pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd 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 = . ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/amx_silent_rules.m4 \ $(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \ $(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \ $(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \ $(am__configure_deps) $(am__DIST_COMMON) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = fxt.pc CONFIG_CLEAN_VPATH_FILES = AM_V_P = $(am__v_P_@AM_V@) am__v_P_ = $(am__v_P_@AM_DEFAULT_V@) am__v_P_0 = false am__v_P_1 = : AM_V_GEN = $(am__v_GEN_@AM_V@) am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@) am__v_GEN_0 = @echo " GEN " $@; am__v_GEN_1 = AM_V_at = $(am__v_at_@AM_V@) am__v_at_ = $(am__v_at_@AM_DEFAULT_V@) am__v_at_0 = @ am__v_at_1 = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \ ctags-recursive dvi-recursive html-recursive info-recursive \ install-data-recursive install-dvi-recursive \ install-exec-recursive install-html-recursive \ install-info-recursive install-pdf-recursive \ install-ps-recursive install-recursive installcheck-recursive \ installdirs-recursive pdf-recursive ps-recursive \ tags-recursive uninstall-recursive am__can_run_installinfo = \ case $$AM_UPDATE_INFO_DIR in \ n|no|NO) false;; \ *) (install-info --version) >/dev/null 2>&1;; \ esac 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 = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' am__uninstall_files_from_dir = { \ { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \ || { echo " ( cd '$$dir' && rm -f" $$files ")"; \ $(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \ } am__installdirs = "$(DESTDIR)$(pkgconfigdir)" DATA = $(pkgconfig_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive am__recursive_targets = \ $(RECURSIVE_TARGETS) \ $(RECURSIVE_CLEAN_TARGETS) \ $(am__extra_recursive_targets) AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \ cscope distdir distdir-am dist dist-all distcheck am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \ config.h.in # Read a list of newline-separated strings from the standard input, # and print each of them once, without duplicates. Input order is # *not* preserved. am__uniquify_input = $(AWK) '\ BEGIN { nonempty = 0; } \ { items[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in items) print i; }; } \ ' # Make sure the list of sources is unique. This is necessary because, # e.g., the same source file might be shared among _SOURCES variables # for different programs/libraries. am__define_uniq_tagged_files = \ list='$(am__tagged_files)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | $(am__uniquify_input)` DIST_SUBDIRS = $(SUBDIRS) am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(srcdir)/fxt.pc.in $(top_srcdir)/build-aux/ar-lib \ $(top_srcdir)/build-aux/compile \ $(top_srcdir)/build-aux/config.guess \ $(top_srcdir)/build-aux/config.sub \ $(top_srcdir)/build-aux/install-sh \ $(top_srcdir)/build-aux/ltmain.sh \ $(top_srcdir)/build-aux/missing COPYING ChangeLog INSTALL \ README TODO build-aux/ar-lib build-aux/compile \ build-aux/config.guess build-aux/config.sub \ build-aux/install-sh build-aux/ltmain.sh build-aux/missing \ compile config.guess config.sub depcomp install-sh ltmain.sh \ missing DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ if test -d "$(distdir)"; then \ find "$(distdir)" -type d ! -perm -700 -exec chmod u+rwx {} ';' \ ; rm -rf "$(distdir)" \ || { sleep 5 && rm -rf "$(distdir)"; }; \ else :; fi am__post_remove_distdir = $(am__remove_distdir) am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = -9 DIST_TARGETS = dist-gzip # Exists only to be overridden by the user if desired. AM_DISTCHECK_DVI_TARGET = dvi distuninstallcheck_listfiles = find . -type f -print am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \ | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$' distcleancheck_listfiles = \ find . \( -type f -a \! \ \( -name .nfs* -o -name .smb* -o -name .__afs* \) \) -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@ AM_LFS_CFLAGS = @AM_LFS_CFLAGS@ AM_LFS_LDFLAGS = @AM_LFS_LDFLAGS@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CSCOPE = @CSCOPE@ CTAGS = @CTAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DLLTOOL = @DLLTOOL@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EPSTOPDF = @EPSTOPDF@ ETAGS = @ETAGS@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ FILECMD = @FILECMD@ FXT_LIBS = @FXT_LIBS@ FXT_MS_LIB = @FXT_MS_LIB@ FXT_MS_LIB_ARCH = @FXT_MS_LIB_ARCH@ GREP = @GREP@ HELP2MAN = @HELP2MAN@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LATEX = @LATEX@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@ MAKEINFO = @MAKEINFO@ MANIFEST_TOOL = @MANIFEST_TOOL@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PERL = @PERL@ RANLIB = @RANLIB@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ X_CFLAGS = @X_CFLAGS@ X_EXTRA_LIBS = @X_EXTRA_LIBS@ X_LIBS = @X_LIBS@ X_PRE_LIBS = @X_PRE_LIBS@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_AR = @ac_ct_AR@ ac_ct_CC = @ac_ct_CC@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__rm_f_notfound = @am__rm_f_notfound@ am__tar = @am__tar@ am__untar = @am__untar@ am__xargs_n = @am__xargs_n@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ runstatedir = @runstatedir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ ACLOCAL_AMFLAGS = -I m4 SUBDIRS = tools doc pkgconfigdir = $(libdir)/pkgconfig pkgconfig_DATA = fxt.pc EXTRA_DIST = kernel INSTALL.FKT bootstrap all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: Makefile @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --foreign Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @test -f $@ || rm -f stamp-h1 @test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1 stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status $(AM_V_at)rm -f stamp-h1 $(AM_V_GEN)cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) $(AM_V_GEN)($(am__cd) $(top_srcdir) && $(AUTOHEADER)) $(AM_V_at)rm -f stamp-h1 $(AM_V_at)touch $@ distclean-hdr: -rm -f config.h stamp-h1 fxt.pc: $(top_builddir)/config.status $(srcdir)/fxt.pc.in cd $(top_builddir) && $(SHELL) ./config.status $@ mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt install-pkgconfigDATA: $(pkgconfig_DATA) @$(NORMAL_INSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ if test -n "$$list"; then \ echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \ $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \ fi; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \ done uninstall-pkgconfigDATA: @$(NORMAL_UNINSTALL) @list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir) # This directory's subdirectories are mostly independent; you can cd # into them and run 'make' without going through this Makefile. # To change the values of 'make' variables: instead of editing Makefiles, # (1) if the variable is set in 'config.status', edit 'config.status' # (which will cause the Makefiles to be regenerated when you run 'make'); # (2) otherwise, pass the desired values on the 'make' command line. $(am__recursive_targets): @fail=; \ if $(am__make_keepgoing); then \ failcom='fail=yes'; \ else \ failcom='exit 1'; \ fi; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" ID: $(am__tagged_files) $(am__define_uniq_tagged_files); mkid -fID $$unique tags: tags-recursive TAGS: tags tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ $(am__define_uniq_tagged_files); \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: ctags-recursive CTAGS: ctags ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files) $(am__define_uniq_tagged_files); \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" cscope: cscope.files test ! -s cscope.files \ || $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS) clean-cscope: -rm -f cscope.files cscope.files: clean-cscope cscopelist cscopelist: cscopelist-recursive cscopelist-am: $(am__tagged_files) list='$(am__tagged_files)'; \ case "$(srcdir)" in \ [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \ *) sdir=$(subdir)/$(srcdir) ;; \ esac; \ for i in $$list; do \ if test -f "$$i"; then \ echo "$(subdir)/$$i"; \ else \ echo "$$sdir/$$i"; \ fi; \ done >> $(top_builddir)/cscope.files distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags -rm -f cscope.out cscope.in.out cscope.po.out cscope.files distdir: $(BUILT_SOURCES) $(MAKE) $(AM_MAKEFLAGS) distdir-am distdir-am: $(DISTFILES) $(am__remove_distdir) $(AM_V_at)$(MKDIR_P) "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ $(am__make_dryrun) \ || test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$(top_distdir)" distdir="$(distdir)" \ dist-hook -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz $(am__post_remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2 $(am__post_remove_distdir) dist-lzip: distdir tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz $(am__post_remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz $(am__post_remove_distdir) dist-zstd: distdir tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst $(am__post_remove_distdir) dist-tarZ: distdir @echo WARNING: "Support for distribution archives compressed with" \ "legacy program 'compress' is deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__post_remove_distdir) dist-shar: distdir @echo WARNING: "Support for shar distribution archives is" \ "deprecated." >&2 @echo WARNING: "It will be removed altogether in Automake 2.0" >&2 shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz $(am__post_remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__post_remove_distdir) dist dist-all: $(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:' $(am__post_remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ eval GZIP= gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lz*) \ lzip -dc $(distdir).tar.lz | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ eval GZIP= gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ *.tar.zst*) \ zstd -dc $(distdir).tar.zst | $(am__untar) ;;\ esac chmod -R a-w $(distdir) chmod u+w $(distdir) mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build/sub \ && ../../configure \ $(AM_DISTCHECK_CONFIGURE_FLAGS) \ $(DISTCHECK_CONFIGURE_FLAGS) \ --srcdir=../.. --prefix="$$dc_install_base" \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__post_remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @test -n '$(distuninstallcheck_dir)' || { \ echo 'ERROR: trying to run $@ with an empty' \ '$$(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ $(am__cd) '$(distuninstallcheck_dir)' || { \ echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \ exit 1; \ }; \ test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(DATA) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(pkgconfigdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: if test -z '$(STRIP)'; then \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ install; \ else \ $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \ fi mostlyclean-generic: clean-generic: distclean-generic: -$(am__rm_f) $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_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-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr \ distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-pkgconfigDATA install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-pkgconfigDATA .MAKE: $(am__recursive_targets) all install-am install-strip .PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \ am--refresh check check-am clean clean-cscope clean-generic \ clean-libtool cscope cscopelist-am ctags ctags-am dist \ dist-all dist-bzip2 dist-gzip dist-hook dist-lzip dist-shar \ dist-tarZ dist-xz dist-zip dist-zstd distcheck distclean \ distclean-generic distclean-hdr distclean-libtool \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-data install-data-am install-dvi install-dvi-am \ install-exec install-exec-am install-html install-html-am \ install-info install-info-am install-man install-pdf \ install-pdf-am install-pkgconfigDATA install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ installdirs-am maintainer-clean maintainer-clean-generic \ mostlyclean mostlyclean-generic mostlyclean-libtool pdf pdf-am \ ps ps-am tags tags-am uninstall uninstall-am \ uninstall-pkgconfigDATA .PRECIOUS: Makefile dist-hook: rm -rf `find $(distdir)/kernel -name CVS` # 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: # Tell GNU make to disable its built-in pattern rules. %:: %,v %:: RCS/%,v %:: RCS/% %:: s.% %:: SCCS/s.% fxt-0.3.15/PaxHeaders/missing0000644000000000000000000000013213314420545013054 xustar0030 mtime=1530012005.103820089 30 atime=1746715490.277509439 30 ctime=1746716504.670266761 fxt-0.3.15/missing0000755000175000017500000001533013314420545012547 0ustar00samysamy#! /bin/sh # Common wrapper for a few potentially missing GNU programs. scriptversion=2013-10-28.13; # UTC # Copyright (C) 1996-2014 Free Software Foundation, Inc. # Originally written by Fran,cois Pinard , 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, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . # 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. if test $# -eq 0; then echo 1>&2 "Try '$0 --help' for more information" exit 1 fi case $1 in --is-lightweight) # Used by our autoconf macros to check whether the available missing # script is modern enough. exit 0 ;; --run) # Back-compat with the calling convention used by older automake. shift ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Run 'PROGRAM [ARGUMENT]...', returning a proper advice when this fails due to PROGRAM being missing or too old. Options: -h, --help display this help and exit -v, --version output version information and exit Supported PROGRAM values: aclocal autoconf autoheader autom4te automake makeinfo bison yacc flex lex help2man Version suffixes to PROGRAM as well as the prefixes 'gnu-', 'gnu', and 'g' are ignored when checking the name. Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: unknown '$1' option" echo 1>&2 "Try '$0 --help' for more information" exit 1 ;; esac # Run the given program, remember its exit status. "$@"; st=$? # If it succeeded, we are done. test $st -eq 0 && exit 0 # Also exit now if we it failed (or wasn't found), and '--version' was # passed; such an option is passed most likely to detect whether the # program is present and works. case $2 in --version|--help) exit $st;; esac # Exit code 63 means version mismatch. This often happens when the user # tries to use an ancient version of a tool on a file that requires a # minimum version. if test $st -eq 63; then msg="probably too old" elif test $st -eq 127; then # Program was missing. msg="missing on your system" else # Program was found and executed, but failed. Give up. exit $st fi perl_URL=http://www.perl.org/ flex_URL=http://flex.sourceforge.net/ gnu_software_URL=http://www.gnu.org/software program_details () { case $1 in aclocal|automake) echo "The '$1' program is part of the GNU Automake package:" echo "<$gnu_software_URL/automake>" echo "It also requires GNU Autoconf, GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/autoconf>" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; autoconf|autom4te|autoheader) echo "The '$1' program is part of the GNU Autoconf package:" echo "<$gnu_software_URL/autoconf/>" echo "It also requires GNU m4 and Perl in order to run:" echo "<$gnu_software_URL/m4/>" echo "<$perl_URL>" ;; esac } give_advice () { # Normalize program name to check for. normalized_program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` printf '%s\n' "'$1' is $msg." configure_deps="'configure.ac' or m4 files included by 'configure.ac'" case $normalized_program in autoconf*) echo "You should only need it if you modified 'configure.ac'," echo "or m4 files included by it." program_details 'autoconf' ;; autoheader*) echo "You should only need it if you modified 'acconfig.h' or" echo "$configure_deps." program_details 'autoheader' ;; automake*) echo "You should only need it if you modified 'Makefile.am' or" echo "$configure_deps." program_details 'automake' ;; aclocal*) echo "You should only need it if you modified 'acinclude.m4' or" echo "$configure_deps." program_details 'aclocal' ;; autom4te*) echo "You might have modified some maintainer files that require" echo "the 'autom4te' program to be rebuilt." program_details 'autom4te' ;; bison*|yacc*) echo "You should only need it if you modified a '.y' file." echo "You may want to install the GNU Bison package:" echo "<$gnu_software_URL/bison/>" ;; lex*|flex*) echo "You should only need it if you modified a '.l' file." echo "You may want to install the Fast Lexical Analyzer package:" echo "<$flex_URL>" ;; help2man*) echo "You should only need it if you modified a dependency" \ "of a man page." echo "You may want to install the GNU Help2man package:" echo "<$gnu_software_URL/help2man/>" ;; makeinfo*) echo "You should only need it if you modified a '.texi' file, or" echo "any other file indirectly affecting the aspect of the manual." echo "You might want to install the Texinfo package:" echo "<$gnu_software_URL/texinfo/>" echo "The spurious makeinfo call might also be the consequence of" echo "using a buggy 'make' (AIX, DU, IRIX), in which case you might" echo "want to install GNU make:" echo "<$gnu_software_URL/make/>" ;; *) echo "You might have modified some files without having the proper" echo "tools for further handling them. Check the 'README' file, it" echo "often tells you about the needed prerequisites for installing" echo "this package. You may also peek at any GNU archive site, in" echo "case some other package contains this missing '$1' program." ;; esac } give_advice "$1" | sed -e '1s/^/WARNING: /' \ -e '2,$s/^/ /' >&2 # Propagate the correct exit status (expected to be 127 for a program # not found, 63 for a program that failed due to version mismatch). exit $st # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC" # time-stamp-end: "; # UTC" # End: fxt-0.3.15/PaxHeaders/fxt.pc.in0000644000000000000000000000007411220370566013220 xustar0030 atime=1746715490.287509484 30 ctime=1746716504.650690317 fxt-0.3.15/fxt.pc.in0000644000175000017500000000035411220370566012703 0ustar00samysamyprefix=@prefix@ exec_prefix=@exec_prefix@ libdir=@libdir@ includedir=@includedir@ Name: FxT Description: FxT - Fast User/Kernel Tracing Version: @VERSION@ Cflags: -I${includedir} Libs: -L${libdir} -lfxt Libs.private: @LIBS@ @FXT_LIBS@ fxt-0.3.15/PaxHeaders/kernel0000644000000000000000000000013215007143530012660 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/0002755000175000017500000000000015007143530012425 5ustar00samysamyfxt-0.3.15/kernel/PaxHeaders/linux-fkt0000644000000000000000000000013215007143530014601 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-fkt/0002755000175000017500000000000015007143530014346 5ustar00samysamyfxt-0.3.15/kernel/linux-fkt/PaxHeaders/arch0000644000000000000000000000013215007143530015516 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-fkt/arch/0002755000175000017500000000000015007143530015263 5ustar00samysamyfxt-0.3.15/kernel/linux-fkt/arch/PaxHeaders/i3860000644000000000000000000000013215007143530016207 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-fkt/arch/i386/0002755000175000017500000000000015007143530015754 5ustar00samysamyfxt-0.3.15/kernel/linux-fkt/arch/i386/PaxHeaders/kernel0000644000000000000000000000013215007143530017467 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-fkt/arch/i386/kernel/0002755000175000017500000000000015007143530017234 5ustar00samysamyfxt-0.3.15/kernel/linux-fkt/arch/i386/kernel/PaxHeaders/fkt_header.S0000644000000000000000000000007310524370025021770 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.673474392 fxt-0.3.15/kernel/linux-fkt/arch/i386/kernel/fkt_header.S0000644000175000017500000004747010524370025021466 0ustar00samysamy# fkt_header.S # # # Copyright (C) 2000, 2001 Robert D. Russell -- rdr@unh.edu # 2003, 2004 Samuel Thibault -- samuel.thibault@ens-lyon.org # # 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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA # # ### 13-Jun-03 st adapted to new fkt buffering ### 08-Nov-00 rdr change SMP handling to avoid spin locks ### 11-Jul-00 rdr change __SMP__ to CONFIG_SMP for 2.4.0 # # fkt = Fast Kernel Tracing # # uses 1 external: # unsigned fkt_active; 0 when inactive, non-zero when active # # # call is: fkt_header( header, p1, p2, ... ); # where: # header low byte has total number of bytes in this probe entry # = (3 + number_of_parameters)*4 # header high 3 bytes have entry identification code # # # format of one probe record in buffer is: # int 1 low 32-bits of cycle clock # int 2 low half gets 16-bit pid of current process # high half gets 16-bit cpu number # int 3 full 32-bit header from caller # int 4 full 32-bit p1 from caller # int 5 full 32-bit p2 from caller # ... ... # int 3+n full 32-bit pn from caller # # # assumptions (and invariants): # value in fkt_next_slot is a multiple of 4, grows up within a page # value in fkt_cur_data is a multiple of 4 # value in low byte of header is multiple of 4 # # # # fkt_active contains the currently active set of probe keys. # bit x in fkt_active is 1 if probes in keyset x are active. # fkt_active is set when tracing is actived by fkt_setup(); it is reset # to 0 when tracing is deactived by fkt_endup(). # fkt_active is also reset to 0 by the first thread that fills the buffer. # #include #include #include #include /* at most */ #if (LINUX_VERSION_CODE >= (KERNEL_VERSION(2,6,7))) #include /* at most */ #elif (LINUX_VERSION_CODE >= (KERNEL_VERSION(2,6,0))) #include #endif #undef PAGE_SIZE #define PAGE_SIZE (1 << PAGE_SHIFT) #undef PAGE_MASK #define PAGE_MASK (~(PAGE_SIZE-1)) #define STRUCT_DATA_PAGE_SIZE 8 # Offsets into struct task_struct -- must agree with # CAREFUL! these tend to change from version to version # since they are NOT wired down! # # these three lines is the result of this program, compiled with -D__KERNEL__ -I/usr/src/linux-.../include # and -I/usr/src/linux-.../include/asm-i386/mach-generic on 2.6 # #include # int main(void) { # /* to comment on 2.6 kernels */ # printf("processor\t= %d\n",&((struct task_struct *)0)->processor); # /* always correct */ # printf("pid\t= %d\n",&((struct task_struct *)0)->pid); # } processor = 48 /* at most */ #if (LINUX_VERSION_CODE >= (KERNEL_VERSION(2,6,10))) pid = 148 /* at most */ #elif (LINUX_VERSION_CODE >= (KERNEL_VERSION(2,6,3))) pid = 136 #else pid = 124 #endif # Offsets into caller stack when in these routines caller_code = 8 # when data page addr not pushed on TOS caller_offset = 12 # after data page addr is pushed on TOS # Offsets into probe record probe_cycles = 0 probe_pid = 4 probe_cpu_no = 6 probe_code = 8 probe_param1 = 12 # borrowed from entry.S # points reg at current task control block (TCB) for 2.4 kernels, # or at current thread_info struct #define GET_CURRENT(reg) \ movl %esp, reg; \ andl $-8192, reg FKT_SOFTIRQ = 4 # *must be the same as in include/linux/interrupt.h* # # These are pointers to the data page # # unsigned *fkt_next_slot; pointer to next free slot in page # unsigned long **fkt_cur_data; pointer to pointer to next page address # # They must remain grouped in this order for cmpxchg8b # fkt_cur_data is considered as hi part, hence second in memory # .bss .align 4 .globl fkt_next_slot .size fkt_next_slot,4 fkt_next_slot: .zero 4 .globl fkt_cur_data .size fkt_cur_data,4 fkt_cur_data: .zero 4 ################################################################################ # # This gets room for the probe recording. # # It is pretty hacky to use it indeed :), one has to use this definition of # commas: #define COMMA , # # It changes eax, ecx and edx, and even ebx on SMP # then returns the slot address in ecx on UP # plus the limit in ebx and the data page address on TOS on SMP # # the leal_ecx_eax argument must do something like leal room(%ecx),%eax. It might use # ebx or edx. # # leal_eax_ebx is something like leal room(%eax), %ebx and might use ecx # # inc_bl is something like addl room,%bl and may not use any register, sorry :) # beware, limit (ebx) is pushed just before calling it ! # #ifdef CONFIG_SMP #define GET_ROOM(leal_eax_ebx,inc_bl,leal_ecx_eax) \ movl %edx,%ecx; \ movl %eax,%ebx; /* for (edx:eax) merely match memory's content */\ lock /* atomically */\ cmpxchg8b fkt_next_slot; /* have current position in edx:eax */\ 1: \ /* there may seem to be a race condition here: if the page is switched now */\ /* (just after reading) and sendfile starts to write it; but since we will */\ /* detect the page switch, we won't actually write anything in this page */\ \ lock /* increment this data page counter to prevent */\ incl 4(%edx); /* sendfile from writing it before we're done */\ \ leal_eax_ebx; /* add room to eax, getting new position in ebx */\ \ movl %eax,%ecx; \ decl %ecx; /* to get on the right side */\ andl $PAGE_MASK,%ecx; /* ecx gets ptr to the beginning of page */\ negl %ecx; /* ecx = ebx - ecx */\ addl %ebx,%ecx; /* ecx gets offset from first slot of page */\ \ cmpl $PAGE_SIZE,%ecx; /* are we off the end of the buffer? */\ ja 4f; /* offset too big, try to switch page */\ \ /* room without switching page */ \ movl %edx,%ecx; /* same page, but ebx was increased */\ lock \ cmpxchg8b fkt_next_slot; /* atomicaly try to get this room (ecx:ebx) */\ jz 2f; /* got it! */\ lock \ decl 4(%ecx); /* free the page we tried */\ jmp 1b; /* and redo from start */\ 2: \ pushl %ecx; /* push the page entry, for final decrementing */\ movl %eax,%ecx; /* ecx gets ptr to first slot for this record */\ jmp 3f; \ \ 4: \ /* compute next data page address */\ movl %edx,%ecx; \ movl %edx,%ebx; \ andl $(~(FKTPTRSSIZE-1)),%ebx; /* get base address */\ addl $STRUCT_DATA_PAGE_SIZE,%ecx; /* jump to the next data page */\ andl $(FKTPTRSSIZE-1),%ecx; /* mask hi bits out to wrap within the buffer */\ orl %ebx,%ecx; /* mix with base address */\ \ movl (%ecx),%ebx; /* get address of next page's address, */\ testl %ebx,%ebx; /* offset 0 in struct fkt_data_page */\ jnz 4f; /* if zero, no page left */\ lock \ decl 4(%edx); /* unlock page */\ jmp 7f; /* set fkt_active to zero and go out */\ 4: \ movl (%ebx),%ebx; /* else get next page's address */\ addl $4,%ebx; /* take room for the size */\ pushl %ebx; /* remember our slot address */\ inc_bl; /* take room for the slot */\ pushl %edx; /* and the page we locked */\ lock \ cmpxchg8b fkt_next_slot; /* atomicaly try to get this room (ecx:ebx) */\ jz 5f; /* got it! */\ popl %edx; /* unlock the page we locked */\ lock /* at the beginning */\ decl 4(%edx); \ popl %ebx; /* didn't get it, forget the slot */\ jmp 1b; /* and redo from start */\ \ 5: \ /* switch succeeded, finalize it */ \ /* old next_slot is still in %eax */\ /* first write the page's fill size at its beginnig */\ popl %edx; /* forget the old page */\ pushl %ebx; /* save limit */\ movl %eax,%ebx; /* save for size computation */\ decl %ebx; /* to get on the right side */\ andl $PAGE_MASK,%ebx; /* get base address of page */\ subl %ebx,%eax; /* get size */\ movl %eax,(%ebx); /* and write it down */\ \ /* this precedence is used just in case another switch already happened ;) */\ lock \ incl 4(%ecx); /* protect this new page */\ lock \ decl 4(%edx); /* and let sendfile write the previous one */\ /* wake it up for execution on cpu0 XXX should try CURRENT->cpu instead */ \ lock \ orl $(1< eax */\ movl %ecx,%edx; \ decl %edx; /* to get on the right side */\ andl $PAGE_MASK,%edx; /* edx gets ptr to the beginning of the page */\ negl %edx; /* edx = eax - edx */\ addl %eax,%edx; /* edx gets offset from first slot of page */\ cmpl $PAGE_SIZE,%edx; /* are we off the end of the buffer? */\ ja 4f; /* too big, try to switch page */\ movl %eax,fkt_next_slot; /* update ptr to next slot after record */\ jmp 3f; \ 4: \ /* fkt_next_slot is still in %ecx */ \ /* first wake fkt up */ \ orl $(1< eax */\ movl %eax,fkt_next_slot; /* remember it */\ 3: #endif /* CONFIG_SMP */ ################################################################################ # # Common slot filling # # this must be called with eax containing the probe code, ecx pointing on # the slot, and on SMP, ebx holding the address of the page # ################################################################################ /* at most */ #if (LINUX_VERSION_CODE < (KERNEL_VERSION(2,6,0))) #define LOAD_PID \ movl pid(%eax),%edx /* eax gets pid of current process */ #ifdef CONFIG_SMP #define LOAD_CPU \ movl processor(%eax),%eax /* eax get current processor no */ #else #define LOAD_CPU #endif #else #define LOAD_PID \ movl TI_task(%eax),%edx; /* %edx points on task_struct */\ testl %edx,%edx; /* check for task_struct != NULL */\ jz 4f; /* NULL, set -1 as special pid */\ movl pid(%edx),%edx; /* edx gets pid of current process */\ jmp 5f; /* skip -1 */\ 4: \ decl %edx; /* set -1 as special pid */\ 5: #ifdef CONFIG_SMP #define LOAD_CPU \ movl TI_cpu(%eax),%eax /* eax get current processor no */ #else #define LOAD_CPU #endif #endif /* at least 2.6.0 (at most) */ #ifdef CONFIG_SMP #define WRITE_IT \ movw %dx,probe_pid(%ecx); /* 2nd slot (lower half) gets pid */\ movw %ax,probe_cpu_no(%ecx); /* 2nd slot (upper half) gets cpu no */\ lock \ decl 4(%ebx) /* free the page */ #else #define WRITE_IT \ movl %edx,probe_pid(%ecx) /* whole 2nd slot gets pid (top half 0) */ #endif /* CONFIG_SMP */ #define COMMON_FILL \ movl %eax,probe_code(%ecx); /* save code */\ \ rdtsc; /* get 64-bit cpu cycle counter in edx-eax */\ /* ignore high-order 32 bits in edx */\ movl %eax,probe_cycles(%ecx); /* low-order 32 bits from eax to 1st slot */\ \ GET_CURRENT(%eax); /* point back ebx at current task control block, */\ LOAD_PID; /* load pid in edx */\ LOAD_CPU; /* load cpu in eax, if SMP */\ WRITE_IT /* and write this in the slot */\ .text ################################################################################ # # normal entry point to take a probe # at entry return address is on stack pointed to by esp # eax, ecx, edx are undefined # ebx is unused # on return eax, ecx, edx are destroyed # ebx is unchanged on UP, changed on SMP but saved to # match standard calling conventions # ENTRY(fkt_header) pushfl # save processor flags cli # block local interrupts #ifdef CONFIG_SMP pushl %ebx #endif GET_ROOM( /* ebx gets no of bytes needed by this record */ movzbl (caller_code+4)(%esp) COMMA %ebx; /* then ptr to next slot after record */ addl %eax COMMA %ebx; , /* just increment bl, this is done after push ebx, so use _offset version */ addb (caller_offset+4)(%esp) COMMA %bl; , movzbl caller_code(%esp) COMMA %eax; addl %ecx COMMA %eax; ) rdtsc # get 64-bit cpu cycle counter in edx-eax # ignore high-order 32 bits in edx movl %eax,probe_cycles(%ecx) # low-order 32 bits from eax to 1st slot GET_CURRENT(%eax) # point eax at current task control block /* at most */ #if (LINUX_VERSION_CODE < (KERNEL_VERSION(2,6,0))) movl pid(%eax),%edx # edx gets pid of current process #ifdef CONFIG_SMP movl processor(%eax),%eax # eax get current processor no #endif #else movl TI_task(%eax),%edx movl pid(%edx),%edx # edx gets pid of current process #ifdef CONFIG_SMP movl TI_cpu(%eax),%eax # eax get current processor no #endif #endif // at least 2.6.0 (at most) # pid is in %edx (%dx on SMP), and on SMP, %ax holds cpu #ifdef CONFIG_SMP movw %dx,probe_pid(%ecx) # 2nd slot (lower half) gets pid movw %ax,probe_cpu_no(%ecx) # 2nd slot (upper half) gets cpu no leal (caller_offset+4)(%esp),%edx # edx points at header value in call #else movl %edx,probe_pid(%ecx) # whole 2nd slot gets pid (top half 0) leal caller_code(%esp),%edx # edx points at header value in call #endif /* CONFIG_SMP */ leal probe_code(%ecx),%ecx # ecx points at header slot in record 9: movl (%edx),%eax # pick up next value from caller movl %eax,(%ecx) # save that value into next record slot leal 4(%edx),%edx # bump edx to point at next caller value leal 4(%ecx),%ecx # bump ecx to point at next record slot #ifdef CONFIG_SMP cmpl %ecx,%ebx # see if record filled yet jne 9b # if not, jump back to next loop iteration popl %ecx # pop page entry address lock decl 4(%ecx) # free the page #else cmpl %ecx,fkt_next_slot # see if record filled yet jne 9b # if not, jump back to next loop iteration #endif /* CONFIG_SMP */ 6: #ifdef CONFIG_SMP popl %ebx #endif popfl # restore processor flags, local interrupts ret # return to caller .align 4 7: movl $0,fkt_active # turn all active bits off jmp 6b # leave #define GET_ROOMn(n) \ GET_ROOM( \ leal n(%eax) COMMA %ebx; \ /* ebx gets ptr to next slot after record */ \ , \ addb $n COMMA %bl; \ , \ leal n(%ecx) COMMA %eax; \ ) ################################################################################ # # fastest entry point to take a probe for sys calls and traps (with no params) # probe record is 12 bytes # at entry return address is on stack pointed to by esp # eax contains the code # ebx is undefined # ecx is undefined # edx is undefined # on return eax, ecx, edx are destroyed # ebx is set to pointer to the TCB # ENTRY(fkt_eax_ebx0) pushfl # save processor flags cli # block local interrupts pushl %eax # save code GET_ROOMn(12) #ifdef CONFIG_SMP popl %ebx #endif popl %eax COMMON_FILL 6: /* at most */ #if (LINUX_VERSION_CODE < (KERNEL_VERSION(2,6,0))) #ifdef CONFIG_SMP GET_CURRENT(%ebx) /* %ebx has been lost in GET_ROOM */ #endif /* CONFIG_SMP */ #endif popfl # restore processor flags, local interrupts ret # return to caller .align 4 7: movl $0,fkt_active # turn all active bits off popl %eax # to the pop of label 3 jmp 6b # leave ################################################################################ # # faster entry point to take a probe for IRQs and other probes with no params # probe record is 12 bytes # at entry return address is on stack pointed to by esp # eax contains the code # ebx is unused # ecx is undefined # edx is undefined # on return eax, ecx, edx are destroyed # ebx is unchanged on UP, changed on SMP, don't call this # as a regular function !! # ENTRY(fkt_eax0) pushfl # save processor flags cli # block local interrupts pushl %eax GET_ROOMn(12) #ifdef CONFIG_SMP popl %ebx # pop the data page #endif popl %eax COMMON_FILL 6: popfl # restore processor flags, local interrupts ret # return to caller .align 4 7: movl $0,fkt_active # turn all active bits off popl %eax # to the pop of label 3 jmp 6b # leave ################################################################################ # # faster entry point to take a probe with one parameter # expects 1 parameter in %edx, and code in %eax # probe record is 16 bytes # at entry return address is on stack pointed to by esp # eax contains the code # ebx is unused # ecx is undefined # edx contains the parameter # on return eax, ecx, edx are destroyed # ebx is unchanged on UP, changed on SMP, don't call this # as a regular function !! # ENTRY(fkt_eax1) pushfl # save processor flags cli # block local interrupts pushl %eax # save the code because we need eax pushl %edx # save the parameter because we need edx GET_ROOMn(16) #ifdef CONFIG_SMP popl %ebx # pop the data page #endif popl %edx # get back parameter movl %edx,probe_param1(%ecx) # save first (only) parameter popl %eax # get back code COMMON_FILL 6: popfl # restore processor flags, local interrupts ret # return to caller .align 4 7: movl $0,fkt_active # turn all active bits off popl %edx # get back parameter popl %eax # get back code jmp 6b # leave ################################################################################ # # entry points for automatic function instrumenting: # # these are automagically called on entry and exit of every fonction of # every file compiled with the -finstrument-fuctions, except functions # with __attribute__ ((no_instrument_function)) # # at entry this_fn at 8(%esp), call_site at 4(%esp) # at return eax, ecx, edx are destroyed # ebx is kept ENTRY(__cyg_profile_func_enter) testl $FKT_GCC_INSTRUMENT_KEYMASK,fkt_active jnz 0f ret 0: pushfl # save processor flags cli # block local interrupts pushl %ebx # save ebx GET_ROOMn(16) #ifdef SMP popl %ebx # pop the data page #endif movl 12(%esp),%edx movl %edx,probe_param1(%ecx) # save first (only) parameter movl $(((FKT_GCC_INSTRUMENT_ENTRY_CODE)<<8)|16),%eax # code COMMON_FILL 6: popl %ebx # restore ebx popfl # restore processor flags, local interrupts ret # return to caller .align 4 7: movl $0,fkt_active # turn all active bits off jmp 6b ENTRY(__cyg_profile_func_exit) testl $FKT_GCC_INSTRUMENT_KEYMASK,fkt_active jnz 0f ret 0: pushfl # save processor flags cli # block local interrupts pushl %ebx # save ebx GET_ROOMn(16) #ifdef SMP popl %ebx # pop the data page #endif movl 12(%esp),%edx movl %edx,probe_param1(%ecx) # save first (only) parameter movl $(((FKT_GCC_INSTRUMENT_EXIT_CODE)<<8)|16),%eax # code COMMON_FILL 6: popl %ebx # restore ebx popfl # restore processor flags, local interrupts ret # return to caller .align 4 7: movl $0,fkt_active # turn all active bits off jmp 6b ################################################################################ # .globl fkt_trailer # to see size of code generated fkt_trailer: .size fkt_header,fkt_trailer-fkt_header fxt-0.3.15/kernel/linux-fkt/PaxHeaders/kernel0000644000000000000000000000013215007143530016061 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-fkt/kernel/0002755000175000017500000000000015007143530015626 5ustar00samysamyfxt-0.3.15/kernel/linux-fkt/kernel/PaxHeaders/fkt-mod.c0000644000000000000000000000007310377311253017653 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.673740592 fxt-0.3.15/kernel/linux-fkt/kernel/fkt-mod.c0000644000175000017500000006621210377311253017344 0ustar00samysamy/* * fkt-mod.c * * Copyright (C) 2003, 2004 Samuel Thibault * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* fkt = Fast Kernel Tracing */ /* these are the modular data & functions */ /* not tested on 2.5 & 2.6 */ #include //#define DEBUG 1 #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #include #if (LINUX_VERSION_CODE >= (KERNEL_VERSION(2,5,28))) // at most #include #else #define page_has_buffers(page) (!!((page)->buffers)) #define page_buffers(page) ((page)->buffers) #endif #include /* * parameters that can be set via an ioctl */ /* initial value of fkt_active */ static unsigned int initmask; static int initpowpages = FKTINITPOWPAGES; static unsigned trydma; /* only useful for ISA disk boards */ /* current number of allocated pages */ static int nbpages; /* * exclusive fkt_sendfile access */ /* held by the unique recording process */ static DECLARE_MUTEX(fkt_sem); /* list of processes waiting for fkt to be ready */ static DECLARE_WAIT_QUEUE_HEAD(ready_queue); /* * this holds nbpages addresses of pages */ static unsigned long *pagebuf; /* * arithmetic of page pointers */ #define FKTMAXNBPAGES (PAGE_SIZE/sizeof(unsigned long)) #define PAGESUCC(p) ((typeof(p)) ( ((unsigned long) pagebuf) | \ ((((unsigned long)p) % (FKTMAXNBPAGES*sizeof(unsigned long))+sizeof(unsigned long)) % (nbpages*sizeof(unsigned long))))) #define PAGEPRED(p) ((typeof(p)) ( ((unsigned long) pagebuf) | \ ((((unsigned long)p) % (FKTMAXNBPAGES*sizeof(unsigned long))+(nbpages-1)*sizeof(unsigned long)) % (nbpages*sizeof(unsigned long))))) #define PAGEINC(p) (p = PAGESUCC(p)) #define PAGEDEC(p) (p = PAGEPRED(p)) /* * rotating buffer scheme : */ /* this holds pointers to addresses of pages */ static struct fkt_data_page *rotatingbuf; /* * a free page has counter to 1 * when it is queued for probes, it gets to 2 * it is checked in, which gets it (hence counter to 3), locks it, reserves it, * marks it as updated but dirty. * generic_file_write gets it (hence counter to 4) and locks it * prepare_write may then to block_prepare_write, ie may create buffer heads * and get it once more (hence counter to 5) * commit_write dirties this buffers, if any, or gets the page to send it * (hence counter always to 5) * generic_file_write unlocks the page, puts it, so that the counter gets to 4 * * when page send is completed, the page is put back (ie counter to 3) * if buffers are written, they are free, so that they may get rid of, and the * page put back (ie counter to 3 as well) * * the counter of a page can have either of those values (X can be any value * greater than 1) * 0: shouldn't happen until a call to free_buffer() * 1: it is allocated, and free for queuing * 2: it is queued, and being filled up if not filled up yet * 3: it is free for queuing ! * XRD: it is in the page cache, but still dirty (writes still pending) * XR: it is in the page cache, and up to date, it can be checked out * * hence, the buffer looks like * * towrite_data fkt_cur_data limit_data * v v v * DD D DDDDDDDDDDDDD * RRRR RR RRRRRRRRRRRRRR * 11111111XXXX1XX3XXXXXXXXXXXXXX22222222222222222222222222111111 * free written writing filled filling free * ^ some may already be freed * -----> */ static struct fkt_data_page *towrite_data; /* data to check in to the cache */ extern struct fkt_data_page * volatile fkt_cur_data; /* current data page, VOLATILE */ /* data filling up */ static struct fkt_data_page *limit_data;; /* at least one NULL */ /* * arithmetic of rotating pointers */ #define ROTSUCC(p) ((typeof(p)) ( ((unsigned long) rotatingbuf) | \ (((unsigned long)(p+1)) % FKTPTRSSIZE))) #define ROTPRED(p) ((typeof(p)) ( ((unsigned long) rotatingbuf) | \ (((unsigned long)(p-1)) % FKTPTRSSIZE))) #define ROTINC(p) (p = ROTSUCC(p)) /* p is assumed to be greater than q */ #define ROTDIFF(p,q) (((p+FKTMAXNBPTRS)-q)%FKTMAXNBPTRS) /* how to enqueue a page */ #ifdef DEBUG #define POISON(a) \ memset((void *)*a,FKT_POISON&0xff,PAGE_SIZE) /* poisoning just for debugging */ #else #define POISON(a) #endif #define ENQUEUE(a) {\ pr_debug("fkt: queuing page %d at %d\n",a-pagebuf,limit_data-rotatingbuf);\ POISON(a);\ get_page(virt_to_page(*a));\ limit_data->page=a;\ ROTINC(limit_data);\ } /* * allocate pages with some checks */ static inline struct page *fkt_alloc_pages(unsigned int gfp_mask, unsigned int order) { struct page *p = alloc_pages(gfp_mask,order); int i; if (!p) return p; for (i=0;i<1<flags); BUG_ON(page_has_buffers(p+i)); BUG_ON((p+i)->mapping); //(p+i)->list.next = (struct list_head *) 0xf4375970; // poisoning //(p+i)->list.prev = (struct list_head *) 0xf4375971; } return p; } /* * alloc / free probes record buffers. * these 2 must be called with fkt_sem held */ static void free_buffer(unsigned long *freepagebuf, int freepages) { unsigned long *a; struct page *p; if (!freepages) return; printk(KERN_DEBUG "fkt: freeing buffer\n"); for (a = freepagebuf; nbpages--, freepages--; a++) { p = virt_to_page(*a); if (page_has_buffers(p)) PAGE_BUG(p); if (p->mapping) PAGE_BUG(p); clear_bit(PG_FKT,&p->flags); if (page_count(p)!=1) { static int oops; if (!oops++) printk(KERN_WARNING "fkt: page count is not 1 on freeing\n"); set_page_count(p,1); } free_page(*a); *a = 0; } } static int alloc_buffer(unsigned long *allocpagebuf, int powpages) { struct page *p; unsigned long *a; int ret,i; /* we try to get pages in dma zone whenever possible * (only useful for ISA controlers) */ p = fkt_alloc_pages((GFP_KERNEL|trydma)&(~__GFP_WAIT),powpages); if (trydma && !p) p = fkt_alloc_pages(GFP_KERNEL&(~__GFP_WAIT),powpages); /* if couldn't get it as a whole bunch, split it up */ if (!p) { if (!powpages) return -ENOMEM; /* can't cut in more little pieces */ /* try with smaller bunches */ if ((ret = alloc_buffer(allocpagebuf,powpages-1))<0) return ret; if ((ret = alloc_buffer(allocpagebuf+(1<<(powpages-1)),powpages-1))<0) free_buffer(allocpagebuf,1<<(powpages-1)); return ret; } printk(KERN_DEBUG "fkt: allocated buffer with pow %d at 0x%p\n",powpages,page_address(p)); for (a = allocpagebuf, i=0; i < 1<comm, "fkt_flush"); #else daemonize("fkt_flush"); #endif #if (LINUX_VERSION_CODE < (KERNEL_VERSION(2,5,38))) // at most reparent_to_init(); #endif #endif fsync_task=current; wmb(); complete((struct completion *)startup); while (1) { if (fsync_file) { pr_debug("fkt: not much space, forcing sync\n"); FKT_PROBE0(FKT_FKT_KEYMASK,FKT_FKT_FORCE_SYNC_ENTRY_CODE); mapping = fsync_file->f_mapping; if ((ret = filemap_fdatawrite(mapping)) && i++<10) printk("filemap_fdatawrite returned %d\n",ret); // this may wait within some fs... if ((ret = fsync_file->f_op->fsync(fsync_file,fsync_file->f_dentry,0))<0 && i++<10) printk("fsync returned %d\n",ret); // no need to really wait... /* if ((ret = filemap_fdatawait(mapping)) && i++<10) printk("filemap_fdatawait returned %d\n",ret); */ FKT_PROBE1(FKT_FKT_KEYMASK,FKT_FKT_FORCE_SYNC_EXIT_CODE,ret); } fsync_file = NULL; set_current_state(TASK_INTERRUPTIBLE); schedule(); if (signal_pending(current)) break; } fsync_task=NULL; up(&fsync_ended); return 0; } /* * our replacement for a future generic sendpage function */ static ssize_t sendpage(struct file *out_file, read_descriptor_t *desc, struct page *p, unsigned long size, int actor(read_descriptor_t *desc, struct page *page, unsigned long offset, unsigned long size)) { unsigned long index = out_file->f_pos >> PAGE_CACHE_SHIFT; int ret; if (!out_file->f_op->sendpage) { /* if the file does not support sendpage, we first have to put it in * the page cache to avoid unnecessary copy */ if (page_has_buffers(p) || p->mapping) PAGE_BUG(p); if (!(ret = checkin_cache_page(p, out_file->f_dentry->d_inode->i_mapping, index, GFP_KERNEL))) { /* unlock it since it's already ready :) */ unlock_page(p); } else { if (ret == -EEXIST) printk(KERN_WARNING "fkt: page cache already filled, please don't use output file while tracing.\n"); else printk(KERN_WARNING "fkt: checkin failed !: %d\n",ret); } } /* and send the page */ return actor(desc, p, 0, size); } /* * the FKT sendfile method, heart of the recording process */ static ssize_t sendfile(struct file *in_file, loff_t *ppos, size_t count, read_actor_t actor, void __user *target) { read_descriptor_t desc; int powpages=initpowpages; int grows=powpages; struct file *out_file = (struct file *) target; /* the three levels of pointers on a page */ //struct fkt_data_page *d; /* a pointer in the rotating buffer, unused :) */ unsigned long *a; /* a pointer in the page buffer */ struct page *p; /* a pointer to a page */ ssize_t retval = PAGE_SIZE; /* usual return of actor, 0 means error */ int ret; if (!count) return 0; if (out_file->f_pos & (PAGE_SIZE-1UL)) /* refuse non-aligned writes */ return -EINVAL; #ifdef DEBUG #ifdef CONFIG_SMP /* check that cmpxchg8b will find its variables */ if (((void *) &fkt_cur_data) - ((void *) &fkt_next_slot) != 4) { printk(KERN_ERR "fkt_next_slot and fkt_cur_data are not grouped, hence it can't run on SMP.\n" KERN_ERR "Please edit arch/i386/kernel/fkt_header.S\n"); return -ENOSYS; } #endif #endif if (in_file->f_flags & O_NONBLOCK) { if (down_trylock(&fkt_sem)) return -EBUSY; } else { if (down_interruptible(&fkt_sem)) return -ERESTARTSYS; } fkt_active = 0; /* just to be sure */ /* allocate the rotating buffer */ if (!rotatingbuf) { /* keep that allocation in that order */ rotatingbuf = (struct fkt_data_page *) get_zeroed_page(GFP_KERNEL); if (!rotatingbuf) { ret = -ENOMEM; goto out_sem; } printk(KERN_DEBUG "fkt: allocated data pointers page at %p\n",rotatingbuf); pagebuf = (unsigned long *) get_zeroed_page(GFP_KERNEL); if (!pagebuf) { free_page((unsigned long) rotatingbuf); rotatingbuf = NULL; ret = -ENOMEM; goto out_sem; } printk(KERN_DEBUG "fkt: allocated pointers page at %p\n",pagebuf); } /* allocate pages if not done already or not enough */ if (nbpages < 1<>20); desc.written = 0; desc.count = count; desc.arg.buf = target; desc.error = 0; towrite_data = fkt_cur_data = limit_data = rotatingbuf; /* trivial initial mapping */ for (a=pagebuf;limit_data!=ROTPRED(towrite_data) && acount,0); ENQUEUE(a); } memset(limit_data,0,(FKTMAXNBPTRS-(limit_data-rotatingbuf))*sizeof(struct fkt_data_page)); /* give addresses to probes */ fkt_next_slot = ((unsigned *) *(fkt_cur_data->page)) + 1; /* +1 for page fill size */ /* and launch them */ fkt_active = initmask; printk("fkt: active mask 0x%08x\n", fkt_active); /* do the initial probes */ FKT_PROBE4(-1, FKT_SETUP_CODE, initmask, jiffies, count, nbpages); FKT_PROBE0(-1, FKT_CALIBRATE0_CODE); FKT_PROBE0(-1, FKT_CALIBRATE0_CODE); FKT_PROBE0(-1, FKT_CALIBRATE0_CODE); FKT_PROBE1(-1, FKT_CALIBRATE1_CODE, 1); FKT_PROBE1(-1, FKT_CALIBRATE1_CODE, 1); FKT_PROBE1(-1, FKT_CALIBRATE1_CODE, 1); FKT_PROBE2(-1, FKT_CALIBRATE2_CODE, 1, 2); FKT_PROBE2(-1, FKT_CALIBRATE2_CODE, 1, 2); FKT_PROBE2(-1, FKT_CALIBRATE2_CODE, 1, 2); /* now let people go */ fkt_sendfile_proc = current; wake_up_all(&ready_queue); /* * and enter the big loop */ do { static int stopped = 0; if (unlikely(!fkt_active && !stopped++)) { /* fkt_active is 0 ? Hum. Either initmask was already * 0, or probes went to the end of the rotating buffer, * it can be set back with fkt_setmask anyway, so * just warn */ printk("fkt: fkt_active dropped down to 0%s\n", fkt_cur_data==limit_data?", probably because there is no room anymore":""); } set_current_state(TASK_INTERRUPTIBLE); schedule(); /* if there is less than a page to be written, well since * we've been waked up, we have it already */ if (desc.countcount)==0 #endif ; ROTINC(towrite_data)) { pr_debug("fkt: writing page %d\n",towrite_data->page-pagebuf); p = virt_to_page(*towrite_data->page); FKT_PROBE1(FKT_FKT_KEYMASK,FKT_RECORD_WRITING_CODE,towrite_data->page-pagebuf); towrite_data->page = NULL; if ((retval = sendpage(out_file,&desc,p,PAGE_SIZE,actor)) != PAGE_SIZE) goto out; } /* now feed the probes */ /* first the sequential feeding, which doesn't fragment */ for (a=(PAGESUCC((ROTPRED(limit_data))->page)); limit_data!=ROTPRED(towrite_data); PAGEINC(a)) { p = virt_to_page(*a); if (p->mapping) {/* if checked in, try to check out */ if (test_and_set_bit(PG_locked,&p->flags)) /* still locked */ break; /* page locked, we can have a look at its counter & co */ if (page_count(p)>3 && !(page_has_buffers(p) && !buffers_dirty(p))) { clear_bit(PG_locked,&p->flags); break; } clear_bit(PG_locked,&p->flags); /* page_count is 3 or has written buffers */ checkout_cache_page(p); put_page(p); if (page_count(p)!=1) { static int tried; if (tried++<10) printk(KERN_ERR "page %d (flags %lx) count is %d !\n", a-pagebuf, p->flags, page_count(p)); set_page_count(p,1); } } else if (page_count(p)>1) /* already queued :( */ break; if (page_has_buffers(p)) { printk(KERN_ERR "page %d (flags %lx) still has buffers @%p\n", a-pagebuf, p->flags, page_buffers(p)); PAGE_BUG(p); goto out; } FKT_PROBE0(FKT_FKT_KEYMASK,FKT_RECORD_WRITTEN_CODE); ENQUEUE(a); } /* if low on space, force syncing */ /* may be tuned */ if (ROTDIFF(limit_data,fkt_cur_data) < (nbpages * 3) / 4) { fsync_file=out_file; wmb(); wake_up_process(fsync_task); } /* then, if really needed, the general feeding, which might * fragment or even allocate pages */ /* may be tuned */ if (ROTDIFF(limit_data,fkt_cur_data) < nbpages / 8) { if (nbpages>=1<page); a!=ROTPRED(limit_data)->page; PAGEDEC(a)) { p = virt_to_page(*a); if (p->mapping) {/* if checked in, try to check out */ if (test_and_set_bit(PG_locked,&p->flags)) continue; /* page locked, we can have a look at its counter & co */ if (page_count(p)>3 && !(page_has_buffers(p) && !buffers_dirty(p))) { clear_bit(PG_locked,&p->flags); continue; } clear_bit(PG_locked,&p->flags); /* page_count is 3 or has written buffers (which gets_page()) */ checkout_cache_page(p); put_page(p); if (page_count(p)!=1) { static int tried; if (tried++<10) printk(KERN_ERR "page count is %d !\n",page_count(p)); set_page_count(p,1); } } else if (page_count(p)>1) /* already queued :( */ continue; if (page_has_buffers(p)) { printk(KERN_ERR "page %d (flags %lx) still has buffers @%p\n", a-pagebuf, p->flags, page_buffers(p)); PAGE_BUG(p); } FKT_PROBE0(FKT_FKT_KEYMASK,FKT_RECORD_EXTRA_WRITTEN_CODE); ENQUEUE(a); if (ROTDIFF(limit_data,fkt_cur_data) >= nbpages / 4 || limit_data == ROTPRED(towrite_data)) /* that's enough for now */ break; } if (a==ROTPRED(limit_data)->page) { a=pagebuf+nbpages; /* hum, no free page... */ FKT_PROBE0(FKT_FKT_KEYMASK,FKT_FKT_EXTRA_ALLOC_ENTRY_CODE); if (nbpages==FKTMAXNBPAGES) { static int oops; if (!oops++) printk("fkt: oops, allocated maximum %luM pages, hoping it will fit...\n",nbpages/((1<<20)/PAGE_SIZE)); } else while (ROTDIFF(limit_data,fkt_cur_data) < nbpages / 4 && limit_data != ROTPRED(towrite_data) && nbpagescount)>0); #endif pr_debug("fkt: finishing: writing page %d\n",towrite_data->page-pagebuf); p = virt_to_page(*towrite_data->page); retval = sendpage(out_file,&desc,p,PAGE_SIZE,actor); towrite_data->page = NULL; put_page(p); if (retval != PAGE_SIZE) /* oups, error or eof */ goto out2; } if (desc.count && *fkt_cur_data->page) { unsigned long size; /* ok, we got to fkt_cur_data, fill in its size and write it */ size=((unsigned long) fkt_next_slot) & (PAGE_SIZE-1UL); if (size) { if (size>desc.count) size=desc.count; *((unsigned *)(*fkt_cur_data->page))=size; p = virt_to_page(*fkt_cur_data->page); retval = sendpage(out_file,&desc,p,PAGE_SIZE,actor); towrite_data->page = NULL; put_page(p); ROTINC(towrite_data); if (retval != PAGE_SIZE) /* error or eof */ goto out2; } } if (desc.count >= sizeof(unsigned)) { /* still some room, write end of file, but we need * a brand new page for this :/ */ p = alloc_page(GFP_KERNEL); if (!p) { desc.written = 0; desc.error = -ENOMEM; } else { *(unsigned *)page_address(p)=FKT_EOF; actor(&desc,p,0,sizeof(unsigned)); __free_page(p); } } } out2: fkt_next_slot = NULL; fkt_cur_data = NULL; /* synchronize out file to be able to free our pages up */ out_file->f_op->fsync(out_file,out_file->f_dentry,1); /* clean rotating buffer up */ for (; towrite_data!=limit_data; ROTINC(towrite_data)) { a=towrite_data->page; #ifdef CONFIG_SMP /* wait for probes, it shouldn't last very long */ while (atomic_read(&towrite_data->count)>0); #endif pr_debug("fkt: freeing page %d\n",a-pagebuf); put_page(virt_to_page(*a)); towrite_data->page = NULL; } for (a=pagebuf;amapping) { /* didn't checkout this one yet */ pr_debug("fkt: checking out page %d\n",a-pagebuf); checkout_cache_page(p); set_page_count(p,1); } if (page_has_buffers(p)) { printk(KERN_ERR "fkt: page %d still has buffers @%p\n", a-pagebuf,page_buffers(p)); PAGE_BUG(p); break; } } if (desc.written) ret = desc.written; else ret = desc.error; out_sem: up(&fkt_sem); return ret; } /* * opening /dev/fkt */ static int fkt_open(struct inode *inode, struct file *filp) { #if (LINUX_VERSION_CODE >= (KERNEL_VERSION(2,5,30))) /* linux 2.5.30 gave us the great sendfile method */ filp->f_op->sendfile = sendfile; #endif return 0; } /* * ioctl on /dev/fkt */ static int fkt_ioctl(struct inode *inode, struct file *filp, unsigned cmd, unsigned long param) { int ret = 0; unsigned int old_active = fkt_active; switch (cmd) { case FKT_SETINITPOWPAGES: if (1< FKTMAXNBPAGES) ret = -EINVAL; else initpowpages=param; break; case FKT_SETINITMASK: initmask = param & FKT_KEYMASKALL; break; case FKT_SETTRYDMA: trydma = param ? __GFP_DMA : 0; break; case FKT_FREEBUFFER: if (filp->f_flags & O_NONBLOCK) { if (down_trylock(&fkt_sem)) { ret = -EBUSY; break; } } else { if (down_interruptible(&fkt_sem)) { ret = -ERESTARTSYS; break; } } free_buffer(pagebuf,nbpages); up(&fkt_sem); break; case FKT_WAITREADY: printk("fkt_record: waiting for fkt to be ready\n"); wait_event(ready_queue,fkt_sendfile_proc); printk("fkt_record: go!\n"); break; case FKT_USER_PROBE0: { unsigned int code; if (get_user(code, (u32 *)param)) ret = -EFAULT; else fkt_header((code<<8) | 12); break; } case FKT_USER_PROBE1: { unsigned int code,p1; if (get_user(code, (u32 *)param) || get_user(p1, ((u32 *)param) + 1)) ret = -EFAULT; else fkt_header((code<<8) | 16, p1); break; } case FKT_USER_PROBE2: { unsigned int code,p1,p2; if (get_user(code, (u32 *)param) || get_user(p1, ((u32 *)param) + 1) || get_user(p2, ((u32 *)param) + 2)) ret = -EFAULT; else fkt_header((code<<8) | 20, p1, p2); break; } default: goto switchmask; } return ret; switchmask: /* active masks should never become negative numbers in order to prevent problems returning them as function results (they look like error codes!) */ if (!fkt_next_slot) return -EPERM; switch (cmd) { case FKT_ENABLE: fkt_active |= param & FKT_KEYMASKALL; break; case FKT_DISABLE: fkt_active &= (~param) & FKT_KEYMASKALL; break; case FKT_SETMASK: fkt_active = param & FKT_KEYMASKALL; break; default: return -EINVAL; break; } FKT_PROBE2(-1, FKT_KEYCHANGE_CODE, fkt_active, jiffies); return old_active; } static struct block_device_operations fkt_ops = { .open= fkt_open, .ioctl= fkt_ioctl, .owner= THIS_MODULE, }; /* useful when an Oops happens */ #ifdef DEBUG static int fkt_panic_event(struct notifier_block *this, unsigned long event, void *ptr) { unsigned long *a; /* on panic, show the pages state */ if (nbpages) { printk(KERN_EMERG "fkt: %d pages:\n", nbpages); printk(KERN_EMERG); for (a=pagebuf;amapping?"M":" "); printk("\n"); printk(KERN_EMERG); for (a=pagebuf;amajor = FKT_MAJOR; disk->first_minor = 0; disk->fops = &fkt_ops; sprintf(disk->disk_name, "fkt"); add_disk(disk); #endif #ifdef DEBUG notifier_chain_register(&panic_notifier_list, &fkt_panic_block); #endif #if (LINUX_VERSION_CODE >= (KERNEL_VERSION(2,6,4))) kthread_create(fsync_thread,&startup,"fkt_flush"); #else kernel_thread(fsync_thread,&startup,0); #endif wait_for_completion(&startup); printk("fkt: ok\n"); return 0; } #ifdef MODULE void cleanup_module(void) { unsigned long buf; /* kill fsync thread */ if (fsync_task); { set_tsk_thread_flag(fsync_task, TIF_SIGPENDING); wake_up_process(fsync_task); } #if (LINUX_VERSION_CODE < (KERNEL_VERSION(2,5,56))) fkt_sendfile = NULL; #endif unregister_blkdev(FKT_MAJOR,"fkt"); #if (LINUX_VERSION_CODE >= (KERNEL_VERSION(2,5,56))) del_gendisk(disk); put_disk(disk); #endif down(&fkt_sem); fkt_active = 0; /* just to be sure no probe will go */ free_buffer(pagebuf,nbpages); buf = (unsigned long) rotatingbuf; rotatingbuf = NULL; free_page(buf); buf = (unsigned long) pagebuf, pagebuf = NULL; free_page(buf); up(&fkt_sem); #ifdef DEBUG notifier_chain_unregister(&panic_notifier_list, &fkt_panic_block); #endif down(&fsync_ended); } MODULE_AUTHOR("Samuel Thibault"); MODULE_SUPPORTED_DEVICE("fkt"); MODULE_LICENSE("GPL"); #endif module_init(fkt_init); fxt-0.3.15/kernel/linux-fkt/kernel/PaxHeaders/fkt.c0000644000000000000000000000007310271436741017101 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.673772487 fxt-0.3.15/kernel/linux-fkt/kernel/fkt.c0000644000175000017500000000452610271436741016572 0ustar00samysamy/* * fkt.c * * Copyright (C) 2003, 2004 Samuel Thibault * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ /* fkt = Fast Kernel Tracing */ /* these are the always-resident data & functions */ #include #include #include #include #include #include #include #include #include #include #include #include #if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) /* set to non-zero when probing is active */ volatile unsigned int fkt_active; /* so that probes can wake the recording process up through the softirq */ struct task_struct *fkt_sendfile_proc; #if (LINUX_VERSION_CODE < (KERNEL_VERSION(2,5,56))) /* these versions don't have a sendfile operation, so sys_sendfile needs to * call this explicitely */ ssize_t (*fkt_sendfile)(struct file *, loff_t *, size_t, read_actor_t, void *); EXPORT_SYMBOL(fkt_sendfile); #endif EXPORT_SYMBOL(fkt_active); EXPORT_SYMBOL(fkt_sendfile_proc); /* defined in fkt_header.S */ EXPORT_SYMBOL(fkt_cur_data); EXPORT_SYMBOL(fkt_next_slot); EXPORT_SYMBOL(fkt_header); EXPORT_SYMBOL(fkt_eax0); EXPORT_SYMBOL(fkt_eax1); EXPORT_SYMBOL(__cyg_profile_func_enter); EXPORT_SYMBOL(__cyg_profile_func_exit); #endif /* softirq action: wake the recording process up */ static void fkt_sendfile_wake(struct softirq_action *foo) { struct task_struct *proc=fkt_sendfile_proc; if (proc) wake_up_process(proc); } /* setup this softirq on boot */ static __init int setup_softirq(void) { open_softirq(FKT_SOFTIRQ, fkt_sendfile_wake, NULL); return 0; } __initcall(setup_softirq); fxt-0.3.15/kernel/linux-fkt/PaxHeaders/include0000644000000000000000000000013215007143530016224 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-fkt/include/0002755000175000017500000000000015007143530015771 5ustar00samysamyfxt-0.3.15/kernel/linux-fkt/include/PaxHeaders/linux0000644000000000000000000000013215007143530017363 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-fkt/include/linux/0002755000175000017500000000000015007143530017130 5ustar00samysamyfxt-0.3.15/kernel/linux-fkt/include/linux/PaxHeaders/fkt.h0000644000000000000000000000007311551262750020407 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.673689042 fxt-0.3.15/kernel/linux-fkt/include/linux/fkt.h0000644000175000017500000007620111551262750020077 0ustar00samysamy/* * fkt.h * * Copyright (C) 2000 Robert D. Russell * 2003, 2004 Samuel Thibault * * 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 the program ; if not, write to the Free Software * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. */ #ifndef __KFT_H__ #define __KFT_H__ /* fkt = Fast Kernel Tracing */ #define FKT_POISON 0x45454545 #define FKT_EOF 0xfefefefe #ifdef __KERNEL__ #include #include /* linear data buffer */ #define FKTINITPOWPAGES 7 #ifdef __ASSEMBLY__ #define FKTPTRSSIZE (1 << PAGE_SHIFT) #else #define FKTPTRSSIZE (1UL << PAGE_SHIFT) #endif #ifndef __ASSEMBLY__ struct fkt_data_page { unsigned long *page; atomic_t count; /* number of probes currently writing in this page */ // useless on non-SMP, but too dangerous to test for CONFIG_SMP }; #define FKTMAXNBPTRS (FKTPTRSSIZE/sizeof(struct fkt_data_page)) /* active mask */ extern volatile unsigned int fkt_active; /* current data page */ extern struct fkt_data_page * volatile fkt_cur_data; /* next slot in that page */ extern unsigned * volatile fkt_next_slot; /* process to wake up when a page is filled */ extern struct task_struct *fkt_sendfile_proc; /* entry points called by macros or direct asm */ extern asmlinkage void fkt_header( unsigned int head, ... ); extern asmlinkage void fkt_eax0( void ); extern asmlinkage void fkt_eax1( void ); extern void __cyg_profile_func_enter(void *this_fn, void *call_site); extern void __cyg_profile_func_exit(void *this_fn, void *call_site); #endif /* __ASSEMBLY__ */ #ifndef __ASSEMBLY__ #if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) /* block device callback stuff */ #define FKT_MAJOR 60 extern ssize_t (*fkt_sendfile)(struct file *, loff_t *, size_t, read_actor_t, void *); /* Macros for use from within the kernel */ /* ebx is used by the SMP version (since CMPXCHG8B uses it) */ #ifdef CONFIG_SMP #define MODIFIED_EBX "ebx", #else #define MODIFIED_EBX #endif /* has to use __stringify to get modversions work */ #define FKT_ALWAYS_PROBE_NOSHIFT(KEYMASK,CODE) \ do { \ __asm__ volatile \ ("testl %0,"__stringify(fkt_active)"\n" \ "\tjz 1f\n" \ "\tmovl %1,%%eax\n" \ "\tcall "__stringify(fkt_eax0)"\n" \ "1:" \ : \ : "i" ((unsigned int)(KEYMASK)), \ "g" ((unsigned int)(CODE)) \ : "eax", MODIFIED_EBX "ecx", "edx", "cc" \ ); \ } while(0) #define FKT_ALWAYS_PROBE0(KEYMASK,CODE) \ do { \ __asm__ volatile \ ("testl %0,"__stringify(fkt_active)"\n" \ "\tjz 1f\n" \ "\tmovl %1,%%eax\n" \ "\tcall "__stringify(fkt_eax0)"\n" \ "1:" \ : \ : "i" ((unsigned int)(KEYMASK)), \ "i" ((((unsigned int)(CODE))<<8) | 1) \ : "eax", MODIFIED_EBX "ecx", "edx", "cc" \ ); \ } while(0) #define FKT_ALWAYS_PROBE1(KEYMASK,CODE,PARAM1) \ do { \ __asm__ volatile \ ("testl %0,"__stringify(fkt_active)"\n" \ "\tjz 1f\n" \ "\tmovl %2,%%edx\n" \ "\tmovl %1,%%eax\n" \ "\tcall "__stringify(fkt_eax1)"\n" \ "1:" \ : \ : "i" ((unsigned int)(KEYMASK)), \ "i" ((((unsigned int)(CODE))<<8) | 2), \ "g" ((unsigned int)(PARAM1)) \ : "eax", MODIFIED_EBX "ecx", "edx", "cc" \ ); \ } while(0) #define FKT_ALWAYS_PROBE2(KEYMASK,CODE,P1,P2) do { \ if( KEYMASK & fkt_active ) \ fkt_header( (((unsigned int)(CODE))<<8) | 3, \ (unsigned int)(P1), (unsigned int)(P2) ); \ } while(0) #define FKT_ALWAYS_PROBE3(KEYMASK,CODE,P1,P2,P3) \ do { \ if( KEYMASK & fkt_active ) \ fkt_header( (((unsigned int)(CODE))<<8) | 4, \ (unsigned int)(P1), (unsigned int)(P2), \ (unsigned int)(P3) ); \ } while(0) #define FKT_ALWAYS_PROBE4(KEYMASK,CODE,P1,P2,P3,P4) \ do { \ if( KEYMASK & fkt_active ) \ fkt_header( (((unsigned int)(CODE))<<8) | 5, \ (unsigned int)(P1), (unsigned int)(P2), \ (unsigned int)(P3), (unsigned int)(P4) ); \ } while(0) #define FKT_ALWAYS_PROBE5(KEYMASK,CODE,P1,P2,P3,P4,P5) \ do { \ if( KEYMASK & fkt_active ) \ fkt_header( (((unsigned int)(CODE))<<8) | 6, \ (unsigned int)(P1), (unsigned int)(P2), \ (unsigned int)(P3), (unsigned int)(P4), \ (unsigned int)(P5) ); \ } while(0) #define FKT_ALWAYS_PROBE6(KEYMASK,CODE,P1,P2,P3,P4,P5,P6) \ do { \ if( KEYMASK & fkt_active ) \ fkt_header( (((unsigned int)(CODE))<<8) | 7, \ (unsigned int)(P1), (unsigned int)(P2), \ (unsigned int)(P3), (unsigned int)(P4), \ (unsigned int)(P5), (unsigned int)(P6) ); \ } while(0) #else /* CONFIG_FKT || CONFIG_FKT_MODULE */ #define FKT_ALWAYS_PROBE_NOSHIFT(MASK,CODE) do {} while (0) #define FKT_ALWAYS_PROBE0(MASK,CODE) do {} while (0) #define FKT_ALWAYS_PROBE1(MASK,CODE,P1) do {} while (0) #define FKT_ALWAYS_PROBE2(MASK,CODE,P1,P2) do {} while (0) #define FKT_ALWAYS_PROBE3(MASK,CODE,P1,P2,P3) do {} while (0) #define FKT_ALWAYS_PROBE4(MASK,CODE,P1,P2,P3,P4) do {} while (0) #define FKT_ALWAYS_PROBE5(MASK,CODE,P1,P2,P3,P4,P5) do {} while (0) #define FKT_ALWAYS_PROBE6(MASK,CODE,P1,P2,P3,P4,P5,P6) do {} while (0) #endif #if defined(CONFIG_FKT_TIME_ONLY) #define FKT_PROBE_NOSHIFT(KEYMASK,CODE) FKT_ALWAYS_PROBE_NOSHIFT(KEYMASK,CODE) #define FKT_PROBE0(KEYMASK,CODE) FKT_ALWAYS_PROBE0(KEYMASK,CODE) #define FKT_PROBE1(KEYMASK,CODE,P1) FKT_ALWAYS_PROBE0(KEYMASK,CODE) #define FKT_PROBE2(KEYMASK,CODE,P1,P2) FKT_ALWAYS_PROBE0(KEYMASK,CODE) #define FKT_PROBE3(KEYMASK,CODE,P1,P2,P3) FKT_ALWAYS_PROBE0(KEYMASK,CODE) #define FKT_PROBE4(KEYMASK,CODE,P1,P2,P3,P4) FKT_ALWAYS_PROBE0(KEYMASK,CODE) #define FKT_PROBE5(KEYMASK,CODE,P1,P2,P3,P4,P5) FKT_ALWAYS_PROBE0(KEYMASK,CODE) #define FKT_PROBE6(KEYMASK,CODE,P1,P2,P3,P4,P5,P6) FKT_ALWAYS_PROBE0(KEYMASK,CODE) #else /* CONFIG_FKT_TIME_ONLY */ #define FKT_PROBE_NOSHIFT(KEYMASK,CODE) FKT_ALWAYS_PROBE_NOSHIFT(KEYMASK,CODE) #define FKT_PROBE0(KEYMASK,CODE) FKT_ALWAYS_PROBE0(KEYMASK,CODE) #define FKT_PROBE1(KEYMASK,CODE,P1) FKT_ALWAYS_PROBE1(KEYMASK,CODE,P1) #define FKT_PROBE2(KEYMASK,CODE,P1,P2) FKT_ALWAYS_PROBE2(KEYMASK,CODE,P1,P2) #define FKT_PROBE3(KEYMASK,CODE,P1,P2,P3) FKT_ALWAYS_PROBE3(KEYMASK,CODE,P1,P2,P3) #define FKT_PROBE4(KEYMASK,CODE,P1,P2,P3,P4) FKT_ALWAYS_PROBE4(KEYMASK,CODE,P1,P2,P3,P4) #define FKT_PROBE5(KEYMASK,CODE,P1,P2,P3,P4,P5) FKT_ALWAYS_PROBE5(KEYMASK,CODE,P1,P2,P3,P4,P5) #define FKT_PROBE6(KEYMASK,CODE,P1,P2,P3,P4,P5,P6) FKT_ALWAYS_PROBE5(KEYMASK,CODE,P1,P2,P3,P4,P5,P6) #endif /* CONFIG_FKT_TIME_ONLY */ #endif /* __ASSEMBLY__ */ #endif /* __KERNEL__ */ /* ioctl's */ #define FKT_SETINITPOWPAGES 0xCE01 /* set initial number of pending pages */ #define FKT_SETINITMASK 0xCE02 /* set initial active mask */ #define FKT_ENABLE 0xCE03 /* set a bit in active mask */ #define FKT_DISABLE 0xCE04 /* clear a bit in active mask */ #define FKT_SETMASK 0xCE05 /* set the active mask */ #define FKT_SETTRYDMA 0xCE06 /* should allocation be tried under 16M for ISA arch */ #define FKT_FREEBUFFER 0xCE07 /* free allocated pages */ #define FKT_WAITREADY 0xCE08 /* wait for the sendfile mecanism to be ready */ #define FKT_USER_PROBE0 0xCE10 /* user probe */ #define FKT_USER_PROBE1 0xCE11 /* user probe */ #define FKT_USER_PROBE2 0xCE12 /* user probe */ /* Simple keymasks */ #define FKT_KEYMASK0 0x00000001 /* IRQs, exceptions, syscalls */ #define FKT_KEYMASK1 0x00000002 #define FKT_KEYMASK2 0x00000004 #define FKT_KEYMASK3 0x00000008 #define FKT_KEYMASK4 0x00000010 #define FKT_KEYMASK5 0x00000020 #define FKT_KEYMASK6 0x00000040 #define FKT_KEYMASK7 0x00000080 #define FKT_KEYMASK8 0x00000100 #define FKT_KEYMASK9 0x00000200 #define FKT_KEYMASK10 0x00000400 #define FKT_KEYMASK11 0x00000800 #define FKT_KEYMASK12 0x00001000 #define FKT_KEYMASK13 0x00002000 #define FKT_KEYMASK14 0x00004000 #define FKT_KEYMASK15 0x00008000 #define FKT_KEYMASK16 0x00010000 #define FKT_KEYMASK17 0x00020000 #define FKT_KEYMASK18 0x00040000 #define FKT_KEYMASK19 0x00080000 #define FKT_KEYMASK20 0x00100000 #define FKT_KEYMASK21 0x00200000 #define FKT_KEYMASK22 0x00400000 #define FKT_KEYMASK23 0x00800000 #define FKT_KEYMASK24 0x01000000 #define FKT_KEYMASK25 0x02000000 #define FKT_KEYMASK26 0x04000000 #define FKT_KEYMASK27 0x08000000 #define FKT_KEYMASK28 0x10000000 #define FKT_KEYMASK29 0x20000000 #define FKT_KEYMASK30 0x40000000 /***** FKT_KEYMASK31 0x80000000 looks negative! don't use! ****/ #define FKT_KEYMASKALL 0x7fffffff /* Assigned keymasks to separate probes into sets by protocol stack layers */ #define FKT_SYSTEM_KEYMASK FKT_KEYMASK0 /* IRQs, exceptions, syscalls */ #define FKT_DRIVER_KEYMASK FKT_KEYMASK1 /* driver (MAC) layer routines*/ #define FKT_NETWORK_KEYMASK FKT_KEYMASK2 /* network (IP) layer routines*/ #define FKT_TRANSPORT_KEYMASK FKT_KEYMASK3 /* transport (TCP/UDP) layer */ #define FKT_SOCKET_KEYMASK FKT_KEYMASK4 /* socket interface routines */ #define FKT_SCSI_KEYMASK FKT_KEYMASK5 /* scsi subsystem routines */ #define FKT_FILES_KEYMASK FKT_KEYMASK6 /* file system routines */ #define FKT_APP_KEYMASK FKT_KEYMASK7 /* test for read mchavan */ #define FKT_GCC_INSTRUMENT_KEYMASK FKT_KEYMASK29 /* -finstrument-functions option of gcc */ #define FKT_FKT_KEYMASK FKT_KEYMASK30 /* Fixed parameters of the fkt coding scheme */ #define FKT_GENERIC_EXIT_OFFSET 0x100 /* exit this much above entry */ #define FKT_LCALL7 0x1fd /* lcall7 for iBCS */ #define FKT_LCALL27 0x1fe /* lcall27 for Solaris/x86 */ #define FKT_SYS_CALL_MASK 0x1ff /* all system call nos. below this*/ /* Interrupts, soft or hard */ #define FKT_TRAP_BASE 0x200 /* + trap number -> code */ #define FKT_TRAP_LIMIT_CODE 0x220 /* all trap nos. below this */ #define FKT_IRQ_TIMER 0x220 /* timer IRQ always 0 */ #define FKT_IRQ_SYS 0x2ee /* system IRQs */ #define FKT_UNSHIFTED_LIMIT_CODE 0x300 /* all unshifted codes below this */ #define FKT_UNPAIRED_LIMIT_CODE 0xf00000 /* all unpaired code above this limit */ /* Codes for fkt use... */ #define FKT_SETUP_CODE 0xffff #define FKT_KEYCHANGE_CODE 0xfffe #define FKT_RESET_CODE 0xfffd #define FKT_CALIBRATE0_CODE 0xfffc #define FKT_CALIBRATE1_CODE 0xfffb #define FKT_CALIBRATE2_CODE 0xfffa #define FKT_DO_FORK_CODE 0xfff9 #define FKT_END_OF_PID_CODE 0xfff8 #define FKT_DO_EXECVE_CODE 0xfff7 #define FKT_USER_FORK_CODE 0xfff6 #define FKT_RECORD_WRITING_CODE 0xffef #define FKT_RECORD_WRITTEN_CODE 0xffee #define FKT_RECORD_EXTRA_WRITTEN_CODE 0xffed #define FKT_RECORD_EXTRA_PAGE_CODE 0xffec #define FKT_RECORD_FORCE_SYNC_CODE 0xffeb #define FKT_RECORD_KILLED_CODE 0xffea #define FKT_END_IO_SYNC_CODE 0xfff3 #define FKT_END_IO_ASYNC_CODE 0xfff2 #define FKT_KILL_CODE 0xffed #define FKT_RET_FROM_SYS_CALL_CODE 0x300 /* generic ret_from_sys_call */ /* Codes for use with fkt items */ #define FKT_FKT_FORCE_SYNC_ENTRY_CODE 0x301 #define FKT_FKT_FORCE_SYNC_EXIT_CODE 0x401 #define FKT_FKT_EXTRA_ALLOC_ENTRY_CODE 0x302 #define FKT_FKT_EXTRA_ALLOC_EXIT_CODE 0x402 #define FKT_LL_RW_BLOCK_ENTRY_CODE 0x303 /* enter ll_rw_block, P=3 */ #define FKT_LL_RW_BLOCK_EXIT_CODE 0x403 /* exit ll_rw_block, P=1 */ //#define FKT_EXT2_WRITE_ENTRY_CODE 0x304 /* enter ext2_file_write, P=3 */ //#define FKT_EXT2_WRITE_EXIT_CODE 0x404 /* exit ext2_file_write, P=0 */ #define FKT_EXT2_GETBLK_ENTRY_CODE 0x305 /* enter ext2_getblk, P=3 */ #define FKT_EXT2_GETBLK_EXIT_CODE 0x405 /* exit ext2_getblk, P=3 */ //#define FKT_INODE_GETBLK_ENTRY_CODE 0x306 /* enter inode_getblk, P=4 */ //#define FKT_INODE_GETBLK_EXIT_CODE 0x406 /* exit inode_getblk, P=3 */ //#define FKT_BLOCK_GETBLK_ENTRY_CODE 0x307 /* enter block_getblk, P=5 */ //#define FKT_BLOCK_GETBLK_EXIT_CODE 0x407 /* exit block_getblk, P=3 */ #define FKT_OPEN_ENTRY_CODE 0x308 /* sys_open() */ #define FKT_OPEN_EXIT_CODE 0x408 /* sys_open() */ #define FKT_CLOSE_ENTRY_CODE 0x309 /* sys_close() */ #define FKT_CLOSE_EXIT_CODE 0x409 /* sys_close() */ #define FKT_IOCTL_ENTRY_CODE 0x30a /* sys_ioctl() */ #define FKT_IOCTL_EXIT_CODE 0x40a /* sys_ioctl() */ #define FKT_SELECT_ENTRY_CODE 0x30b /* sys_select() */ #define FKT_SELECT_EXIT_CODE 0x40b /* sys_select() */ #define FKT_POLL_ENTRY_CODE 0x30c /* sys_poll() */ #define FKT_POLL_EXIT_CODE 0x40c /* sys_poll() */ #define FKT_SWITCH_TO_CODE 0x31a /* switch_to in schedule, P=2 */ #define FKT_WAIT4_ENTRY_CODE 0x31b /* enter sys_wait4 */ #define FKT_WAIT4_EXIT_CODE 0x41b /* exit sys_wait4 */ #define FKT_GENERIC_MAKE_REQUEST_ENTRY_CODE 0x31c /* enter generic_make_request */ #define FKT_GENERIC_MAKE_REQUEST_EXIT_CODE 0x41c /* exit generic_make_request */ #define FKT___MAKE_REQUEST_ENTRY_CODE 0x31d #define FKT___MAKE_REQUEST_EXIT_CODE 0x41d #define FKT_FSYNC_BUFFERS_LIST_ENTRY_CODE 0x31e #define FKT_FSYNC_BUFFERS_LIST_EXIT_CODE 0x41e /* -finstrument-functions code */ #define FKT_GCC_INSTRUMENT_ENTRY_CODE 0x320 #define FKT_GCC_INSTRUMENT_EXIT_CODE 0x420 /* tasklets */ #define FKT_TASKLET_ENTRY_CODE 0x321 #define FKT_TASKLET_EXIT_CODE 0x421 #define FKT_TASKLET_HI_ENTRY_CODE 0x322 #define FKT_TASKLET_HI_EXIT_CODE 0x422 #define FKT_PAGE_ALLOC_ENTRY_CODE 0x323 #define FKT_PAGE_ALLOC_EXIT_CODE 0x423 #define FKT_PAGE_FREE_ENTRY_CODE 0x324 #define FKT_PAGE_FREE_EXIT_CODE 0x424 /* miru start */ /* ethernet cards, 350->35f and 360->36f */ #define FKT_TULIP_START_XMIT_ENTRY_CODE 0x350 /* enter tulip_start_xmit */ #define FKT_TULIP_START_XMIT_EXIT_CODE 0x450 /* exit tulip_start_xmit */ #define FKT_TULIP_INTERRUPT_ENTRY_CODE 0x351 /* enter tulip_interrupt */ #define FKT_TULIP_INTERRUPT_EXIT_CODE 0x451 /* exit tulip_interrupt */ #define FKT_TULIP_RX_ENTRY_CODE 0x352 /* enter tulip_rx */ #define FKT_TULIP_RX_EXIT_CODE 0x452 /* exit tulip_rx */ #define FKT_TULIP_TX_ENTRY_CODE 0x353 /* enter tulip_tx */ #define FKT_TULIP_TX_EXIT_CODE 0x453 /* exit tulip_tx_exit */ #define FKT_VORTEX_INTERRUPT_ENTRY_CODE 0x358 /* enter vortex_interrupt */ #define FKT_VORTEX_INTERRUPT_EXIT_CODE 0x458 /* exit vortex_interrupt */ #define FKT_BOOMERANG_INTERRUPT_ENTRY_CODE 0x359 /*enter boomerang_interrupt */ #define FKT_BOOMERANG_INTERRUPT_EXIT_CODE 0x459 /* exit boomerang_interrupt */ #define FKT_BOOMERANG_START_XMIT_ENTRY_CODE 0x35a /*enter boomerang_start_xmit*/ #define FKT_BOOMERANG_START_XMIT_EXIT_CODE 0x45a /*exit boomerang_start_xmit */ #define FKT_BOOMERANG_RX_ENTRY_CODE 0x35b /* enter boomerang_rx */ #define FKT_BOOMERANG_RX_EXIT_CODE 0x45b /* exit boomerang_rx */ #define FKT_BOOMERANG_TX_ENTRY_CODE 0x35c /* enter boomerang_tx */ #define FKT_BOOMERANG_TX_EXIT_CODE 0x45c /* exit boomerang_tx_exit */ #define FKT_ACE_INTERRUPT_ENTRY_CODE 0x360 /* enter ace_interrupt */ #define FKT_ACE_INTERRUPT_EXIT_CODE 0x460 /* exit ace_interrupt */ #define FKT_ACE_RX_INT_ENTRY_CODE 0x361 /* enter ace_rx_int */ #define FKT_ACE_RX_INT_EXIT_CODE 0x461 /* exit ace_rx_int */ #define FKT_ACE_TX_INT_ENTRY_CODE 0x362 /* enter ace_tx_int */ #define FKT_ACE_TX_INT_EXIT_CODE 0x462 /* exit ace_tx_int */ #define FKT_ACE_START_XMIT_ENTRY_CODE 0x363 /* enter ace_start_xmit */ #define FKT_ACE_START_XMIT_EXIT_CODE 0x463 /* exit ace_start_xmit */ /* sadhna start */ /* net routines, 370->37f */ #define FKT_NET_RX_ACTION_ENTRY_CODE 0x370 /* enter net_rx_action, P=0 */ #define FKT_NET_RX_ACTION_EXIT_CODE 0x470 /* exit net_rx_action, P=0 */ //#define FKT_NET_BH_QUEUE_ENTRY_CODE 0x371 /* enter net_bh_queue */ //#define FKT_NET_BH_QUEUE_EXIT_CODE 0x471 /* exit net_bh_queue */ #define FKT_NETIF_RX_ENTRY_CODE 0x372 /* enter netif_rx */ #define FKT_NETIF_RX_EXIT_CODE 0x472 /* exit netif_rx */ #define FKT_NET_RX_DEQUEUE_ENTRY_CODE 0x373 /* enter net_rx_dequeue */ #define FKT_NET_RX_DEQUEUE_EXIT_CODE 0x473 /* exit net_rx_dequeue */ #define FKT_ALLOC_SKB_ENTRY_CODE 0x374 /* enter alloc_skb */ #define FKT_ALLOC_SKB_EXIT_CODE 0x474 /* exit alloc_skb */ #define FKT_DO_SOFTIRQ_ENTRY_CODE 0x37f /* enter do_softirq */ #define FKT_DO_SOFTIRQ_EXIT_CODE 0x47f /* exit do_softirq */ /* sadhna end */ /* ip routines, 380->38f */ #define FKT_IP_RCV_ENTRY_CODE 0x380 /* enter ip_rcv, P=0 */ #define FKT_IP_RCV_EXIT_CODE 0x480 /* exit ip_rcv, P=1 */ #define FKT_IP_QUEUE_XMIT_ENTRY_CODE 0x381 /* enter ip_queue_xmit */ #define FKT_IP_QUEUE_XMIT_EXIT_CODE 0x481 /* exit ip_queue_xmit */ #define FKT_IP_BUILD_XMIT_ENTRY_CODE 0x382 /* enter ip_build_xmit */ #define FKT_IP_BUILD_XMIT_EXIT_CODE 0x482 /* exit ip_build_xmit */ #define FKT_IP_LOCAL_DELIVER_ENTRY_CODE 0x383 /* enter ip_local_deliver */ #define FKT_IP_LOCAL_DELIVER_EXIT_CODE 0x483 /* exit ip_local_deliver */ #define FKT_IP_DEFRAG_ENTRY_CODE 0x384 /* enter ip_defrag */ #define FKT_IP_DEFRAG_EXIT_CODE 0x484 /* exit ip_defrag */ #define FKT_IP_FRAG_REASM_ENTRY_CODE 0x388 /* enter ip_frag_reasm */ #define FKT_IP_FRAG_REASM_EXIT_CODE 0x488 /* exit ip_frag_reasm */ #define FKT_IP_ROUTE_OUTPUT_KEY_ENTRY_CODE 0x389 /* enter ip_route_output_key*/ #define FKT_IP_ROUTE_OUTPUT_KEY_EXIT_CODE 0x489 /* exit ip_route_output_key */ #define FKT_IP_ROUTE_OUTPUT_SLOW_ENTRY_CODE 0x389 /* enter ip_route_output_slow*/ #define FKT_IP_ROUTE_OUTPUT_SLOW_EXIT_CODE 0x489 /* exit ip_route_output_slow*/ /* udp routines, 390->39f */ #define FKT_UDP_SENDMSG_ENTRY_CODE 0x391 /* enter udp_sendmsg */ #define FKT_UDP_SENDMSG_EXIT_CODE 0x491 /* exit udp_sendmsg */ #define FKT_UDP_QUEUE_RCV_SKB_ENTRY_CODE 0x392 /* enter udp_queue_rcv_skb */ #define FKT_UDP_QUEUE_RCV_SKB_EXIT_CODE 0x492 /* exit udp_queue_rcv_skb */ #define FKT_UDP_GETFRAG_ENTRY_CODE 0x395 /* enter udp_getfrag */ #define FKT_UDP_GETFRAG_EXIT_CODE 0x495 /* exit udp_getfrag */ #define FKT_UDP_RECVMSG_ENTRY_CODE 0x39e /* enter udp_recvmsg */ #define FKT_UDP_RECVMSG_EXIT_CODE 0x49e /* exit udp_recvmsg */ #define FKT_UDP_RCV_ENTRY_CODE 0x39f /* enter udp_rcv */ #define FKT_UDP_RCV_EXIT_CODE 0x49f /* exit udp_rcv */ /* tcp routines, 3a0->3af and 3b0->3bf */ #define FKT_TCP_SENDMSG_ENTRY_CODE 0x3a0 /* enter tcp_sendmsg. */ #define FKT_TCP_SENDMSG_EXIT_CODE 0x4a0 /* exit tcp_sendmsg */ #define FKT_TCP_SEND_SKB_ENTRY_CODE 0x3a1 /* enter tcp_send_skb. */ #define FKT_TCP_SEND_SKB_EXIT_CODE 0x4a1 /* exit tcp_send_skb. */ #define FKT_TCP_TRANSMIT_SKB_ENTRY_CODE 0x3a2 /* enter tcp_transmit_skb. */ #define FKT_TCP_TRANSMIT_SKB_EXIT_CODE 0x4a2 /* exit tcp_transmit_skb. */ #define FKT_TCP_WRITE_XMIT_ENTRY_CODE 0x3a3 /* enter tcp_write_xmit. */ #define FKT_TCP_WRITE_XMIT_EXIT_CODE 0x4a3 /* exit tcp_write_xmit. */ #define FKT_TCP_SENDMSG_COPY_ENTRY_CODE 0x3a4 /* enter tcp_sendmsg's copy */ #define FKT_TCP_SENDMSG_COPY_EXIT_CODE 0x3a4 /* exit tcp_sendmsg's copy */ #define FKT_TCP_V4_RCV_ENTRY_CODE 0x3a9 /* enter tcp_v4_rcv, P=0 */ #define FKT_TCP_V4_RCV_EXIT_CODE 0x4a9 /* exit tcp_v4_rcv, P=1 */ //#define FKT_TCP_RECVMSG_SCHEDI_CODE 0x3ab /*tcp_recvmsg_sched_call P=0*/ //#define FKT_TCP_RECVMSG_SCHEDO_CODE 0x4ab /*tcp_recvmsg_sched_ret, P=0*/ #define FKT_TCP_RCV_ESTABLISHED_ENTRY_CODE 0x3ad /* enter tcp_rcv_established*/ #define FKT_TCP_RCV_ESTABLISHED_EXIT_CODE 0x4ad /* exit tcp_rcv_established */ #define FKT_TCP_DATA_ENTRY_CODE 0x3ae /* enter tcp_data */ #define FKT_TCP_DATA_EXIT_CODE 0x4ae /* exit tcp_data */ #define FKT_TCP_ACK_ENTRY_CODE 0x3af /* enter tcp_ack */ #define FKT_TCP_ACK_EXIT_CODE 0x4af /* exit tcp_ack */ #define FKT_TCP_RECVMSG_ENTRY_CODE 0x3b0 /* enter tcp_recvmsg */ #define FKT_TCP_RECVMSG_EXIT_CODE 0x4b0 /* exit tcp_recvmsg */ //#define FKT_TCP_V4_RCV_CSUM_ENTRY_CODE 0x3b1 /* enter tcp_v4_rcv_csum */ //#define FKT_TCP_V4_RCV_CSUM_EXIT_CODE 0x4b1 /* exit tcp_v4_rcv_csum */ #define FKT_TCP_RECVMSG_OK_ENTRY_CODE 0x3b2 /* enter tcp_recvmsg_ok */ #define FKT_TCP_RECVMSG_OK_EXIT_CODE 0x4b2 /* exit tcp_recvmsg_ok */ #define FKT_TCP_SEND_ACK_ENTRY_CODE 0x3b7 /* enter tcp_send_ack */ #define FKT_TCP_SEND_ACK_EXIT_CODE 0x4b7 /* exit tcp_send_ack */ //#define FKT_TCP_V4_RCV_HW_ENTRY_CODE 0x3b8 /* enter hw_csum */ //#define FKT_TCP_V4_RCV_HW_EXIT_CODE 0x4b8 /* exit hw_csum */ //#define FKT_TCP_V4_RCV_NONE_ENTRY_CODE 0x3b9 /* enter no_csum */ //#define FKT_TCP_V4_RCV_NONE_EXIT_CODE 0x4b9 /* exit no_csum */ #define FKT_WAIT_FOR_TCP_MEMORY_ENTRY_CODE 0x3ba /*enter wait_for_tcp_memory */ #define FKT_WAIT_FOR_TCP_MEMORY_EXIT_CODE 0x4ba /*exit wait_for_tcp_memory */ //#define FKT_TCP_RECVMSG_CSUM_ENTRY_CODE 0x3bb /* enter tcp_recvmsg_csum */ //#define FKT_TCP_RECVMSG_CSUM_EXIT_CODE 0x4bb /* exit tcp_recvmsg_csum */ //#define FKT_TCP_RECVMSG_CSUM2_ENTRY_CODE 0x3bc /* enter tcp_recvmsg_csum2 */ //#define FKT_TCP_RECVMSG_CSUM2_EXIT_CODE 0x4bc /* exit tcp_recvmsg_csum2 */ #define FKT_TCP_SYNC_MSS_ENTRY_CODE 0x3bd /* enter tcp_sync_mss */ #define FKT_TCP_SYNC_MSS_EXIT_CODE 0x4bd /* exit tcp_sync_mss */ /* miru end */ #define FKT_TCP_ALLOC_PAGE_ENTRY_CODE 0x3be /* enter tcp_alloc_page */ #define FKT_TCP_ALLOC_PAGE_EXIT_CODE 0x4be /* exit tcp_alloc_page */ /* sadhna start */ /* lamp routines, 3c0->3cf */ #define FKT_LAMP_CREATE_ENTRY_CODE 0x3c0 /* enter lamp_create, P=0 */ #define FKT_LAMP_CREATE_EXIT_CODE 0x4c0 /* exit lamp_create, P=1 */ #define FKT_LAMP_BIND_ENTRY_CODE 0x3c1 /* enter lamp_bind, P=0 */ #define FKT_LAMP_BIND_EXIT_CODE 0x4c1 /* exit lamp_bind, P=1 */ #define FKT_LAMP_LISTEN_ENTRY_CODE 0x3c2 /* enter lamp_listen, P=0 */ #define FKT_LAMP_LISTEN_EXIT_CODE 0x4c2 /* exit lamp_listen, P=1 */ #define FKT_LAMP_ACCEPT_ENTRY_CODE 0x3c3 /* enter lamp_accept, P=0 */ #define FKT_LAMP_ACCEPT_EXIT_CODE 0x4c3 /* exit lamp_accept, P=1 */ #define FKT_LAMP_CONNECT_ENTRY_CODE 0x3c4 /* enter lamp_connect, P=0 */ #define FKT_LAMP_CONNECT_EXIT_CODE 0x4c4 /* exit lamp_connect, P=1 */ #define FKT_LAMP_SENDMSG_ENTRY_CODE 0x3c6 /* enter lamp_sendmsg, P=0 */ #define FKT_LAMP_SENDMSG_EXIT_CODE 0x4c6 /* exit lamp_sendmsg, P=1 */ #define FKT_LAMP_RECVMSG_ENTRY_CODE 0x3c7 /* enter lamp_recvmsg, P=0 */ #define FKT_LAMP_RECVMSG_EXIT_CODE 0x4c7 /* exit lamp_recvmsg, P=1 */ #define FKT_LAMP_DATA_RCV_ENTRY_CODE 0x3c8 /* enter lamp_data_rcv, P=0 */ #define FKT_LAMP_DATA_RCV_EXIT_CODE 0x4c8 /* exit lamp_data_rcv, P=1 */ #define FKT_LAMP_SIGNAL_RCV_ENTRY_CODE 0x3c9 /* enter lamp_signal_rcv, P=0 */ #define FKT_LAMP_SIGNAL_RCV_EXIT_CODE 0x4c9 /* exit lamp_signal_rcv, P=1 */ #define FKT_LAMP_SHUTDOWN_ENTRY_CODE 0x3ca /* enter lamp_shutdown, P=0 */ #define FKT_LAMP_SHUTDOWN_EXIT_CODE 0x4ca /* exit lamp_shutdown, P=1 */ #define FKT_LAMP_RECVMSG_SCHEDI_CODE 0x3cb /* lamp_recvmsg_sched_call P=0*/ #define FKT_LAMP_RECVMSG_SCHEDO_CODE 0x4cb /* lamp_recvmsg_sched_ret, P=0*/ /* inet routines, 3d0->3df */ #define FKT_INET_CREATE_ENTRY_CODE 0x3d0 /* enter inet_create, P=0 */ #define FKT_INET_CREATE_EXIT_CODE 0x4d0 /* exit inet_create, P=1 */ #define FKT_INET_BIND_ENTRY_CODE 0x3d1 /* enter inet_bind, P=0 */ #define FKT_INET_BIND_EXIT_CODE 0x4d1 /* exit inet_bind, P=1 */ #define FKT_INET_LISTEN_ENTRY_CODE 0x3d2 /* enter inet_listen, P=0 */ #define FKT_INET_LISTEN_EXIT_CODE 0x4d2 /* exit inet_listen, P=1 */ #define FKT_INET_ACCEPT_ENTRY_CODE 0x3d3 /* enter inet_accept, P=0 */ #define FKT_INET_ACCEPT_EXIT_CODE 0x4d3 /* exit inet_accept, P=1 */ #define FKT_INET_STREAM_CONNECT_ENTRY_CODE 0x3d4 /* enter inet_connect, P=0 */ #define FKT_INET_STREAM_CONNECT_EXIT_CODE 0x4d4 /* exit inet_connect, P=1 */ #define FKT_INET_SENDMSG_ENTRY_CODE 0x3d6 /* enter inet_sendmsg, P=0 */ #define FKT_INET_SENDMSG_EXIT_CODE 0x4d6 /* exit inet_sendmsg, P=1 */ #define FKT_INET_RECVMSG_ENTRY_CODE 0x3d7 /* enter inet_recvmsg, P=0 */ #define FKT_INET_RECVMSG_EXIT_CODE 0x4d7 /* exit inet_recvmsg, P=1 */ #define FKT_INET_SHUTDOWN_ENTRY_CODE 0x3da /* enter inet_shutdown, P=0 */ #define FKT_INET_SHUTDOWN_EXIT_CODE 0x4da /* exit inet_shutdown, P=1 */ /* socket interface routines, 3f0->3ff */ #define FKT_SOCKET_ENTRY_CODE 0x3f0 /* enter sys_socket, P=3 */ #define FKT_SOCKET_EXIT_CODE 0x4f0 /* exit sys_socket, P=1 */ #define FKT_BIND_ENTRY_CODE 0x3f1 /* enter sys_bind, P=1 */ #define FKT_BIND_EXIT_CODE 0x4f1 /* exit sys_bind, P=1 */ #define FKT_LISTEN_ENTRY_CODE 0x3f2 /* enter sys_listen, P=2 */ #define FKT_LISTEN_EXIT_CODE 0x4f2 /* exit sys_listen, P=1 */ #define FKT_ACCEPT_ENTRY_CODE 0x3f3 /* enter sys_accept, P=1 */ #define FKT_ACCEPT_EXIT_CODE 0x4f3 /* exit sys_accept, P=1 */ #define FKT_CONNECT_ENTRY_CODE 0x3f4 /* enter sys_connect, P=1 */ #define FKT_CONNECT_EXIT_CODE 0x4f4 /* exit sys_connect, P=1 */ #define FKT_SEND_ENTRY_CODE 0x3f5 /* enter sys_send, P=3 */ #define FKT_SEND_EXIT_CODE 0x4f5 /* exit sys_send, P=1 */ #define FKT_SENDTO_ENTRY_CODE 0x3f6 /* enter sys_sendto, P=3 */ #define FKT_SENDTO_EXIT_CODE 0x4f6 /* exit sys_sendto, P=1 */ #define FKT_RECVFROM_ENTRY_CODE 0x3f7 /* enter sys_recvfrom, P=3 */ #define FKT_RECVFROM_EXIT_CODE 0x4f7 /* exit sys_recvfrom, P=1 */ #define FKT_SHUTDOWN_ENTRY_CODE 0x3f8 /* enter sys_shutdown, P=2 */ #define FKT_SHUTDOWN_EXIT_CODE 0x4f8 /* exit sys_shutdown, P=1 */ /* sadhna end */ /* the sys_xxx functions -- should be 500->5xx */ /* achadda start */ #define FKT_READ_ENTRY_CODE 0x503 /* enter read == 3, P=3 */ #define FKT_READ_EXIT_CODE 0x603 /* exit read == 3, P=1 */ /* vs start */ #define FKT_WRITE_ENTRY_CODE 0x504 /* enter sys_write == 4, P=3 */ #define FKT_WRITE_EXIT_CODE 0x604 /* exit sys_write == 4, P=1 */ /* rdr */ #define FKT_LSEEK_ENTRY_CODE 0x513 /* enter lseek == 19, P=3 */ #define FKT_LSEEK_EXIT_CODE 0x613 /* exit lseek == 19, P=1 */ /* vs start */ #define FKT_FSYNC_ENTRY_CODE 0x576 /* enter sys_fsync == 118, P=1 */ #define FKT_FSYNC_EXIT_CODE 0x676 /* exit sys_fsync == 118, P=1 */ #define FKT_NANOSLEEP_ENTRY_CODE 0x5a2 /* enter sys_nanosleep == 162, P=0 */ #define FKT_NANOSLEEP_EXIT_CODE 0x6a2 /* exit sys_nanosleep == 162, P=1 */ /* rdr */ //#define FKT_DO_SD_REQUEST_ENTRY_CODE 0x710 /* enter do_sd_request, P=0 */ //#define FKT_DO_SD_REQUEST_EXIT_CODE 0x810 /* exit do_sd_request, P=0 */ //#define FKT_REQUEUE_SD_REQUEST_ENTRY_CODE 0x711 /* enter requeue_sd_request, P=0 */ //#define FKT_REQUEUE_SD_REQUEST_EXIT_CODE 0x811 /* exit requeue_sd_request, P=2 */ #define FKT_SD_OPEN_ENTRY_CODE 0x712 /* enter sd_open, P=0 */ #define FKT_SD_OPEN_EXIT_CODE 0x812 /* exit sd_open, P=1 */ #define FKT_SD_RELEASE_ENTRY_CODE 0x713 /* enter sd_release, P=0 */ #define FKT_SD_RELEASE_EXIT_CODE 0x813 /* exit sd_release, P=0 */ #define FKT_SD_IOCTL_ENTRY_CODE 0x714 /* enter sd_ioctl, P=0 */ #define FKT_SD_IOCTL_EXIT_CODE 0x814 /* exit sd_ioctl, P=1 */ #define FKT_SCSI_DO_CMD_ENTRY_CODE 0x721 /* enter scsi_do_cmd P=0 */ #define FKT_SCSI_DO_CMD_EXIT_CODE 0x821 /* exit scsi_do_cmd P=0 */ #define FKT_SCSI_IOCTL_ENTRY_CODE 0x722 /* enter scsi_do_cmd P=0 */ #define FKT_SCSI_IOCTL_EXIT_CODE 0x822 /* exit scsi_do_cmd P=0 */ #define FKT_SCSI_DONE_ENTRY_CODE 0x723 /* enter scsi_done P=1 */ #define FKT_SCSI_DONE_EXIT_CODE 0x823 /* exit scsi_done P=1 */ #define FKT_SCSI_DISPATCH_CMD_ENTRY_CODE 0x724 /* enter scsi_dispatch_cmd P=0 */ #define FKT_SCSI_DISPATCH_CMD_EXIT_CODE 0x824 /* exit scsi_dispatch_cmd P=1 */ #define FKT_SCSI_RETRY_COMMAND_ENTRY_CODE 0x725 /* enter scsi_retry_command P=0 */ #define FKT_SCSI_RETRY_COMMAND_EXIT_CODE 0x825 /* exit scsi_retry_command P=1 */ #define FKT_SG_OPEN_ENTRY_CODE 0x731 /* enter sg_open P=0 */ #define FKT_SG_OPEN_EXIT_CODE 0x831 /* exit sg_open P=0 */ #define FKT_SG_RELEASE_ENTRY_CODE 0x732 /* enter sg_release P=0 */ #define FKT_SG_RELEASE_EXIT_CODE 0x832 /* exit sg_release P=0 */ #define FKT_SG_IOCTL_ENTRY_CODE 0x733 /* enter sg_ioctl P=1 */ #define FKT_SG_IOCTL_EXIT_CODE 0x833 /* exit sg_ioctl P=1 */ #define FKT_SG_READ_ENTRY_CODE 0x734 /* enter sg_read P=0 */ #define FKT_SG_READ_EXIT_CODE 0x834 /* exit sg_read P=1 */ #define FKT_SG_NEW_READ_ENTRY_CODE 0x735 /* enter sg_new_read P=0 */ #define FKT_SG_NEW_READ_EXIT_CODE 0x835 /* exit sg_new_read P=1 */ #define FKT_SG_WRITE_ENTRY_CODE 0x736 /* enter sg_write P=0 */ #define FKT_SG_WRITE_EXIT_CODE 0x836 /* exit sg_write P=1 */ #define FKT_SG_NEW_WRITE_ENTRY_CODE 0x737 /* enter sg_new_write P=0 */ #define FKT_SG_NEW_WRITE_EXIT_CODE 0x837 /* exit sg_new_write P=1 */ #define FKT_SG_GET_RQ_MARK_ENTRY_CODE 0x738 /* enter sg_get_rq_mark P=0 */ #define FKT_SG_GET_RQ_MARK_EXIT_CODE 0x838 /* exit sg_get_rq_mark P=1 */ #define FKT_SG_CMD_DONE_BH_ENTRY_CODE 0x739 /* enter sg_cmd_done_bh P=0 */ #define FKT_SG_CMD_DONE_BH_EXIT_CODE 0x839 /* exit sg_cmd_done_bh P=0 */ #define FKT_SCSI_SEP_IOCTL_ENTRY_CODE 0x743 /* enter sg_ioctl P=1 */ #define FKT_SCSI_SEP_IOCTL_EXIT_CODE 0x843 /* exit sg_ioctl P=1 */ #define FKT_SCSI_SEP_QUEUECOMMAND_ENTRY_CODE 0x744 /* enter sg_queuecommand P=0 */ #define FKT_SCSI_SEP_QUEUECOMMAND_EXIT_CODE 0x844 /* exit sg_queuecommand P=1 */ /* vs */ //#define FKT_SEAGATE_INTERNAL_CMD_ENTRY_CODE 0x751 /* entry in seagate's internal_ommand P=0 */ //#define FKT_SEAGATE_INTERNAL_CMD_EXIT_CODE 0x851 /* exit in seagate's internal_ommand P=0 */ //#define FKT_QLOGIC_QCMND_ENTRY_CODE 0x752 /* entry in qlogic's queuecommand P=0 */ //#define FKT_QLOGIC_QCMND_EXIT_CODE 0x852 /* exit in qlogic's queuecommand P=0 */ //#define FKT_ISP_RET_STATUS_ENTRY_CODE 0x761 /* entry in qlogic's return_status P=0 */ //#define FKT_ISP_RET_STATUS_EXIT_CODE 0x861 /* exit in qlogic's return_status P=1 */ //#define AM53C974_QCMD_ENTRY_CODE 0x771 /* entry in am53c974 adapter's qcmd P=0 */ //#define AM53C974_QCMD_EXIT_CODE 0x871 /* exit in am53c974 adapter's qcmd P=0 */ //#define REQUE_DEVM_DEV_BLK_CODE 0x901 /* code in requeue_sd_request P=3 */ //#define REQUE_BLK_CODE 0x911 /* code in requeue_sd_request P=1 */ /* vs end */ /* vi: ts=4 */ #endif /* __FKT_H__ */ fxt-0.3.15/kernel/PaxHeaders/unpatch0000644000000000000000000000013215007143530014322 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/unpatch/0002755000175000017500000000000015007143530014067 5ustar00samysamyfxt-0.3.15/kernel/unpatch/PaxHeaders/fkt_patch0000644000000000000000000000007310271436743016302 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.675204289 fxt-0.3.15/kernel/unpatch/fkt_patch0000755000175000017500000000114210271436743015765 0ustar00samysamy#!/bin/bash VERSION=$(grep ^VERSION Makefile 2>/dev/null | \ sed -e 's/[^0-9]*\([0-9]*\)/\1/') PATCHLEVEL=$( grep ^PATCHLEVEL Makefile 2>/dev/null | \ sed -e 's/[^0-9]*\([0-9]*\)/\1/') SUBLEVEL=$(grep ^SUBLEVEL Makefile 2>/dev/null | \ sed -e 's/[^0-9]*\([0-9]*\)/\1/') EXTRAVERSION=$(grep ^EXTRAVERSION Makefile 2>/dev/null | \ sed -e 's/EXTRAVERSION =[ ]*\([^ ]*\)$/\1/') KERNELRELEASE=${VERSION}.${PATCHLEVEL}.${SUBLEVEL} APPLY= [ -z "${0/*unpatch*}" ] && APPLY=-R for i in "$(dirname "$(dirname "$0")")"/$KERNELRELEASE/* ; do patch --silent -p1 $APPLY < "$i" done fxt-0.3.15/kernel/PaxHeaders/apply0000644000000000000000000000013215007143530014005 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/apply/0002755000175000017500000000000015007143530013552 5ustar00samysamyfxt-0.3.15/kernel/apply/PaxHeaders/fkt_patch0000644000000000000000000000007310271436741015763 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.673088528 fxt-0.3.15/kernel/apply/fkt_patch0000755000175000017500000000114210271436741015446 0ustar00samysamy#!/bin/bash VERSION=$(grep ^VERSION Makefile 2>/dev/null | \ sed -e 's/[^0-9]*\([0-9]*\)/\1/') PATCHLEVEL=$( grep ^PATCHLEVEL Makefile 2>/dev/null | \ sed -e 's/[^0-9]*\([0-9]*\)/\1/') SUBLEVEL=$(grep ^SUBLEVEL Makefile 2>/dev/null | \ sed -e 's/[^0-9]*\([0-9]*\)/\1/') EXTRAVERSION=$(grep ^EXTRAVERSION Makefile 2>/dev/null | \ sed -e 's/EXTRAVERSION =[ ]*\([^ ]*\)$/\1/') KERNELRELEASE=${VERSION}.${PATCHLEVEL}.${SUBLEVEL} APPLY= [ -z "${0/*unpatch*}" ] && APPLY=-R for i in "$(dirname "$(dirname "$0")")"/$KERNELRELEASE/* ; do patch --silent -p1 $APPLY < "$i" done fxt-0.3.15/kernel/PaxHeaders/linux-patches-2.6.12-rc20000644000000000000000000000013215007143530016654 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/0002755000175000017500000000000015007143530016421 5ustar00samysamyfxt-0.3.15/kernel/linux-patches-2.6.12-rc2/PaxHeaders/arch0000644000000000000000000000013215007143530017571 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/arch/0002755000175000017500000000000015007143530017336 5ustar00samysamyfxt-0.3.15/kernel/linux-patches-2.6.12-rc2/arch/PaxHeaders/i3860000644000000000000000000000013215007143530020262 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/arch/i386/0002755000175000017500000000000015007143530020027 5ustar00samysamyfxt-0.3.15/kernel/linux-patches-2.6.12-rc2/arch/i386/PaxHeaders/kernel0000644000000000000000000000013215007143530021542 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/0002755000175000017500000000000015007143530021307 5ustar00samysamyfxt-0.3.15/kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/PaxHeaders/Makefile.patch0000644000000000000000000000007310271436743024372 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674231286 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/Makefile.patch0000644000175000017500000000072010271436743024053 0ustar00samysamy--- linux-2.6.12-rc2-orig/arch/i386/kernel/Makefile 2005-04-04 18:38:04.000000000 +0200 +++ linux-2.6.12-rc2-fkt/arch/i386/kernel/Makefile 2005-05-21 01:11:02.291261750 +0200 @@ -12,6 +12,9 @@ obj-y := process.o semaphore.o signal.o obj-y += cpu/ obj-y += timers/ obj-$(CONFIG_ACPI_BOOT) += acpi/ +ifdef CONFIG_FKT +obj-y += fkt_header.o +endif obj-$(CONFIG_X86_BIOS_REBOOT) += reboot.o obj-$(CONFIG_MCA) += mca.o obj-$(CONFIG_X86_MSR) += msr.o fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/PaxHeaders/entry.S.patch0000644000000000000000000000007310271436743024217 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674248477 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/arch/i386/kernel/entry.S.patch0000644000175000017500000002027510271436743023707 0ustar00samysamy--- linux-2.6.12-rc2-orig/arch/i386/kernel/entry.S 2005-04-04 18:38:05.000000000 +0200 +++ linux-2.6.12-rc2-fkt/arch/i386/kernel/entry.S 2005-05-21 01:11:09.754118125 +0200 @@ -4,6 +4,9 @@ * Copyright (C) 1991, 1992 Linus Torvalds */ +/***** 25-Jun-03 st added lcall7/27 probe *****/ +/***** 11-Oct-00 rdr added fkt features *****/ + /* * entry.S contains the system-call and fault low-level handling routines. * This also contains the timer-interrupt handler, as well as all interrupts @@ -52,6 +55,10 @@ #define nr_syscalls ((syscall_table_size)/4) +#if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) /* rdr */ +#include +#endif /* CONFIG_FKT or CONFIG_FKT_MODULE */ /* rdr */ + EBX = 0x00 ECX = 0x04 EDX = 0x08 @@ -226,6 +233,16 @@ ENTRY(system_call) pushl %eax # save orig_eax SAVE_ALL GET_THREAD_INFO(%ebp) + +#if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) /* rdr */ + testl $(FKT_KEYMASK0),fkt_active # probing active? /* rdr */ + jz 7f # jump if 0 (not probing) /* rdr */ + andl $(FKT_SYS_CALL_MASK),%eax # ensure 0 <= %eax <= FKT_SYS_CALL_MASK /* st */ + call fkt_eax_ebx0# sys call number in %eax /* rdr */ + movl ORIG_EAX(%esp),%eax# restore orig_eax /* rdr */ +7: # /* rdr */ +#endif /* CONFIG_FKT or CONFIG_FKT_MODULE */ /* rdr */ + # system call tracing in operation /* Note, _TIF_SECCOMP is bit number 8, and so it needs testw and not testb */ testw $(_TIF_SYSCALL_TRACE|_TIF_SYSCALL_AUDIT|_TIF_SECCOMP),TI_flags(%ebp) @@ -244,6 +261,15 @@ syscall_exit: jne syscall_exit_work restore_all: + +#if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) /* rdr */ + testl $(FKT_KEYMASK0),fkt_active # probing active? /* rdr */ + jz 7f # jump if 0 (not probing) /* rdr */ + movl $(((FKT_RET_FROM_SYS_CALL_CODE)<<8)|12),%eax /* rdr */ + call fkt_eax_ebx0# code in %eax, no parameters /* rdr */ +7: # /* rdr */ +#endif /* CONFIG_FKT or CONFIG_FKT_MODULE */ /* rdr */ + movl EFLAGS(%esp), %eax # mix EFLAGS, SS and CS movb OLDSS(%esp), %ah movb CS(%esp), %al @@ -411,14 +437,36 @@ vector=vector+1 ALIGN common_interrupt: SAVE_ALL + +#if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) /* st */ + testl $(FKT_KEYMASK0),fkt_active # probing active? /* st */ + jz 7f # jump if 0 (not probing) /* st */ + movl (ORIG_EAX)(%esp),%eax /* st */ + addl $(FKT_IRQ_TIMER+256),%eax + call fkt_eax_ebx0 # sys call number in %eax /* st */ +7: # /* st */ +#endif /* CONFIG_FKT or CONFIG_FKT_MODULE */ /* st */ + movl %esp,%eax call do_IRQ jmp ret_from_intr +#if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) /* st */ +#define FKT_BUILD_INTERRUPT(v) \ + testl $(FKT_KEYMASK0),fkt_active; /* probing active? */ \ + jz 7f; /* jump if 0 (not probing) */ \ + movl $(FKT_TRAP_BASE+v),%eax; \ + call fkt_eax_ebx0; /* sys call number in %eax7 */ \ +7: +#else +#define FKT_BUILD_INTERRUPT(v) +#endif /* CONFIG_FKT or CONFIG_FKT_MODULE */ + #define BUILD_INTERRUPT(name, nr) \ ENTRY(name) \ pushl $nr-256; \ SAVE_ALL \ + FKT_BUILD_INTERRUPT(nr) \ movl %esp,%eax; \ call smp_/**/name; \ jmp ret_from_intr; @@ -429,9 +477,10 @@ ENTRY(name) \ ENTRY(divide_error) pushl $0 # no error code pushl $do_divide_error + pushl $(FKT_TRAP_BASE) /* rdr */ ALIGN error_code: - pushl %ds +# pushl %ds # replaced by trap number /* st */ pushl %eax xorl %eax, %eax pushl %ebp @@ -449,26 +498,50 @@ error_code: movl ORIG_EAX(%esp), %edx # get the error code movl %eax, ORIG_EAX(%esp) movl %ecx, ES(%esp) + movl %ds, %eax # save ds + xchgl %eax, DS(%esp) # save ds, get trap no + +#if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) /* rdr */ + testl $(FKT_KEYMASK0),fkt_active # probing active? /* rdr */ + jz 7f # jump if 0 (not probing) /* rdr */ + pushl %edx # save error code /* st */ + call fkt_eax_ebx0# call probe (trap no. in eax) /* rdr */ + popl %edx # restore error code /* st */ +7: # /* rdr */ +#endif /* CONFIG_FKT or CONFIG_FKT_MODULE */ /* rdr */ + movl $(__USER_DS), %ecx movl %ecx, %ds movl %ecx, %es movl %esp,%eax # pt_regs pointer + call *%edi jmp ret_from_exception ENTRY(coprocessor_error) pushl $0 pushl $do_coprocessor_error + pushl $(FKT_TRAP_BASE+16) /* rdr */ jmp error_code ENTRY(simd_coprocessor_error) pushl $0 pushl $do_simd_coprocessor_error + pushl $(FKT_TRAP_BASE+19) /* rdr */ jmp error_code ENTRY(device_not_available) pushl $-1 # mark this as an int SAVE_ALL + +#if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) /* rdr */ + testl $(FKT_KEYMASK0),fkt_active # probing active? /* rdr */ + jz 7f # jump if 0 (not probing) /* rdr */ + movl $(FKT_TRAP_BASE+7),%eax /* rdr */ + call fkt_eax_ebx0# call probe (trap no. in eax) /* rdr */ +7: # /* rdr */ +#endif /* CONFIG_FKT or CONFIG_FKT_MODULE */ /* rdr */ + movl %cr0, %eax testl $0x4, %eax # EM (math emulation bit) jne device_not_available_emulate @@ -510,6 +583,13 @@ ENTRY(debug) debug_stack_correct: pushl $-1 # mark this as an int SAVE_ALL +#if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) /* st */ + testl $(FKT_KEYMASK0),fkt_active # probing active? /* st */ + jz 7f # jump if 0 (not probing) /* st */ + movl $(FKT_TRAP_BASE+1), %eax # set code /* st */ + call fkt_eax_ebx0 # code in %eax, no parameter /* st */ +7: +#endif /* CONFIG_FKT or CONFIG_FKT_MODULE */ xorl %edx,%edx # error code 0 movl %esp,%eax # pt_regs pointer call do_debug @@ -547,6 +627,15 @@ ENTRY(nmi) nmi_stack_correct: pushl %eax SAVE_ALL + +#if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) /* rdr */ + testl $(FKT_KEYMASK0),fkt_active # probing active? /* rdr */ + jz 7f # jump if 0 (not probing) /* rdr */ + movl $(FKT_TRAP_BASE+2),%eax /* rdr */ + call fkt_eax0# call probe (trap no. in eax) /* rdr */ +7: # /* rdr */ +#endif /* CONFIG_FKT or CONFIG_FKT_MODULE */ /* rdr */ + xorl %edx,%edx # zero error code movl %esp,%eax # pt_regs pointer call do_nmi @@ -592,6 +681,13 @@ nmi_16bit_stack: ENTRY(int3) pushl $-1 # mark this as an int SAVE_ALL +#if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) /* st */ + testl $(FKT_KEYMASK0),fkt_active # probing active ? /* st */ + jz 7f # jump if 0 (not probing) /* st */ + movl $(FKT_TRAP_BASE+3), %eax # code /* st */ + call fkt_eax_ebx0 # call probe (trap no in eax) /* st */ +7: +#endif /* CONFIG_FKT or CONFIG_FKT_MODULE */ xorl %edx,%edx # zero error code movl %esp,%eax # pt_regs pointer call do_int3 @@ -602,57 +698,69 @@ ENTRY(int3) ENTRY(overflow) pushl $0 pushl $do_overflow + pushl $(FKT_TRAP_BASE+4) /* rdr */ jmp error_code ENTRY(bounds) pushl $0 pushl $do_bounds + pushl $(FKT_TRAP_BASE+5) /* rdr */ jmp error_code ENTRY(invalid_op) pushl $0 pushl $do_invalid_op + pushl $(FKT_TRAP_BASE+6) /* rdr */ jmp error_code ENTRY(coprocessor_segment_overrun) pushl $0 pushl $do_coprocessor_segment_overrun + pushl $(FKT_TRAP_BASE+9) /* rdr */ jmp error_code ENTRY(invalid_TSS) pushl $do_invalid_TSS + pushl $(FKT_TRAP_BASE+10) /* rdr */ jmp error_code ENTRY(segment_not_present) pushl $do_segment_not_present + pushl $(FKT_TRAP_BASE+11) /* rdr */ jmp error_code ENTRY(stack_segment) pushl $do_stack_segment + pushl $(FKT_TRAP_BASE+12) /* rdr */ jmp error_code ENTRY(general_protection) pushl $do_general_protection + pushl $(FKT_TRAP_BASE+13) /* rdr */ jmp error_code ENTRY(alignment_check) pushl $do_alignment_check + pushl $(FKT_TRAP_BASE+17) /* rdr */ jmp error_code ENTRY(page_fault) pushl $do_page_fault + pushl $(FKT_TRAP_BASE+14) /* rdr */ jmp error_code #ifdef CONFIG_X86_MCE ENTRY(machine_check) pushl $0 pushl machine_check_vector + pushl $(FKT_TRAP_BASE+18) /* rdr */ jmp error_code #endif ENTRY(spurious_interrupt_bug) pushl $0 pushl $do_spurious_interrupt_bug + pushl $(FKT_TRAP_BASE+15) /* rdr */ jmp error_code .data fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/arch/i386/PaxHeaders/Kconfig.patch0000644000000000000000000000007310271436743022755 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674274193 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/arch/i386/Kconfig.patch0000644000175000017500000000076010271436743022442 0ustar00samysamy--- linux-2.6.12-rc2-orig/arch/i386/Kconfig 2005-04-04 18:38:04.000000000 +0200 +++ linux-2.6.12-rc2-fkt/arch/i386/Kconfig 2005-05-21 01:10:59.862633918 +0200 @@ -35,6 +35,18 @@ config GENERIC_IOMAP source "init/Kconfig" +menu "Fast Kernel Tracing facility" + +config FKT + tristate "Fast Kernel Trace (FKT) facility" + default n + +config FKT_TIME_ONLY + bool "Fast Kernel Trace (FKT) Time-only tracing" + depends on FKT + default n + +endmenu menu "Processor type and features" choice fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/PaxHeaders/mm0000644000000000000000000000013215007143530017265 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/mm/0002755000175000017500000000000015007143530017032 5ustar00samysamyfxt-0.3.15/kernel/linux-patches-2.6.12-rc2/mm/PaxHeaders/page_alloc.c.patch0000644000000000000000000000007310271436743022707 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.675075165 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/mm/page_alloc.c.patch0000644000175000017500000000302510271436743022371 0ustar00samysamy--- linux-2.6.12-rc2-orig/mm/page_alloc.c 2005-04-04 18:40:05.000000000 +0200 +++ linux-2.6.12-rc2-fkt/mm/page_alloc.c 2005-05-21 01:12:06.692392777 +0200 @@ -35,6 +35,8 @@ #include #include +#include /* st */ + #include #include "internal.h" @@ -275,6 +277,8 @@ static inline void __free_pages_bulk (st unsigned long page_idx; int order_size = 1 << order; + FKT_PROBE2(FKT_SYSTEM_KEYMASK,FKT_PAGE_FREE_ENTRY_CODE,page,order); /* st */ + if (unlikely(order)) destroy_compound_page(page, order); @@ -307,6 +311,8 @@ static inline void __free_pages_bulk (st set_page_order(page, order); list_add(&page->lru, &zone->free_area[order].free_list); zone->free_area[order].nr_free++; + + FKT_PROBE0(FKT_SYSTEM_KEYMASK,FKT_PAGE_FREE_EXIT_CODE); /* st */ } static inline void free_pages_check(const char *function, struct page *page) @@ -740,6 +746,8 @@ __alloc_pages(unsigned int __nocast gfp_ int can_try_harder; int did_some_progress; + FKT_PROBE2(FKT_SYSTEM_KEYMASK,FKT_PAGE_ALLOC_ENTRY_CODE,gfp_mask,order); /* st */ + might_sleep_if(wait); /* @@ -753,6 +761,7 @@ __alloc_pages(unsigned int __nocast gfp_ if (unlikely(zones[0] == NULL)) { /* Should this ever happen?? */ + FKT_PROBE1(FKT_SYSTEM_KEYMASK,FKT_PAGE_ALLOC_EXIT_CODE,NULL); /* st */ return NULL; } @@ -903,6 +912,7 @@ nopage: return NULL; got_pg: zone_statistics(zonelist, z); + FKT_PROBE1(FKT_SYSTEM_KEYMASK,FKT_PAGE_ALLOC_EXIT_CODE,page); /* st */ return page; } fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/mm/PaxHeaders/swap.c.patch0000644000000000000000000000007310271436743021573 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.675091527 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/mm/swap.c.patch0000644000175000017500000000076010271436743021260 0ustar00samysamy--- linux-2.6.12-rc2-orig/mm/swap.c 2005-04-04 18:38:07.000000000 +0200 +++ linux-2.6.12-rc2-fkt/mm/swap.c 2005-05-21 01:11:17.203976492 +0200 @@ -48,8 +48,11 @@ void put_page(struct page *page) } return; } - if (!PageReserved(page) && put_page_testzero(page)) - __page_cache_release(page); + if (test_bit(PG_FKT,&page->flags)) + put_page_testzero(page); + else + if (!PageReserved(page) && put_page_testzero(page)) + __page_cache_release(page); } EXPORT_SYMBOL(put_page); #endif fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/mm/PaxHeaders/filemap.c.patch0000644000000000000000000000007310271436743022236 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.675053945 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/mm/filemap.c.patch0000644000175000017500000000570610271436743021730 0ustar00samysamy--- linux-2.6.12-rc2-orig/mm/filemap.c 2005-04-04 18:40:05.000000000 +0200 +++ linux-2.6.12-rc2-fkt/mm/filemap.c 2005-05-21 01:12:08.863060139 +0200 @@ -392,6 +392,62 @@ int add_to_page_cache_lru(struct page *p return ret; } +/* st */ +int checkin_cache_page(struct page *page, struct address_space *mapping, + pgoff_t offset, int gfp_mask) { + int err; + + if (!(err = add_to_page_cache(page, mapping, offset, gfp_mask))) { + SetPageReserved(page); + SetPageUptodate(page); + set_page_dirty(page); + } + return err; +} +EXPORT_SYMBOL(checkin_cache_page); + +void checkout_cache_page(struct page *page) { + if (!PageReserved(page)) + PAGE_BUG(page); + if (!PageUptodate(page)) + PAGE_BUG(page); + if (!page->mapping) + PAGE_BUG(page); + if (PageDirty(page)) + filemap_fdatawrite(page->mapping); + + spin_lock(&page->mapping->tree_lock); + + /* get lock on the page. It is already locked if being written for + * instance. */ + while (TestSetPageLocked(page)) { + spin_unlock(&page->mapping->tree_lock); + wait_on_page_bit(page,PG_locked); + if (need_resched()) { + __set_current_state(TASK_RUNNING); + schedule(); + } + spin_lock(&page->mapping->tree_lock); + } + spin_unlock(&page->mapping->tree_lock); + + while (page_has_buffers(page) && !try_to_release_page(page,0)) { + static int i; + if (i++<10) + printk(KERN_WARNING "fkt:gosh, buffer busy, sleeping on it.\n"); + wait_buffers_clean(page); + } + + remove_from_page_cache(page); /* I'm not sure whether this also removes from lru ... */ + page_cache_release(page); + unlock_page(page); + ClearPageReserved(page); + + if (page_has_buffers(page)) + PAGE_BUG(page); +} +EXPORT_SYMBOL(checkout_cache_page); + /* * In order to wait for pages to become available there must be * waitqueues associated with pages. By using a hash table of @@ -1061,8 +1117,21 @@ int file_send_actor(read_descriptor_t * if (size > count) size = count; - written = file->f_op->sendpage(file, page, offset, + if (file->f_op->sendpage) { + written = file->f_op->sendpage(file, page, offset, size, &file->f_pos, sizef_op->write(file, kaddr + offset, size, &file->f_pos); + kunmap(page); + set_fs(old_fs); + } + if (written < 0) { desc->error = written; written = 0; @@ -1709,13 +1778,19 @@ filemap_copy_from_user(struct page *page int left; kaddr = kmap_atomic(page, KM_USER0); - left = __copy_from_user_inatomic(kaddr + offset, buf, bytes); + if (kaddr+offset == buf) + left = 0; + else + left = __copy_from_user_inatomic(kaddr + offset, buf, bytes); kunmap_atomic(kaddr, KM_USER0); if (left != 0) { /* Do it the slow way */ kaddr = kmap(page); - left = __copy_from_user(kaddr + offset, buf, bytes); + if (kaddr+offset == buf) + left = 0; + else + left = __copy_from_user(kaddr + offset, buf, bytes); kunmap(page); } return bytes - left; fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/PaxHeaders/kernel0000644000000000000000000000013215007143530020134 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/0002755000175000017500000000000015007143530017701 5ustar00samysamyfxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/PaxHeaders/Makefile.patch0000644000000000000000000000007310271436743022764 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674843765 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/Makefile.patch0000644000175000017500000000146210271436743022451 0ustar00samysamy--- linux-2.6.12-rc2-orig/kernel/Makefile 2005-04-04 18:38:04.000000000 +0200 +++ linux-2.6.12-rc2-fkt/kernel/Makefile 2005-05-21 01:11:05.087833197 +0200 @@ -1,14 +1,17 @@ # # Makefile for the linux kernel. # +# 11-Jun-03 st added fkt into kernel +# obj-y = sched.o fork.o exec_domain.o panic.o printk.o profile.o \ exit.o itimer.o time.o softirq.o resource.o \ sysctl.o capability.o ptrace.o timer.o user.o \ signal.o sys.o kmod.o workqueue.o pid.o \ rcupdate.o intermodule.o extable.o params.o posix-timers.o \ - kthread.o wait.o kfifo.o sys_ni.o posix-cpu-timers.o + kthread.o wait.o kfifo.o sys_ni.o posix-cpu-timers.o fkt.o +obj-$(CONFIG_FKT) += fkt-mod.o obj-$(CONFIG_FUTEX) += futex.o obj-$(CONFIG_GENERIC_ISA_DMA) += dma.o obj-$(CONFIG_SMP) += cpu.o spinlock.o fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/PaxHeaders/pid.c.patch0000644000000000000000000000007210271436743022243 xustar0029 atime=1746715490.29750953 29 ctime=1746716504.67488167 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/pid.c.patch0000644000175000017500000000166310271436743021734 0ustar00samysamy--- linux-2.6.12-rc2-orig/kernel/pid.c 2005-04-04 18:38:24.000000000 +0200 +++ linux-2.6.12-rc2-fkt/kernel/pid.c 2005-05-21 01:11:36.981945672 +0200 @@ -27,6 +27,9 @@ #include #include +/* st */ +#include + #define pid_hashfn(nr) hash_long((unsigned long)nr, pidhash_shift) static struct hlist_head *pid_hash[PIDTYPE_MAX]; static int pidhash_shift; @@ -168,13 +171,16 @@ static fastcall int __detach_pid(task_t struct pid *pid, *pid_next; int nr = 0; + pid = &task->pids[type]; if (!hlist_unhashed(&pid->pid_chain)) { hlist_del(&pid->pid_chain); - if (list_empty(&pid->pid_list)) + if (list_empty(&pid->pid_list)) { + if (type==PIDTYPE_PID) + FKT_ALWAYS_PROBE1(FKT_KEYMASKALL,FKT_END_OF_PID_CODE,pid->nr); nr = pid->nr; - else { + } else { pid_next = list_entry(pid->pid_list.next, struct pid, pid_list); /* insert next pid from pid_list to hash */ fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/PaxHeaders/softirq.c.patch0000644000000000000000000000007310271436743023157 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674929447 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/softirq.c.patch0000644000175000017500000000223010271436743022636 0ustar00samysamy--- linux-2.6.12-rc2-orig/kernel/softirq.c 2005-04-04 18:38:05.000000000 +0200 +++ linux-2.6.12-rc2-fkt/kernel/softirq.c 2005-05-21 01:11:09.221199790 +0200 @@ -17,6 +17,8 @@ #include #include +#include /* st */ + #include /* - No shared variables, all the data are CPU local. @@ -264,7 +266,9 @@ static void tasklet_action(struct softir if (!atomic_read(&t->count)) { if (!test_and_clear_bit(TASKLET_STATE_SCHED, &t->state)) BUG(); + FKT_PROBE2(FKT_SYSTEM_KEYMASK, FKT_TASKLET_ENTRY_CODE,t->func,t->data); /* st */ t->func(t->data); + FKT_PROBE2(FKT_SYSTEM_KEYMASK, FKT_TASKLET_EXIT_CODE,t->func,t->data); /* st */ tasklet_unlock(t); continue; } @@ -297,7 +301,9 @@ static void tasklet_hi_action(struct sof if (!atomic_read(&t->count)) { if (!test_and_clear_bit(TASKLET_STATE_SCHED, &t->state)) BUG(); + FKT_PROBE2(FKT_SYSTEM_KEYMASK, FKT_TASKLET_HI_ENTRY_CODE,t->func,t->data); /* st */ t->func(t->data); + FKT_PROBE2(FKT_SYSTEM_KEYMASK, FKT_TASKLET_HI_EXIT_CODE,t->func,t->data); /* st */ tasklet_unlock(t); continue; } fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/PaxHeaders/timer.c.patch0000644000000000000000000000007210271436743022607 xustar0029 atime=1746715490.29750953 29 ctime=1746716504.67494539 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/timer.c.patch0000644000175000017500000000304410271436743022273 0ustar00samysamy--- linux-2.6.12-rc2-orig/kernel/timer.c 2005-04-04 18:39:17.000000000 +0200 +++ linux-2.6.12-rc2-fkt/kernel/timer.c 2005-05-21 01:11:46.837435395 +0200 @@ -1,3 +1,4 @@ +/***** 16-Oct-00 rdr vs added fkt probes *****/ /* * linux/kernel/timer.c * @@ -46,6 +47,9 @@ static void time_interpolator_update(lon #define time_interpolator_update(x) #endif +/* rdr vs */ +#include + /* * per-CPU timer vector definitions: */ @@ -1167,11 +1171,18 @@ asmlinkage long sys_nanosleep(struct tim unsigned long expire; long ret; + FKT_PROBE0(FKT_DRIVER_KEYMASK, FKT_NANOSLEEP_ENTRY_CODE); /* rdr */ if (copy_from_user(&t, rqtp, sizeof(t))) - return -EFAULT; + {/* rdr */ + ret = -EFAULT; + goto out; + } if ((t.tv_nsec >= 1000000000L) || (t.tv_nsec < 0) || (t.tv_sec < 0)) - return -EINVAL; + {/* rdr */ + ret = -EINVAL; + goto out; + } expire = timespec_to_jiffies(&t) + (t.tv_sec || t.tv_nsec); current->state = TASK_INTERRUPTIBLE; @@ -1182,7 +1193,10 @@ asmlinkage long sys_nanosleep(struct tim struct restart_block *restart; jiffies_to_timespec(expire, &t); if (rmtp && copy_to_user(rmtp, &t, sizeof(t))) - return -EFAULT; + {/* rdr */ + ret = -EFAULT; + goto out; + } restart = ¤t_thread_info()->restart_block; restart->fn = nanosleep_restart; @@ -1190,6 +1204,8 @@ asmlinkage long sys_nanosleep(struct tim restart->arg1 = (unsigned long) rmtp; ret = -ERESTART_RESTARTBLOCK; } +out: + FKT_PROBE1(FKT_DRIVER_KEYMASK, FKT_NANOSLEEP_EXIT_CODE,ret); /* rdr */ return ret; } fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/PaxHeaders/fork.c.patch0000644000000000000000000000007310271436743022431 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674865643 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/fork.c.patch0000644000175000017500000000136410271436743022117 0ustar00samysamy--- linux-2.6.12-rc2-orig/kernel/fork.c 2005-04-04 18:37:53.000000000 +0200 +++ linux-2.6.12-rc2-fkt/kernel/fork.c 2005-05-21 01:10:56.803102767 +0200 @@ -1,3 +1,5 @@ +/***** 08-Aug-03 st add fkt_always probe at do_fork *****/ + /* * linux/kernel/fork.c * @@ -48,6 +50,7 @@ #include #include #include +#include /* * Protected counters by write_lock_irq(&tasklist_lock) @@ -1034,6 +1037,8 @@ static task_t *copy_process(unsigned lon goto bad_fork_cleanup_namespace; } + FKT_ALWAYS_PROBE1(FKT_KEYMASKALL,FKT_DO_FORK_CODE,p->pid); + /* CLONE_PARENT re-uses the old parent */ if (clone_flags & (CLONE_PARENT|CLONE_THREAD)) p->real_parent = current->real_parent; fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/PaxHeaders/signal.c.patch0000644000000000000000000000007310271436743022745 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674913575 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/signal.c.patch0000644000175000017500000000077510271436743022440 0ustar00samysamy--- linux-2.6.12-rc2-orig/kernel/signal.c 2005-04-04 18:38:07.000000000 +0200 +++ linux-2.6.12-rc2-fkt/kernel/signal.c 2005-05-21 01:11:17.291963009 +0200 @@ -28,6 +28,8 @@ #include #include +#include /* st */ + /* * SLAB caches for signal bits. */ @@ -2249,6 +2251,7 @@ asmlinkage long sys_kill(int pid, int sig) { struct siginfo info; + FKT_PROBE2(FKT_SYSTEM_KEYMASK, FKT_KILL_CODE, pid, sig); /* st */ info.si_signo = sig; info.si_errno = 0; fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/PaxHeaders/sched.c.patch0000644000000000000000000000007310271436743022556 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674897655 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/kernel/sched.c.patch0000644000175000017500000000150110271436743022235 0ustar00samysamy--- linux-2.6.12-rc2-orig/kernel/sched.c 2005-04-04 18:39:17.000000000 +0200 +++ linux-2.6.12-rc2-fkt/kernel/sched.c 2005-05-21 01:11:46.433497295 +0200 @@ -18,6 +18,8 @@ * 2004-04-02 Scheduler domains code by Nick Piggin */ +/***** 11-Oct-00 rdr add fkt_always probe at switch_to *****/ + #include #include #include @@ -49,6 +51,9 @@ #include #include +/* rdr */ +#include + #include /* @@ -1373,6 +1378,10 @@ task_t * context_switch(runqueue_t *rq, } /* Here we just switch the register state and the stack. */ + + FKT_ALWAYS_PROBE1(FKT_KEYMASKALL, FKT_SWITCH_TO_CODE, /* rdr */ + next->pid); /* rdr */ + switch_to(prev, next, prev); return prev; fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/PaxHeaders/fs0000644000000000000000000000013215007143530017264 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/0002755000175000017500000000000015007143530017031 5ustar00samysamyfxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/PaxHeaders/ioctl.c.patch0000644000000000000000000000007310271436743021732 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674353634 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/ioctl.c.patch0000644000175000017500000000133110271436743021412 0ustar00samysamy--- linux-2.6.12-rc2-orig/fs/ioctl.c 2005-04-04 18:38:04.000000000 +0200 +++ linux-2.6.12-rc2-fkt/fs/ioctl.c 2005-05-21 01:11:05.869713380 +0200 @@ -13,6 +13,8 @@ #include #include +#include /* st */ + #include #include @@ -88,6 +90,8 @@ int vfs_ioctl(struct file *filp, unsigne { unsigned int flag; int on, error = 0; + FKT_PROBE3(FKT_FILES_KEYMASK,FKT_IOCTL_ENTRY_CODE,fd,cmd,arg); /* st */ + switch (cmd) { case FIOCLEX: @@ -153,6 +157,7 @@ int vfs_ioctl(struct file *filp, unsigne error = do_ioctl(filp, cmd, arg); break; } + FKT_PROBE1(FKT_FILES_KEYMASK,FKT_IOCTL_EXIT_CODE,error); /* st */ return error; } fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/PaxHeaders/read_write-sys.c.patch0000644000000000000000000000007310271436743023561 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674386043 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/read_write-sys.c.patch0000644000175000017500000000101610271436743023241 0ustar00samysamy--- linux-2.6.12-rc2-orig/fs/read_write.c 2005-04-04 18:38:55.000000000 +0200 +++ linux-2.6.12-rc2-fkt/fs/read_write.c 2005-05-21 01:11:38.133769164 +0200 @@ -648,7 +648,7 @@ static ssize_t do_sendfile(int out_fd, i if (!(out_file->f_mode & FMODE_WRITE)) goto fput_out; retval = -EINVAL; - if (!out_file->f_op || !out_file->f_op->sendpage) + if (!out_file->f_op || !out_file->f_op->write) goto fput_out; out_inode = out_file->f_dentry->d_inode; retval = rw_verify_area(WRITE, out_file, &out_file->f_pos, count); fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/PaxHeaders/open.c.patch0000644000000000000000000000007310271436743021561 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674370011 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/open.c.patch0000644000175000017500000000343610271436743021251 0ustar00samysamy--- linux-2.6.12-rc2-orig/fs/open.c 2005-04-04 18:37:52.000000000 +0200 +++ linux-2.6.12-rc2-fkt/fs/open.c 2005-05-21 01:10:55.551294597 +0200 @@ -24,6 +24,8 @@ #include #include +#include /* st */ + #include int vfs_statfs(struct super_block *sb, struct kstatfs *buf) @@ -939,6 +941,15 @@ asmlinkage long sys_open(const char __us flags |= O_LARGEFILE; #endif tmp = getname(filename); + /* st */ +#if defined(CONFIG_FKT) || defined(CONFIG_FKT_MODULE) + if (fkt_active & FKT_FILES_KEYMASK) { + unsigned int name[8]; + strncpy((char *)name,tmp,sizeof(name)); + fkt_header( (((unsigned int)(FKT_OPEN_ENTRY_CODE))<<8) | (12+sizeof(name)), + name[0],name[1],name[2],name[3],name[4],name[5],name[6],name[7]); + } +#endif /* (CONFIG_FKT) || defined(CONFIG_FKT_MODULE) */ fd = PTR_ERR(tmp); if (!IS_ERR(tmp)) { fd = get_unused_fd(); @@ -952,6 +963,7 @@ asmlinkage long sys_open(const char __us out: putname(tmp); } + FKT_PROBE1(FKT_FILES_KEYMASK,FKT_OPEN_EXIT_CODE,fd); return fd; out_error: @@ -1015,6 +1027,10 @@ asmlinkage long sys_close(unsigned int f { struct file * filp; struct files_struct *files = current->files; + int ret; + + /* st */ + FKT_PROBE1(FKT_FILES_KEYMASK,FKT_CLOSE_ENTRY_CODE,fd); spin_lock(&files->file_lock); if (fd >= files->max_fds) @@ -1026,10 +1042,15 @@ asmlinkage long sys_close(unsigned int f FD_CLR(fd, files->close_on_exec); __put_unused_fd(files, fd); spin_unlock(&files->file_lock); - return filp_close(filp, files); + ret = filp_close(filp, files); + /* st */ + FKT_PROBE1(FKT_FILES_KEYMASK,FKT_CLOSE_EXIT_CODE,ret); + return ret; out_unlock: spin_unlock(&files->file_lock); + /* st */ + FKT_PROBE1(FKT_FILES_KEYMASK,FKT_CLOSE_EXIT_CODE,-EBADF); return -EBADF; } fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/PaxHeaders/exec.c.patch0000644000000000000000000000007310271436743021544 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674337026 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/exec.c.patch0000644000175000017500000000145110271436743021227 0ustar00samysamy--- linux-2.6.12-rc2-orig/fs/exec.c 2005-04-04 18:38:07.000000000 +0200 +++ linux-2.6.12-rc2-fkt/fs/exec.c 2005-05-21 01:11:16.936017555 +0200 @@ -1,3 +1,4 @@ +/***** 08-Aug-03 st added fkt_always probe to do_execve *****/ /* * linux/fs/exec.c * @@ -56,6 +57,8 @@ #include #endif +#include + int core_uses_pid; char core_pattern[65] = "core"; /* The maximal length of core_pattern is also specified in sysctl.c */ @@ -1196,6 +1199,12 @@ int do_execve(char * filename, acct_update_integrals(current); update_mem_hiwater(current); kfree(bprm); + FKT_ALWAYS_PROBE4(FKT_KEYMASKALL,FKT_DO_EXECVE_CODE, + *(u32 *)¤t->comm[0], + *(u32 *)¤t->comm[4], + *(u32 *)¤t->comm[8], + *(u32 *)¤t->comm[12] + ); return retval; } fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/PaxHeaders/select.c.patch0000644000000000000000000000007310271436743022077 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674417932 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/select.c.patch0000644000175000017500000000234110271436743021561 0ustar00samysamy--- linux-2.6.12-rc2-orig/fs/select.c 2005-04-04 18:37:51.000000000 +0200 +++ linux-2.6.12-rc2-fkt/fs/select.c 2005-05-21 01:10:54.690426519 +0200 @@ -23,6 +23,8 @@ #include #include +#include /* st */ + #include #define ROUND_UP(x,y) (((x)+(y)-1)/(y)) @@ -298,6 +300,8 @@ sys_select(int n, fd_set __user *inp, fd long timeout; int ret, size, max_fdset; + FKT_PROBE1(FKT_FILES_KEYMASK,FKT_SELECT_ENTRY_CODE,n); /* st */ + timeout = MAX_SCHEDULE_TIMEOUT; if (tvp) { time_t sec, usec; @@ -383,6 +387,7 @@ sys_select(int n, fd_set __user *inp, fd out: select_bits_free(bits, size); out_nofds: + FKT_PROBE1(FKT_FILES_KEYMASK,FKT_SELECT_EXIT_CODE,ret); /* st */ return ret; } @@ -467,6 +472,8 @@ asmlinkage long sys_poll(struct pollfd _ if (nfds > current->files->max_fdset && nfds > OPEN_MAX) return -EINVAL; + FKT_PROBE2(FKT_FILES_KEYMASK,FKT_POLL_ENTRY_CODE,nfds,timeout); + if (timeout) { /* Careful about overflow in the intermediate values */ if ((unsigned long) timeout < MAX_SCHEDULE_TIMEOUT / HZ) @@ -530,5 +537,6 @@ out_fds: walk = pp; } poll_freewait(&table); + FKT_PROBE1(FKT_FILES_KEYMASK,FKT_POLL_EXIT_CODE,err); return err; } fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/PaxHeaders/buffer.c.patch0000644000000000000000000000007310271436743022071 xustar0029 atime=1746715490.29750953 30 ctime=1746716504.674315857 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/buffer.c.patch0000644000175000017500000000621510271436743021557 0ustar00samysamy--- linux-2.6.12-rc2-orig/fs/buffer.c 2005-04-04 18:38:24.000000000 +0200 +++ linux-2.6.12-rc2-fkt/fs/buffer.c 2005-05-21 01:11:37.106926520 +0200 @@ -1,3 +1,5 @@ +/***** 09-Aug-99 rdr add fkt probes *****/ + /* * linux/fs/buffer.c * @@ -41,6 +43,9 @@ #include #include +/* rdr */ +#include /* rdr */ + static int fsync_buffers_list(spinlock_t *lock, struct list_head *list); static void invalidate_bh_lrus(void); @@ -142,6 +147,8 @@ void end_buffer_write_sync(struct buffer } unlock_buffer(bh); put_bh(bh); + /* st */ + FKT_PROBE2(FKT_FKT_KEYMASK,FKT_END_IO_SYNC_CODE,atomic_read(&bh->b_count),bh->b_state); } /* @@ -337,6 +344,9 @@ asmlinkage long sys_fsync(unsigned int f struct address_space *mapping; int ret, err; + /* rdr */ + FKT_PROBE1(FKT_FILES_KEYMASK, FKT_FSYNC_ENTRY_CODE, fd); /* rdr */ + ret = -EBADF; file = fget(fd); if (!file) @@ -370,6 +380,10 @@ asmlinkage long sys_fsync(unsigned int f out_putf: fput(file); out: + + /* rdr */ + FKT_PROBE1(FKT_FILES_KEYMASK, FKT_FSYNC_EXIT_CODE, ret); /* rdr */ + return ret; } @@ -917,6 +931,9 @@ static int fsync_buffers_list(spinlock_t struct list_head tmp; int err = 0, err2; + /* st */ + FKT_PROBE0(FKT_FKT_KEYMASK,FKT_FSYNC_BUFFERS_LIST_ENTRY_CODE); + INIT_LIST_HEAD(&tmp); spin_lock(lock); @@ -956,6 +973,10 @@ static int fsync_buffers_list(spinlock_t spin_unlock(lock); err2 = osync_buffers_list(lock, list); + + /* st */ + FKT_PROBE1(FKT_FKT_KEYMASK,FKT_FSYNC_BUFFERS_LIST_EXIT_CODE,err?err:err2); + if (err) return err; else @@ -2981,6 +3002,68 @@ out: } EXPORT_SYMBOL(try_to_free_buffers); +/* st: let people determine whether a page's buffers have been written (at least + * once) */ +int buffers_dirty(struct page *page) { + int dirty = 1; + struct buffer_head *tmp, *bh; + spinlock_t *bd_lock = &page->mapping->private_lock; + + spin_lock(bd_lock); + if (!page_has_buffers(page)) { + spin_unlock(bd_lock); + return 0; + } + bh = page_buffers(page); + tmp = bh; + do { + if (test_bit(BH_Dirty,&tmp->b_state) || /* not queued yet */ + atomic_read(&tmp->b_count) || + test_bit(BH_Lock,&tmp->b_state)) + goto busy; + tmp = tmp->b_this_page; + } while (tmp != bh); + + dirty = 0; +busy: + spin_unlock(bd_lock); + return dirty; +} +EXPORT_SYMBOL(buffers_dirty); + +void wait_buffers_clean(struct page *page) { + struct buffer_head *tmp, *bh; + spinlock_t *bd_lock = &page->mapping->private_lock; + +restart: + spin_lock(bd_lock); + if (!page_has_buffers(page)) { + spin_unlock(bd_lock); + return; + } + + bh = page_buffers(page); + + tmp = bh; + do { + if (buffer_dirty(tmp)) { + spin_unlock(bd_lock); + printk(KERN_DEBUG "waiting on dirty buffer %p\n",tmp); + wait_on_bit(&bh->b_state, BH_Dirty, sync_buffer, TASK_UNINTERRUPTIBLE); + goto restart; + } + if (atomic_read(&tmp->b_count) || + buffer_locked(tmp)) { + spin_unlock(bd_lock); + wait_on_buffer(tmp); + goto restart; + } + tmp = tmp->b_this_page; + } while (tmp != bh); + spin_unlock(bd_lock); +} +EXPORT_SYMBOL(wait_buffers_clean); + int block_sync_page(struct page *page) { struct address_space *mapping; fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/PaxHeaders/read_write.c.patch0000644000000000000000000000007110271436743022743 xustar0029 atime=1746715490.29750953 28 ctime=1746716504.6744018 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/fs/read_write.c.patch0000644000175000017500000000374710271436743022442 0ustar00samysamy--- linux-2.6.12-rc2-orig/fs/read_write.c 2005-04-04 18:38:55.000000000 +0200 +++ linux-2.6.12-rc2-fkt/fs/read_write.c 2005-05-21 01:11:38.133769164 +0200 @@ -1,3 +1,5 @@ +/***** 15-Oct-00 rdr add fkt probes *****/ + /* * linux/fs/read_write.c * @@ -18,6 +20,9 @@ #include #include +/* rdr */ +#include /* rdr */ + struct file_operations generic_ro_fops = { .llseek = generic_file_llseek, .read = generic_file_read, @@ -130,6 +135,9 @@ asmlinkage off_t sys_lseek(unsigned int struct file * file; int fput_needed; + /* rdr */ + FKT_PROBE3(FKT_FILES_KEYMASK,FKT_LSEEK_ENTRY_CODE,fd,offset,origin);/*rdr */ + retval = -EBADF; file = fget_light(fd, &fput_needed); if (!file) @@ -144,6 +152,10 @@ asmlinkage off_t sys_lseek(unsigned int } fput_light(file, fput_needed); bad: + + /* rdr */ + FKT_PROBE1(FKT_FILES_KEYMASK, FKT_LSEEK_EXIT_CODE, retval); /* rdr */ + return retval; } @@ -315,6 +327,9 @@ asmlinkage ssize_t sys_read(unsigned int ssize_t ret = -EBADF; int fput_needed; + /* rdr achadda */ + FKT_PROBE3(FKT_FILES_KEYMASK,FKT_READ_ENTRY_CODE,fd,buf,count); /* rdr */ + file = fget_light(fd, &fput_needed); if (file) { loff_t pos = file_pos_read(file); @@ -323,6 +338,9 @@ asmlinkage ssize_t sys_read(unsigned int fput_light(file, fput_needed); } + /* rdr achadda */ + FKT_PROBE1(FKT_FILES_KEYMASK, FKT_READ_EXIT_CODE, ret); /* rdr */ + return ret; } EXPORT_SYMBOL_GPL(sys_read); @@ -333,6 +351,8 @@ asmlinkage ssize_t sys_write(unsigned in ssize_t ret = -EBADF; int fput_needed; + /* rdr achadda */ + FKT_PROBE3(FKT_FILES_KEYMASK,FKT_WRITE_ENTRY_CODE,fd,buf,count); /* rdr */ file = fget_light(fd, &fput_needed); if (file) { loff_t pos = file_pos_read(file); @@ -341,6 +361,8 @@ asmlinkage ssize_t sys_write(unsigned in fput_light(file, fput_needed); } + /* rdr vs */ + FKT_PROBE1(FKT_FILES_KEYMASK, FKT_WRITE_EXIT_CODE, ret); /* rdr */ return ret; } fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/PaxHeaders/include0000644000000000000000000000013215007143530020277 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/0002755000175000017500000000000015007143530020044 5ustar00samysamyfxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/PaxHeaders/linux0000644000000000000000000000013215007143530021436 xustar0030 mtime=1746716504.793403156 30 atime=1746716504.802098769 30 ctime=1746716504.793403156 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/linux/0002755000175000017500000000000015007143530021203 5ustar00samysamyfxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/linux/PaxHeaders/buffer_head.h.patch0000644000000000000000000000007410271436743025232 xustar0030 atime=1746715490.307509575 30 ctime=1746716504.674636072 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/linux/buffer_head.h.patch0000644000175000017500000000116510271436743024716 0ustar00samysamy--- linux-2.6.12-rc2-orig/include/linux/buffer_head.h 2005-04-04 18:40:04.000000000 +0200 +++ linux-2.6.12-rc2-fkt/include/linux/buffer_head.h 2005-05-21 01:12:00.946273325 +0200 @@ -145,6 +145,9 @@ void end_buffer_read_sync(struct buffer_ void end_buffer_write_sync(struct buffer_head *bh, int uptodate); void end_buffer_async_write(struct buffer_head *bh, int uptodate); +int buffers_dirty(struct page *); +void wait_buffers_clean(struct page *); + /* Things to do with buffers at mapping->private_list */ void mark_buffer_dirty_inode(struct buffer_head *bh, struct inode *inode); int inode_has_buffers(struct inode *); fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/linux/PaxHeaders/mm.h.patch0000644000000000000000000000007410271436743023411 xustar0030 atime=1746715490.307509575 30 ctime=1746716504.674672738 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/linux/mm.h.patch0000644000175000017500000000106010271436743023067 0ustar00samysamy--- linux-2.6.12-rc2-orig/include/linux/mm.h 2005-04-04 18:37:52.000000000 +0200 +++ linux-2.6.12-rc2-fkt/include/linux/mm.h 2005-05-21 01:10:55.129359256 +0200 @@ -341,8 +341,11 @@ static inline void get_page(struct page static inline void put_page(struct page *page) { - if (!PageReserved(page) && put_page_testzero(page)) - __page_cache_release(page); + if (test_bit(PG_FKT,&page->flags)) + put_page_testzero(page); + else + if (!PageReserved(page) && put_page_testzero(page)) + __page_cache_release(page); } #endif /* CONFIG_HUGETLB_PAGE */ fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/linux/PaxHeaders/interrupt.h.patch0000644000000000000000000000007410271436743025034 xustar0030 atime=1746715490.307509575 30 ctime=1746716504.674656837 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/linux/interrupt.h.patch0000644000175000017500000000061410271436743024516 0ustar00samysamy--- linux-2.6.12-rc2-orig/include/linux/interrupt.h 2005-04-04 18:38:20.000000000 +0200 +++ linux-2.6.12-rc2-fkt/include/linux/interrupt.h 2005-05-21 01:11:29.883033525 +0200 @@ -106,6 +106,8 @@ enum TIMER_SOFTIRQ, NET_TX_SOFTIRQ, NET_RX_SOFTIRQ, + FKT_SOFTIRQ, /* st for probes to wake up sendfile */ + /* *must the the same as in fkt_header.S */ SCSI_SOFTIRQ, TASKLET_SOFTIRQ }; fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/linux/PaxHeaders/pagemap.h.patch0000644000000000000000000000007410271436743024412 xustar0030 atime=1746715490.307509575 30 ctime=1746716504.674705232 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/linux/pagemap.h.patch0000644000175000017500000000125510271436743024076 0ustar00samysamy--- linux-2.6.12-rc2-orig/include/linux/pagemap.h 2005-04-04 18:37:51.000000000 +0200 +++ linux-2.6.12-rc2-fkt/include/linux/pagemap.h 2005-05-21 01:10:54.306485355 +0200 @@ -98,6 +98,14 @@ int add_to_page_cache_lru(struct page *p extern void remove_from_page_cache(struct page *page); extern void __remove_from_page_cache(struct page *page); +/* + * Bring a page into the cache, just for fast writing + */ +/* this locks the page and leave it locked */ +extern int checkin_cache_page(struct page *page, struct address_space *mapping, + unsigned long index, int gfp_mask); +extern void checkout_cache_page(struct page *page); + extern atomic_t nr_pagecache; #ifdef CONFIG_SMP fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/linux/PaxHeaders/page-flags.h.patch0000644000000000000000000000007410271436743025006 xustar0030 atime=1746715490.307509575 30 ctime=1746716504.674689066 fxt-0.3.15/kernel/linux-patches-2.6.12-rc2/include/linux/page-flags.h.patch0000644000175000017500000000075210271436743024473 0ustar00samysamy--- linux-2.6.12-rc2-orig/include/linux/page-flags.h 2005-04-04 18:39:00.000000000 +0200 +++ linux-2.6.12-rc2-fkt/include/linux/page-flags.h 2005-05-21 01:11:42.999023601 +0200 @@ -76,6 +76,7 @@ #define PG_reclaim 18 /* To be reclaimed asap */ #define PG_nosave_free 19 /* Free, should not be written */ #define PG_uncached 20 /* Page has been mapped as uncached */ +#define PG_FKT 23 /* FKT page */ /* * Global page accounting. One instance per CPU. Only unsigned longs are fxt-0.3.15/kernel/PaxHeaders/Makefile.config0000644000000000000000000000007310535307200015642 xustar0030 atime=1746715490.307509575 29 ctime=1746716504.67289495 fxt-0.3.15/kernel/Makefile.config0000644000175000017500000000037410535307200015330 0ustar00samysamy# # Modify this to suit your kernel location # INSTALL_LINUX_SOURCE=/lib/modules/$(shell uname -r)/build #INSTALL_LINUX_SOURCE=/usr/src/linux-2.6-fkt # either 2.4.21, 2.4.25, 2.6.3, 2.6.4, 2.6.5, 2.6.10, 2.6.11 or 2.6.12-rc2 KERN_VERSION=2.6.12-rc2 fxt-0.3.15/kernel/PaxHeaders/Makefile0000644000000000000000000000007310271436741014410 xustar0030 atime=1746715490.307509575 29 ctime=1746716504.67285992 fxt-0.3.15/kernel/Makefile0000644000175000017500000000630310271436741014074 0ustar00samysamyinclude Makefile.config # # Modify this if you want to build patches yourself # PATCH_PREFIX=$(KERN_VERSION) SYS_PATCH=$(PATCH_PREFIX)/sys.diff FS_PATCH=$(PATCH_PREFIX)/fs.diff NET_PATCH=$(PATCH_PREFIX)/net.diff NETDRIVER_3C59X_PATCH=$(PATCH_PREFIX)/netdriver-3c59x.diff NETDRIVER_ACENIC_PATCH=$(PATCH_PREFIX)/netdriver-acenic.diff NETDRIVER_TULIP_PATCH=$(PATCH_PREFIX)/netdriver-tulip.diff SCSIGEN_PATCH=$(PATCH_PREFIX)/scsigen.diff FKT_PATCH=$(PATCH_PREFIX)/fkt.diff APPLY_PATCHES_SCRIPT=apply_patches PATCHES=$(FKT_PATCH)\ $(SYS_PATCH)\ $(FS_PATCH)\ $(NET_PATCH)\ $(NETDRIVER_3C59X_PATCH)\ $(NETDRIVER_ACENIC_PATCH)\ $(NETDRIVER_TULIP_PATCH)\ $(SCSIGEN_PATCH) FKT_KERN_SOURCE=$(shell find linux-fkt -type f ! -path "*/SCCS/*" 2>/dev/null) LINUX_PATCHES=linux-patches-$(KERN_VERSION) # some help help: @echo Targets: @echo @echo " patches will make the patches for the different install" @echo " targets below" @echo @echo " install-fkt will install the fkt driver files in directory" @echo " \"$(INSTALL_LINUX_SOURCE)\"" @echo @echo " install-sys will patch the kernel to add helper functions and links" @echo " to fkt." @echo @echo " install-fs" @echo " install-net" @echo " install-netdriver-3c59x" @echo " install-netdriver-acenic" @echo " install-netdriver-tulip" @echo " install-scsigen will patch the kernel to add probes to the relevant part" # System patch, mandatory to get fkt working $(FKT_PATCH): $(FKT_KERN_SOURCE) @echo making $@ @mkdir -p `dirname $@` @mkdir linux @diff -urN linux linux-fkt > $@ || /bin/true @rmdir linux $(SYS_PATCH): \ $(shell find \ $(LINUX_PATCHES)/arch \ $(LINUX_PATCHES)/include/linux \ $(LINUX_PATCHES)/include/asm-i386 \ $(LINUX_PATCHES)/kernel \ $(LINUX_PATCHES)/mm \ $(LINUX_PATCHES)/fs/buffer.c.patch \ $(LINUX_PATCHES)/fs/exec.c.patch \ $(LINUX_PATCHES)/fs/read_write-sys.c.patch \ ! -path $(LINUX_PATCHES)/kernel/softirq.c.patch \ ! -path "*/SCCS/*" \ -type f 2>/dev/null | sort ) # File System patch $(FS_PATCH): \ $(shell find \ $(LINUX_PATCHES)/fs \ $(LINUX_PATCHES)/drivers/block \ ! -path $(LINUX_PATCHES)/fs/buffer.c.patch \ ! -path $(LINUX_PATCHES)/fs/exec.c.patch \ ! -path $(LINUX_PATCHES)/fs/read_write-sys.c.patch \ ! -path "*/SCCS/*" \ -type f 2>/dev/null) # TCP/IP patch $(NET_PATCH): \ $(shell find \ $(LINUX_PATCHES)/net \ $(LINUX_PATCHES)/kernel/softirq.c.patch \ $(LINUX_PATCHES)/include/net \ ! -path "*/SCCS/*" \ -type f 2>/dev/null) # some network drivers patch $(NETDRIVER_3C59X_PATCH): $(LINUX_PATCHES)/drivers/net/3c59x.c.patch $(NETDRIVER_ACENIC_PATCH): $(LINUX_PATCHES)/drivers/net/acenic.c.patch $(NETDRIVER_TULIP_PATCH): \ $(shell find \ $(LINUX_PATCHES)/drivers/net/tulip \ ! -path "*/SCCS/*" \ -type f 2>/dev/null) # scsi generic layer patch $(SCSIGEN_PATCH): \ $(shell find \ $(LINUX_PATCHES)/drivers/scsi \ ! -path "*/SCCS/*" \ -type f 2>/dev/null) patches: $(PATCHES) # # these are the real rules for all .diff targets # install-%: $(PATCH_PREFIX)/%.diff @echo applying $< @(cd $(INSTALL_LINUX_SOURCE) && patch -p1) < $< %.diff: @echo making $@ @mkdir -p `dirname $@` @cat /dev/null $^ > $@ # # time to clean... # clean: rm -fr $(KERN_VERSION) fxt-0.3.15/PaxHeaders/build-aux0000644000000000000000000000013215007143530013272 xustar0030 mtime=1746716504.724632026 30 atime=1746716504.802098769 30 ctime=1746716504.724632026 fxt-0.3.15/build-aux/0002755000175000017500000000000015007143530013037 5ustar00samysamyfxt-0.3.15/build-aux/PaxHeaders/install-sh0000644000000000000000000000013215007141561015352 xustar0030 mtime=1746715505.489864613 30 atime=1746715505.587578843 30 ctime=1746716504.655728458 fxt-0.3.15/build-aux/install-sh0000755000175000017500000003611515007141561015051 0ustar00samysamy#!/bin/sh # install - install a program, script, or datafile scriptversion=2024-06-19.01; # UTC # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # 'make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. tab=' ' nl=' ' IFS=" $tab$nl" # Set DOITPROG to "echo" to test this script. doit=${DOITPROG-} doit_exec=${doit:-exec} # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_mkdir= # Desired mode of installed file. mode=0755 # Create dirs (including intermediate dirs) using mode 755. # This is like GNU 'install' as of coreutils 8.32 (2020). mkdir_umask=22 backupsuffix= chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false is_target_a_directory=possibly usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -p pass -p to $cpprog. -s $stripprog installed files. -S SUFFIX attempt to back up existing files, with suffix SUFFIX. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG By default, rm is invoked with -f; when overridden with RMPROG, it's up to you to specify -f if you want it. If -S is not specified, no backups are attempted. Report bugs to . GNU Automake home page: . General help using GNU software: ." while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *"$tab"* | *"$nl"* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -p) cpprog="$cpprog -p";; -s) stripcmd=$stripprog;; -S) backupsuffix="$2" shift;; -t) is_target_a_directory=always dst_arg=$2 # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac shift;; -T) is_target_a_directory=never;; --version) echo "$0 (GNU Automake) $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done # We allow the use of options -d and -T together, by making -d # take the precedence; this is for compatibility with GNU install. if test -n "$dir_arg"; then if test -n "$dst_arg"; then echo "$0: target directory not allowed when installing a directory." >&2 exit 1 fi fi if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg # Protect names problematic for 'test' and other utilities. case $dst_arg in -* | [=\(\)!]) dst_arg=./$dst_arg;; esac done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call 'install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then if test $# -gt 1 || test "$is_target_a_directory" = always; then if test ! -d "$dst_arg"; then echo "$0: $dst_arg: Is not a directory." >&2 exit 1 fi fi fi if test -z "$dir_arg"; then do_exit='(exit $ret); exit $ret' trap "ret=129; $do_exit" 1 trap "ret=130; $do_exit" 2 trap "ret=141; $do_exit" 13 trap "ret=143; $do_exit" 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names problematic for 'test' and other utilities. case $src in -* | [=\(\)!]) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? # Don't chown directories that already exist. if test $dstdir_status = 0; then chowncmd="" fi else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # If destination is a directory, append the input filename. if test -d "$dst"; then if test "$is_target_a_directory" = never; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dstbase=`basename "$src"` case $dst in */) dst=$dst$dstbase;; *) dst=$dst/$dstbase;; esac dstdir_status=0 else dstdir=`dirname "$dst"` test -d "$dstdir" dstdir_status=$? fi fi case $dstdir in */) dstdirslash=$dstdir;; *) dstdirslash=$dstdir/;; esac obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false # The $RANDOM variable is not portable (e.g., dash). Use it # here however when possible just to lower collision chance. tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap ' ret=$? rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" 2>/dev/null exit $ret ' 0 # Because "mkdir -p" follows existing symlinks and we likely work # directly in world-writable /tmp, make sure that the '$tmpdir' # directory is successfully created first before we actually test # 'mkdir -p'. if (umask $mkdir_umask && $mkdirprog $mkdir_mode "$tmpdir" && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/a/b") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibility with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. test_tmpdir="$tmpdir/a" ls_ld_tmpdir=`ls -ld "$test_tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$test_tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$test_tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/a/b" "$tmpdir/a" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- "$tmpdir" 2>/dev/null fi trap '' 0;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; [-=\(\)!]*) prefix='./';; *) prefix='';; esac oIFS=$IFS IFS=/ set -f set fnord $dstdir shift set +f IFS=$oIFS prefixes= for d do test X"$d" = X && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=${dstdirslash}_inst.$$_ rmtmp=${dstdirslash}_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && { test -z "$stripcmd" || { # Create $dsttmp read-write so that cp doesn't create it read-only, # which would cause strip to fail. if test -z "$doit"; then : >"$dsttmp" # No need to fork-exec 'touch'. else $doit touch "$dsttmp" fi } } && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # If $backupsuffix is set, and the file being installed # already exists, attempt a backup. Don't worry if it fails, # e.g., if mv doesn't support -f. if test -n "$backupsuffix" && test -f "$dst"; then $doit $mvcmd -f "$dst" "$dst$backupsuffix" 2>/dev/null fi # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-time-zone: "UTC0" # time-stamp-end: "; # UTC" # End: fxt-0.3.15/build-aux/PaxHeaders/ltmain.sh0000644000000000000000000000013015007143516015171 xustar0030 mtime=1746716494.223995274 30 atime=1746716502.888756876 28 ctime=1746716504.6567872 fxt-0.3.15/build-aux/ltmain.sh0000755000175000017500000122276515007143516014703 0ustar00samysamy#! /usr/bin/env sh ## DO NOT EDIT - This file generated from ./build-aux/ltmain.in ## by inline-source v2019-02-19.15 # libtool (GNU libtool) 2.5.4 # Provide generalized library-building support services. # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996-2019, 2021-2024 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. # GNU Libtool 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. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program. If not, see . PROGRAM=libtool PACKAGE=libtool VERSION="2.5.4 Debian-2.5.4-4" package_revision=2.5.4 ## ------ ## ## Usage. ## ## ------ ## # Run './libtool --help' for help with using this script from the # command line. ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # After configure completes, it has a better idea of some of the # shell tools we need than the defaults used by the functions shared # with bootstrap, so set those here where they can still be over- # ridden by the user, but otherwise take precedence. : ${AUTOCONF="autoconf"} : ${AUTOMAKE="automake"} ## -------------------------- ## ## Source external libraries. ## ## -------------------------- ## # Much of our low-level functionality needs to be sourced from external # libraries, which are installed to $pkgauxdir. # Set a version string for this script. scriptversion=2024-12-01.17; # UTC # General shell script boiler plate, and helper functions. # Written by Gary V. Vaughan, 2004 # This is free software. There is NO warranty; not even for # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # Copyright (C) 2004-2019, 2021, 2023-2024 Bootstrap Authors # # This file is dual licensed under the terms of the MIT license # , and GPL version 2 or later # . You must apply one of # these licenses when using or redistributing this software or any of # the files within it. See the URLs above, or the file `LICENSE` # included in the Bootstrap distribution for the full license texts. # Please report bugs or propose patches to: # ## ------ ## ## Usage. ## ## ------ ## # Evaluate this file near the top of your script to gain access to # the functions and variables defined here: # # . `echo "$0" | ${SED-sed} 's|[^/]*$||'`/build-aux/funclib.sh # # If you need to override any of the default environment variable # settings, do that before evaluating this file. ## -------------------- ## ## Shell normalisation. ## ## -------------------- ## # Some shells need a little help to be as Bourne compatible as possible. # Before doing anything else, make sure all that help has been provided! DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix ;; esac fi # NLS nuisances: We save the old values in case they are required later. _G_user_locale= _G_safe_locale= for _G_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test set = \"\${$_G_var+set}\"; then save_$_G_var=\$$_G_var $_G_var=C export $_G_var _G_user_locale=\"$_G_var=\\\$save_\$_G_var; \$_G_user_locale\" _G_safe_locale=\"$_G_var=C; \$_G_safe_locale\" fi" done # These NLS vars are set unconditionally (bootstrap issue #24). Unset those # in case the environment reset is needed later and the $save_* variant is not # defined (see the code above). LC_ALL=C LANGUAGE=C export LANGUAGE LC_ALL # Make sure IFS has a sensible default sp=' ' nl=' ' IFS="$sp $nl" # There are apparently some systems that use ';' as a PATH separator! if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # func_unset VAR # -------------- # Portably unset VAR. # In some shells, an 'unset VAR' statement leaves a non-zero return # status if VAR is already unset, which might be problematic if the # statement is used at the end of a function (thus poisoning its return # value) or when 'set -e' is active (causing even a spurious abort of # the script in this case). func_unset () { { eval $1=; (eval unset $1) >/dev/null 2>&1 && eval unset $1 || : ; } } # Make sure CDPATH doesn't cause `cd` commands to output the target dir. func_unset CDPATH # Make sure ${,E,F}GREP behave sanely. func_unset GREP_OPTIONS ## ------------------------- ## ## Locate command utilities. ## ## ------------------------- ## # func_executable_p FILE # ---------------------- # Check that FILE is an executable regular file. func_executable_p () { test -f "$1" && test -x "$1" } # func_path_progs PROGS_LIST CHECK_FUNC [PATH] # -------------------------------------------- # Search for either a program that responds to --version with output # containing "GNU", or else returned by CHECK_FUNC otherwise, by # trying all the directories in PATH with each of the elements of # PROGS_LIST. # # CHECK_FUNC should accept the path to a candidate program, and # set $func_check_prog_result if it truncates its output less than # $_G_path_prog_max characters. func_path_progs () { _G_progs_list=$1 _G_check_func=$2 _G_PATH=${3-"$PATH"} _G_path_prog_max=0 _G_path_prog_found=false _G_save_IFS=$IFS; IFS=${PATH_SEPARATOR-:} for _G_dir in $_G_PATH; do IFS=$_G_save_IFS test -z "$_G_dir" && _G_dir=. for _G_prog_name in $_G_progs_list; do for _exeext in '' .EXE; do _G_path_prog=$_G_dir/$_G_prog_name$_exeext func_executable_p "$_G_path_prog" || continue case `"$_G_path_prog" --version 2>&1` in *GNU*) func_path_progs_result=$_G_path_prog _G_path_prog_found=: ;; *) $_G_check_func $_G_path_prog func_path_progs_result=$func_check_prog_result ;; esac $_G_path_prog_found && break 3 done done done IFS=$_G_save_IFS test -z "$func_path_progs_result" && { echo "no acceptable sed could be found in \$PATH" >&2 exit 1 } } # We want to be able to use the functions in this file before configure # has figured out where the best binaries are kept, which means we have # to search for them ourselves - except when the results are already set # where we skip the searches. # Unless the user overrides by setting SED, search the path for either GNU # sed, or the sed that truncates its output the least. test -z "$SED" && { _G_sed_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for _G_i in 1 2 3 4 5 6 7; do _G_sed_script=$_G_sed_script$nl$_G_sed_script done echo "$_G_sed_script" 2>/dev/null | sed 99q >conftest.sed _G_sed_script= func_check_prog_sed () { _G_path_prog=$1 _G_count=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo '' >> conftest.nl "$_G_path_prog" -f conftest.sed conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "sed gsed" func_check_prog_sed "$PATH:/usr/xpg4/bin" rm -f conftest.sed SED=$func_path_progs_result } # Unless the user overrides by setting GREP, search the path for either GNU # grep, or the grep that truncates its output the least. test -z "$GREP" && { func_check_prog_grep () { _G_path_prog=$1 _G_count=0 _G_path_prog_max=0 printf 0123456789 >conftest.in while : do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo 'GREP' >> conftest.nl "$_G_path_prog" -e 'GREP$' -e '-(cannot match)-' conftest.out 2>/dev/null || break diff conftest.out conftest.nl >/dev/null 2>&1 || break _G_count=`expr $_G_count + 1` if test "$_G_count" -gt "$_G_path_prog_max"; then # Best one so far, save it but keep looking for a better one func_check_prog_result=$_G_path_prog _G_path_prog_max=$_G_count fi # 10*(2^10) chars as input seems more than enough test 10 -lt "$_G_count" && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out } func_path_progs "grep ggrep" func_check_prog_grep "$PATH:/usr/xpg4/bin" GREP=$func_path_progs_result } ## ------------------------------- ## ## User overridable command paths. ## ## ------------------------------- ## # All uppercase variable names are used for environment variables. These # variables can be overridden by the user before calling a script that # uses them if a suitable command of that name is not already available # in the command search PATH. : ${CP="cp -f"} : ${ECHO="printf %s\n"} : ${EGREP="$GREP -E"} : ${FGREP="$GREP -F"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} ## -------------------- ## ## Useful sed snippets. ## ## -------------------- ## sed_dirname='s|/[^/]*$||' sed_basename='s|^.*/||' # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s|\([`"$\\]\)|\\\1|g' # Same as above, but do not quote variable references. sed_double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution that turns a string into a regex matching for the # string literally. sed_make_literal_regex='s|[].[^$\\*\/]|\\&|g' # Sed substitution that converts a w32 file name or path # that contains forward slashes, into one that contains # (escaped) backslashes. A very naive implementation. sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Re-'\' parameter expansions in output of sed_double_quote_subst that # were '\'-ed in input to the same. If an odd number of '\' preceded a # '$' in input to sed_double_quote_subst, that '$' was protected from # expansion. Since each input '\' is now two '\'s, look for any number # of runs of four '\'s followed by two '\'s and then a '$'. '\' that '$'. _G_bs='\\' _G_bs2='\\\\' _G_bs4='\\\\\\\\' _G_dollar='\$' sed_double_backslash="\ s/$_G_bs4/&\\ /g s/^$_G_bs2$_G_dollar/$_G_bs&/ s/\\([^$_G_bs]\\)$_G_bs2$_G_dollar/\\1$_G_bs2$_G_bs$_G_dollar/g s/\n//g" # require_check_ifs_backslash # --------------------------- # Check if we can use backslash as IFS='\' separator, and set # $check_ifs_backshlash_broken to ':' or 'false'. require_check_ifs_backslash=func_require_check_ifs_backslash func_require_check_ifs_backslash () { _G_save_IFS=$IFS IFS='\' _G_check_ifs_backshlash='a\\b' for _G_i in $_G_check_ifs_backshlash do case $_G_i in a) check_ifs_backshlash_broken=false ;; '') break ;; *) check_ifs_backshlash_broken=: break ;; esac done IFS=$_G_save_IFS require_check_ifs_backslash=: } ## ----------------- ## ## Global variables. ## ## ----------------- ## # Except for the global variables explicitly listed below, the following # functions in the '^func_' namespace, and the '^require_' namespace # variables initialised in the 'Resource management' section, sourcing # this file will not pollute your global namespace with anything # else. There's no portable way to scope variables in Bourne shell # though, so actually running these functions will sometimes place # results into a variable named after the function, and often use # temporary variables in the '^_G_' namespace. If you are careful to # avoid using those namespaces casually in your sourcing script, things # should continue to work as you expect. And, of course, you can freely # overwrite any of the functions or variables defined here before # calling anything to customize them. EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. # Allow overriding, eg assuming that you follow the convention of # putting '$debug_cmd' at the start of all your functions, you can get # bash to show function call trace with: # # debug_cmd='echo "${FUNCNAME[0]} $*" >&2' bash your-script-name debug_cmd=${debug_cmd-":"} exit_cmd=: # By convention, finish your script with: # # exit $exit_status # # so that you can set exit_status to non-zero if you want to indicate # something went wrong during execution without actually bailing out at # the point of failure. exit_status=$EXIT_SUCCESS # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath=$0 # The name of this program. progname=`$ECHO "$progpath" |$SED "$sed_basename"` # Make sure we have an absolute progpath for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=`$ECHO "$progpath" |$SED "$sed_dirname"` progdir=`cd "$progdir" && pwd` progpath=$progdir/$progname ;; *) _G_IFS=$IFS IFS=${PATH_SEPARATOR-:} for progdir in $PATH; do IFS=$_G_IFS test -x "$progdir/$progname" && break done IFS=$_G_IFS test -n "$progdir" || progdir=`pwd` progpath=$progdir/$progname ;; esac ## ----------------- ## ## Standard options. ## ## ----------------- ## # The following options affect the operation of the functions defined # below, and should be set appropriately depending on run-time para- # meters passed on the command line. opt_dry_run=false opt_quiet=false opt_verbose=false # Categories 'all' and 'none' are always available. Append any others # you will pass as the first argument to func_warning from your own # code. warning_categories= # By default, display warnings according to 'opt_warning_types'. Set # 'warning_func' to ':' to elide all warnings, or func_fatal_error to # treat the next displayed warning as a fatal error. warning_func=func_warn_and_continue # Set to 'all' to display all warnings, 'none' to suppress all # warnings, or a space delimited list of some subset of # 'warning_categories' to display only the listed warnings. opt_warning_types=all ## -------------------- ## ## Resource management. ## ## -------------------- ## # This section contains definitions for functions that each ensure a # particular resource (a file, or a non-empty configuration variable for # example) is available, and if appropriate to extract default values # from pertinent package files. Call them using their associated # 'require_*' variable to ensure that they are executed, at most, once. # # It's entirely deliberate that calling these functions can set # variables that don't obey the namespace limitations obeyed by the rest # of this file, in order that that they be as useful as possible to # callers. # require_term_colors # ------------------- # Allow display of bold text on terminals that support it. require_term_colors=func_require_term_colors func_require_term_colors () { $debug_cmd test -t 1 && { # COLORTERM and USE_ANSI_COLORS environment variables take # precedence, because most terminfo databases neglect to describe # whether color sequences are supported. test -n "${COLORTERM+set}" && : ${USE_ANSI_COLORS="1"} if test 1 = "$USE_ANSI_COLORS"; then # Standard ANSI escape sequences tc_reset='' tc_bold=''; tc_standout='' tc_red=''; tc_green='' tc_blue=''; tc_cyan='' else # Otherwise trust the terminfo database after all. test -n "`tput sgr0 2>/dev/null`" && { tc_reset=`tput sgr0` test -n "`tput bold 2>/dev/null`" && tc_bold=`tput bold` tc_standout=$tc_bold test -n "`tput smso 2>/dev/null`" && tc_standout=`tput smso` test -n "`tput setaf 1 2>/dev/null`" && tc_red=`tput setaf 1` test -n "`tput setaf 2 2>/dev/null`" && tc_green=`tput setaf 2` test -n "`tput setaf 4 2>/dev/null`" && tc_blue=`tput setaf 4` test -n "`tput setaf 5 2>/dev/null`" && tc_cyan=`tput setaf 5` } fi } require_term_colors=: } ## ----------------- ## ## Function library. ## ## ----------------- ## # This section contains a variety of useful functions to call in your # scripts. Take note of the portable wrappers for features provided by # some modern shells, which will fall back to slower equivalents on # less featureful shells. # func_append VAR VALUE # --------------------- # Append VALUE onto the existing contents of VAR. # _G_HAVE_PLUSEQ_OP # Can be empty, in which case the shell is probed, "yes" if += is # usable or anything else if it does not work. if test -z "$_G_HAVE_PLUSEQ_OP" && \ __PLUSEQ_TEST="a" && \ __PLUSEQ_TEST+=" b" 2>/dev/null && \ test "a b" = "$__PLUSEQ_TEST"; then _G_HAVE_PLUSEQ_OP=yes fi if test yes = "$_G_HAVE_PLUSEQ_OP" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_append () { $debug_cmd eval "$1+=\$2" }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_append () { $debug_cmd eval "$1=\$$1\$2" } fi # func_append_quoted VAR VALUE # ---------------------------- # Quote VALUE and append to the end of shell variable VAR, separated # by a space. if test yes = "$_G_HAVE_PLUSEQ_OP"; then eval 'func_append_quoted () { $debug_cmd func_quote_arg pretty "$2" eval "$1+=\\ \$func_quote_arg_result" }' else func_append_quoted () { $debug_cmd func_quote_arg pretty "$2" eval "$1=\$$1\\ \$func_quote_arg_result" } fi # func_append_uniq VAR VALUE # -------------------------- # Append unique VALUE onto the existing contents of VAR, assuming # entries are delimited by the first character of VALUE. For example: # # func_append_uniq options " --another-option option-argument" # # will only append to $options if " --another-option option-argument " # is not already present somewhere in $options already (note spaces at # each end implied by leading space in second argument). func_append_uniq () { $debug_cmd eval _G_current_value='`$ECHO $'$1'`' _G_delim=`expr "$2" : '\(.\)'` case $_G_delim$_G_current_value$_G_delim in *"$2$_G_delim"*) ;; *) func_append "$@" ;; esac } # func_arith TERM... # ------------------ # Set func_arith_result to the result of evaluating TERMs. test -z "$_G_HAVE_ARITH_OP" \ && (eval 'test 2 = $(( 1 + 1 ))') 2>/dev/null \ && _G_HAVE_ARITH_OP=yes if test yes = "$_G_HAVE_ARITH_OP"; then eval 'func_arith () { $debug_cmd func_arith_result=$(( $* )) }' else func_arith () { $debug_cmd func_arith_result=`expr "$@"` } fi # func_basename FILE # ------------------ # Set func_basename_result to FILE with everything up to and including # the last / stripped. if test yes = "$_G_HAVE_XSI_OPS"; then # If this shell supports suffix pattern removal, then use it to avoid # forking. Hide the definitions single quotes in case the shell chokes # on unsupported syntax... _b='func_basename_result=${1##*/}' _d='case $1 in */*) func_dirname_result=${1%/*}$2 ;; * ) func_dirname_result=$3 ;; esac' else # ...otherwise fall back to using sed. _b='func_basename_result=`$ECHO "$1" |$SED "$sed_basename"`' _d='func_dirname_result=`$ECHO "$1" |$SED "$sed_dirname"` if test "X$func_dirname_result" = "X$1"; then func_dirname_result=$3 else func_append func_dirname_result "$2" fi' fi eval 'func_basename () { $debug_cmd '"$_b"' }' # func_dirname FILE APPEND NONDIR_REPLACEMENT # ------------------------------------------- # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. eval 'func_dirname () { $debug_cmd '"$_d"' }' # func_dirname_and_basename FILE APPEND NONDIR_REPLACEMENT # -------------------------------------------------------- # Perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value returned in "$func_basename_result" # For efficiency, we do not delegate to the functions above but instead # duplicate the functionality here. eval 'func_dirname_and_basename () { $debug_cmd '"$_b"' '"$_d"' }' # func_echo ARG... # ---------------- # Echo program name prefixed message. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname: $_G_line" done IFS=$func_echo_IFS } # func_echo_all ARG... # -------------------- # Invoke $ECHO with all args, space-separated. func_echo_all () { $ECHO "$*" } # func_echo_infix_1 INFIX ARG... # ------------------------------ # Echo program name, followed by INFIX on the first line, with any # additional lines not showing INFIX. func_echo_infix_1 () { $debug_cmd $require_term_colors _G_infix=$1; shift _G_indent=$_G_infix _G_prefix="$progname: $_G_infix: " _G_message=$* # Strip color escape sequences before counting printable length for _G_tc in "$tc_reset" "$tc_bold" "$tc_standout" "$tc_red" "$tc_green" "$tc_blue" "$tc_cyan" do test -n "$_G_tc" && { _G_esc_tc=`$ECHO "$_G_tc" | $SED "$sed_make_literal_regex"` _G_indent=`$ECHO "$_G_indent" | $SED "s|$_G_esc_tc||g"` } done _G_indent="$progname: "`echo "$_G_indent" | $SED 's|.| |g'`" " ## exclude from sc_prohibit_nested_quotes func_echo_infix_1_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_infix_1_IFS $ECHO "$_G_prefix$tc_bold$_G_line$tc_reset" >&2 _G_prefix=$_G_indent done IFS=$func_echo_infix_1_IFS } # func_error ARG... # ----------------- # Echo program name prefixed message to standard error. func_error () { $debug_cmd $require_term_colors func_echo_infix_1 " $tc_standout${tc_red}error$tc_reset" "$*" >&2 } # func_fatal_error ARG... # ----------------------- # Echo program name prefixed message to standard error, and exit. func_fatal_error () { $debug_cmd func_error "$*" exit $EXIT_FAILURE } # func_grep EXPRESSION FILENAME # ----------------------------- # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $debug_cmd $GREP "$1" "$2" >/dev/null 2>&1 } # func_len STRING # --------------- # Set func_len_result to the length of STRING. STRING may not # start with a hyphen. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_len () { $debug_cmd func_len_result=${#1} }' else func_len () { $debug_cmd func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } fi # func_mkdir_p DIRECTORY-PATH # --------------------------- # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { $debug_cmd _G_directory_path=$1 _G_dir_list= if test -n "$_G_directory_path" && test : != "$opt_dry_run"; then # Protect directory names starting with '-' case $_G_directory_path in -*) _G_directory_path=./$_G_directory_path ;; esac # While some portion of DIR does not yet exist... while test ! -d "$_G_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list in case some portion of path contains whitespace. _G_dir_list=$_G_directory_path:$_G_dir_list # If the last portion added has no slash in it, the list is done case $_G_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop _G_directory_path=`$ECHO "$_G_directory_path" | $SED -e "$sed_dirname"` done _G_dir_list=`$ECHO "$_G_dir_list" | $SED 's|:*$||'` func_mkdir_p_IFS=$IFS; IFS=: for _G_dir in $_G_dir_list; do IFS=$func_mkdir_p_IFS # mkdir can fail with a 'File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$_G_dir" 2>/dev/null || : done IFS=$func_mkdir_p_IFS # Bail out if we (or some other process) failed to create a directory. test -d "$_G_directory_path" || \ func_fatal_error "Failed to create '$1'" fi } # func_mktempdir [BASENAME] # ------------------------- # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, BASENAME is the basename for that directory. func_mktempdir () { $debug_cmd _G_template=${TMPDIR-/tmp}/${1-$progname} if test : = "$opt_dry_run"; then # Return a directory name, but don't create it in dry-run mode _G_tmpdir=$_G_template-$$ else # If mktemp works, use that first and foremost _G_tmpdir=`mktemp -d "$_G_template-XXXXXXXX" 2>/dev/null` if test ! -d "$_G_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race _G_tmpdir=$_G_template-${RANDOM-0}$$ func_mktempdir_umask=`umask` umask 0077 $MKDIR "$_G_tmpdir" umask $func_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$_G_tmpdir" || \ func_fatal_error "cannot create temporary directory '$_G_tmpdir'" fi $ECHO "$_G_tmpdir" } # func_normal_abspath PATH # ------------------------ # Remove doubled-up and trailing slashes, "." path components, # and cancel out any ".." path components in PATH after making # it an absolute path. func_normal_abspath () { $debug_cmd # These SED scripts presuppose an absolute path with a trailing slash. _G_pathcar='s|^/\([^/]*\).*$|\1|' _G_pathcdr='s|^/[^/]*||' _G_removedotparts=':dotsl s|/\./|/|g t dotsl s|/\.$|/|' _G_collapseslashes='s|/\{1,\}|/|g' _G_finalslash='s|/*$|/|' # Start from root dir and reassemble the path. func_normal_abspath_result= func_normal_abspath_tpath=$1 func_normal_abspath_altnamespace= case $func_normal_abspath_tpath in "") # Empty path, that just means $cwd. func_stripname '' '/' "`pwd`" func_normal_abspath_result=$func_stripname_result return ;; # The next three entries are used to spot a run of precisely # two leading slashes without using negated character classes; # we take advantage of case's first-match behaviour. ///*) # Unusual form of absolute path, do nothing. ;; //*) # Not necessarily an ordinary path; POSIX reserves leading '//' # and for example Cygwin uses it to access remote file shares # over CIFS/SMB, so we conserve a leading double slash if found. func_normal_abspath_altnamespace=/ ;; /*) # Absolute path, do nothing. ;; *) # Relative path, prepend $cwd. func_normal_abspath_tpath=`pwd`/$func_normal_abspath_tpath ;; esac # Cancel out all the simple stuff to save iterations. We also want # the path to end with a slash for ease of parsing, so make sure # there is one (and only one) here. func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_removedotparts" -e "$_G_collapseslashes" -e "$_G_finalslash"` while :; do # Processed it all yet? if test / = "$func_normal_abspath_tpath"; then # If we ascended to the root using ".." the result may be empty now. if test -z "$func_normal_abspath_result"; then func_normal_abspath_result=/ fi break fi func_normal_abspath_tcomponent=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcar"` func_normal_abspath_tpath=`$ECHO "$func_normal_abspath_tpath" | $SED \ -e "$_G_pathcdr"` # Figure out what to do with it case $func_normal_abspath_tcomponent in "") # Trailing empty path component, ignore it. ;; ..) # Parent dir; strip last assembled component from result. func_dirname "$func_normal_abspath_result" func_normal_abspath_result=$func_dirname_result ;; *) # Actual path component, append it. func_append func_normal_abspath_result "/$func_normal_abspath_tcomponent" ;; esac done # Restore leading double-slash if one was found on entry. func_normal_abspath_result=$func_normal_abspath_altnamespace$func_normal_abspath_result } # func_notquiet ARG... # -------------------- # Echo program name prefixed message only when not in quiet mode. func_notquiet () { $debug_cmd $opt_quiet || func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_relative_path SRCDIR DSTDIR # -------------------------------- # Set func_relative_path_result to the relative path from SRCDIR to DSTDIR. func_relative_path () { $debug_cmd func_relative_path_result= func_normal_abspath "$1" func_relative_path_tlibdir=$func_normal_abspath_result func_normal_abspath "$2" func_relative_path_tbindir=$func_normal_abspath_result # Ascend the tree starting from libdir while :; do # check if we have found a prefix of bindir case $func_relative_path_tbindir in $func_relative_path_tlibdir) # found an exact match func_relative_path_tcancelled= break ;; $func_relative_path_tlibdir*) # found a matching prefix func_stripname "$func_relative_path_tlibdir" '' "$func_relative_path_tbindir" func_relative_path_tcancelled=$func_stripname_result if test -z "$func_relative_path_result"; then func_relative_path_result=. fi break ;; *) func_dirname $func_relative_path_tlibdir func_relative_path_tlibdir=$func_dirname_result if test -z "$func_relative_path_tlibdir"; then # Have to descend all the way to the root! func_relative_path_result=../$func_relative_path_result func_relative_path_tcancelled=$func_relative_path_tbindir break fi func_relative_path_result=../$func_relative_path_result ;; esac done # Now calculate path; take care to avoid doubling-up slashes. func_stripname '' '/' "$func_relative_path_result" func_relative_path_result=$func_stripname_result func_stripname '/' '/' "$func_relative_path_tcancelled" if test -n "$func_stripname_result"; then func_append func_relative_path_result "/$func_stripname_result" fi # Normalisation. If bindir is libdir, return '.' else relative path. if test -n "$func_relative_path_result"; then func_stripname './' '' "$func_relative_path_result" func_relative_path_result=$func_stripname_result fi test -n "$func_relative_path_result" || func_relative_path_result=. : } # func_quote_portable EVAL ARG # ---------------------------- # Internal function to portably implement func_quote_arg. Note that we still # keep attention to performance here so we as much as possible try to avoid # calling sed binary (so far O(N) complexity as long as func_append is O(1)). func_quote_portable () { $debug_cmd $require_check_ifs_backslash func_quote_portable_result=$2 # one-time-loop (easy break) while true do if $1; then func_quote_portable_result=`$ECHO "$2" | $SED \ -e "$sed_double_quote_subst" -e "$sed_double_backslash"` break fi # Quote for eval. case $func_quote_portable_result in *[\\\`\"\$]*) # Fallback to sed for $func_check_bs_ifs_broken=:, or when the string # contains the shell wildcard characters. case $check_ifs_backshlash_broken$func_quote_portable_result in :*|*[\[\*\?]*) func_quote_portable_result=`$ECHO "$func_quote_portable_result" \ | $SED "$sed_quote_subst"` break ;; esac func_quote_portable_old_IFS=$IFS for _G_char in '\' '`' '"' '$' do # STATE($1) PREV($2) SEPARATOR($3) set start "" "" func_quote_portable_result=dummy"$_G_char$func_quote_portable_result$_G_char"dummy IFS=$_G_char for _G_part in $func_quote_portable_result do case $1 in quote) func_append func_quote_portable_result "$3$2" set quote "$_G_part" "\\$_G_char" ;; start) set first "" "" func_quote_portable_result= ;; first) set quote "$_G_part" "" ;; esac done done IFS=$func_quote_portable_old_IFS ;; *) ;; esac break done func_quote_portable_unquoted_result=$func_quote_portable_result case $func_quote_portable_result in # double-quote args containing shell metacharacters to delay # word splitting, command substitution and variable expansion # for a subsequent eval. # many bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") func_quote_portable_result=\"$func_quote_portable_result\" ;; esac } # func_quotefast_eval ARG # ----------------------- # Quote one ARG (internal). This is equivalent to 'func_quote_arg eval ARG', # but optimized for speed. Result is stored in $func_quotefast_eval. if test xyes = `(x=; printf -v x %q yes; echo x"$x") 2>/dev/null`; then printf -v _GL_test_printf_tilde %q '~' if test '\~' = "$_GL_test_printf_tilde"; then func_quotefast_eval () { printf -v func_quotefast_eval_result %q "$1" } else # Broken older Bash implementations. Make those faster too if possible. func_quotefast_eval () { case $1 in '~'*) func_quote_portable false "$1" func_quotefast_eval_result=$func_quote_portable_result ;; *) printf -v func_quotefast_eval_result %q "$1" ;; esac } fi else func_quotefast_eval () { func_quote_portable false "$1" func_quotefast_eval_result=$func_quote_portable_result } fi # func_quote_arg MODEs ARG # ------------------------ # Quote one ARG to be evaled later. MODEs argument may contain zero or more # specifiers listed below separated by ',' character. This function returns two # values: # i) func_quote_arg_result # double-quoted (when needed), suitable for a subsequent eval # ii) func_quote_arg_unquoted_result # has all characters that are still active within double # quotes backslashified. Available only if 'unquoted' is specified. # # Available modes: # ---------------- # 'eval' (default) # - escape shell special characters # 'expand' # - the same as 'eval'; but do not quote variable references # 'pretty' # - request aesthetic output, i.e. '"a b"' instead of 'a\ b'. This might # be used later in func_quote to get output like: 'echo "a b"' instead # of 'echo a\ b'. This is slower than default on some shells. # 'unquoted' # - produce also $func_quote_arg_unquoted_result which does not contain # wrapping double-quotes. # # Examples for 'func_quote_arg pretty,unquoted string': # # string | *_result | *_unquoted_result # ------------+-----------------------+------------------- # " | \" | \" # a b | "a b" | a b # "a b" | "\"a b\"" | \"a b\" # * | "*" | * # z="${x-$y}" | "z=\"\${x-\$y}\"" | z=\"\${x-\$y}\" # # Examples for 'func_quote_arg pretty,unquoted,expand string': # # string | *_result | *_unquoted_result # --------------+---------------------+-------------------- # z="${x-$y}" | "z=\"${x-$y}\"" | z=\"${x-$y}\" func_quote_arg () { _G_quote_expand=false case ,$1, in *,expand,*) _G_quote_expand=: ;; esac case ,$1, in *,pretty,*|*,expand,*|*,unquoted,*) func_quote_portable $_G_quote_expand "$2" func_quote_arg_result=$func_quote_portable_result func_quote_arg_unquoted_result=$func_quote_portable_unquoted_result ;; *) # Faster quote-for-eval for some shells. func_quotefast_eval "$2" func_quote_arg_result=$func_quotefast_eval_result ;; esac } # func_quote MODEs ARGs... # ------------------------ # Quote all ARGs to be evaled later and join them into single command. See # func_quote_arg's description for more info. func_quote () { $debug_cmd _G_func_quote_mode=$1 ; shift func_quote_result= while test 0 -lt $#; do func_quote_arg "$_G_func_quote_mode" "$1" if test -n "$func_quote_result"; then func_append func_quote_result " $func_quote_arg_result" else func_append func_quote_result "$func_quote_arg_result" fi shift done } # func_stripname PREFIX SUFFIX NAME # --------------------------------- # strip PREFIX and SUFFIX from NAME, and store in func_stripname_result. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_stripname () { $debug_cmd # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary variable first. func_stripname_result=$3 func_stripname_result=${func_stripname_result#"$1"} func_stripname_result=${func_stripname_result%"$2"} }' else func_stripname () { $debug_cmd case $2 in .*) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%\\\\$2\$%%"`;; *) func_stripname_result=`$ECHO "$3" | $SED -e "s%^$1%%" -e "s%$2\$%%"`;; esac } fi # func_show_eval CMD [FAIL_EXP] # ----------------------------- # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} func_quote_arg pretty,expand "$_G_cmd" eval "func_notquiet $func_quote_arg_result" $opt_dry_run || { eval "$_G_cmd" _G_status=$? if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_show_eval_locale CMD [FAIL_EXP] # ------------------------------------ # Unless opt_quiet is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { $debug_cmd _G_cmd=$1 _G_fail_exp=${2-':'} $opt_quiet || { func_quote_arg expand,pretty "$_G_cmd" eval "func_echo $func_quote_arg_result" } $opt_dry_run || { eval "$_G_user_locale $_G_cmd" _G_status=$? eval "$_G_safe_locale" if test 0 -ne "$_G_status"; then eval "(exit $_G_status); $_G_fail_exp" fi } } # func_tr_sh # ---------- # Turn $1 into a string suitable for a shell variable name. # Result is stored in $func_tr_sh_result. All characters # not in the set a-zA-Z0-9_ are replaced with '_'. Further, # if $1 begins with a digit, a '_' is prepended as well. func_tr_sh () { $debug_cmd case $1 in [0-9]* | *[!a-zA-Z0-9_]*) func_tr_sh_result=`$ECHO "$1" | $SED -e 's/^\([0-9]\)/_\1/' -e 's/[^a-zA-Z0-9_]/_/g'` ;; * ) func_tr_sh_result=$1 ;; esac } # func_verbose ARG... # ------------------- # Echo program name prefixed message in verbose mode only. func_verbose () { $debug_cmd $opt_verbose && func_echo "$*" : } # func_warn_and_continue ARG... # ----------------------------- # Echo program name prefixed warning message to standard error. func_warn_and_continue () { $debug_cmd $require_term_colors func_echo_infix_1 "${tc_red}warning$tc_reset" "$*" >&2 } # func_warning CATEGORY ARG... # ---------------------------- # Echo program name prefixed warning message to standard error. Warning # messages can be filtered according to CATEGORY, where this function # elides messages where CATEGORY is not listed in the global variable # 'opt_warning_types'. func_warning () { $debug_cmd # CATEGORY must be in the warning_categories list! case " $warning_categories " in *" $1 "*) ;; *) func_internal_error "invalid warning category '$1'" ;; esac _G_category=$1 shift case " $opt_warning_types " in *" $_G_category "*) $warning_func ${1+"$@"} ;; esac } # func_sort_ver VER1 VER2 # ----------------------- # 'sort -V' is not generally available. # Note this deviates from the version comparison in automake # in that it treats 1.5 < 1.5.0, and treats 1.4.4a < 1.4-p3a # but this should suffice as we won't be specifying old # version formats or redundant trailing .0 in bootstrap.conf. # If we did want full compatibility then we should probably # use m4_version_compare from autoconf. func_sort_ver () { $debug_cmd printf '%s\n%s\n' "$1" "$2" \ | sort -t. -k 1,1n -k 2,2n -k 3,3n -k 4,4n -k 5,5n -k 6,6n -k 7,7n -k 8,8n -k 9,9n } # func_lt_ver PREV CURR # --------------------- # Return true if PREV and CURR are in the correct order according to # func_sort_ver, otherwise false. Use it like this: # # func_lt_ver "$prev_ver" "$proposed_ver" || func_fatal_error "..." func_lt_ver () { $debug_cmd test "x$1" = x`func_sort_ver "$1" "$2" | $SED 1q` } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "10/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: #! /bin/sh # A portable, pluggable option parser for Bourne shell. # Written by Gary V. Vaughan, 2010 # This is free software. There is NO warranty; not even for # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # # Copyright (C) 2010-2019, 2021, 2023-2024 Bootstrap Authors # # This file is dual licensed under the terms of the MIT license # , and GPL version 2 or later # . You must apply one of # these licenses when using or redistributing this software or any of # the files within it. See the URLs above, or the file `LICENSE` # included in the Bootstrap distribution for the full license texts. # Please report bugs or propose patches to: # # Set a version string for this script. scriptversion=2019-02-19.15; # UTC ## ------ ## ## Usage. ## ## ------ ## # This file is a library for parsing options in your shell scripts along # with assorted other useful supporting features that you can make use # of too. # # For the simplest scripts you might need only: # # #!/bin/sh # . relative/path/to/funclib.sh # . relative/path/to/options-parser # scriptversion=1.0 # func_options ${1+"$@"} # eval set dummy "$func_options_result"; shift # ...rest of your script... # # In order for the '--version' option to work, you will need to have a # suitably formatted comment like the one at the top of this file # starting with '# Written by ' and ending with '# Copyright'. # # For '-h' and '--help' to work, you will also need a one line # description of your script's purpose in a comment directly above the # '# Written by ' line, like the one at the top of this file. # # The default options also support '--debug', which will turn on shell # execution tracing (see the comment above debug_cmd below for another # use), and '--verbose' and the func_verbose function to allow your script # to display verbose messages only when your user has specified # '--verbose'. # # After sourcing this file, you can plug in processing for additional # options by amending the variables from the 'Configuration' section # below, and following the instructions in the 'Option parsing' # section further down. ## -------------- ## ## Configuration. ## ## -------------- ## # You should override these variables in your script after sourcing this # file so that they reflect the customisations you have added to the # option parser. # The usage line for option parsing errors and the start of '-h' and # '--help' output messages. You can embed shell variables for delayed # expansion at the time the message is displayed, but you will need to # quote other shell meta-characters carefully to prevent them being # expanded when the contents are evaled. usage='$progpath [OPTION]...' # Short help message in response to '-h' and '--help'. Add to this or # override it after sourcing this library to reflect the full set of # options your script accepts. usage_message="\ --debug enable verbose shell tracing -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -v, --verbose verbosely report processing --version print version information and exit -h, --help print short or long help message and exit " # Additional text appended to 'usage_message' in response to '--help'. long_help_message=" Warning categories include: 'all' show all warnings 'none' turn off all the warnings 'error' warnings are treated as fatal errors" # Help message printed before fatal option parsing errors. fatal_help="Try '\$progname --help' for more information." ## ------------------------- ## ## Hook function management. ## ## ------------------------- ## # This section contains functions for adding, removing, and running hooks # in the main code. A hook is just a list of function names that can be # run in order later on. # func_hookable FUNC_NAME # ----------------------- # Declare that FUNC_NAME will run hooks added with # 'func_add_hook FUNC_NAME ...'. func_hookable () { $debug_cmd func_append hookable_fns " $1" } # func_add_hook FUNC_NAME HOOK_FUNC # --------------------------------- # Request that FUNC_NAME call HOOK_FUNC before it returns. FUNC_NAME must # first have been declared "hookable" by a call to 'func_hookable'. func_add_hook () { $debug_cmd case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not accept hook functions." ;; esac eval func_append ${1}_hooks '" $2"' } # func_remove_hook FUNC_NAME HOOK_FUNC # ------------------------------------ # Remove HOOK_FUNC from the list of hook functions to be called by # FUNC_NAME. func_remove_hook () { $debug_cmd eval ${1}_hooks='`$ECHO "\$'$1'_hooks" |$SED "s| '$2'||"`' } # func_propagate_result FUNC_NAME_A FUNC_NAME_B # --------------------------------------------- # If the *_result variable of FUNC_NAME_A _is set_, assign its value to # *_result variable of FUNC_NAME_B. func_propagate_result () { $debug_cmd func_propagate_result_result=: if eval "test \"\${${1}_result+set}\" = set" then eval "${2}_result=\$${1}_result" else func_propagate_result_result=false fi } # func_run_hooks FUNC_NAME [ARG]... # --------------------------------- # Run all hook functions registered to FUNC_NAME. # It's assumed that the list of hook functions contains nothing more # than a whitespace-delimited list of legal shell function names, and # no effort is wasted trying to catch shell meta-characters or preserve # whitespace. func_run_hooks () { $debug_cmd _G_rc_run_hooks=false case " $hookable_fns " in *" $1 "*) ;; *) func_fatal_error "'$1' does not support hook functions." ;; esac eval _G_hook_fns=\$$1_hooks; shift for _G_hook in $_G_hook_fns; do func_unset "${_G_hook}_result" eval $_G_hook '${1+"$@"}' func_propagate_result $_G_hook func_run_hooks if $func_propagate_result_result; then eval set dummy "$func_run_hooks_result"; shift fi done } ## --------------- ## ## Option parsing. ## ## --------------- ## # In order to add your own option parsing hooks, you must accept the # full positional parameter list from your hook function. You may remove # or edit any options that you action, and then pass back the remaining # unprocessed options in '_result', escaped # suitably for 'eval'. # # The '_result' variable is automatically unset # before your hook gets called; for best performance, only set the # *_result variable when necessary (i.e. don't call the 'func_quote' # function unnecessarily because it can be an expensive operation on some # machines). # # Like this: # # my_options_prep () # { # $debug_cmd # # # Extend the existing usage message. # usage_message=$usage_message' # -s, --silent don'\''t print informational messages # ' # # No change in '$@' (ignored completely by this hook). Leave # # my_options_prep_result variable intact. # } # func_add_hook func_options_prep my_options_prep # # # my_silent_option () # { # $debug_cmd # # args_changed=false # # # Note that, for efficiency, we parse as many options as we can # # recognise in a loop before passing the remainder back to the # # caller on the first unrecognised argument we encounter. # while test $# -gt 0; do # opt=$1; shift # case $opt in # --silent|-s) opt_silent=: # args_changed=: # ;; # # Separate non-argument short options: # -s*) func_split_short_opt "$_G_opt" # set dummy "$func_split_short_opt_name" \ # "-$func_split_short_opt_arg" ${1+"$@"} # shift # args_changed=: # ;; # *) # Make sure the first unrecognised option "$_G_opt" # # is added back to "$@" in case we need it later, # # if $args_changed was set to 'true'. # set dummy "$_G_opt" ${1+"$@"}; shift; break ;; # esac # done # # # Only call 'func_quote' here if we processed at least one argument. # if $args_changed; then # func_quote eval ${1+"$@"} # my_silent_option_result=$func_quote_result # fi # } # func_add_hook func_parse_options my_silent_option # # # my_option_validation () # { # $debug_cmd # # $opt_silent && $opt_verbose && func_fatal_help "\ # '--silent' and '--verbose' options are mutually exclusive." # } # func_add_hook func_validate_options my_option_validation # # You'll also need to manually amend $usage_message to reflect the extra # options you parse. It's preferable to append if you can, so that # multiple option parsing hooks can be added safely. # func_options_finish [ARG]... # ---------------------------- # Finishing the option parse loop (call 'func_options' hooks ATM). func_options_finish () { $debug_cmd func_run_hooks func_options ${1+"$@"} func_propagate_result func_run_hooks func_options_finish } # func_options [ARG]... # --------------------- # All the functions called inside func_options are hookable. See the # individual implementations for details. func_hookable func_options func_options () { $debug_cmd _G_options_quoted=false for my_func in options_prep parse_options validate_options options_finish do func_unset func_${my_func}_result func_unset func_run_hooks_result eval func_$my_func '${1+"$@"}' func_propagate_result func_$my_func func_options if $func_propagate_result_result; then eval set dummy "$func_options_result"; shift _G_options_quoted=: fi done $_G_options_quoted || { # As we (func_options) are top-level options-parser function and # nobody quoted "$@" for us yet, we need to do it explicitly for # caller. func_quote eval ${1+"$@"} func_options_result=$func_quote_result } } # func_options_prep [ARG]... # -------------------------- # All initialisations required before starting the option parse loop. # Note that when calling hook functions, we pass through the list of # positional parameters. If a hook function modifies that list, and # needs to propagate that back to rest of this script, then the complete # modified list must be put in 'func_run_hooks_result' before returning. func_hookable func_options_prep func_options_prep () { $debug_cmd # Option defaults: opt_verbose=false opt_warning_types= func_run_hooks func_options_prep ${1+"$@"} func_propagate_result func_run_hooks func_options_prep } # func_parse_options [ARG]... # --------------------------- # The main option parsing loop. func_hookable func_parse_options func_parse_options () { $debug_cmd _G_parse_options_requote=false # this just eases exit handling while test $# -gt 0; do # Defer to hook functions for initial option parsing, so they # get priority in the event of reusing an option name. func_run_hooks func_parse_options ${1+"$@"} func_propagate_result func_run_hooks func_parse_options if $func_propagate_result_result; then eval set dummy "$func_parse_options_result"; shift # Even though we may have changed "$@", we passed the "$@" array # down into the hook and it quoted it for us (because we are in # this if-branch). No need to quote it again. _G_parse_options_requote=false fi # Break out of the loop if we already parsed every option. test $# -gt 0 || break # We expect that one of the options parsed in this function matches # and thus we remove _G_opt from "$@" and need to re-quote. _G_match_parse_options=: _G_opt=$1 shift case $_G_opt in --debug|-x) debug_cmd='set -x' func_echo "enabling shell trace mode" >&2 $debug_cmd ;; --no-warnings|--no-warning|--no-warn) set dummy --warnings none ${1+"$@"} shift ;; --warnings|--warning|-W) if test $# = 0 && func_missing_arg $_G_opt; then _G_parse_options_requote=: break fi case " $warning_categories $1" in *" $1 "*) # trailing space prevents matching last $1 above func_append_uniq opt_warning_types " $1" ;; *all) opt_warning_types=$warning_categories ;; *none) opt_warning_types=none warning_func=: ;; *error) opt_warning_types=$warning_categories warning_func=func_fatal_error ;; *) func_fatal_error \ "unsupported warning category: '$1'" ;; esac shift ;; --verbose|-v) opt_verbose=: ;; --version) func_version ;; -\?|-h) func_usage ;; --help) func_help ;; # Separate optargs to long options (plugins may need this): --*=*) func_split_equals "$_G_opt" set dummy "$func_split_equals_lhs" \ "$func_split_equals_rhs" ${1+"$@"} shift ;; # Separate optargs to short options: -W*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "$func_split_short_opt_arg" ${1+"$@"} shift ;; # Separate non-argument short options: -\?*|-h*|-v*|-x*) func_split_short_opt "$_G_opt" set dummy "$func_split_short_opt_name" \ "-$func_split_short_opt_arg" ${1+"$@"} shift ;; --) _G_parse_options_requote=: ; break ;; -*) func_fatal_help "unrecognised option: '$_G_opt'" ;; *) set dummy "$_G_opt" ${1+"$@"}; shift _G_match_parse_options=false break ;; esac if $_G_match_parse_options; then _G_parse_options_requote=: fi done if $_G_parse_options_requote; then # save modified positional parameters for caller func_quote eval ${1+"$@"} func_parse_options_result=$func_quote_result fi } # func_validate_options [ARG]... # ------------------------------ # Perform any sanity checks on option settings and/or unconsumed # arguments. func_hookable func_validate_options func_validate_options () { $debug_cmd # Display all warnings if -W was not given. test -n "$opt_warning_types" || opt_warning_types=" $warning_categories" func_run_hooks func_validate_options ${1+"$@"} func_propagate_result func_run_hooks func_validate_options # Bail if the options were screwed! $exit_cmd $EXIT_FAILURE } ## ----------------- ## ## Helper functions. ## ## ----------------- ## # This section contains the helper functions used by the rest of the # hookable option parser framework in ascii-betical order. # func_fatal_help ARG... # ---------------------- # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { $debug_cmd eval \$ECHO \""Usage: $usage"\" eval \$ECHO \""$fatal_help"\" func_error ${1+"$@"} exit $EXIT_FAILURE } # func_help # --------- # Echo long help message to standard output and exit. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message" exit 0 } # func_missing_arg ARGNAME # ------------------------ # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { $debug_cmd func_error "Missing argument for '$1'." exit_cmd=exit } # func_split_equals STRING # ------------------------ # Set func_split_equals_lhs and func_split_equals_rhs shell variables # after splitting STRING at the '=' sign. test -z "$_G_HAVE_XSI_OPS" \ && (eval 'x=a/b/c; test 5aa/bb/cc = "${#x}${x%%/*}${x%/*}${x#*/}${x##*/}"') 2>/dev/null \ && _G_HAVE_XSI_OPS=yes if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_equals () { $debug_cmd func_split_equals_lhs=${1%%=*} func_split_equals_rhs=${1#*=} if test "x$func_split_equals_lhs" = "x$1"; then func_split_equals_rhs= fi }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_equals () { $debug_cmd func_split_equals_lhs=`expr "x$1" : 'x\([^=]*\)'` func_split_equals_rhs= test "x$func_split_equals_lhs=" = "x$1" \ || func_split_equals_rhs=`expr "x$1" : 'x[^=]*=\(.*\)$'` } fi #func_split_equals # func_split_short_opt SHORTOPT # ----------------------------- # Set func_split_short_opt_name and func_split_short_opt_arg shell # variables after splitting SHORTOPT after the 2nd character. if test yes = "$_G_HAVE_XSI_OPS" then # This is an XSI compatible shell, allowing a faster implementation... eval 'func_split_short_opt () { $debug_cmd func_split_short_opt_arg=${1#??} func_split_short_opt_name=${1%"$func_split_short_opt_arg"} }' else # ...otherwise fall back to using expr, which is often a shell builtin. func_split_short_opt () { $debug_cmd func_split_short_opt_name=`expr "x$1" : 'x\(-.\)'` func_split_short_opt_arg=`expr "x$1" : 'x-.\(.*\)$'` } fi #func_split_short_opt # func_usage # ---------- # Echo short help message to standard output and exit. func_usage () { $debug_cmd func_usage_message $ECHO "Run '$progname --help |${PAGER-more}' for full usage" exit 0 } # func_usage_message # ------------------ # Echo short help message to standard output. func_usage_message () { $debug_cmd eval \$ECHO \""Usage: $usage"\" echo $SED -n 's|^# || /^Written by/{ x;p;x } h /^Written by/q' < "$progpath" echo eval \$ECHO \""$usage_message"\" } # func_version # ------------ # Echo version message to standard output and exit. # The version message is extracted from the calling file's header # comments, with leading '# ' stripped: # 1. First display the progname and version # 2. Followed by the header comment line matching /^# Written by / # 3. Then a blank line followed by the first following line matching # /^# Copyright / # 4. Immediately followed by any lines between the previous matches, # except lines preceding the intervening completely blank line. # For example, see the header comments of this file. func_version () { $debug_cmd printf '%s\n' "$progname $scriptversion" $SED -n ' /^# Written by /!b s|^# ||; p; n :fwd2blnk /./ { n b fwd2blnk } p; n :holdwrnt s|^# || s|^# *$|| /^Copyright /!{ /./H n b holdwrnt } s|\((C)\)[ 0-9,-]*[ ,-]\([1-9][0-9]* \)|\1 \2| G s|\(\n\)\n*|\1|g p; q' < "$progpath" exit $? } # Local variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'before-save-hook 'time-stamp) # time-stamp-pattern: "30/scriptversion=%:y-%02m-%02d.%02H; # UTC" # time-stamp-time-zone: "UTC" # End: # Set a version string. scriptversion='(GNU libtool) 2.5.4' # func_version # ------------ # Echo version message to standard output and exit. func_version () { $debug_cmd year=`date +%Y` cat < This is free software: you are free to change and redistribute it. There is NO WARRANTY, to the extent permitted by law. Originally written by Gordon Matzigkeit, 1996 (See AUTHORS for complete contributor listing) EOF exit $? } # func_echo ARG... # ---------------- # Libtool also displays the current mode in messages, so override # funclib.sh func_echo with this custom definition. func_echo () { $debug_cmd _G_message=$* func_echo_IFS=$IFS IFS=$nl for _G_line in $_G_message; do IFS=$func_echo_IFS $ECHO "$progname${opt_mode+: $opt_mode}: $_G_line" done IFS=$func_echo_IFS } ## ---------------- ## ## Options parsing. ## ## ---------------- ## # Hook in the functions to make sure our own options are parsed during # the option parsing loop. usage='$progpath [OPTION]... [MODE-ARG]...' # Short help message in response to '-h'. usage_message="Options: --config show all configuration variables --debug enable verbose shell tracing -n, --dry-run display commands without modifying any files --features display basic configuration information --finish use operation '--mode=finish' --mode=MODE use operation mode MODE --no-finish don't update shared library cache --no-quiet, --no-silent print default informational messages --no-warnings equivalent to '-Wnone' --preserve-dup-deps don't remove duplicate dependency libraries --quiet, --silent don't print informational messages --reorder-cache=DIRS reorder shared library cache for preferred DIRS --tag=TAG use configuration variables from tag TAG -v, --verbose print more informational messages than default --version print version information -W, --warnings=CATEGORY report the warnings falling in CATEGORY [all] -h, --help, --help-all print short, long, or detailed help message " # Additional text appended to 'usage_message' in response to '--help'. func_help () { $debug_cmd func_usage_message $ECHO "$long_help_message MODE must be one of the following: clean remove files from the build directory compile compile a source file into a libtool object execute automatically set library path, then run a program finish complete the installation of libtool libraries install install libraries or executables link create a library or an executable uninstall remove libraries from an installed directory MODE-ARGS vary depending on the MODE. When passed as first option, '--mode=MODE' may be abbreviated as 'MODE' or a unique abbreviation of that. Try '$progname --help --mode=MODE' for a more detailed description of MODE. When reporting a bug, please describe a test case to reproduce it and include the following information: host-triplet: $host shell: $SHELL compiler: $LTCC compiler flags: $LTCFLAGS linker: $LD (gnu? $with_gnu_ld) version: $progname $scriptversion Debian-2.5.4-4 automake: `($AUTOMAKE --version) 2>/dev/null |$SED 1q` autoconf: `($AUTOCONF --version) 2>/dev/null |$SED 1q` Report bugs to . GNU libtool home page: . General help using GNU software: ." exit 0 } # func_lo2o OBJECT-NAME # --------------------- # Transform OBJECT-NAME from a '.lo' suffix to the platform specific # object suffix. lo2o=s/\\.lo\$/.$objext/ o2lo=s/\\.$objext\$/.lo/ if test yes = "$_G_HAVE_XSI_OPS"; then eval 'func_lo2o () { case $1 in *.lo) func_lo2o_result=${1%.lo}.$objext ;; * ) func_lo2o_result=$1 ;; esac }' # func_xform LIBOBJ-OR-SOURCE # --------------------------- # Transform LIBOBJ-OR-SOURCE from a '.o' or '.c' (or otherwise) # suffix to a '.lo' libtool-object suffix. eval 'func_xform () { func_xform_result=${1%.*}.lo }' else # ...otherwise fall back to using sed. func_lo2o () { func_lo2o_result=`$ECHO "$1" | $SED "$lo2o"` } func_xform () { func_xform_result=`$ECHO "$1" | $SED 's|\.[^.]*$|.lo|'` } fi # func_fatal_configuration ARG... # ------------------------------- # Echo program name prefixed message to standard error, followed by # a configuration failure hint, and exit. func_fatal_configuration () { func_fatal_error ${1+"$@"} \ "See the $PACKAGE documentation for more information." \ "Fatal configuration error." } # func_config # ----------- # Display the configuration for all the tags in this script. func_config () { re_begincf='^# ### BEGIN LIBTOOL' re_endcf='^# ### END LIBTOOL' # Default configuration. $SED "1,/$re_begincf CONFIG/d;/$re_endcf CONFIG/,\$d" < "$progpath" # Now print the configurations for the tags. for tagname in $taglist; do $SED -n "/$re_begincf TAG CONFIG: $tagname\$/,/$re_endcf TAG CONFIG: $tagname\$/p" < "$progpath" done exit $? } # func_features # ------------- # Display the features supported by this script. func_features () { echo "host: $host" if test yes = "$build_libtool_libs"; then echo "enable shared libraries" else echo "disable shared libraries" fi if test yes = "$build_old_libs"; then echo "enable static libraries" else echo "disable static libraries" fi exit $? } # func_enable_tag TAGNAME # ----------------------- # Verify that TAGNAME is valid, and either flag an error and exit, or # enable the TAGNAME tag. We also add TAGNAME to the global $taglist # variable here. func_enable_tag () { # Global variable: tagname=$1 re_begincf="^# ### BEGIN LIBTOOL TAG CONFIG: $tagname\$" re_endcf="^# ### END LIBTOOL TAG CONFIG: $tagname\$" sed_extractcf=/$re_begincf/,/$re_endcf/p # Validate tagname. case $tagname in *[!-_A-Za-z0-9,/]*) func_fatal_error "invalid tag name: $tagname" ;; esac # Don't test for the "default" C tag, as we know it's # there but not specially marked. case $tagname in CC) ;; *) if $GREP "$re_begincf" "$progpath" >/dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # func_check_version_match # ------------------------ # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } # libtool_options_prep [ARG]... # ----------------------------- # Preparation for options parsed by libtool. libtool_options_prep () { $debug_mode # Option defaults: opt_config=false opt_dlopen= opt_dry_run=false opt_help=false opt_mode= opt_reorder_cache=false opt_preserve_dup_deps=false opt_quiet=false opt_finishing=true opt_warning= nonopt= preserve_args= _G_rc_lt_options_prep=: _G_rc_lt_options_prep=: # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; *) _G_rc_lt_options_prep=false ;; esac if $_G_rc_lt_options_prep; then # Pass back the list of options. func_quote eval ${1+"$@"} libtool_options_prep_result=$func_quote_result fi } func_add_hook func_options_prep libtool_options_prep # libtool_parse_options [ARG]... # --------------------------------- # Provide handling for libtool specific options. libtool_parse_options () { $debug_cmd _G_rc_lt_parse_options=false # Perform our own loop to consume as many options as possible in # each iteration. while test $# -gt 0; do _G_match_lt_parse_options=: _G_opt=$1 shift case $_G_opt in --dry-run|--dryrun|-n) opt_dry_run=: ;; --config) func_config ;; --dlopen|-dlopen) opt_dlopen="${opt_dlopen+$opt_dlopen }$1" shift ;; --preserve-dup-deps) opt_preserve_dup_deps=: ;; --features) func_features ;; --finish) set dummy --mode finish ${1+"$@"}; shift ;; --help) opt_help=: ;; --help-all) opt_help=': help-all' ;; --mode) test $# = 0 && func_missing_arg $_G_opt && break opt_mode=$1 case $1 in # Valid mode arguments: clean|compile|execute|finish|install|link|relink|uninstall) ;; # Catch anything else as an error *) func_error "invalid argument '$1' for $_G_opt" exit_cmd=exit ;; esac shift ;; --no-finish) opt_finishing=false func_append preserve_args " $_G_opt" ;; --no-silent|--no-quiet) opt_quiet=false func_append preserve_args " $_G_opt" ;; --no-warnings|--no-warning|--no-warn) opt_warning=false func_append preserve_args " $_G_opt" ;; --no-verbose) opt_verbose=false func_append preserve_args " $_G_opt" ;; --reorder-cache) opt_reorder_cache=true shared_lib_dirs=$1 if test -n "$shared_lib_dirs"; then case $1 in # Must begin with /: /*) ;; # Catch anything else as an error (relative paths) *) func_error "invalid argument '$1' for $_G_opt" func_error "absolute paths are required for $_G_opt" exit_cmd=exit ;; esac fi shift ;; --silent|--quiet) opt_quiet=: opt_verbose=false func_append preserve_args " $_G_opt" ;; --tag) test $# = 0 && func_missing_arg $_G_opt && break opt_tag=$1 func_append preserve_args " $_G_opt $1" func_enable_tag "$1" shift ;; --verbose|-v) opt_quiet=false opt_verbose=: func_append preserve_args " $_G_opt" ;; # An option not handled by this hook function: *) set dummy "$_G_opt" ${1+"$@"} ; shift _G_match_lt_parse_options=false break ;; esac $_G_match_lt_parse_options && _G_rc_lt_parse_options=: done if $_G_rc_lt_parse_options; then # save modified positional parameters for caller func_quote eval ${1+"$@"} libtool_parse_options_result=$func_quote_result fi } func_add_hook func_parse_options libtool_parse_options # func_warning ARG... # ------------------- # Libtool warnings are not categorized, so override funclib.sh # func_warning with this simpler definition. func_warning () { if $opt_warning; then $debug_cmd $warning_func ${1+"$@"} fi } # libtool_validate_options [ARG]... # --------------------------------- # Perform any sanity checks on option settings and/or unconsumed # arguments. libtool_validate_options () { # save first non-option argument if test 0 -lt $#; then nonopt=$1 shift fi # preserve --debug test : = "$debug_cmd" || func_append preserve_args " --debug" case $host_os in # Solaris2 added to fix http://debbugs.gnu.org/cgi/bugreport.cgi?bug=16452 # see also: http://gcc.gnu.org/bugzilla/show_bug.cgi?id=59788 cygwin* | mingw* | windows* | pw32* | cegcc* | solaris2* | os2*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_preserve_dup_deps ;; esac $opt_help || { # Sanity checks first: func_check_version_match test yes != "$build_libtool_libs" \ && test yes != "$build_old_libs" \ && func_fatal_configuration "not configured to build any kind of library" # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$opt_dlopen" && test execute != "$opt_mode"; then func_error "unrecognized option '-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help=$help help="Try '$progname --help --mode=$opt_mode' for more information." } # Pass back the unparsed argument list func_quote eval ${1+"$@"} libtool_validate_options_result=$func_quote_result } func_add_hook func_validate_options libtool_validate_options # Process options as early as possible so that --help and --version # can return quickly. func_options ${1+"$@"} eval set dummy "$func_options_result"; shift ## ----------- ## ## Main. ## ## ----------- ## magic='%%%MAGIC variable%%%' magic_exe='%%%MAGIC EXE variable%%%' # Global variables. extracted_archives= extracted_serial=0 # If this variable is set in any of the actions, the command in it # will be execed at the end. This prevents here-documents from being # left over by shells. exec_cmd= # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF $1 _LTECHO_EOF' } # func_generated_by_libtool # True iff stdin has been generated by Libtool. This function is only # a basic sanity check; it will hardly flush out determined imposters. func_generated_by_libtool_p () { $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null | func_generated_by_libtool_p } # func_lalib_unsafe_p file # True iff FILE is a libtool '.la' library or '.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if 'file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case $lalib_p_line in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test yes = "$lalib_p" } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { test -f "$1" && $lt_truncate_bin < "$1" 2>/dev/null | func_generated_by_libtool_p } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result=$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $debug_cmd save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$sp$nl eval cmd=\"$cmd\" IFS=$save_ifs func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # 'FILE.' does not work on cygwin managed mounts. func_source () { $debug_cmd case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_resolve_sysroot PATH # Replace a leading = in PATH with a sysroot. Store the result into # func_resolve_sysroot_result func_resolve_sysroot () { func_resolve_sysroot_result=$1 case $func_resolve_sysroot_result in =*) func_stripname '=' '' "$func_resolve_sysroot_result" func_resolve_sysroot_result=$lt_sysroot$func_stripname_result ;; esac } # func_replace_sysroot PATH # If PATH begins with the sysroot, replace it with = and # store the result into func_replace_sysroot_result. func_replace_sysroot () { case $lt_sysroot:$1 in ?*:"$lt_sysroot"*) func_stripname "$lt_sysroot" '' "$1" func_replace_sysroot_result='='$func_stripname_result ;; *) # Including no sysroot. func_replace_sysroot_result=$1 ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $debug_cmd if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`$SED -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_append_quoted CC_quoted "$arg" done CC_expanded=`func_echo_all $CC` CC_quoted_expanded=`func_echo_all $CC_quoted` case "$@ " in " $CC "* | "$CC "* | " $CC_expanded "* | "$CC_expanded "* | \ " $CC_quoted"* | "$CC_quoted "* | " $CC_quoted_expanded "* | "$CC_quoted_expanded "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with '--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=$1 if test yes = "$build_libtool_libs"; then write_lobj=\'$2\' else write_lobj=none fi if test yes = "$build_old_libs"; then write_oldobj=\'$3\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T </dev/null` if test "$?" -eq 0 && test -n "$func_convert_core_file_wine_to_w32_tmp"; then func_convert_core_file_wine_to_w32_result=`$ECHO "$func_convert_core_file_wine_to_w32_tmp" | $SED -e "$sed_naive_backslashify"` else func_convert_core_file_wine_to_w32_result= fi fi } # end: func_convert_core_file_wine_to_w32 # func_convert_core_path_wine_to_w32 ARG # Helper function used by path conversion functions when $build is *nix, and # $host is mingw, windows, cygwin, or some other w32 environment. Relies on a # correctly configured wine environment available, with the winepath program # in $build's $PATH. Assumes ARG has no leading or trailing path separator # characters. # # ARG is path to be converted from $build format to win32. # Result is available in $func_convert_core_path_wine_to_w32_result. # Unconvertible file (directory) names in ARG are skipped; if no directory names # are convertible, then the result may be empty. func_convert_core_path_wine_to_w32 () { $debug_cmd # unfortunately, winepath doesn't convert paths, only file names func_convert_core_path_wine_to_w32_result= if test -n "$1"; then oldIFS=$IFS IFS=: for func_convert_core_path_wine_to_w32_f in $1; do IFS=$oldIFS func_convert_core_file_wine_to_w32 "$func_convert_core_path_wine_to_w32_f" if test -n "$func_convert_core_file_wine_to_w32_result"; then if test -z "$func_convert_core_path_wine_to_w32_result"; then func_convert_core_path_wine_to_w32_result=$func_convert_core_file_wine_to_w32_result else func_append func_convert_core_path_wine_to_w32_result ";$func_convert_core_file_wine_to_w32_result" fi fi done IFS=$oldIFS fi } # end: func_convert_core_path_wine_to_w32 # func_cygpath ARGS... # Wrapper around calling the cygpath program via LT_CYGPATH. This is used when # when (1) $build is *nix and Cygwin is hosted via a wine environment; or (2) # $build is MSYS and $host is Cygwin, or (3) $build is Cygwin. In case (1) or # (2), returns the Cygwin file name or path in func_cygpath_result (input # file name or path is assumed to be in w32 format, as previously converted # from $build's *nix or MSYS format). In case (3), returns the w32 file name # or path in func_cygpath_result (input file name or path is assumed to be in # Cygwin format). Returns an empty string on error. # # ARGS are passed to cygpath, with the last one being the file name or path to # be converted. # # Specify the absolute *nix (or w32) name to cygpath in the LT_CYGPATH # environment variable; do not put it in $PATH. func_cygpath () { $debug_cmd if test -n "$LT_CYGPATH" && test -f "$LT_CYGPATH"; then func_cygpath_result=`$LT_CYGPATH "$@" 2>/dev/null` if test "$?" -ne 0; then # on failure, ensure result is empty func_cygpath_result= fi else func_cygpath_result= func_error "LT_CYGPATH is empty or specifies non-existent file: '$LT_CYGPATH'" fi } #end: func_cygpath # func_convert_core_msys_to_w32 ARG # Convert file name or path ARG from MSYS format to w32 format. Return # result in func_convert_core_msys_to_w32_result. func_convert_core_msys_to_w32 () { $debug_cmd # awkward: cmd appends spaces to result func_convert_core_msys_to_w32_result=`( cmd //c echo "$1" ) 2>/dev/null | $SED -e 's/[ ]*$//' -e "$sed_naive_backslashify"` } #end: func_convert_core_msys_to_w32 # func_convert_file_check ARG1 ARG2 # Verify that ARG1 (a file name in $build format) was converted to $host # format in ARG2. Otherwise, emit an error message, but continue (resetting # func_to_host_file_result to ARG1). func_convert_file_check () { $debug_cmd if test -z "$2" && test -n "$1"; then func_error "Could not determine host file name corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_file_result=$1 fi } # end func_convert_file_check # func_convert_path_check FROM_PATHSEP TO_PATHSEP FROM_PATH TO_PATH # Verify that FROM_PATH (a path in $build format) was converted to $host # format in TO_PATH. Otherwise, emit an error message, but continue, resetting # func_to_host_file_result to a simplistic fallback value (see below). func_convert_path_check () { $debug_cmd if test -z "$4" && test -n "$3"; then func_error "Could not determine the host path corresponding to" func_error " '$3'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This is a deliberately simplistic "conversion" and # should not be "improved". See libtool.info. if test "x$1" != "x$2"; then lt_replace_pathsep_chars="s|$1|$2|g" func_to_host_path_result=`echo "$3" | $SED -e "$lt_replace_pathsep_chars"` else func_to_host_path_result=$3 fi fi } # end func_convert_path_check # func_convert_path_front_back_pathsep FRONTPAT BACKPAT REPL ORIG # Modifies func_to_host_path_result by prepending REPL if ORIG matches FRONTPAT # and appending REPL if ORIG matches BACKPAT. func_convert_path_front_back_pathsep () { $debug_cmd case $4 in $1 ) func_to_host_path_result=$3$func_to_host_path_result ;; esac case $4 in $2 ) func_append func_to_host_path_result "$3" ;; esac } # end func_convert_path_front_back_pathsep # func_convert_delimited_path PATH ORIG_DELIMITER NEW_DELIMITER # Replaces a delimiter for a given path. func_convert_delimited_path () { converted_path=`$ECHO "$1" | $SED "s#$2#$3#g"` } # end func_convert_delimited_path ################################################## # $build to $host FILE NAME CONVERSION FUNCTIONS # ################################################## # invoked via '$to_host_file_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # Result will be available in $func_to_host_file_result. # func_to_host_file ARG # Converts the file name ARG from $build format to $host format. Return result # in func_to_host_file_result. func_to_host_file () { $debug_cmd $to_host_file_cmd "$1" } # end func_to_host_file # func_to_tool_file ARG LAZY # converts the file name ARG from $build format to toolchain format. Return # result in func_to_tool_file_result. If the conversion in use is listed # in (the comma separated) LAZY, no conversion takes place. func_to_tool_file () { $debug_cmd case ,$2, in *,"$to_tool_file_cmd",*) func_to_tool_file_result=$1 ;; *) $to_tool_file_cmd "$1" func_to_tool_file_result=$func_to_host_file_result ;; esac } # end func_to_tool_file # func_convert_file_noop ARG # Copy ARG to func_to_host_file_result. func_convert_file_noop () { func_to_host_file_result=$1 } # end func_convert_file_noop # func_convert_file_msys_to_w32 ARG # Convert file name ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_file_result. func_convert_file_msys_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_to_host_file_result=$func_convert_core_msys_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_w32 # func_convert_file_cygwin_to_w32 ARG # Convert file name ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_file_cygwin_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # because $build is cygwin, we call "the" cygpath in $PATH; no need to use # LT_CYGPATH in this case. func_to_host_file_result=`cygpath -m "$1"` fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_cygwin_to_w32 # func_convert_file_nix_to_w32 ARG # Convert file name ARG from *nix to w32 format. Requires a wine environment # and a working winepath. Returns result in func_to_host_file_result. func_convert_file_nix_to_w32 () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_file_wine_to_w32 "$1" func_to_host_file_result=$func_convert_core_file_wine_to_w32_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_w32 # func_convert_file_msys_to_cygwin ARG # Convert file name ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_file_msys_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then func_convert_core_msys_to_w32 "$1" func_cygpath -u "$func_convert_core_msys_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_msys_to_cygwin # func_convert_file_nix_to_cygwin ARG # Convert file name ARG from *nix to Cygwin format. Requires Cygwin installed # in a wine environment, working winepath, and LT_CYGPATH set. Returns result # in func_to_host_file_result. func_convert_file_nix_to_cygwin () { $debug_cmd func_to_host_file_result=$1 if test -n "$1"; then # convert from *nix to w32, then use cygpath to convert from w32 to cygwin. func_convert_core_file_wine_to_w32 "$1" func_cygpath -u "$func_convert_core_file_wine_to_w32_result" func_to_host_file_result=$func_cygpath_result fi func_convert_file_check "$1" "$func_to_host_file_result" } # end func_convert_file_nix_to_cygwin ############################################# # $build to $host PATH CONVERSION FUNCTIONS # ############################################# # invoked via '$to_host_path_cmd ARG' # # In each case, ARG is the path to be converted from $build to $host format. # The result will be available in $func_to_host_path_result. # # Path separators are also converted from $build format to $host format. If # ARG begins or ends with a path separator character, it is preserved (but # converted to $host format) on output. # # All path conversion functions are named using the following convention: # file name conversion function : func_convert_file_X_to_Y () # path conversion function : func_convert_path_X_to_Y () # where, for any given $build/$host combination the 'X_to_Y' value is the # same. If conversion functions are added for new $build/$host combinations, # the two new functions must follow this pattern, or func_init_to_host_path_cmd # will break. # func_init_to_host_path_cmd # Ensures that function "pointer" variable $to_host_path_cmd is set to the # appropriate value, based on the value of $to_host_file_cmd. to_host_path_cmd= func_init_to_host_path_cmd () { $debug_cmd if test -z "$to_host_path_cmd"; then func_stripname 'func_convert_file_' '' "$to_host_file_cmd" to_host_path_cmd=func_convert_path_$func_stripname_result fi } # func_to_host_path ARG # Converts the path ARG from $build format to $host format. Return result # in func_to_host_path_result. func_to_host_path () { $debug_cmd func_init_to_host_path_cmd $to_host_path_cmd "$1" } # end func_to_host_path # func_convert_path_noop ARG # Copy ARG to func_to_host_path_result. func_convert_path_noop () { func_to_host_path_result=$1 } # end func_convert_path_noop # func_convert_path_msys_to_w32 ARG # Convert path ARG from (mingw) MSYS to (mingw) w32 format; automatic # conversion to w32 is not available inside the cwrapper. Returns result in # func_to_host_path_result. func_convert_path_msys_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from ARG. MSYS # behavior is inconsistent here; cygpath turns them into '.;' and ';.'; # and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_msys_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_msys_to_w32 # func_convert_path_cygwin_to_w32 ARG # Convert path ARG from Cygwin to w32 format. Returns result in # func_to_host_file_result. func_convert_path_cygwin_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_to_host_path_result=`cygpath -m -p "$func_to_host_path_tmp1"` func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_cygwin_to_w32 # func_convert_path_nix_to_w32 ARG # Convert path ARG from *nix to w32 format. Requires a wine environment and # a working winepath. Returns result in func_to_host_file_result. func_convert_path_nix_to_w32 () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_to_host_path_result=$func_convert_core_path_wine_to_w32_result func_convert_path_check : ";" \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" ";" "$1" fi } # end func_convert_path_nix_to_w32 # func_convert_path_msys_to_cygwin ARG # Convert path ARG from MSYS to Cygwin format. Requires LT_CYGPATH set. # Returns result in func_to_host_file_result. func_convert_path_msys_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # See func_convert_path_msys_to_w32: func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_msys_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_msys_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_msys_to_cygwin # func_convert_path_nix_to_cygwin ARG # Convert path ARG from *nix to Cygwin format. Requires Cygwin installed in a # a wine environment, working winepath, and LT_CYGPATH set. Returns result in # func_to_host_file_result. func_convert_path_nix_to_cygwin () { $debug_cmd func_to_host_path_result=$1 if test -n "$1"; then # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_stripname : : "$1" func_to_host_path_tmp1=$func_stripname_result func_convert_core_path_wine_to_w32 "$func_to_host_path_tmp1" func_cygpath -u -p "$func_convert_core_path_wine_to_w32_result" func_to_host_path_result=$func_cygpath_result func_convert_path_check : : \ "$func_to_host_path_tmp1" "$func_to_host_path_result" func_convert_path_front_back_pathsep ":*" "*:" : "$1" fi } # end func_convert_path_nix_to_cygwin # func_dll_def_p FILE # True iff FILE is a Windows DLL '.def' file. # Keep in sync with _LT_DLL_DEF_P in libtool.m4 func_dll_def_p () { $debug_cmd func_dll_def_p_tmp=`$SED -n \ -e 's/^[ ]*//' \ -e '/^\(;.*\)*$/d' \ -e 's/^\(EXPORTS\|LIBRARY\)\([ ].*\)*$/DEF/p' \ -e q \ "$1"` test DEF = "$func_dll_def_p_tmp" } # func_reorder_shared_lib_cache DIRS # Reorder the shared library cache by unconfiguring previous shared library cache # and configuring preferred search directories before previous search directories. # Previous shared library cache: /usr/lib /usr/local/lib # Preferred search directories: /tmp/testing # Reordered shared library cache: /tmp/testing /usr/lib /usr/local/lib func_reorder_shared_lib_cache () { $debug_cmd case $host_os in openbsd*) get_search_directories=`PATH="$PATH:/sbin" ldconfig -r | $GREP "search directories" | $SED "s#.*search directories:\ ##g"` func_convert_delimited_path "$get_search_directories" ':' '\ ' save_search_directories=$converted_path func_convert_delimited_path "$1" ':' '\ ' # Ensure directories exist for dir in $converted_path; do # Ensure each directory is an absolute path case $dir in /*) ;; *) func_error "Directory '$dir' is not an absolute path" exit $EXIT_FAILURE ;; esac # Ensure no trailing slashes func_stripname '' '/' "$dir" dir=$func_stripname_result if test -d "$dir"; then if test -n "$preferred_search_directories"; then preferred_search_directories="$preferred_search_directories $dir" else preferred_search_directories=$dir fi else func_error "Directory '$dir' does not exist" exit $EXIT_FAILURE fi done PATH="$PATH:/sbin" ldconfig -U $save_search_directories PATH="$PATH:/sbin" ldconfig -m $preferred_search_directories $save_search_directories get_search_directories=`PATH="$PATH:/sbin" ldconfig -r | $GREP "search directories" | $SED "s#.*search directories:\ ##g"` func_convert_delimited_path "$get_search_directories" ':' '\ ' reordered_search_directories=$converted_path $ECHO "Original: $save_search_directories" $ECHO "Reordered: $reordered_search_directories" exit $EXIT_SUCCESS ;; *) func_error "--reorder-cache is not supported for host_os=$host_os." exit $EXIT_FAILURE ;; esac } # end func_reorder_shared_lib_cache # func_mode_compile arg... func_mode_compile () { $debug_cmd # Get the compilation command and the source file. base_compile= srcfile=$nonopt # always keep a non-empty value in "srcfile" suppress_opt=yes suppress_output= arg_mode=normal libobj= later= pie_flag= for arg do case $arg_mode in arg ) # do not "continue". Instead, add this to base_compile lastarg=$arg arg_mode=normal ;; target ) libobj=$arg arg_mode=normal continue ;; normal ) # Accept any command-line options. case $arg in -o) test -n "$libobj" && \ func_fatal_error "you cannot specify '-o' more than once" arg_mode=target continue ;; -pie | -fpie | -fPIE) func_append pie_flag " $arg" continue ;; -shared | -static | -prefer-pic | -prefer-non-pic) func_append later " $arg" continue ;; -no-suppress) suppress_opt=no continue ;; -Xcompiler) arg_mode=arg # the next one goes into the "base_compile" arg list continue # The current "srcfile" will either be retained or ;; # replaced later. I would guess that would be a bug. -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result lastarg= save_ifs=$IFS; IFS=, for arg in $args; do IFS=$save_ifs func_append_quoted lastarg "$arg" done IFS=$save_ifs func_stripname ' ' '' "$lastarg" lastarg=$func_stripname_result # Add the arguments to base_compile. func_append base_compile " $lastarg" continue ;; *) # Accept the current argument as the source file. # The previous "srcfile" becomes the current argument. # lastarg=$srcfile srcfile=$arg ;; esac # case $arg ;; esac # case $arg_mode # Aesthetically quote the previous argument. func_append_quoted base_compile "$lastarg" done # for arg case $arg_mode in arg) func_fatal_error "you must specify an argument for -Xcompile" ;; target) func_fatal_error "you must specify a target with '-o'" ;; *) # Get the name of the library object. test -z "$libobj" && { func_basename "$srcfile" libobj=$func_basename_result } ;; esac # Recognize several different file suffixes. # If the user specifies -o file.o, it is replaced with file.lo case $libobj in *.[cCFSifmso] | \ *.ada | *.adb | *.ads | *.asm | \ *.c++ | *.cc | *.ii | *.class | *.cpp | *.cxx | \ *.[fF][09]? | *.for | *.java | *.go | *.obj | *.sx | *.cu | *.cup) func_xform "$libobj" libobj=$func_xform_result ;; esac case $libobj in *.lo) func_lo2o "$libobj"; obj=$func_lo2o_result ;; *) func_fatal_error "cannot determine name of library object from '$libobj'" ;; esac func_infer_tag $base_compile for arg in $later; do case $arg in -shared) test yes = "$build_libtool_libs" \ || func_fatal_configuration "cannot build a shared library" build_old_libs=no continue ;; -static) build_libtool_libs=no build_old_libs=yes continue ;; -prefer-pic) pic_mode=yes continue ;; -prefer-non-pic) pic_mode=no continue ;; esac done func_quote_arg pretty "$libobj" test "X$libobj" != "X$func_quote_arg_result" \ && $ECHO "X$libobj" | $GREP '[]~#^*{};<>?"'"'"' &()|`$[]' \ && func_warning "libobj name '$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname=$func_basename_result xdir=$func_dirname_result lobj=$xdir$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test yes = "$build_old_libs"; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | windows* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test no = "$pic_mode" && test pass_all != "$deplibs_check_method"; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test no = "$compiler_c_o"; then output_obj=`$ECHO "$srcfile" | $SED 's%^.*/%%; s%\.[^.]*$%%'`.$objext lockfile=$output_obj.lock else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test yes = "$need_locks"; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test warn = "$need_locks"; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi func_append removelist " $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist func_append removelist " $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 func_to_tool_file "$srcfile" func_convert_file_msys_to_w32 srcfile=$func_to_tool_file_result func_quote_arg pretty "$srcfile" qsrcfile=$func_quote_arg_result # Only build a PIC object if we are building libtool libraries. if test yes = "$build_libtool_libs"; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test no != "$pic_mode"; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir func_append command " -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test yes = "$suppress_opt"; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test yes = "$build_old_libs"; then if test yes != "$pic_mode"; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test yes = "$compiler_c_o"; then func_append command " -o $obj" fi # Suppress compiler output if we already did a PIC compilation. func_append command "$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test warn = "$need_locks" && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support '-c' and '-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test no != "$need_locks"; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test compile = "$opt_mode" && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $opt_mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to build PIC objects only -prefer-non-pic try to build non-PIC objects only -shared do not build a '.o' file suitable for static linking -static only build a '.o' file suitable for static linking -Wc,FLAG -Xcompiler FLAG pass FLAG directly to the compiler COMPILE-COMMAND is a command to be used in creating a 'standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix '.c' with the library object suffix, '.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to '-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the '--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the 'install' or 'cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix-dir PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -bindir BINDIR specify path to binaries directory (for systems where libraries must be found in the PATH setting at runtime) -dlopen FILE '-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE use a list of object files found in FILE to specify objects -os2dllname NAME force a short DLL name on OS/2 (no effect on other OSes) -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface -Wc,FLAG -Xcompiler FLAG pass linker-specific FLAG directly to the compiler -Wa,FLAG -Xassembler FLAG pass linker-specific FLAG directly to the assembler -Wl,FLAG -Xlinker FLAG pass linker-specific FLAG directly to the linker -XCClinker FLAG pass link-specific FLAG to the compiler driver (CC) All other options (arguments beginning with '-') are ignored. Every other argument is treated as a filename. Files ending in '.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in '.la', then a libtool library is created, only library objects ('.lo' files) may be specified, and '-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in '.a' or '.lib', then a standard library is created using 'ar' and 'ranlib', or on Windows using 'lib'. If OUTPUT-FILE ends in '.lo' or '.$objext', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically '/bin/rm'). RM-OPTIONS are options (such as '-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode '$opt_mode'" ;; esac echo $ECHO "Try '$progname --help' for more information about other modes." } # Now that we've collected a possible --mode arg, show help if necessary if $opt_help; then if test : = "$opt_help"; then func_mode_help else { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do func_mode_help done } | $SED -n '1p; 2,$s/^Usage:/ or: /p' { func_help noexit for opt_mode in compile link execute install finish uninstall clean; do echo func_mode_help done } | $SED '1d /^When reporting/,/^Report/{ H d } $x /information about other modes/d /more detailed .*MODE/d s/^Usage:.*--mode=\([^ ]*\) .*/Description of \1 mode:/' fi exit $? fi # If option '--reorder-cache', reorder the shared library cache and exit. if $opt_reorder_cache; then func_reorder_shared_lib_cache $shared_lib_dirs fi # func_mode_execute arg... func_mode_execute () { $debug_cmd # The first argument is the command name. cmd=$nonopt test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $opt_dlopen; do test -f "$file" \ || func_fatal_help "'$file' is not a file" dir= case $file in *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "'$file' was not linked with '-export-dynamic'" continue fi func_dirname "$file" "" "." dir=$func_dirname_result if test -f "$dir/$objdir/$dlname"; then func_append dir "/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find '$dlname' in '$dir' or '$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir=$func_dirname_result ;; *) func_warning "'-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir=$absdir # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic=$magic # Check if any of the arguments is a wrapper script. args= for file do case $file in -* | *.la | *.lo ) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file=$progdir/$program elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file=$progdir/$program fi ;; esac # Quote arguments (to preserve shell metacharacters). func_append_quoted args "$file" done if $opt_dry_run; then # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" echo "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS else if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd=\$cmd$args fi } test execute = "$opt_mode" && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $debug_cmd libs= libdirs= admincmds= for opt in "$nonopt" ${1+"$@"} do if test -d "$opt"; then func_append libdirs " $opt" elif test -f "$opt"; then if func_lalib_unsafe_p "$opt"; then func_append libs " $opt" else func_warning "'$opt' is not a valid libtool archive" fi else func_fatal_error "invalid argument '$opt'" fi done if test -n "$libs"; then if test -n "$lt_sysroot"; then sysroot_regex=`$ECHO "$lt_sysroot" | $SED "$sed_make_literal_regex"` sysroot_cmd="s/\([ ']\)$sysroot_regex/\1/g;" else sysroot_cmd= fi # Remove sysroot references if $opt_dry_run; then for lib in $libs; do echo "removing references to $lt_sysroot and '=' prefixes from $lib" done else tmpdir=`func_mktempdir` for lib in $libs; do $SED -e "$sysroot_cmd s/\([ ']-[LR]\)=/\1/g; s/\([ ']\)=/\1/g" $lib \ > $tmpdir/tmp-la mv -f $tmpdir/tmp-la $lib done ${RM}r "$tmpdir" fi fi if test -n "$finish_cmds$finish_eval" && test -n "$libdirs" && $opt_finishing; then for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || func_append admincmds " $cmds" fi done fi # Exit here if they wanted silent mode. $opt_quiet && exit $EXIT_SUCCESS if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then echo "----------------------------------------------------------------------" echo "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done if test "false" = "$opt_finishing"; then echo echo "NOTE: finish_cmds were not executed during testing, so you must" echo "manually run ldconfig to add a given test directory, LIBDIR, to" echo "the search path for generated executables." fi echo echo "If you ever happen to want to link against installed libraries" echo "in a given directory, LIBDIR, you must either use libtool, and" echo "specify the full pathname of the library, or use the '-LLIBDIR'" echo "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then echo " - add LIBDIR to the '$shlibpath_var' environment variable" echo " during execution" fi if test -n "$runpath_var"; then echo " - add LIBDIR to the '$runpath_var' environment variable" echo " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the '$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then echo " - have your system administrator add LIBDIR to '/etc/ld.so.conf'" fi echo echo "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) echo "more information, such as the ld(1), crle(1) and ld.so(8) manual" echo "pages." ;; *) echo "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac echo "----------------------------------------------------------------------" fi exit $EXIT_SUCCESS } test finish = "$opt_mode" && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $debug_cmd # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$SHELL" = "$nonopt" || test /bin/sh = "$nonopt" || # Allow the use of GNU shtool's install command. case $nonopt in *shtool*) :;; *) false;; esac then # Aesthetically quote it. func_quote_arg pretty "$nonopt" install_prog="$func_quote_arg_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_arg pretty "$arg" func_append install_prog "$func_quote_arg_result" install_shared_prog=$install_prog case " $install_prog " in *[\\\ /]cp\ *) install_cp=: ;; *) install_cp=false ;; esac # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=false stripme= no_mode=: for arg do arg2= if test -n "$dest"; then func_append files " $dest" dest=$arg continue fi case $arg in -d) isdir=: ;; -f) if $install_cp; then :; else prev=$arg fi ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then if test X-m = "X$prev" && test -n "$install_override_mode"; then arg2=$install_override_mode no_mode=false fi prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_arg pretty "$arg" func_append install_prog " $func_quote_arg_result" if test -n "$arg2"; then func_quote_arg pretty "$arg2" fi func_append install_shared_prog " $func_quote_arg_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the '$prev' option requires an argument" if test -n "$install_override_mode" && $no_mode; then if $install_cp; then :; else func_quote_arg pretty "$install_override_mode" func_append install_shared_prog " -m $func_quote_arg_result" fi fi if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=: if $isdir; then destdir=$dest destname= else func_dirname_and_basename "$dest" "" "." destdir=$func_dirname_result destname=$func_basename_result # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "'$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "'$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic=$magic staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. func_append staticlibs " $file" ;; *.la) func_resolve_sysroot "$file" file=$func_resolve_sysroot_result # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "'$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) func_append current_libdirs " $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) func_append future_libdirs " $libdir" ;; esac fi func_dirname "$file" "/" "" dir=$func_dirname_result func_append dir "$objdir" if test -n "$relink_command"; then # Strip any trailing slash from the destination. func_stripname '' '/' "$libdir" destlibdir=$func_stripname_result func_stripname '' '/' "$destdir" s_destdir=$func_stripname_result # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "X$s_destdir" | $Xsed -e "s%$destlibdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install '$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "$relink_command" | $SED "s%@inst_prefix_dir@%%"` fi func_warning "relinking '$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink '\''$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname=$1 shift srcname=$realname test -n "$relink_command" && srcname=${realname}T # Install the shared library and build the symlinks. func_show_eval "$install_shared_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme=$stripme case $host_os in cygwin* | mingw* | windows* | pw32* | cegcc*) case $realname in *.dll.a) tstripme= ;; esac ;; os2*) case $realname in *_dll.a) tstripme= ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try 'ln -sf' first, because the 'ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib=$destdir/$realname func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name=$func_basename_result instname=$dir/${name}i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && func_append staticlibs " $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest=$destfile destfile= ;; *) func_fatal_help "cannot copy a libtool object to '$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test yes = "$build_old_libs"; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile=$destdir/$destname else func_basename "$file" destfile=$func_basename_result destfile=$destdir/$destfile fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext= case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=.exe fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw* | *windows*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script '$wrapper'" finalize=: for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile=$libdir/`$ECHO "$lib" | $SED 's%^.*/%%g'` if test -n "$libdir" && test ! -f "$libfile"; then func_warning "'$lib' has not been installed in '$libdir'" finalize=false fi done relink_command= func_source "$wrapper" outputname= if test no = "$fast_install" && test -n "$relink_command"; then $opt_dry_run || { if $finalize; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file=$func_basename_result outputname=$tmpdir/$file # Replace the output file specification. relink_command=`$ECHO "$relink_command" | $SED 's%@OUTPUT@%'"$outputname"'%g'` $opt_quiet || { func_quote_arg expand,pretty "$relink_command" eval "func_echo $func_quote_arg_result" } if eval "$relink_command"; then : else func_error "error: relink '$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file=$outputname else func_warning "cannot relink '$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "$file$stripped_ext" | $SED "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name=$func_basename_result # Set up the ranlib parameters. oldlib=$destdir/$name func_to_tool_file "$oldlib" func_convert_file_msys_to_w32 tool_oldlib=$func_to_tool_file_result func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $tool_oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run '$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL "$progpath" $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test install = "$opt_mode" && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $debug_cmd my_outputname=$1 my_originator=$2 my_pic_p=${3-false} my_prefix=`$ECHO "$my_originator" | $SED 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test no != "$dlself"; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms=${my_outputname}S.c else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist=$output_objdir/$my_outputname.nm func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for '$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif #if defined __GNUC__ && (((__GNUC__ == 4) && (__GNUC_MINOR__ >= 4)) || (__GNUC__ > 4)) #pragma GCC diagnostic ignored \"-Wstrict-prototypes\" #endif /* Keep this code in sync between libtool.m4, ltmain, lt_system.h, and tests. */ #if defined _WIN32 || defined __CYGWIN__ || defined _WIN32_WCE /* DATA imports from DLLs on WIN32 can't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */ # define LT_DLSYM_CONST #elif defined __osf__ /* This system does not cope well with relocations in const data. */ # define LT_DLSYM_CONST #else # define LT_DLSYM_CONST const #endif #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* External symbol declarations for the compiler. */\ " if test yes = "$dlself"; then func_verbose "generating symbol list for '$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "$objs$old_deplibs" | $SP2NL | $SED "$lo2o" | $NL2SP` for progfile in $progfiles; do func_to_tool_file "$progfile" func_convert_file_msys_to_w32 func_verbose "extracting global C symbols from '$func_to_tool_file_result'" $opt_dry_run || eval "$NM $func_to_tool_file_result | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols=$output_objdir/$outputname.exp $opt_dry_run || { $RM $export_symbols eval "$SED -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *windows* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "$SED -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin* | *mingw* | *windows* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from '$dlprefile'" func_basename "$dlprefile" name=$func_basename_result case $host in *cygwin* | *mingw* | *windows* | *cegcc* ) # if an import library, we need to obtain dlname if func_win32_import_lib_p "$dlprefile"; then func_tr_sh "$dlprefile" eval "curr_lafile=\$libfile_$func_tr_sh_result" dlprefile_dlbasename= if test -n "$curr_lafile" && func_lalib_p "$curr_lafile"; then # Use subshell, to avoid clobbering current variable values dlprefile_dlname=`source "$curr_lafile" && echo "$dlname"` if test -n "$dlprefile_dlname"; then func_basename "$dlprefile_dlname" dlprefile_dlbasename=$func_basename_result else # no lafile. user explicitly requested -dlpreopen . $sharedlib_from_linklib_cmd "$dlprefile" dlprefile_dlbasename=$sharedlib_from_linklib_result fi fi $opt_dry_run || { if test -n "$dlprefile_dlbasename"; then eval '$ECHO ": $dlprefile_dlbasename" >> "$nlist"' else func_warning "Could not compute DLL name from $name" eval '$ECHO ": $name " >> "$nlist"' fi func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 case $host in i[3456]86-*-mingw32*) eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/_nm__//' >> '$nlist'" ;; *) eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe | $SED -e '/I __imp/d' -e 's/I __nm_/D /;s/__nm_//' >> '$nlist'" ;; esac } else # not an import lib $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } fi ;; *) $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' func_to_tool_file "$dlprefile" func_convert_file_msys_to_w32 eval "$NM \"$func_to_tool_file_result\" 2>/dev/null | $global_symbol_pipe >> '$nlist'" } ;; esac done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else echo '/* NONE */' >> "$output_objdir/$my_dlsyms" fi func_show_eval '$RM "${nlist}I"' if test -n "$global_symbol_to_import"; then eval "$global_symbol_to_import"' < "$nlist"S > "$nlist"I' fi echo >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; extern LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[];\ " if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ static void lt_syminit(void) { LT_DLSYM_CONST lt_dlsymlist *symbol = lt_${my_prefix}_LTX_preloaded_symbols; for (; symbol->name; ++symbol) {" $SED 's/.*/ if (STREQ (symbol->name, \"&\")) symbol->address = (void *) \&&;/' < "$nlist"I >> "$output_objdir/$my_dlsyms" echo >> "$output_objdir/$my_dlsyms" "\ } }" fi echo >> "$output_objdir/$my_dlsyms" "\ LT_DLSYM_CONST lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = { {\"$my_originator\", (void *) 0}," if test -s "$nlist"I; then echo >> "$output_objdir/$my_dlsyms" "\ {\"@INIT@\", (void *) <_syminit}," fi case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac echo >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2.*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) $my_pic_p && pic_flag_for_symtable=" $pic_flag" ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) func_append symtab_cflags " $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T" "${nlist}I"' # Transform the symbol file into the correct name. symfileobj=$output_objdir/${my_outputname}S.$objext case $host in *cygwin* | *mingw* | *windows* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "$compile_command" | $SED "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "$finalize_command" | $SED "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for '$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "$compile_command" | $SED "s% @SYMFILE@%%"` finalize_command=`$ECHO "$finalize_command" | $SED "s% @SYMFILE@%%"` fi } # func_cygming_gnu_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is a GNU/binutils-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_gnu_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_gnu_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $EGREP ' (_head_[A-Za-z0-9_]+_[ad]l*|[A-Za-z0-9_]+_[ad]l*_iname)$'` test -n "$func_cygming_gnu_implib_tmp" } # func_cygming_ms_implib_p ARG # This predicate returns with zero status (TRUE) if # ARG is an MS-style import library. Returns # with nonzero status (FALSE) otherwise. func_cygming_ms_implib_p () { $debug_cmd func_to_tool_file "$1" func_convert_file_msys_to_w32 func_cygming_ms_implib_tmp=`$NM "$func_to_tool_file_result" | eval "$global_symbol_pipe" | $GREP '_NULL_IMPORT_DESCRIPTOR'` test -n "$func_cygming_ms_implib_tmp" } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. # Despite the name, also deal with 64 bit binaries. func_win32_libid () { $debug_cmd win32_libid_type=unknown win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static # Keep the egrep pattern in sync with the one in _LT_CHECK_MAGIC_METHOD. if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format (pei*-i386(.*architecture: i386)?|pe-arm-wince|pe-x86-64|pe-aarch64)' >/dev/null; then case $nm_interface in "MS dumpbin") if func_cygming_ms_implib_p "$1" || func_cygming_gnu_implib_p "$1" then win32_nmres=import else win32_nmres= fi ;; *) func_to_tool_file "$1" func_convert_file_msys_to_w32 win32_nmres=`eval $NM -f posix -A \"$func_to_tool_file_result\" | $SED -n -e ' 1,100{ / I /{ s|.*|import| p q } }'` ;; esac case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_cygming_dll_for_implib ARG # # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib () { $debug_cmd sharedlib_from_linklib_result=`$DLLTOOL --identify-strict --identify "$1"` } # func_cygming_dll_for_implib_fallback_core SECTION_NAME LIBNAMEs # # The is the core of a fallback implementation of a # platform-specific function to extract the name of the # DLL associated with the specified import library LIBNAME. # # SECTION_NAME is either .idata$6 or .idata$7, depending # on the platform and compiler that created the implib. # # Echos the name of the DLL associated with the # specified import library. func_cygming_dll_for_implib_fallback_core () { $debug_cmd match_literal=`$ECHO "$1" | $SED "$sed_make_literal_regex"` $OBJDUMP -s --section "$1" "$2" 2>/dev/null | $SED '/^Contents of section '"$match_literal"':/{ # Place marker at beginning of archive member dllname section s/.*/====MARK====/ p d } # These lines can sometimes be longer than 43 characters, but # are always uninteresting /:[ ]*file format pe[i]\{,1\}-/d /^In archive [^:]*:/d # Ensure marker is printed /^====MARK====/p # Remove all lines with less than 43 characters /^.\{43\}/!d # From remaining lines, remove first 43 characters s/^.\{43\}//' | $SED -n ' # Join marker and all lines until next marker into a single line /^====MARK====/ b para H $ b para b :para x s/\n//g # Remove the marker s/^====MARK====// # Remove trailing dots and whitespace s/[\. \t]*$// # Print /./p' | # we now have a list, one entry per line, of the stringified # contents of the appropriate section of all members of the # archive that possess that section. Heuristic: eliminate # all those that have a first or second character that is # a '.' (that is, objdump's representation of an unprintable # character.) This should work for all archives with less than # 0x302f exports -- but will fail for DLLs whose name actually # begins with a literal '.' or a single character followed by # a '.'. # # Of those that remain, print the first one. $SED -e '/^\./d;/^.\./d;q' } # func_cygming_dll_for_implib_fallback ARG # Platform-specific function to extract the # name of the DLL associated with the specified # import library ARG. # # This fallback implementation is for use when $DLLTOOL # does not support the --identify-strict option. # Invoked by eval'ing the libtool variable # $sharedlib_from_linklib_cmd # Result is available in the variable # $sharedlib_from_linklib_result func_cygming_dll_for_implib_fallback () { $debug_cmd if func_cygming_gnu_implib_p "$1"; then # binutils import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$7' "$1"` elif func_cygming_ms_implib_p "$1"; then # ms-generated import library sharedlib_from_linklib_result=`func_cygming_dll_for_implib_fallback_core '.idata$6' "$1"` else # unknown sharedlib_from_linklib_result= fi } # func_extract_an_archive dir oldlib func_extract_an_archive () { $debug_cmd f_ex_an_ar_dir=$1; shift f_ex_an_ar_oldlib=$1 if test yes = "$lock_old_archive_extraction"; then lockfile=$f_ex_an_ar_oldlib.lock until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done fi func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" \ 'stat=$?; rm -f "$lockfile"; exit $stat' if test yes = "$lock_old_archive_extraction"; then $opt_dry_run || rm -f "$lockfile" fi if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $debug_cmd my_gentop=$1; shift my_oldlibs=${1+"$@"} my_oldobjs= my_xlib= my_xabs= my_xdir= for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs=$my_xlib ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib=$func_basename_result my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir=$my_gentop/$my_xlib_u func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` func_basename "$darwin_archive" darwin_base_archive=$func_basename_result darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches; do func_mkdir_p "unfat-$$/$darwin_base_archive-$darwin_arch" $LIPO -thin $darwin_arch -output "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" "$darwin_archive" cd "unfat-$$/$darwin_base_archive-$darwin_arch" func_extract_an_archive "`pwd`" "$darwin_base_archive" cd "$darwin_curdir" $RM "unfat-$$/$darwin_base_archive-$darwin_arch/$darwin_base_archive" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$sed_basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | sort | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | sort | $NL2SP` done func_extract_archives_result=$my_oldobjs } # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw/windows # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory where it is stored is # the $objdir directory. This is a cygwin/mingw/windows-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=${1-no} $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='$sed_quote_subst' # 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+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # 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 relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then file=\"\$0\"" func_quote_arg pretty "$ECHO" qECHO=$func_quote_arg_result $ECHO "\ # A function that is used when there is no print builtin or printf. func_fallback_echo () { eval 'cat <<_LTECHO_EOF \$1 _LTECHO_EOF' } ECHO=$qECHO fi # Very basic option parsing. These options are (a) specific to # the libtool wrapper, (b) are identical between the wrapper # /script/ and the wrapper /executable/ that is used only on # windows platforms, and (c) all begin with the string "--lt-" # (application programs are unlikely to have options that match # this pattern). # # There are only two supported options: --lt-debug and # --lt-dump-script. There is, deliberately, no --lt-help. # # The first argument to this parsing function should be the # script's $0 value, followed by "$@". lt_option_debug= func_parse_lt_options () { lt_script_arg0=\$0 shift for lt_opt do case \"\$lt_opt\" in --lt-debug) lt_option_debug=1 ;; --lt-dump-script) lt_dump_D=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%/[^/]*$%%'\` test \"X\$lt_dump_D\" = \"X\$lt_script_arg0\" && lt_dump_D=. lt_dump_F=\`\$ECHO \"X\$lt_script_arg0\" | $SED -e 's/^X//' -e 's%^.*/%%'\` cat \"\$lt_dump_D/\$lt_dump_F\" exit 0 ;; --lt-*) \$ECHO \"Unrecognized --lt- option: '\$lt_opt'\" 1>&2 exit 1 ;; esac done # Print the debug banner immediately: if test -n \"\$lt_option_debug\"; then echo \"$outputname:$output:\$LINENO: libtool wrapper (GNU $PACKAGE) $VERSION\" 1>&2 fi } # Used when --lt-debug. Prints its arguments to stdout # (redirection is the responsibility of the caller) func_lt_dump_args () { lt_dump_args_N=1; for lt_arg do \$ECHO \"$outputname:$output:\$LINENO: newargv[\$lt_dump_args_N]: \$lt_arg\" lt_dump_args_N=\`expr \$lt_dump_args_N + 1\` done } # Core function for launching the target application func_exec_program_core () { " case $host in # Backslashes separate directories on plain windows *-*-mingw* | *-*-windows* | *-*-os2* | *-cegcc*) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir\\\\\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ if test -n \"\$lt_option_debug\"; then \$ECHO \"$outputname:$output:\$LINENO: newargv[0]: \$progdir/\$program\" 1>&2 func_lt_dump_args \${1+\"\$@\"} 1>&2 fi exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 } # A function to encapsulate launching the target application # Strips options in the --lt-* namespace from \$@ and # launches target application with the remaining arguments. func_exec_program () { case \" \$* \" in *\\ --lt-*) for lt_wr_arg do case \$lt_wr_arg in --lt-*) ;; *) set x \"\$@\" \"\$lt_wr_arg\"; shift;; esac shift done ;; esac func_exec_program_core \${1+\"\$@\"} } # Parse options func_parse_lt_options \"\$0\" \${1+\"\$@\"} # Find the directory that this script lives in. thisdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | $SED -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"\$file\" | $SED 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"\$file\" | $SED 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | $SED -n 's/.*-> //p'\` done # Usually 'no', except on cygwin/mingw/windows when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"\$thisdir\" | $SED 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test yes = "$fast_install"; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | $SED 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else \$ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # fixup the dll searchpath if we need to. # # Fix the DLL searchpath if we need to. Do this before prepending # to shlibpath, because on Windows, both are PATH and uninstalled # libraries must come first. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi # Export our shlibpath_var if we have one. if test yes = "$shlibpath_overrides_runpath" && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"\$$shlibpath_var\" | $SED 's/::*\$//'\` export $shlibpath_var " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. func_exec_program \${1+\"\$@\"} fi else # The program doesn't exist. \$ECHO \"\$0: error: '\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 \$ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #if defined _WIN32 && !defined __GNUC__ # include # include # include #else # include # include # ifdef __CYGWIN__ # include # endif #endif #include #include #include #include #include #include #include #include #define STREQ(s1, s2) (strcmp ((s1), (s2)) == 0) /* declarations of non-ANSI functions */ #if defined __MINGW32__ # ifdef __STRICT_ANSI__ _CRTIMP int __cdecl _putenv (const char *); # endif #elif defined __CYGWIN__ # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif /* #elif defined other_platform || defined ... */ #endif /* portability defines, excluding path handling macros */ #if defined _MSC_VER # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv # define S_IXUSR _S_IEXEC #elif defined __MINGW32__ # define setmode _setmode # define stat _stat # define chmod _chmod # define getcwd _getcwd # define putenv _putenv #elif defined __CYGWIN__ # define HAVE_SETENV # define FOPEN_WB "wb" /* #elif defined other platforms ... */ #endif #if defined PATH_MAX # define LT_PATHMAX PATH_MAX #elif defined MAXPATHLEN # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif /* path handling portability macros */ #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined _WIN32 || defined __MSDOS__ || defined __DJGPP__ || \ defined __OS2__ # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free (stale); stale = 0; } \ } while (0) #if defined LT_DEBUGWRAPPER static int lt_debug = 1; #else static int lt_debug = 0; #endif const char *program_name = "libtool-wrapper"; /* in case xstrdup fails */ void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_debugprintf (const char *file, int line, const char *fmt, ...); void lt_fatal (const char *file, int line, const char *message, ...); static const char *nonnull (const char *s); static const char *nonempty (const char *s); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); char **prepare_spawn (char **argv); void lt_dump_script (FILE *f); EOF cat <= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; lt_debugprintf (__FILE__, __LINE__, "(make_executable): %s\n", nonempty (path)); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; size_t tmp_len; char *concat_name; lt_debugprintf (__FILE__, __LINE__, "(find_executable): %s\n", nonempty (wrapper)); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined HAVE_DOS_BASED_FILE_SYSTEM if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined HAVE_DOS_BASED_FILE_SYSTEM } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = (size_t) (q - p); p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal (__FILE__, __LINE__, "getcwd failed: %s", nonnull (strerror (errno))); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { lt_debugprintf (__FILE__, __LINE__, "checking path component for symlinks: %s\n", tmp_pathspec); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { lt_fatal (__FILE__, __LINE__, "error accessing file \"%s\": %s", tmp_pathspec, nonnull (strerror (errno))); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal (__FILE__, __LINE__, "could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (STREQ (str, pat)) *str = '\0'; } return str; } void lt_debugprintf (const char *file, int line, const char *fmt, ...) { va_list args; if (lt_debug) { (void) fprintf (stderr, "%s:%s:%d: ", program_name, file, line); va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } } static void lt_error_core (int exit_status, const char *file, int line, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s:%s:%d: %s: ", program_name, file, line, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *file, int line, const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, file, line, "FATAL", message, ap); va_end (ap); } static const char * nonnull (const char *s) { return s ? s : "(null)"; } static const char * nonempty (const char *s) { return (s && !*s) ? "(empty)" : nonnull (s); } void lt_setenv (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_setenv) setting '%s' to '%s'\n", nonnull (name), nonnull (value)); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else size_t len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { size_t orig_value_len = strlen (orig_value); size_t add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } void lt_update_exe_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_exe_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ size_t len = strlen (new_value); while ((len > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[--len] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { lt_debugprintf (__FILE__, __LINE__, "(lt_update_lib_path) modifying '%s' by prepending '%s'\n", nonnull (name), nonnull (value)); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF case $host_os in mingw* | windows*) cat <<"EOF" /* Prepares an argument vector before calling spawn(). Note that spawn() does not by itself call the command interpreter (getenv ("COMSPEC") != NULL ? getenv ("COMSPEC") : ({ OSVERSIONINFO v; v.dwOSVersionInfoSize = sizeof(OSVERSIONINFO); GetVersionEx(&v); v.dwPlatformId == VER_PLATFORM_WIN32_NT; }) ? "cmd.exe" : "command.com"). Instead it simply concatenates the arguments, separated by ' ', and calls CreateProcess(). We must quote the arguments since Win32 CreateProcess() interprets characters like ' ', '\t', '\\', '"' (but not '<' and '>') in a special way: - Space and tab are interpreted as delimiters. They are not treated as delimiters if they are surrounded by double quotes: "...". - Unescaped double quotes are removed from the input. Their only effect is that within double quotes, space and tab are treated like normal characters. - Backslashes not followed by double quotes are not special. - But 2*n+1 backslashes followed by a double quote become n backslashes followed by a double quote (n >= 0): \" -> " \\\" -> \" \\\\\" -> \\" */ #define SHELL_SPECIAL_CHARS "\"\\ \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" #define SHELL_SPACE_CHARS " \001\002\003\004\005\006\007\010\011\012\013\014\015\016\017\020\021\022\023\024\025\026\027\030\031\032\033\034\035\036\037" char ** prepare_spawn (char **argv) { size_t argc; char **new_argv; size_t i; /* Count number of arguments. */ for (argc = 0; argv[argc] != NULL; argc++) ; /* Allocate new argument vector. */ new_argv = XMALLOC (char *, argc + 1); /* Put quoted arguments into the new argument vector. */ for (i = 0; i < argc; i++) { const char *string = argv[i]; if (string[0] == '\0') new_argv[i] = xstrdup ("\"\""); else if (strpbrk (string, SHELL_SPECIAL_CHARS) != NULL) { int quote_around = (strpbrk (string, SHELL_SPACE_CHARS) != NULL); size_t length; unsigned int backslashes; const char *s; char *quoted_string; char *p; length = 0; backslashes = 0; if (quote_around) length++; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') length += backslashes + 1; length++; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) length += backslashes + 1; quoted_string = XMALLOC (char, length + 1); p = quoted_string; backslashes = 0; if (quote_around) *p++ = '"'; for (s = string; *s != '\0'; s++) { char c = *s; if (c == '"') { unsigned int j; for (j = backslashes + 1; j > 0; j--) *p++ = '\\'; } *p++ = c; if (c == '\\') backslashes++; else backslashes = 0; } if (quote_around) { unsigned int j; for (j = backslashes; j > 0; j--) *p++ = '\\'; *p++ = '"'; } *p = '\0'; new_argv[i] = quoted_string; } else new_argv[i] = (char *) string; } new_argv[argc] = NULL; return new_argv; } EOF ;; esac cat <<"EOF" void lt_dump_script (FILE* f) { EOF func_emit_wrapper yes | $SED -n -e ' s/^\(.\{79\}\)\(..*\)/\1\ \2/ h s/\([\\"]\)/\\\1/g s/$/\\n/ s/\([^\n]*\).*/ fputs ("\1", f);/p g D' cat <<"EOF" } EOF } # end: func_emit_cwrapperexe_src # func_win32_import_lib_p ARG # True if ARG is an import lib, as indicated by $file_magic_cmd func_win32_import_lib_p () { $debug_cmd case `eval $file_magic_cmd \"\$1\" 2>/dev/null | $SED -e 10q` in *import*) : ;; *) false ;; esac } # func_suncc_cstd_abi # !!ONLY CALL THIS FOR SUN CC AFTER $compile_command IS FULLY EXPANDED!! # Several compiler flags select an ABI that is incompatible with the # Cstd library. Avoid specifying it if any are in CXXFLAGS. func_suncc_cstd_abi () { $debug_cmd case " $compile_command " in *" -compat=g "*|*\ -std=c++[0-9][0-9]\ *|*" -library=stdcxx4 "*|*" -library=stlport4 "*) suncc_use_cstd_abi=no ;; *) suncc_use_cstd_abi=yes ;; esac } # func_mode_link arg... func_mode_link () { $debug_cmd case $host in *-*-cygwin* | *-*-mingw* | *-*-windows* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # what system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll that has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= compile_rpath_tail= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no bindir= dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= os2dllname= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=false prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= temp_rpath_tail= thread_safe=no vinfo= vinfo_number=no weak_libs= rpath_arg= single_module=$wl-single_module func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test yes != "$build_libtool_libs" \ && func_fatal_configuration "cannot build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test yes = "$build_libtool_libs" && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg=$1 shift func_quote_arg pretty,unquoted "$arg" qarg=$func_quote_arg_unquoted_result func_append libtool_args " $func_quote_arg_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in bindir) bindir=$arg prev= continue ;; dlfiles|dlprefiles) $preload || { # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=: } case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test no = "$dlself"; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test dlprefiles = "$prev"; then dlself=yes elif test dlfiles = "$prev" && test yes != "$dlopen_self"; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test dlfiles = "$prev"; then func_append dlfiles " $arg" else func_append dlprefiles " $arg" fi prev= continue ;; esac ;; expsyms) export_symbols=$arg test -f "$arg" \ || func_fatal_error "symbol file '$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex=$arg prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) func_append deplibs " $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir=$arg prev= continue ;; mllvm) # Clang does not use LLVM to link, so we can simply discard any # '-mllvm $arg' options when doing the link step. prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # func_append moreargs " $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test none = "$pic_object" && test none = "$non_pic_object"; then func_fatal_error "cannot find name of object for '$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result if test none != "$pic_object"; then # Prepend the subdirectory the object is found in. pic_object=$xdir$pic_object if test dlfiles = "$prev"; then if test yes = "$build_libtool_libs" && test yes = "$dlopen_support"; then func_append dlfiles " $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test dlprefiles = "$prev"; then # Preload the old-style object. func_append dlprefiles " $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg=$pic_object fi # Non-PIC object. if test none != "$non_pic_object"; then # Prepend the subdirectory the object is found in. non_pic_object=$xdir$non_pic_object # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test none = "$pic_object"; then arg=$non_pic_object fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object=$pic_object func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir=$func_dirname_result func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "'$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file '$arg' does not exist" fi arg=$save_arg prev= continue ;; os2dllname) os2dllname=$arg prev= continue ;; precious_regex) precious_files_regex=$arg prev= continue ;; release) release=-$arg prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "argument to -rpath is not absolute: $arg" ;; esac if test rpath = "$prev"; then case "$rpath " in *" $arg "*) ;; *) func_append rpath " $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) func_append xrpath " $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds=$arg prev= continue ;; weak) func_append weak_libs " $arg" prev= continue ;; xassembler) func_append compiler_flags " -Xassembler $qarg" prev= func_append compile_command " -Xassembler $qarg" func_append finalize_command " -Xassembler $qarg" continue ;; xcclinker) func_append linker_flags " $qarg" func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) func_append compiler_flags " $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) func_append linker_flags " $qarg" func_append compiler_flags " $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg=$arg case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "'-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -bindir) prev=bindir continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test X-export-symbols = "X$arg"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname "-L" '' "$arg" if test -z "$func_stripname_result"; then if test "$#" -gt 0; then func_fatal_error "require no space between '-L' and '$1'" else func_fatal_error "need path for '-L' option" fi fi func_resolve_sysroot "$func_stripname_result" dir=$func_resolve_sysroot_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of '$dir'" dir=$absdir ;; esac case "$deplibs " in *" -L$dir "* | *" $arg "*) # Will only happen for absolute or sysroot arguments ;; *) # Preserve sysroot, but never include relative directories case $dir in [\\/]* | [A-Za-z]:[\\/]* | =*) func_append deplibs " $arg" ;; *) func_append deplibs " -L$dir" ;; esac func_append lib_search_path " $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-windows* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "$dir" | $SED 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) func_append dllsearchpath ":$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) func_append dllsearchpath ":$testbindir";; esac ;; esac continue ;; -l*) if test X-lc = "X$arg" || test X-lm = "X$arg"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-windows* | *-*-pw32* | *-*-beos* | *-cegcc* | *-*-haiku*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test X-lc = "X$arg" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-midnightbsd*) # Do not include libc due to us having libc/libc_r. test X-lc = "X$arg" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework func_append deplibs " System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test X-lc = "X$arg" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test X-lc = "X$arg" && continue ;; esac elif test X-lc_r = "X$arg"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly* | *-*-midnightbsd*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi func_append deplibs " $arg" continue ;; -mllvm) prev=mllvm continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. # -q