logstalgia-1.0.3/0000755000203100020310000000000011526610646013462 5ustar andrewcandrewclogstalgia-1.0.3/ChangeLog0000644000203100020310000000450011526610646015233 0ustar andrewcandrewc1.0.3: * Added automatic skipping of empty periods (--disable-auto-skip to turn off). * Updated docs to reflect support for NCSA log formats, not just 'Apache'. * Support log entry dates with a valid numeric month in place of MMM. 1.0.2: * Performance improvements. * Stopped frame-rate being a bottle neck for the number of requests shown. * Improved STDIN input reliability on windows. * Handle log entry timezone offsets. * Added --paddle-position option (to allow more space for URLs). * Added --font-size option. 1.0.1: * Made STDIN non-blocking on Windows using PeekNamedPipe (thanks Rui Lopes). * Added --hide-url-prefix option to remove protocol and hostname from requests. * Removed arbitrary 1024 maximum length limit for log entries. * Fixed custom log format not working when optional fields are omitted. 1.0.0: * Every 60 minutes fade static text out and back in over a period of a minute. 0.9.9: * Support for more common Apache access log formats. * Added --paddle-mode (vhost,pid,single) which spawns separate paddles. * Fixed PPM exporter producing blank images on some video cards. 0.9.8: * Added --background option to control the background colour. * Filter hostnames from URLs before displaying them. * Fixed command line option documentation. 0.9.7: * Added --sync option (start from the next entry received on STDIN). 0.9.6: * Defer to homepage for video recording instructions. 0.9.5: * Adjust time scale with <> keys. 0.9.4: * Fixed STDIN stopping working after the first lot of records. 0.9.3: * Added seekbar for log files (not available from STDIN). * Added glow on impact with paddle (turn off using --disable-glow). * PPM output for videos using --output-ppm-stream option. * Custom log file format support. * Changed font library to FTGL. * --stop-position and --start-position options. * Open a file selector if no log file supplied (on Windows). 0.9.2: * Fixed issue with resource.h. * Makefile patch for OPTFLAGS from terjeros. * Fixed apache.log hostname parsing issue. 0.9.1: * Added example.log. 0.9.0c: * Changed Makefile to use configure libs. 0.9.0b: * Incorporated manual page fixes from Francois Marier. * Fixed bug in URL summarizer that caused it to leave out some URLs when pressed for space. 0.9.0a: * Fixed manual description of -x flag. 0.9.0: * First release. logstalgia-1.0.3/depcomp0000755000203100020310000004426711526610646015054 0ustar andrewcandrewc#! /bin/sh # depcomp - compile a program generating dependencies as side-effects scriptversion=2009-04-28.21; # UTC # Copyright (C) 1999, 2000, 2003, 2004, 2005, 2006, 2007, 2009 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 outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac 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" # 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 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 -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. 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$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 -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # 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,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$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" ;; 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. 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$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else 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,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${ s/^ *// s/ \\*$// s/$/:/ p }' "$tmpdepfile" >> "$depfile" else echo "#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. 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 # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # 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.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done 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 "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:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$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 "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" 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 "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:: \1 \\:p' >> "$depfile" echo " " >> "$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: "UTC" # time-stamp-end: "; # UTC" # End: logstalgia-1.0.3/logstalgia.win32.cbp0000644000203100020310000000574011526610646017245 0ustar andrewcandrewc logstalgia-1.0.3/COPYING0000644000203100020310000010451311526610646014521 0ustar andrewcandrewc GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. 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 them 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 prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. 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. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey 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; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If 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 convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU 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 that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. 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. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 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. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS 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 state 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) 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 . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program 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, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU 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 Lesser General Public License instead of this License. But first, please read . logstalgia-1.0.3/Makefile.in0000644000203100020310000007553311526610646015544 0ustar andrewcandrewc# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009 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@ 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@ bin_PROGRAMS = logstalgia$(EXEEXT) @FONTDIR_TRUE@am__append_1 = -DSDLAPP_FONT_DIR=\"$(sdlappfontdir)\" subdir = . DIST_COMMON = README $(am__configure_deps) $(am__dist_fonts_DATA_DIST) \ $(dist_pkgdata_DATA) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(top_srcdir)/configure COPYING \ ChangeLog INSTALL THANKS config.guess config.sub depcomp \ install-sh missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/m4/ax_check_gl.m4 \ $(top_srcdir)/m4/ax_check_glu.m4 \ $(top_srcdir)/m4/ax_lang_compiler_ms.m4 \ $(top_srcdir)/m4/ax_pthread.m4 $(top_srcdir)/m4/freetype2.m4 \ $(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/sdl.m4 \ $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(fontsdir)" \ "$(DESTDIR)$(pkgdatadir)" PROGRAMS = $(bin_PROGRAMS) am__dirstamp = $(am__leading_dot)dirstamp am_logstalgia_OBJECTS = src/ncsa.$(OBJEXT) src/ball.$(OBJEXT) \ src/core/camera.$(OBJEXT) src/core/display.$(OBJEXT) \ src/core/extensions.$(OBJEXT) src/core/frustum.$(OBJEXT) \ src/core/fxfont.$(OBJEXT) src/core/logger.$(OBJEXT) \ src/core/plane.$(OBJEXT) src/core/quadtree.$(OBJEXT) \ src/core/regex.$(OBJEXT) src/core/resource.$(OBJEXT) \ src/core/sdlapp.$(OBJEXT) src/core/seeklog.$(OBJEXT) \ src/core/stringhash.$(OBJEXT) src/core/texture.$(OBJEXT) \ src/custom.$(OBJEXT) src/logentry.$(OBJEXT) \ src/logstalgia.$(OBJEXT) src/main.$(OBJEXT) \ src/paddle.$(OBJEXT) src/ppm.$(OBJEXT) \ src/requestball.$(OBJEXT) src/slider.$(OBJEXT) \ src/summarizer.$(OBJEXT) src/textarea.$(OBJEXT) logstalgia_OBJECTS = $(am_logstalgia_OBJECTS) logstalgia_LDADD = $(LDADD) DEFAULT_INCLUDES = -I.@am__isrc@ depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \ -o $@ COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@ SOURCES = $(logstalgia_SOURCES) DIST_SOURCES = $(logstalgia_SOURCES) am__dist_fonts_DATA_DIST = data/fonts/README \ data/fonts/FreeMonoBold.ttf data/fonts/FreeSerif.ttf 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' DATA = $(dist_fonts_DATA) $(dist_pkgdata_DATA) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d "$(distdir)" \ || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr "$(distdir)"; }; } DIST_ARCHIVES = $(distdir).tar.gz $(distdir).tar.bz2 GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = -DSDLAPP_RESOURCE_DIR=\"$(pkgdatadir)\" $(am__append_1) CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FT2_CFLAGS = @FT2_CFLAGS@ FT2_CONFIG = @FT2_CONFIG@ FT2_LIBS = @FT2_LIBS@ FTGL_CFLAGS = @FTGL_CFLAGS@ FTGL_LIBS = @FTGL_LIBS@ GLU_CFLAGS = @GLU_CFLAGS@ GLU_LIBS = @GLU_LIBS@ GL_CFLAGS = @GL_CFLAGS@ GL_LIBS = @GL_LIBS@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ OBJEXT = @OBJEXT@ 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@ PKG_CONFIG = @PKG_CONFIG@ PTHREAD_CC = @PTHREAD_CC@ PTHREAD_CFLAGS = @PTHREAD_CFLAGS@ PTHREAD_LIBS = @PTHREAD_LIBS@ SDL_CFLAGS = @SDL_CFLAGS@ SDL_CONFIG = @SDL_CONFIG@ SDL_LIBS = @SDL_LIBS@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ XMKMF = @XMKMF@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ ax_pthread_config = @ax_pthread_config@ 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@ sbindir = @sbindir@ sdlappfontdir = @sdlappfontdir@ 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 logstalgia_SOURCES = \ src/ncsa.cpp src/ncsa.h \ src/ball.cpp src/ball.h \ src/core/bounds.h \ src/core/camera.cpp src/core/camera.h \ src/core/display.cpp src/core/display.h \ src/core/extensions.cpp src/core/extensions.h \ src/core/frustum.cpp src/core/frustum.h \ src/core/fxfont.cpp src/core/fxfont.h \ src/core/logger.cpp src/core/logger.h \ src/core/pi.h \ src/core/plane.cpp src/core/plane.h \ src/core/quadtree.cpp src/core/quadtree.h \ src/core/regex.cpp src/core/regex.h \ src/core/resource.cpp src/core/resource.h \ src/core/sdlapp.cpp src/core/sdlapp.h \ src/core/seeklog.cpp src/core/seeklog.h \ src/core/stringhash.cpp src/core/stringhash.h \ src/core/texture.cpp src/core/texture.h \ src/core/vectors.h \ src/custom.cpp src/custom.h \ src/logentry.cpp src/logentry.h \ src/logstalgia.cpp src/logstalgia.h \ src/main.cpp src/main.h \ src/paddle.cpp src/paddle.h \ src/ppm.cpp src/ppm.h \ src/requestball.cpp src/requestball.h \ src/slider.cpp src/slider.h \ src/summarizer.cpp src/summarizer.h \ src/textarea.cpp src/textarea.h dist_pkgdata_DATA = data/ball.tga data/example.log data/glow.tga @FONTDIR_FALSE@fontsdir = $(pkgdatadir)/fonts @FONTDIR_FALSE@dist_fonts_DATA = data/fonts/README data/fonts/FreeMonoBold.ttf data/fonts/FreeSerif.ttf all: all-am .SUFFIXES: .SUFFIXES: .cpp .o .obj am--refresh: @: $(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 .PRECIOUS: 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__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ 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): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p; \ 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) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(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)" && rm -f $$files clean-binPROGRAMS: -test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS) src/$(am__dirstamp): @$(MKDIR_P) src @: > src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/$(DEPDIR) @: > src/$(DEPDIR)/$(am__dirstamp) src/ncsa.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp) src/ball.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp) src/core/$(am__dirstamp): @$(MKDIR_P) src/core @: > src/core/$(am__dirstamp) src/core/$(DEPDIR)/$(am__dirstamp): @$(MKDIR_P) src/core/$(DEPDIR) @: > src/core/$(DEPDIR)/$(am__dirstamp) src/core/camera.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/display.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/extensions.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/frustum.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/fxfont.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/logger.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/plane.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/quadtree.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/regex.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/resource.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/sdlapp.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/seeklog.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/stringhash.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/core/texture.$(OBJEXT): src/core/$(am__dirstamp) \ src/core/$(DEPDIR)/$(am__dirstamp) src/custom.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/logentry.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/logstalgia.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/main.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp) src/paddle.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/ppm.$(OBJEXT): src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp) src/requestball.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/slider.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/summarizer.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) src/textarea.$(OBJEXT): src/$(am__dirstamp) \ src/$(DEPDIR)/$(am__dirstamp) logstalgia$(EXEEXT): $(logstalgia_OBJECTS) $(logstalgia_DEPENDENCIES) @rm -f logstalgia$(EXEEXT) $(CXXLINK) $(logstalgia_OBJECTS) $(logstalgia_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) -rm -f src/ball.$(OBJEXT) -rm -f src/core/camera.$(OBJEXT) -rm -f src/core/display.$(OBJEXT) -rm -f src/core/extensions.$(OBJEXT) -rm -f src/core/frustum.$(OBJEXT) -rm -f src/core/fxfont.$(OBJEXT) -rm -f src/core/logger.$(OBJEXT) -rm -f src/core/plane.$(OBJEXT) -rm -f src/core/quadtree.$(OBJEXT) -rm -f src/core/regex.$(OBJEXT) -rm -f src/core/resource.$(OBJEXT) -rm -f src/core/sdlapp.$(OBJEXT) -rm -f src/core/seeklog.$(OBJEXT) -rm -f src/core/stringhash.$(OBJEXT) -rm -f src/core/texture.$(OBJEXT) -rm -f src/custom.$(OBJEXT) -rm -f src/logentry.$(OBJEXT) -rm -f src/logstalgia.$(OBJEXT) -rm -f src/main.$(OBJEXT) -rm -f src/ncsa.$(OBJEXT) -rm -f src/paddle.$(OBJEXT) -rm -f src/ppm.$(OBJEXT) -rm -f src/requestball.$(OBJEXT) -rm -f src/slider.$(OBJEXT) -rm -f src/summarizer.$(OBJEXT) -rm -f src/textarea.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/ball.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/custom.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/logentry.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/logstalgia.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/ncsa.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/paddle.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/ppm.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/requestball.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/slider.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/summarizer.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/textarea.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/camera.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/display.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/extensions.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/frustum.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/fxfont.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/logger.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/plane.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/quadtree.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/regex.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/resource.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/sdlapp.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/seeklog.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/stringhash.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@src/core/$(DEPDIR)/texture.Po@am__quote@ .cpp.o: @am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\ @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\ @am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` install-dist_fontsDATA: $(dist_fonts_DATA) @$(NORMAL_INSTALL) test -z "$(fontsdir)" || $(MKDIR_P) "$(DESTDIR)$(fontsdir)" @list='$(dist_fonts_DATA)'; test -n "$(fontsdir)" || list=; \ 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)$(fontsdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(fontsdir)" || exit $$?; \ done uninstall-dist_fontsDATA: @$(NORMAL_UNINSTALL) @list='$(dist_fonts_DATA)'; test -n "$(fontsdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(fontsdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(fontsdir)" && rm -f $$files install-dist_pkgdataDATA: $(dist_pkgdata_DATA) @$(NORMAL_INSTALL) test -z "$(pkgdatadir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdatadir)" @list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \ 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)$(pkgdatadir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgdatadir)" || exit $$?; \ done uninstall-dist_pkgdataDATA: @$(NORMAL_UNINSTALL) @list='$(dist_pkgdata_DATA)'; test -n "$(pkgdatadir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(pkgdatadir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(pkgdatadir)" && rm -f $$files ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ 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 CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ 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" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(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 -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) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__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*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(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 \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(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__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: @$(am__cd) '$(distuninstallcheck_dir)' \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { 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-am all-am: Makefile $(PROGRAMS) $(DATA) installdirs: for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(fontsdir)" "$(DESTDIR)$(pkgdatadir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) -rm -f src/$(DEPDIR)/$(am__dirstamp) -rm -f src/$(am__dirstamp) -rm -f src/core/$(DEPDIR)/$(am__dirstamp) -rm -f src/core/$(am__dirstamp) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic mostlyclean-am distclean: distclean-am -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf src/$(DEPDIR) src/core/$(DEPDIR) -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-dist_fontsDATA install-dist_pkgdataDATA @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) install-data-hook install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS 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 $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -rf src/$(DEPDIR) src/core/$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS uninstall-dist_fontsDATA \ uninstall-dist_pkgdataDATA @$(NORMAL_INSTALL) $(MAKE) $(AM_MAKEFLAGS) uninstall-hook .MAKE: install-am install-data-am install-strip uninstall-am .PHONY: CTAGS GTAGS all all-am am--refresh check check-am clean \ clean-binPROGRAMS clean-generic ctags dist dist-all dist-bzip2 \ dist-gzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-compile distclean-generic \ distclean-tags distcleancheck distdir distuninstallcheck dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am \ install-data-hook install-dist_fontsDATA \ install-dist_pkgdataDATA 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-compile \ mostlyclean-generic pdf pdf-am ps ps-am tags uninstall \ uninstall-am uninstall-binPROGRAMS uninstall-dist_fontsDATA \ uninstall-dist_pkgdataDATA uninstall-hook install-data-hook: mkdir -p -m 755 ${DESTDIR}/$(mandir)/man1 $(SED) 's|SDLAPP_RESOURCE_DIR|$(pkgdatadir)|g' data/logstalgia.1 | gzip -f9 > $(DESTDIR)$(mandir)/man1/logstalgia.1.gz uninstall-hook: -rm -f $(DESTDIR)$(mandir)/man1/logstalgia.1.gz # 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: logstalgia-1.0.3/configure.ac0000644000203100020310000000457211526610646015760 0ustar andrewcandrewc# -*- Autoconf -*- # Process this file with autoconf to produce a configure script. AC_PREREQ(2.61) AC_INIT(Logstalgia, 1.0.3, [acaudwell@gmail.com]) AC_CONFIG_SRCDIR([src/main.h]) AM_INIT_AUTOMAKE([dist-bzip2 foreign subdir-objects]) AC_CANONICAL_HOST # Checks for programs. AC_PROG_CXX AC_LANG(C++) #Disable X11 on Macs unless required AS_IF([test "$with_x" != yes], [ case "$host_os" in darwin*) with_x="no" ;; esac ], []) #GL AX_CHECK_GL AX_CHECK_GLU CXXFLAGS="$CXXFLAGS $GL_CFLAGS $GLU_CFLAGS" CPPFLAGS="$CPPFLAGS $GL_CFLAGS $GLU_CFLAGS" LIBS="$LIBS $GL_LIBS $GLU_LIBS" #SDL SDL_VERSION=1.2.10 AM_PATH_SDL($SDL_VERSION, :, AC_MSG_ERROR([*** SDL version $SDL_VERSION not found!]) ) CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" CPPFLAGS="$CPPFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" #Freetype2 AC_CHECK_FT2([9.0.3],[],[AC_MSG_ERROR([FreeType2 is required by FTGL. Please see INSTALL])]) CXXFLAGS="$CXXFLAGS $FT2_CFLAGS" CPPFLAGS="$CPPFLAGS $FT2_CFLAGS" #FTGL PKG_CHECK_MODULES(FTGL, ftgl >= 2.1.3, [], AC_MSG_ERROR(FTGL 2.1.3 or greater is required. Please see INSTALL)) CXXFLAGS="$CXXFLAGS $FTGL_CFLAGS" CPPFLAGS="$CPPFLAGS $FTGL_CFLAGS" LIBS="$LIBS $FTGL_LIBS" #PNG library AC_CHECK_LIB(png, png_read_info, , AC_MSG_ERROR([PNG library required. Please see INSTALL])) #JPEG library AC_CHECK_LIB(jpeg, jpeg_read_header, , AC_MSG_ERROR([JPEG library required. Please see INSTALL])) #SDL_image library with PNG support AC_CHECK_LIB(SDL_image, IMG_LoadPNG_RW, LIBS="$LIBS -lSDL_image", AC_MSG_ERROR([SDL_image required. Please see INSTALL])) #PCRE AC_CHECK_LIB([pcre], [pcre_compile],, AC_MSG_ERROR(PCRE is required. Please see INSTALL)) #Check for required headers AC_CHECK_HEADER([SDL.h],, AC_MSG_ERROR(SDL.h is required. Please see INSTALL)) AC_CHECK_HEADER([SDL_image.h],, AC_MSG_ERROR(SDL_image.h is required. Please see INSTALL)) AC_CHECK_HEADER([ftgl.h],, AC_MSG_ERROR(ftgl.h is required. Please see INSTALL)) AC_CHECK_HEADER([pcre.h],, AC_MSG_ERROR(pcre.h is required. Please see INSTALL)) #see if ttf-font-dir option is enabled AC_ARG_ENABLE(ttf-font-dir,[AS_HELP_STRING([--enable-ttf-font-dir=DIR],[directory containing GNU FreeFont TTF fonts])],[sdlappfontdir="$enableval"],[sdlappfontdir=""]) AM_CONDITIONAL([FONTDIR], [test "x$sdlappfontdir" != "x"]) AC_SUBST(sdlappfontdir) AC_CONFIG_FILES([Makefile]) AC_OUTPUT logstalgia-1.0.3/README0000644000203100020310000001632111526610646014345 0ustar andrewcandrewc Logstalgia a website access log visualisation tool Copyright (C) 2008 Andrew Caudwell http://code.google.com/p/logstalgia/ Contents ======== 1. Description 2. Requirements 3. Using Logstalgia 4. Copyright 1. Description ============== Logstalgia is a visualization tool that replays or streams web server access logs as a retro arcade game simulation. 2. Requirements =============== Logstalgia's display is rendered using OpenGL and requires a 3D accelerated video card to run. Logstalgia supports several standardized access.log formats used by web servers such as Apache and Nginx (see 'Supported Log Formats' below). As Logstalgia is designed to playback logs in real time you will need a log from a fairly busy webserver to achieve interesting results (eg 100s of requests each minute). 3. Using Logstalgia =================== logstalgia [options] logfile options: -f Fullscreen. -WxH Set the window size. If -f is also supplied, will attempt to set the video mode to this also. -b, --background FFFFFF Background colour in hex. -x, --full-hostnames Show full request ip/hostname. -s, --speed Simulation speed. Defaults to 1 (1 second-per-second). -u, --update-rate Page Summary update speed. Defaults to 5 (5 seconds). -g name,regex,percent[,colour] Urls matching the given regex will appear under a new section with the given name using the given percentage of the screen. Colour may optionally be supplied in the common hexadecimal format (eg FF0000 for red) If no groups are supplied the default groups are Images (image files), CSS (.css files) and Scripts (.js files). If there is enough space remaining a catch-all group of Misc will appear as the last group. --paddle-mode MODE Paddle mode (pid, vhost, single). vhost - separate paddle for each virtual host in the log file. pid - separate paddle for each process id in the log file. single - single paddle (the default). --paddle-position POSITION Paddle position as a fraction of the view width (0.25 - 0.75). --sync Read from STDIN, ignoring entries before the current time. --start-position POSITION Begin at some position in the log file (between 0.0 and 1.0). --stop-position POSITION Stop at some position. --no-bounce No bouncing. --hide-response-code Hide response code. --hide-paddle Hide paddle. --hide-url-prefix Hide URL protocol and hostname prefix of requests. --disable-auto-skip Disable automatic skipping of empty time periods. --disable-progress Disable the progress bar. --disable-glow Disable the glow effect. --font-size SIZE Font size (10 - 40). --glow-duration Duration of the glow (between 0.0 and 1.0). --glow-multiplier Adjust the amount of glow. --glow-intensity Intensity of the glow. --output-ppm-stream FILE Write frames as PPM to a file (?-? for STDOUT). --output-framerate FPS Framerate of output (used with --output-ppm-stream). logfile The path to the access log file to read or '-' if you wish to supply log entries via STDIN. Examples: Watch an example access.log file using the default settings: logstalgia data/example.log Watch the live access.log, starting from the most recent batch of entries in the log (requires tail). Note than '-' at the end is required for logstalgia to know it needs to read from STDIN: tail -f /var/log/apache2/access.log | logstalgia - To follow the log in real time, use the --sync option. This will start reading from the next entry received on STDIN: tail -f /var/log/apache2/access.log | logstalgia --sync Watch a remote access.log via ssh: ssh user@example.com tail -f /var/log/apache2/access.log | logstalgia --sync Supported Log Formats: Logstalgia supports the following standardized log formats used by web servers like Apache and Nginx: NCSA Common Log Format (CLF) "%h %l %u %t \"%r\" %>s %b" NCSA Common Log Format with Virtual Host "%v %h %l %u %t \"%r\" %>s %b" NCSA extended/combined log format "%h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" NCSA extended/combined log format with Virtual Host "%v %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-agent}i\"" The process id (%P), or some other identifier, may be included as an additional field at the end of the entry. This can be used with '--paddle-mode pid' where a separate paddle will be created for each unique value in this field. Custom Log Format: Logstalgia now supports a pipe ('|') delimited custom log file format: timestamp - unix timestamp of the request date. hostname - hostname of the request path - path requested response_code - the response code from the webserver (eg 200) response_size - the size of the response in bytes The following are optional: success - 1 or 0 to indicate if successful response_colour - response colour in hexidecial (#FFFFFF) format referrer url - the referrer url user agent - the user agent virtual host - the virtual host (to use with --paddle-mode vhost) pid - process id or some other identifier (--paddle-mode pid) If success or response_colour are not provided, they will be derived from the response_code using the normal HTTP conventions (code < 400 = success). Recording Videos: See the guide on the homepage for examples of recording videos with Logstalgia: http://code.google.com/p/logstalgia/wiki/Videos Interface: The time shown in the top left of the screen is set initially from the first log entry read and is incremented according to the simulation speed (-s). The counter in the bottom right hand corner shows the number of requests displayed since the start of the current session. Pressing space at any time will pause/unpause the simulation. While paused you may use the mouse to inspect the detail of individual requests. Interactive keyboard commands: (C) Displays Logstalgia logo (N) Jump forward in time to next log entry (+-) Adjust simulation speed (<>) Adjust time scale (ESC) Quit 4. Copyright ============ Logstalgia - web server access log visualization Copyright (C) 2008 Andrew Caudwell 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 . logstalgia-1.0.3/config.sub0000755000203100020310000010344511526610646015454 0ustar andrewcandrewc#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. timestamp='2010-01-22' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted GNU ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.sub;hb=HEAD # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ kopensolaris*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray | -microblaze) os= basic_machine=$1 ;; -bluegene*) os=-cnk ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | lm32 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep | metag \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64octeon | mips64octeonel \ | mips64orion | mips64orionel \ | mips64r5900 | mips64r5900el \ | mips64vr | mips64vrel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | moxie \ | mt \ | msp430 \ | nios | nios2 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | rx \ | score \ | sh | sh[1234] | sh[24]a | sh[24]aeb | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | ubicom32 \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k | z80) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12 | picochip) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | lm32-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* | metag-* | microblaze-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64octeon-* | mips64octeonel-* \ | mips64orion-* | mips64orionel-* \ | mips64r5900-* | mips64r5900el-* \ | mips64vr-* | mips64vrel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* | rx-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[24]aeb-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tile-* | tilegx-* \ | tron-* \ | ubicom32-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-* | z80-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aros) basic_machine=i386-pc os=-aros ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; bluegene*) basic_machine=powerpc-ibm os=-cnk ;; c90) basic_machine=c90-cray os=-unicos ;; cegcc) basic_machine=arm-unknown os=-cegcc ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; dicos) basic_machine=i686-pc os=-dicos ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; microblaze) basic_machine=microblaze-xilinx ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; # This must be matched before tile*. tilegx*) basic_machine=tilegx-unknown os=-linux-gnu ;; tile*) basic_machine=tile-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; z80-*-coff) basic_machine=z80-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[24]aeb | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -auroraux) os=-auroraux ;; -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -cnk* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -auroraux* | -solaris* \ | -sym* | -kopensolaris* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* | -aros* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* | -cegcc* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops* | -es*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -dicos*) os=-dicos ;; -nacl*) ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -cnk*|-aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: logstalgia-1.0.3/src/0000755000203100020310000000000011526610646014251 5ustar andrewcandrewclogstalgia-1.0.3/src/ppm.h0000644000203100020310000000365211526610646015224 0ustar andrewcandrewc/* Copyright (C) 2009 Johannes Schindelin (johannes.schindelin@gmx.de) 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 . */ #ifndef PPM_FRAME_EXPORTER_H #define PPM_FRAME_EXPORTER_H #include #include #include #include "SDL_thread.h" #include "core/sdlapp.h" #include "core/display.h" enum { FRAME_EXPORTER_WAIT, FRAME_EXPORTER_DUMP, FRAME_EXPORTER_EXIT }; class FrameExporter { protected: char* pixels1; char* pixels2; char* pixels_out; char* pixels_shared_ptr; size_t rowstride; GLuint screentex; SDL_Thread* thread; SDL_mutex* mutex; SDL_cond* cond; int dumper_thread_state; public: FrameExporter(); virtual ~FrameExporter(); void dump(); void dumpThr(); virtual void dumpImpl() {}; }; class PPMExporterException : public std::exception { protected: std::string filename; public: PPMExporterException(std::string& filename) : filename(filename) {} virtual ~PPMExporterException() throw () {}; virtual const char* what() const throw() { return filename.c_str(); } }; class PPMExporter : public FrameExporter { protected: std::ostream* output; std::string filename; char ppmheader[1024]; public: PPMExporter(std::string outputfile); virtual ~PPMExporter(); virtual void dumpImpl(); }; #endif logstalgia-1.0.3/src/requestball.h0000644000203100020310000000312511526610646016746 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #ifndef REQUESTBALL_H #define REQUESTBALL_H #include "core/fxfont.h" #include "logentry.h" #include "ball.h" #include "textarea.h" class RequestBall : public ProjectedBall { protected: vec2f start; vec2f dest; vec2f offset; vec3f pagecolour; vec3f responseColour(); FXFont* font; TextureResource* tex; std::string response_code; vec3f response_colour; public: LogEntry* le; RequestBall(LogEntry* le, FXFont* font, TextureResource* tex, const vec3f& colour, const vec2f& pos, const vec2f& dest, float speed = 10.0f); ~RequestBall(); bool mouseOver(TextArea& textarea, vec2f& mouse); int logic(float dt); void drawGlow() const; void draw(float dt) const; void drawResponseCode() const; }; extern bool gDisableGlow; extern float gGlowIntensity; extern float gGlowMultiplier; extern float gGlowDuration; #endif logstalgia-1.0.3/src/ncsa.h0000644000203100020310000000162711526610646015354 0ustar andrewcandrewc/* Copyright (C) 2010 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #ifndef NCSA_ACCESS_LOG #define NCSA_ACCESS_LOG #include "logentry.h" class NCSALog : public AccessLog { public: NCSALog(); bool parseLine(std::string& line, LogEntry& entry); }; #endif logstalgia-1.0.3/src/ball.h0000644000203100020310000000364411526610646015343 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #ifndef BALL_H #define BALL_H #include #include "core/vectors.h" #include "core/sdlapp.h" class Line { public: vec2f start; vec2f end; Line(vec2f start, vec2f end); ~Line(); bool intersects(Line& l, vec2f* p = 0); }; class ProjectedBall { protected: std::vector points; std::vector line_lengths; float total_length; int dest_x; int start_x; float eta; float elapsed; float progress; bool has_bounced; bool no_bounce; public: vec2f pos; vec2f vel; float size; vec3f colour; float speed; ProjectedBall(); ProjectedBall(const vec2f& pos, const vec2f& vel, const vec3f& colour, int dest_x, float eta, float size, float speed = 10.0f); ~ProjectedBall(); void init(const vec2f& pos, const vec2f& vel, const vec3f& colour, int dest_x, float eta, float size, float speed); void setElapsed(float e); void project(); vec2f finish(); void bounce(); void dontBounce(); float getX(); bool isFinished() const; bool hasBounced() const { return has_bounced; } bool arrived() const; float arrivalTime(); float getProgress() const; void logic(float dt); }; #endif logstalgia-1.0.3/src/slider.h0000644000203100020310000000124411526610646015705 0ustar andrewcandrewc#ifndef POS_SLIDER_H #define POS_SLIDER_H #include "core/logger.h" #include "core/bounds.h" #include "core/fxfont.h" class PositionSlider { FXFont font; Bounds2D bounds; float percent; float mouseover; float mouseover_elapsed; float fade_time; float alpha; vec3f slidercol; float capwidth; std::string caption; public: PositionSlider(float percent = 0.0f); void setColour(vec3f col); void setCaption(std::string cap); void setPercent(float percent); bool mouseOver(vec2f pos, float* percent_ptr); bool click(vec2f pos, float* percent_ptr); void logic(float dt); void draw(float dt); }; #endif logstalgia-1.0.3/src/paddle.cpp0000644000203100020310000000722111526610646016210 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #include "paddle.h" int gPaddleMode = PADDLE_SINGLE; Paddle::Paddle(vec2f pos, vec4f colour, std::string token) { this->token = token; this->token_colour = token.size() > 0 ? colourHash2(token) : vec3f(0.5,0.5,0.5); this->pos = pos; this->lastcol = colour; this->default_colour = colour; this->colour = lastcol; this->width = 10; this->height = 50; this->target = 0; dest_y = -1; } Paddle::~Paddle() { } void Paddle::moveTo(int y, float eta, vec4f nextcol) { this->start_y = (int) this->pos.y; this->dest_y = y; this->dest_eta = eta; this->dest_elapsed = 0.0f; this->nextcol = nextcol; //debugLog("move to %d over %.2f\n", dest_y, dest_eta); } bool Paddle::visible() { return colour.w > 0.01; } bool Paddle::moving() { return dest_y != -1; } float Paddle::getY() { return pos.y; } float Paddle::getX() { return pos.x; } RequestBall* Paddle::getTarget() { return target; } void Paddle::setTarget(RequestBall* target) { this->target = target; if(target==0) { moveTo(display.height/2, 4, default_colour); return; } vec2f dest = target->finish(); vec4f col = (gPaddleMode == PADDLE_VHOST || gPaddleMode == PADDLE_PID) ? vec4f(token_colour,1.0) : vec4f(target->colour, 1.0f); moveTo((int)dest.y, target->arrivalTime(), col); } bool Paddle::mouseOver(TextArea& textarea, vec2f& mouse) { if(pos.x <= mouse.x && pos.x + width >= mouse.x && abs(pos.y - mouse.y) < height/2) { std::vector content; content.push_back( token ); textarea.setText(content); textarea.setPos(mouse); textarea.setColour(colour.truncate()); return true; } return false; } void Paddle::logic(float dt) { if(dest_y != -1) { float remaining = dest_eta - dest_elapsed; if(remaining<0.0f) { //debugLog("paddle end point reached\n"); pos.y = dest_y; dest_y = -1; colour = nextcol; lastcol = colour; } else { float alpha = remaining/dest_eta; pos.y = start_y + ((dest_y-start_y)*(1.0f - alpha)); colour = lastcol * alpha + nextcol * (1.0f - alpha); } dest_elapsed += dt; } } void Paddle::drawShadow() { if(!gPaddleMode) return; vec2f spos = vec2f(pos.x + 1.0f, pos.y + 1.0f); glColor4f(0.0, 0.0, 0.0, 0.7 * colour.w); glBegin(GL_QUADS); glVertex2f(spos.x,spos.y-(height/2)); glVertex2f(spos.x,spos.y+(height/2)); glVertex2f(spos.x+width,spos.y+(height/2)); glVertex2f(spos.x+width,spos.y-(height/2)); glEnd(); } void Paddle::draw() { if(!gPaddleMode) return; glColor4fv(colour); glBegin(GL_QUADS); glVertex2f(pos.x,pos.y-(height/2)); glVertex2f(pos.x,pos.y+(height/2)); glVertex2f(pos.x+width,pos.y+(height/2)); glVertex2f(pos.x+width,pos.y-(height/2)); glEnd(); } logstalgia-1.0.3/src/ppm.cpp0000644000203100020310000001024211526610646015550 0ustar andrewcandrewc/* Copyright (C) 2009 Johannes Schindelin (johannes.schindelin@gmx.de) 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 . */ #include "ppm.h" extern "C" { static int dumper_thread(void *arg) { FrameExporter *e = static_cast(arg); e->dumpThr(); return 0; } }; // FrameExporter FrameExporter::FrameExporter() { //this now assumes the display is setup //before the frame exporter is created //(which seems reasonable) rowstride = display.width * 3; pixels1 = new char[display.height * rowstride]; pixels2 = new char[display.height * rowstride]; pixels_out = new char[display.height * rowstride]; pixels_shared_ptr = 0; screentex = display.emptyTexture(display.width, display.height, GL_RGBA); dumper_thread_state = FRAME_EXPORTER_WAIT; cond = SDL_CreateCond(); mutex = SDL_CreateMutex(); thread = SDL_CreateThread( dumper_thread, this ); } FrameExporter::~FrameExporter() { if(dumper_thread_state != FRAME_EXPORTER_EXIT) { SDL_mutexP(mutex); dumper_thread_state = FRAME_EXPORTER_EXIT; SDL_CondSignal(cond); SDL_mutexV(mutex); } /* wait for thread to quit, then tear down */ SDL_KillThread(thread); SDL_DestroyCond(cond); SDL_DestroyMutex(mutex); if(screentex!=0) glDeleteTextures(1, &screentex); pixels_shared_ptr = 0; delete[] pixels1; delete[] pixels2; delete[] pixels_out; } void FrameExporter::dump() { display.mode2D(); glEnable(GL_TEXTURE_2D); glDisable(GL_BLEND); char* next_pixel_ptr = (pixels_shared_ptr == pixels1) ? pixels2 : pixels1; // copy pixels - now the right way up glReadPixels(0, 0, display.width, display.height, GL_RGB, GL_UNSIGNED_BYTE, next_pixel_ptr); // wait for lock before changing the pointer to point to our new buffer SDL_mutexP(mutex); //flip buffer we are pointing at pixels_shared_ptr = next_pixel_ptr; dumper_thread_state = FRAME_EXPORTER_DUMP; SDL_CondSignal(cond); SDL_mutexV(mutex); } void FrameExporter::dumpThr() { SDL_mutexP(mutex); for (;;) { while (dumper_thread_state == FRAME_EXPORTER_WAIT) SDL_CondWait(cond, mutex); if (dumper_thread_state == FRAME_EXPORTER_EXIT) break; if (pixels_shared_ptr != 0) { //invert image for(int y=0;yfail()) { delete output; throw PPMExporterException(outputfile); } } //write header sprintf(ppmheader, "P6\n# Generated by %s\n%d %d\n255\n", gSDLAppTitle.c_str(), display.width, display.height ); } PPMExporter::~PPMExporter() { SDL_mutexP(mutex); dumper_thread_state = FRAME_EXPORTER_EXIT; SDL_CondSignal(cond); SDL_mutexV(mutex); if(filename.size()>0) ((std::fstream*)output)->close(); } void PPMExporter::dumpImpl() { *output << ppmheader; output->write(pixels_out, rowstride * display.height); } logstalgia-1.0.3/src/custom.h0000644000203100020310000000165311526610646015741 0ustar andrewcandrewc/* Copyright (C) 2010 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #ifndef CUSTOM_ACCESS_LOG #define CUSTOM_ACCESS_LOG #include "logentry.h" class CustomAccessLog : public AccessLog { public: CustomAccessLog(); bool parseLine(std::string& line, LogEntry& entry); }; #endif logstalgia-1.0.3/src/summarizer.cpp0000644000203100020310000003622211526610646017160 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #include "summarizer.h" /* Method: if leaf: - return string if has children: - look at each childs 'word' count and allocate a % of the no_strings to each child where the % is the total word count of the children / the individual count of each node (rounding downwards - ie 0.9 -> 0) call each child and return the total set of strings from the children. */ //SummUnit SummUnit::SummUnit() { this->words=0; this->refs=0; this->truncated=false; this->exceptions=false; } SummUnit::SummUnit(SummNode* source, bool truncated, bool exceptions) { this->source = source; this->words = source->words; this->refs = source->refs; this->truncated = truncated; this->exceptions= exceptions; if(source->parent!=0) prependChar(source->c); } void SummUnit::buildSummary() { expanded.clear(); source->expand(str, expanded, exceptions); } void SummUnit::prependChar(char c) { str.insert(0,1,c); } //SummNode const char* summ_wildcard = "*"; SummNode::SummNode() { c = '*'; words=0; parent=0; } SummNode::SummNode(const std::string& str, size_t offset, SummNode* parent) { c = str[offset]; words=0; refs=0; this->parent=parent; //if leaf if(!addWord(str, ++offset)) { words=1; } } bool SummNode::removeWord(const std::string& str, size_t offset) { refs--; size_t str_size = str.size() - offset; if(!str_size) return false; words--; size_t no_children = children.size(); bool removed = false; for(size_t i=0;ic == str[offset]) { removed = children[i]->removeWord(str,++offset); if(children[i]->refs == 0) { std::vector::iterator it = children.begin()+i; delete *it; children.erase(it); } break; } } return removed; } void SummNode::debug(int indent) { for(int i=0;idebug(indent); } } bool SummNode::addWord(const std::string& str, size_t offset) { refs++; size_t str_size = str.size() - offset; if(!str_size) return false; words++; size_t no_children = children.size(); for(size_t i=0;ic == str[offset]) { return children[i]->addWord(str, ++offset); } } children.push_back(new SummNode(str, offset, this)); return true; } std::string format_node(std::string str, int refs) { char buff[256]; snprintf(buff, 256, "%03d %s", refs, str.c_str()); return std::string(buff); } void SummNode::expand(std::string prefix, std::vector& vec, bool exceptions) { size_t no_child = children.size(); if(no_child==0) { vec.push_back(format_node(prefix, refs)); return; } //find top-but-not-root node, expand root node std::vector::iterator it; for(size_t i=0;i strvec; children[i]->summarize(strvec, 100); for(it=strvec.begin(); it!=strvec.end(); it++) { vec.push_back(format_node(prefix+(*it).str, children[i]->refs)); } } } int SummNode::summarize(std::vector& strvec, int no_words) { // if no children, just append this node if(children.size()==0 && parent!=0) { strvec.push_back(SummUnit(this)); return 1; } int total_count=0; //get total number of words size_t no_child = children.size(); //figure out the total number of words 'below' this node int total_child_words = 0; for(size_t i=0;iwords; } //distribute slots to children int extra_slots = no_words; int un_covered=0; for(size_t i=0;iwords / total_child_words; int child_share = (int)(percent * no_words); extra_slots -= child_share; if(child_share==0) un_covered++; } //if any child will be left out need a spare catch all slot if(un_covered>extra_slots) { extra_slots--; } exception.clear(); un_covered=0; int last_uncovered=-1; //summarize children, for(size_t i=0;iwords / total_child_words; int child_share = (int)(percent * no_words); //give any left over slots to largest child if(extra_slots>0 && child_share==0) { if(i==no_child-1) { child_share += extra_slots; extra_slots = 0; } else { child_share += 1; extra_slots -= 1; } } if(child_share<=0) { un_covered++; exception.push_back(true); last_uncovered=i; continue; } exception.push_back(false); int currsize = strvec.size(); int count = children[i]->summarize(strvec, child_share); total_count+=count; size_t newsize = (size_t) (count + currsize); for(size_t j=currsize;j0) { if(un_covered==1) { int currsize = strvec.size(); int count = children[last_uncovered]->summarize(strvec, 1); size_t newsize = (size_t) (count + currsize); total_count += count; for(size_t j=currsize;junit = unit; vec3f col = icol!=0 ? *icol : colourHash(unit.str); this->colour = vec4f(col, 1.0f); char buff[1024]; if(unit.truncated) { if(showcount) { snprintf(buff, 1024, "%03d %s (%d)", unit.refs, unit.str.c_str(), (int) unit.expanded.size()); } else { snprintf(buff, 1024, "%s (%d)", unit.str.c_str(), (int) unit.expanded.size()); } } else { if(showcount) { snprintf(buff, 1024, "%03d %s", unit.refs, unit.str.c_str()); } else { snprintf(buff, 1024, "%s", unit.str.c_str()); } } this->displaystr = std::string(buff); this->width = font.getWidth(displaystr); } SummItem::SummItem(SummUnit unit, vec2f pos, vec2f dest, float target_x, vec3f* icol, FXFont font, bool showcount) { this->pos = pos; this->target_x = target_x; this->icol = icol; this->font = font; this->showcount=showcount; updateUnit(unit); destroy=false; moving=false; setDest(dest); } void SummItem::setDest(vec2f dest, bool depart) { if(moving && (this->dest - dest).length2()<1.0f) return; this->oldpos = pos; this->dest = dest; this->elapsed = 0; this->eta = 1.0f; destroy = false; moving = true; departing = depart; } void SummItem::logic(float dt) { if(!moving) return; float remaining = eta - elapsed; if(remaining>0.0f) { float dist_x = target_x - pos.x; if(dist_x<0.0f) dist_x = -dist_x; float alpha = 0.0f; if(dist_x<200.0f) { alpha = 1.0f - (dist_x/200.0f); } colour.w = alpha; pos = oldpos + (dest-oldpos)*(1.0f - (remaining/eta)); elapsed+=dt; } else { pos = dest; if(departing) { destroy = true; } departing = false; moving = false; colour.w=1.0f; } } void SummItem::draw(float alpha) { glColor4f(colour.x, colour.y, colour.z, colour.w * alpha); font.draw((int)pos.x, (int)pos.y, displaystr.c_str()); } // Summarizer Summarizer::Summarizer(FXFont font, float x, float top_gap, float bottom_gap, float refresh_delay, std::string matchstr, std::string title) : matchre(matchstr) { this->pos_x = x; this->top_gap = top_gap; this->bottom_gap = bottom_gap; this->title = title; this->font = font; this->refresh_delay = refresh_delay; this->refresh_elapsed = refresh_delay; this->item_colour=0; this->showcount=false; changed = false; font_gap = font.getHeight() + 4; max_strings = (int) ((display.height-top_gap-bottom_gap)/font_gap); incrementf =0; root = SummNode(); mouseover=false; right = (pos_x > (display.width/2)) ? true : false; if(this->title.size()) { this->top_gap+= font_gap; } } void Summarizer::mouseOut() { mouseover=false; } bool Summarizer::mouseOver(TextArea& textarea, vec2f mouse) { mouseover=false; if(right && mouse.x < pos_x) return false; if(mouse.y < top_gap || mouse.y > (display.height-bottom_gap)) return false; if(items.size()<1) return false; float y = mouse.y; std::list::iterator it; for(it=items.begin();it!=items.end();it++) { SummItem* si = &(*it); if(si->departing) continue; if(si->pos.y<=y && (si->pos.y+font.getHeight()+4) > y) { if(mouse.x< si->pos.x || mouse.x > si->pos.x + si->width) continue; std::vector content; textarea.setText(si->unit.expanded); textarea.setColour(si->colour.truncate()); textarea.setPos(mouse); mouseover=true; return true; } } return false; } void Summarizer::setColour(vec3f col) { this->item_colour = new vec3f(col); } bool Summarizer::isColoured() { return (item_colour!=0); } vec3f Summarizer::getColour() { return *item_colour; } Summarizer::~Summarizer() { if(item_colour!=0) delete item_colour; } bool Summarizer::supportedString(std::string& str) { return matchre.match(str); } void Summarizer::summarize() { if(!changed) return; changed = false; strings.clear(); root.summarize(strings,max_strings); size_t nostrs = strings.size(); for(size_t i=0;i1) { incrementf = (((float)display.height-font_gap-top_gap-bottom_gap)/(nostrs-1)); } else { incrementf =0; } } void Summarizer::recalc_display() { size_t nostrs = strings.size(); std::vector strfound; strfound.resize(nostrs, false); std::list::iterator it; //update summItems for(it=items.begin();it!=items.end();it++) { SummItem* item = &(*it); int match = -1; for(size_t j=0;junit.str) == 0) { item->updateUnit(summstr); match = (int)j; strfound[j]= true; break; } } if(match!= -1) { float destY = calcPosY(match); item->setDest(vec2f(pos_x, destY)); } else { float destX = right ? (display.width + 100) : -100; item->setDest(vec2f(destX, item->pos.y), true); } } //add items for strings not found for(size_t i=0;i best_size && strn_size < input_size)) { best = i; best_diff = min_common_diff; best_size = min_size; } } return best; } const std::string& Summarizer::getBestMatchStr(const std::string& str) const { int pos = getBestMatchIndex(str); return strings[pos].str; } float Summarizer::getMiddlePosY(const std::string& str) const { return getPosY(str) + (font.getHeight()) / 2; } float Summarizer::getPosY(const std::string& str) const { int best = getBestMatchIndex(str); if(best!=-1) { return calcPosY(best); } return calcPosY(0); } void Summarizer::showCount(bool showcount) { this->showcount = showcount; } void Summarizer::addString(const std::string& str) { root.addWord(str,0); changed = true; } void Summarizer::logic(float dt) { if(changed) summarize(); refresh_elapsed+=dt; if(refresh_elapsed>=refresh_delay) { recalc_display(); refresh_elapsed=0; } //move items std::list::iterator it; for(it = items.begin();it != items.end(); it++) { (*it).logic(dt); if((*it).destroy) { it = items.erase(it); if(it==items.end()) { break; } } } } void Summarizer::draw(float dt, float alpha) { glEnable(GL_BLEND); glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable(GL_TEXTURE_2D); if(title.size()) { glColor4f(1.0f, 1.0f, 1.0f, alpha); font.draw((int)pos_x, (int)(top_gap - font_gap), title.c_str()); } std::list::iterator it; for(it=items.begin();it!=items.end();it++) { (*it).draw(alpha); } } logstalgia-1.0.3/src/logstalgia.cpp0000644000203100020310000010052711526610646017110 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #include "logstalgia.h" //Logstalgia //turn performance profiling //#define LS_PERFORMANCE_PROFILE float gSplash = -1.0f; float gStartPosition = 0.0; float gStopPosition = 1.0; float gPaddlePosition = 0.67; bool gAutoSkip = true; int gFontSize = 14; bool gDisableProgress = false; bool gSyncLog = false; bool gHideURLPrefix = false; std::string profile_name; Uint32 profile_start_msec; std::string old_tz; void profile_start(std::string profile) { #ifdef LS_PERFORMANCE_PROFILE profile_start_msec = SDL_GetTicks(); profile_name = profile; #endif } void profile_stop() { #ifdef LS_PERFORMANCE_PROFILE debugLog("%s took %d ms\n", profile_name.c_str(), SDL_GetTicks() - profile_start_msec); #endif } void logstalgia_info(std::string msg) { SDLAppInfo(msg); } void logstalgia_quit(std::string error) { SDLAppQuit(error); } void logstalgia_help() { #ifdef _WIN32 SDLAppCreateWindowsConsole(); //resize window to fit help message SDLAppResizeWindowsConsole(700); #endif printf("Logstalgia v%s\n", LOGSTALGIA_VERSION); printf("Usage: logstalgia [OPTIONS] FILE\n\n"); printf("Options:\n"); printf(" -WIDTHxHEIGHT Set window size\n"); printf(" -f Fullscreen\n\n"); printf(" -b --background FFFFFF Background colour in hex\n\n"); printf(" -x --full-hostnames Show full request ip/hostname\n"); printf(" -s --speed Simulation speed (default: 1)\n"); printf(" -u --update-rate Page summary update rate (default: 5)\n\n"); printf(" -g name,regex,percent[,colour] Group urls that match a regular expression\n\n"); printf(" --paddle-mode MODE Paddle mode (single, pid, vhost)\n"); printf(" --paddle-position POSITION Paddle position as a fraction of the view width\n\n"); printf(" --sync Read from STDIN, ignoring entries before now\n"); printf(" --start-position POSITION Begin at some position in the log (0.0 - 1.0)\n"); printf(" --stop-position POSITION Stop at some position\n\n"); printf(" --no-bounce No bouncing\n\n"); printf(" --hide-response-code Hide response code\n"); printf(" --hide-paddle Hide paddle\n"); printf(" --hide-url-prefix Hide URL protocol and hostname prefix\n\n"); printf(" --disable-auto-skip Disable skipping of empty time periods\n"); printf(" --disable-progress Disable the progress bar\n"); printf(" --disable-glow Disable the glow effect\n\n"); printf(" --font-size SIZE Font size\n\n"); printf(" --glow-duration Duration of the glow (default: 0.15)\n"); printf(" --glow-multiplier Adjust the amount of glow (default: 1.25)\n"); printf(" --glow-intensity Intensity of the glow (default: 0.5)\n\n"); printf(" --output-ppm-stream FILE Write frames as PPM to a file ('-' for STDOUT)\n"); printf(" --output-framerate FPS Framerate of output (25,30,60)\n\n"); printf("FILE should be a log file or '-' to read STDIN.\n\n"); #ifdef _WIN32 printf("Press Enter\n"); getchar(); #endif exit(0); } Logstalgia::Logstalgia(std::string logfile, float simu_speed, float update_rate) : SDLApp() { info = false; paused = false; recentre = false; next = false; this->simu_speed = simu_speed; this->update_rate = update_rate; this->logfile = logfile; spawn_delay=0; highscore = 0; uimessage_timer=0.0f; ipSummarizer = 0; mintime = gSyncLog ? time(0) : 0; seeklog = 0; streamlog = 0; if(!logfile.size()) throw SDLAppException("no file supplied"); if(logfile.compare("-")==0) { logfile = "STDIN"; streamlog = new StreamLog(); gDisableProgress = true; } else { try { seeklog = new SeekLog(logfile); } catch(SeekLogException& exception) { throw SDLAppException("unable to read log file"); } } total_space = display.height - 40; remaining_space = total_space - 2; total_entries=0; background = vec3f(0.0, 0.0, 0.0); fontLarge = fontmanager.grab("FreeSerif.ttf", 42); fontMedium = fontmanager.grab("FreeMonoBold.ttf", 16); fontBall = fontmanager.grab("FreeMonoBold.ttf", 16); fontSmall = fontmanager.grab("FreeMonoBold.ttf", gFontSize); fontLarge.dropShadow(true); fontMedium.dropShadow(true); fontSmall.dropShadow(true); balltex = texturemanager.grab("ball.tga"); glowtex = texturemanager.grab("glow.tga"); infowindow = TextArea(fontSmall); mousehide_timeout = 0.0f; time_scale = 1.0; runtime = 0.0; frameExporter = 0; framecount = 0; frameskip = 0; fixed_tick_rate = 0.0; accesslog = 0; font_alpha = 1.0; //every 60 minutes seconds blank text for 60 seconds screen_blank_interval = 3600.0; screen_blank_period = 60.0; screen_blank_elapsed = 0.0; paddle_x = display.width * gPaddlePosition; paddle_colour = (gPaddleMode > PADDLE_SINGLE) ? vec4f(0.0f, 0.0f, 0.0f, 0.0f) : vec4f(0.5, 0.5, 0.5, 1.0); debugLog("Logstalgia end of constructor\n"); //check if TZ is set, store current value if(old_tz.empty()) { char* current_tz_env = getenv("TZ"); if(current_tz_env != 0) { old_tz = std::string("TZ="); old_tz += std::string(current_tz_env); } } } Logstalgia::~Logstalgia() { if(accesslog!=0) delete accesslog; for(std::map::iterator it= paddles.begin(); it!=paddles.end();it++) { delete it->second; } paddles.clear(); if(seeklog!=0) delete seeklog; if(streamlog!=0) delete streamlog; for(size_t i=0;imouseOut(); int nogrps = summGroups.size(); for(int i=0;imouseOut(); } } } void Logstalgia::keyPress(SDL_KeyboardEvent *e) { if (e->type == SDL_KEYDOWN) { if (e->keysym.sym == SDLK_ESCAPE) { appFinished=true; } if(e->keysym.sym == SDLK_q) { info = !info; } if(e->keysym.sym == SDLK_c) { gSplash = 10.0f; } if(e->keysym.sym == SDLK_n) { next = true; } if(e->keysym.sym == SDLK_SPACE) { togglePause(); } if(e->keysym.sym == SDLK_EQUALS || e->keysym.sym == SDLK_KP_PLUS) { if(simu_speed<=29.0f) { simu_speed += 1.0f; recentre=true; } } if(e->keysym.sym == SDLK_MINUS || e->keysym.sym == SDLK_KP_MINUS) { if(simu_speed>=2.0f) { simu_speed -= 1.0f; recentre=true; } } if(e->keysym.sym == SDLK_PERIOD) { if(time_scale>=1.0) { time_scale = std::min(4.0f, floorf(time_scale) + 1.0f); } else { time_scale = std::min(1.0f, time_scale * 2.0f); } } if(e->keysym.sym == SDLK_COMMA) { if(time_scale>1.0) { time_scale = std::max(0.0f, floorf(time_scale) - 1.0f); } else { time_scale = std::max(0.25f, time_scale * 0.5f); } } } } void Logstalgia::reset() { end_reached = false; highscore = 0; for(std::map::iterator it= paddles.begin(); it!=paddles.end();it++) { delete it->second; } paddles.clear(); if(gPaddleMode <= PADDLE_SINGLE) { vec2f paddle_pos = vec2f(paddle_x - 20, rand() % display.height); Paddle* paddle = new Paddle(paddle_pos, paddle_colour, ""); paddles[""] = paddle; } for(std::list::iterator it = balls.begin(); it != balls.end(); it++) { removeBall(*it); } balls.clear(); ipSummarizer->recalc_display(); for(size_t i=0;irecalc_display(); } queued_entries.clear(); // reset settings elapsed_time = 0; starttime = 0; lasttime = 0; } void Logstalgia::seekTo(float percent) { debugLog("seekTo(%.2f)\n", percent); if(gDisableProgress) return; //disable pause if enabled before seeking if(paused) paused = false; reset(); seeklog->seekTo(percent); readLog(); } void Logstalgia::mouseClick(SDL_MouseButtonEvent *e) { debugLog("click! (x=%d,y=%d)\n", e->x, e->y); if(e->type != SDL_MOUSEBUTTONDOWN) return; if(e->button == SDL_BUTTON_LEFT) { if(!gDisableProgress) { float position; if(slider.click(mousepos, &position)) { seekTo(position); } } } } //peek at the date under the mouse pointer on the slider std::string Logstalgia::dateAtPosition(float percent) { std::string date; if(seeklog == 0 || accesslog == 0) return date; //get line at position std::string linestr; if(percent<1.0 && seeklog->getNextLineAt(linestr, percent)) { LogEntry le; if(accesslog->parseLine(linestr, le)) { //display date char datestr[256]; long timestamp = le.timestamp; struct tm* timeinfo = localtime ( ×tamp ); strftime(datestr, 256, "%H:%M:%S %B %d, %Y", timeinfo); date = std::string(datestr); } } return date; } void Logstalgia::mouseMove(SDL_MouseMotionEvent *e) { mousepos = vec2f(e->x, e->y); SDL_ShowCursor(true); mousehide_timeout = 5.0f; float pos; if(!gDisableProgress && slider.mouseOver(mousepos, &pos)) { std::string date = dateAtPosition(pos); slider.setCaption(date); } } Regex ls_url_hostname_regex("^http://[^/]+(.+)$"); std::string Logstalgia::filterURLHostname(const std::string& hostname) { std::vector matches; if(ls_url_hostname_regex.match(hostname, &matches)) { return matches[0]; } return hostname; } void Logstalgia::addStrings(LogEntry* le) { std::string hostname = le->hostname; std::string pageurl = le->path; int nogroups = summGroups.size(); Summarizer* pageSummarizer= 0; for(int i=0;isupportedString(pageurl)) { pageSummarizer = summGroups[i]; break; } } if(pageSummarizer==0) return; if(gHideURLPrefix) pageurl = filterURLHostname(pageurl); pageSummarizer->addString(pageurl); ipSummarizer->addString(hostname); } void Logstalgia::addBall(LogEntry* le, float start_offset) { std::string hostname = le->hostname; std::string pageurl = le->path; //find appropriate summarizer for url int nogroups = summGroups.size(); Summarizer* pageSummarizer= 0; for(int i=0;isupportedString(pageurl)) { pageSummarizer = summGroups[i]; break; } } if(pageSummarizer==0) return; Paddle* entry_paddle = 0; if(gPaddleMode > PADDLE_SINGLE) { std::string paddle_token = (gPaddleMode == PADDLE_VHOST) ? le->vhost : le->pid; entry_paddle = paddles[paddle_token]; if(entry_paddle == 0) { vec2f paddle_pos = vec2f(display.width-(display.width/3), rand() % display.height); Paddle* paddle = new Paddle(paddle_pos, paddle_colour, paddle_token); entry_paddle = paddles[paddle_token] = paddle; } } else { entry_paddle = paddles[""]; } if(gHideURLPrefix) pageurl = filterURLHostname(pageurl); float dest_y = pageSummarizer->getMiddlePosY(pageurl); float pos_y = ipSummarizer->getMiddlePosY(hostname); float start_x = -(entry_paddle->getX()/ 5.0f); vec2f ball_start = vec2f(start_x, pos_y); vec2f ball_dest = vec2f(entry_paddle->getX(), dest_y); const std::string& match = ipSummarizer->getBestMatchStr(hostname); vec3f colour = pageSummarizer->isColoured() ? pageSummarizer->getColour() : colourHash(match); RequestBall* ball = new RequestBall(le, &fontMedium, balltex, colour, ball_start, ball_dest, simu_speed); ball->setElapsed( start_offset ); balls.push_back(ball); } BaseLog* Logstalgia::getLog() { if(seeklog !=0) return seeklog; return streamlog; } void Logstalgia::readLog(int buffer_rows) { profile_start("readLog"); //change TZ to UTC putenv((char*)"TZ=UTC"); tzset(); int entries_read = 0; std::string linestr; BaseLog* baselog = getLog(); time_t read_timestamp = 0; while( baselog->getNextLine(linestr) ) { //trim whitespace if(linestr.size()>0) { size_t string_end = linestr.find_last_not_of(" \t\f\v\n\r"); if(string_end == std::string::npos) { linestr = ""; } else if(string_end != linestr.size()-1) { linestr = linestr.substr(0,string_end+1); } } LogEntry le; bool parsed_entry; //determine format if(accesslog==0) { //is this a recognized NCSA access log? NCSALog* ncsalog = new NCSALog(); if((parsed_entry = ncsalog->parseLine(linestr, le))) { accesslog = ncsalog; } else { delete ncsalog; } if(accesslog==0) { //is this a custom log? CustomAccessLog* customlog = new CustomAccessLog(); if((parsed_entry = customlog->parseLine(linestr, le))) { accesslog = customlog; } else { delete customlog; } } } else { if(!(parsed_entry = accesslog->parseLine(linestr, le))) { debugLog("error: could not read line %s\n", linestr.c_str()); } } if(parsed_entry) { if(mintime == 0 || mintime <= le.timestamp) { queued_entries.push_back(new LogEntry(le)); total_entries++; entries_read++; //read at least the buffered row count if specified //otherwise read all entries with the same time if(buffer_rows) { if(entries_read > buffer_rows) break; } else { if(read_timestamp && read_timestamp < le.timestamp) break; } read_timestamp = le.timestamp; } } } profile_stop(); //reset TZ to previous value if(!old_tz.empty()) { putenv((char*)old_tz.c_str()); } else { #ifdef HAVE_UNSETENV unsetenv("TZ"); #else putenv("TZ="); #endif } tzset(); if(queued_entries.empty() && seeklog != 0) { if(total_entries==0) { logstalgia_quit("could not parse first entry"); } //no more entries end_reached = true; return; } if(seeklog != 0) { float percent = seeklog->getPercent(); if(percent > gStopPosition) { end_reached = true; return; } if(!gDisableProgress) slider.setPercent(percent); } //set start time if currently 0 if(starttime==0 && !queued_entries.empty()) { starttime = queued_entries.front()->timestamp; currtime = 0; } } void Logstalgia::init() { debugLog("init called\n"); ipSummarizer = new Summarizer(fontSmall, 2, 40, 0, 2.0f); reset(); readLog(); //add default groups if(summGroups.size()==0) { //images - file is under images or addGroup("CSS", "\\.css\\b", 15); addGroup("Script", "\\.js\\b", 15); addGroup("Images", "/images/|\\.(jpe?g|gif|bmp|tga|ico|png)\\b", 20); } //always fill remaining space with Misc, (if there is some) if(remaining_space>50) { addGroup(summGroups.size()>0 ? "Misc" : "", ".*"); } SDL_ShowCursor(false); //set start position if(gStartPosition > 0.0 && gStartPosition < 1.0) { seekTo(gStartPosition); } } void Logstalgia::setBackground(vec3f background) { this->background = background; } void Logstalgia::setFrameExporter(FrameExporter* exporter, int video_framerate) { int fixed_framerate = video_framerate; this->framecount = 0; this->frameskip = 0; //calculate appropriate tick rate for video frame rate while(fixed_framerate<60) { fixed_framerate += video_framerate; this->frameskip++; } this->fixed_tick_rate = 1.0f / ((float) fixed_framerate); this->frameExporter = exporter; } void Logstalgia::update(float t, float dt) { //if exporting a video use a fixed tick rate rather than time based if(frameExporter != 0) { dt = fixed_tick_rate; } dt *= time_scale; //have to manage runtime internally as we're messing with dt runtime += dt; logic(runtime, dt); draw(runtime, dt); //extract frames based on frameskip setting //if frameExporter defined if(frameExporter != 0) { if(framecount % (frameskip+1) == 0) { frameExporter->dump(); } } framecount++; } RequestBall* Logstalgia::findNearest(Paddle* paddle, const std::string& paddle_token) { float min_dist = -1.0f; RequestBall* nearest = 0; for(std::list::iterator it = balls.begin(); it != balls.end(); it++) { RequestBall* ball = *it; //special case if failed response code if(!ball->le->successful) { continue; } if(ball->le->successful && !ball->hasBounced() && (gPaddleMode <= PADDLE_SINGLE || gPaddleMode == PADDLE_VHOST && ball->le->vhost == paddle_token || gPaddleMode == PADDLE_PID && ball->le->pid == paddle_token ) ) { float dist = (paddle->getX() - ball->getX())/ball->speed; if(min_dist<0.0f || distle->path; std::string host = ball->le->hostname; int nogroups = summGroups.size(); for(int i=0;isupportedString(url)) { if(gHideURLPrefix) url = filterURLHostname(url); summGroups[i]->removeString(url); break; } } ipSummarizer->removeString(host); delete ball; } void Logstalgia::logic(float t, float dt) { float sdt = dt*simu_speed;; if(mousehide_timeout>0.0f) { mousehide_timeout -= dt; if(mousehide_timeout<0.0f) { SDL_ShowCursor(false); } } infowindow.hide(); if(end_reached && balls.empty()) { appFinished = true; return; } //if paused, dont move anything, only check what is under mouse if(paused) { for(std::map::iterator it= paddles.begin(); it!=paddles.end();it++) { std::string paddle_token = it->first; Paddle* paddle = it->second; if(paddle->mouseOver(infowindow, mousepos)) { break; } } for(std::list::iterator it = balls.begin(); it != balls.end(); it++) { RequestBall* ball = *it; if(ball->mouseOver(infowindow, mousepos)) { break; } } if(!ipSummarizer->mouseOver(infowindow,mousepos)) { int nogrps = summGroups.size(); for(int i=0;imouseOver(infowindow, mousepos)) break; } } return; } //increment clock elapsed_time += sdt; currtime = starttime + (long)(elapsed_time); //next will fast forward clock to the time of the next entry, //if the next entry is in the future if(next || gAutoSkip && balls.empty()) { if(!queued_entries.empty()) { LogEntry* le = queued_entries.front(); long entrytime = le->timestamp; if(entrytime > currtime) { elapsed_time = entrytime - starttime; currtime = starttime + (long)(elapsed_time); } } next = false; } //recalc spawn speed each second by if(currtime != lasttime) { //dont bother reading the log if we dont need to if(queued_entries.empty() || queued_entries.back()->timestamp <= currtime) { readLog(); } profile_start("determine new entries"); int items_to_spawn=0; for(std::list::iterator it = queued_entries.begin(); it != queued_entries.end(); it++) { LogEntry* le = *it; if(le->timestamp > currtime) break; items_to_spawn++; addStrings(le); } profile_stop(); //debugLog("items to spawn %d\n", items_to_spawn); if(items_to_spawn > 0) { profile_start("add new strings"); //re-summarize ipSummarizer->summarize(); int nogrps = summGroups.size(); for(int i=0;isummarize(); } profile_stop(); profile_start("add new entries"); float item_offset = 1.0 / (float) (items_to_spawn); int item_no = 0; while(!queued_entries.empty()) { LogEntry* le = queued_entries.front(); if(le->timestamp > currtime) break; float pos_offset = 1.0 - item_offset * (float) item_no++; float start_offset = std::min(1.0f, pos_offset); addBall(le, start_offset); queued_entries.pop_front(); } } //update date if(total_entries>0) { char datestr[256]; char timestr[256]; struct tm* timeinfo = localtime ( &currtime ); strftime(datestr, 256, "%A, %B %d, %Y", timeinfo); strftime(timestr, 256, "%X", timeinfo); displaydate = datestr; displaytime = timestr; } else { displaydate = ""; displaytime = ""; } lasttime=currtime; profile_stop(); } else { //do small reads per frame if we havent buffered the next second if(queued_entries.empty() || queued_entries.back()->timestamp <= currtime+1) { readLog(50); } } std::list inactivePaddles; //update paddles for(std::map::iterator it= paddles.begin(); it!=paddles.end();it++) { std::string paddle_token = it->first; Paddle* paddle = it->second; if(gPaddleMode > PADDLE_SINGLE && !paddle->moving() && !paddle->visible()) { bool token_match = false; //are there any requests that will match this paddle? for(std::list::iterator bit = balls.begin(); bit != balls.end();bit++) { RequestBall* ball = *bit; if( gPaddleMode == PADDLE_VHOST && ball->le->vhost == paddle_token || gPaddleMode == PADDLE_PID && ball->le->pid == paddle_token) { token_match = true; break; } } //mark this paddle for deletion, continue if(!token_match) { inactivePaddles.push_back(paddle); continue; } } // find nearest ball to this paddle if((recentre || !paddle->moving()) && balls.size()>0) { recentre=false; RequestBall* ball = findNearest(paddle, paddle_token); if(ball!=0 && !(paddle->moving() && paddle->getTarget() == ball)) { paddle->setTarget(ball); } } //if still not moving, recentre if(!paddle->moving()) { recentre=true; paddle->setTarget(0); } it->second->logic(sdt); } recentre = false; profile_start("check ball status"); for(std::list::iterator it = balls.begin(); it != balls.end();) { RequestBall* ball = *it; highscore += ball->logic(dt); if(ball->isFinished()) { it = balls.erase(it); removeBall(ball); } else { it++; } } profile_stop(); profile_start("ipSummarizer logic"); ipSummarizer->logic(dt); profile_stop(); profile_start("updateGroups logic"); updateGroups(dt); profile_stop(); screen_blank_elapsed += dt; if(screen_blank_elapsed-screen_blank_interval > screen_blank_period) screen_blank_elapsed = 0.0f; //update font alpha font_alpha = 1.0f; if(screen_blank_elapsed>screen_blank_interval) { font_alpha = std::min(1.0f, (float) fabs(1.0f - (screen_blank_elapsed-screen_blank_interval)/(screen_blank_period*0.5))); font_alpha *= font_alpha; } } void Logstalgia::addGroup(std::string groupstr) { std::vector groupdef; Regex groupregex("^([^,]+),([^,]+),([^,]+)(?:,([^,]+))?$"); groupregex.match(groupstr, &groupdef); vec3f colour(0.0f, 0.0f, 0.0f); if(groupdef.size()>=3) { std::string groupname = groupdef[0]; std::string groupregex = groupdef[1]; int percent = atoi(groupdef[2].c_str()); //check for optional colour param if(groupdef.size()>=4) { int col; int r, g, b; if(sscanf(groupdef[3].c_str(), "%02x%02x%02x", &r, &g, &b) == 3) { colour = vec3f( r, g, b ); debugLog("r = %d, g = %d, b = %d\n", r, g, b); colour /= 255.0f; } } addGroup(groupname, groupregex, percent, colour); } } void Logstalgia::addGroup(std::string grouptitle, std::string groupregex, int percent, vec3f colour) { if(percent<0) return; int remainpc = (int) ( ((float) remaining_space/total_space) * 100); if(percent==0) { percent=remainpc; } if(remainpcshowCount(true); if(colour.length2() > 0.01f) { summ->setColour(colour); } summGroups.push_back(summ); remaining_space -= space; } void Logstalgia::updateGroups(float dt) { int nogrps = summGroups.size(); for(int i=0;ilogic(dt); } } void Logstalgia::drawGroups(float dt, float alpha) { int nogrps = summGroups.size(); for(int i=0;idraw(dt, alpha); } } void Logstalgia::draw(float t, float dt) { if(appFinished) return; if(!gDisableProgress) slider.logic(dt); display.setClearColour(background); display.clear(); glDisable(GL_FOG); display.mode2D(); glDisable(GL_DEPTH_TEST); glDisable(GL_CULL_FACE); glDisable(GL_LIGHTING); profile_start("draw ip summarizer"); ipSummarizer->draw(dt, font_alpha); profile_stop(); profile_start("draw groups"); drawGroups(dt, font_alpha); profile_stop(); profile_start("draw balls"); glEnable(GL_BLEND); glEnable(GL_TEXTURE_2D); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glBindTexture(GL_TEXTURE_2D, balltex->textureid); for(std::list::iterator it = balls.begin(); it != balls.end(); it++) { (*it)->draw(dt); } profile_stop(); profile_start("draw response codes"); for(std::list::iterator it = balls.begin(); it != balls.end(); it++) { RequestBall* r = *it; if(gResponseCode && r->hasBounced()) { r->drawResponseCode(); } } profile_stop(); glDisable(GL_TEXTURE_2D); glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable(GL_BLEND); if(gPaddleMode != PADDLE_NONE) { //draw paddles shadows for(std::map::iterator it= paddles.begin(); it!=paddles.end();it++) { it->second->drawShadow(); } //draw paddles for(std::map::iterator it= paddles.begin(); it!=paddles.end();it++) { it->second->draw(); } } if(!gDisableGlow) { glBlendFunc (GL_ONE, GL_ONE); glEnable(GL_BLEND); glEnable(GL_TEXTURE_2D); glBindTexture(GL_TEXTURE_2D, glowtex->textureid); for(std::list::iterator it = balls.begin(); it != balls.end(); it++) { (*it)->drawGlow(); } } infowindow.draw(); glEnable(GL_BLEND); glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable(GL_TEXTURE_2D); if(uimessage_timer>0.1f) { glColor4f(1.0,1.0,uimessage_timer/3.0f,uimessage_timer/3.0f); int mwidth = fontLarge.getWidth(uimessage.c_str()); fontLarge.draw(display.width/2 - mwidth/2, display.height/2 - 20, uimessage.c_str()); uimessage_timer-=dt; } if(gSplash>0.0f) { int logowidth = fontLarge.getWidth("Logstalgia"); int logoheight = 105; int cwidth = fontMedium.getWidth("Website Access Log Viewer"); int awidth = fontMedium.getWidth("(C) 2008 Andrew Caudwell"); vec2f corner(display.width/2 - logowidth/2 - 30.0f, display.height/2 - 45); float logo_alpha = std::min(1.0f, gSplash/3.0f); float logo_bg = std::min(0.2f, gSplash/10.0f); glDisable(GL_TEXTURE_2D); glColor4f(0.0f, 0.5f, 1.0f, logo_bg); glBegin(GL_QUADS); glVertex2f(0.0f, corner.y); glVertex2f(0.0f, corner.y + logoheight); glVertex2f(display.width, corner.y + logoheight); glVertex2f(display.width, corner.y); glEnd(); glEnable(GL_TEXTURE_2D); fontLarge.alignTop(true); fontLarge.dropShadow(true); glColor4f(1,1,1,logo_alpha); fontLarge.draw(display.width/2 - logowidth/2,display.height/2 - 30, "Logstalgia"); glColor4f(0,1,1,logo_alpha); fontLarge.draw(display.width/2 - logowidth/2,display.height/2 - 30, "Log"); glColor4f(1,1,1,logo_alpha); fontMedium.draw(display.width/2 - cwidth/2,display.height/2 + 17, "Website Access Log Viewer"); fontMedium.draw(display.width/2 - awidth/2,display.height/2 + 37, "(C) 2008 Andrew Caudwell"); gSplash-=dt; } if(!gDisableProgress) slider.draw(dt); glColor4f(1,1,1,font_alpha); if(info) { fontMedium.print(2,2, "FPS %d", (int) fps); fontMedium.print(2,19,"Balls %03d", balls.size()); fontMedium.print(2,36,"Queue %03d", queued_entries.size()); fontMedium.print(2,53,"Paddles %03d", paddles.size()); } else { fontMedium.draw(2,2, displaydate.c_str()); fontMedium.draw(2,19, displaytime.c_str()); } glColor4f(1,1,1,font_alpha); int counter_width = fontLarge.getWidth("00000000"); fontLarge.alignTop(false); fontLarge.print(display.width-10-counter_width,display.height-10, "%08d", highscore); } logstalgia-1.0.3/src/custom.cpp0000644000203100020310000000356111526610646016274 0ustar andrewcandrewc#include "custom.h" //timestamp //hostname //path //response_code //response_size //success (1|0) //response_colour //referrer //user_agent //virtual_host //pid Regex custom_entry("^([^|]*)\\|([^|]*)\\|([^|]*)\\|([^|]*)\\|([^|]*)(?:\\|([^|]*))?(?:\\|#?([^|]*))?(?:\\|([^|]*))?(?:\\|([^|]*))?(?:\\|([^|]*))?(?:\\|([^|]*))?$"); CustomAccessLog::CustomAccessLog() { } bool CustomAccessLog::parseLine(std::string& line, LogEntry& entry) { std::vector matches; if(!custom_entry.match(line, &matches)) return false; entry.timestamp = atol(matches[0].c_str()); entry.hostname = matches[1]; entry.path = matches[2]; entry.response_code = matches[3]; entry.response_size = atol(matches[4].c_str()); //optional fields //success 1 or 0 if(matches.size()>5) { std::string success = matches[5]; if(success.size()==0 || success.size()==1 && success[0] == ' ') { entry.setSuccess(); } else { entry.successful = atoi(success.c_str())==1 ? true : false; } } else entry.setSuccess(); //response colour if(matches.size()>6) { std::string colour = matches[6]; int r, g, b; if(colour.size()>0 && sscanf(colour.c_str(), "%02x%02x%02x", &r, &g, &b) == 3) { entry.response_colour = vec3f( r, g, b ); entry.response_colour /= 255.0f; } else { entry.setResponseColour(); } } else entry.setResponseColour(); //referrer if(matches.size()>7) { entry.referrer = matches[7]; } //user agent if(matches.size()>8) { entry.user_agent = matches[8]; } //vhost if(matches.size()>9) { entry.vhost = matches[9]; } //pid or some other identifier if(matches.size()>10) { entry.pid = matches[10]; } return entry.validate(); } logstalgia-1.0.3/src/logentry.h0000644000203100020310000000301011526610646016257 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #ifndef LOGENTRY_H #define LOGENTRY_H #include #include #include #include #include "core/sdlapp.h" #include "core/vectors.h" #include "core/regex.h" extern bool gMask; class LogEntry { private: std::string maskHostname(std::string hostname); public: LogEntry(); bool validate(); void setSuccess(); void setResponseColour(); long timestamp; std::string hostname; std::string vhost; std::string path; std::string pid; std::string response_code; long response_size; std::string referrer; std::string user_agent; vec3f response_colour; bool successful; }; class AccessLog { public: AccessLog(); virtual ~AccessLog() {}; virtual bool parseLine(std::string& line, LogEntry& entry) {}; }; #endif logstalgia-1.0.3/src/ncsa.cpp0000644000203100020310000000754311526610646015712 0ustar andrewcandrewc/* Copyright (C) 2010 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #include "ncsa.h" const char* ls_ncsa_months[] = {"Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug" , "Sep", "Oct", "Nov", "Dec" }; Regex ls_ncsa_entry_start("^(?:([^ ]+) )?([^ ]+) +[^ ]+ +([^ ]+) +\\[(.*?)\\] +(.*)$"); Regex ls_ncsa_entry_date("(\\d+)/(\\d+|[A-Za-z]+)/(\\d+):(\\d+):(\\d+):(\\d+) ([+-])(\\d+)"); Regex ls_ncsa_entry_request("\"([^ ]+) +([^ ]+) +([^ ]+)\" +([^ ]+) +([^\\s+]+)(.*)"); Regex ls_ncsa_entry_agent("(?: +\"([^\"]+)\" +\"([^\"]+)\")?(?: +\([^ ]+))?"); NCSALog::NCSALog() { } //parse NCSA format access.log entry into components bool NCSALog::parseLine(std::string& line, LogEntry& entry) { std::vector matches; ls_ncsa_entry_start.match(line, &matches); if(matches.size()!=5) { return 0; } //get details entry.vhost = matches[0]; entry.hostname = matches[1]; //entry.username = matches[1]; //parse timestamp struct tm time_str; int day, month, year, hour, minute, second; std::string request_str = matches[4]; std::string datestr = matches[3]; matches.clear(); ls_ncsa_entry_date.match(datestr, &matches); if(matches.size()!=8) { return 0; } day = atoi(matches[0].c_str()); month = atoi(matches[1].c_str()); year = atoi(matches[2].c_str()); hour = atoi(matches[3].c_str()); minute = atoi(matches[4].c_str()); second = atoi(matches[5].c_str()); if(month) { month--; } else { //parse non numeric month for(int i=0;i<12;i++) { if(strcmp(matches[1].c_str(), ls_ncsa_months[i])==0) { month=i; break; } } } //could not parse month (range 0-11 as used by mktime) if(month<0 || month>11) return 0; //convert zone to utc offset int tz_hour = atoi(matches[7].substr(0,2).c_str()); int tz_min = atoi(matches[7].substr(2,2).c_str()); int tz_offset = tz_hour * 3600 + tz_min * 60; if(matches[6] == "-") { tz_offset = -tz_offset; } time_str.tm_year = year - 1900; time_str.tm_mon = month; time_str.tm_mday = day; time_str.tm_hour = hour; time_str.tm_min = minute; time_str.tm_sec = second; time_str.tm_isdst = -1; entry.timestamp = mktime(&time_str); //apply utc offset entry.timestamp -= tz_offset; matches.clear(); ls_ncsa_entry_request.match(request_str, &matches); if(matches.size() < 5) { return 0; } // entry.method = matches[0]; entry.path = matches[1]; // entry.protocol = matches[2]; entry.response_code = matches[3].c_str(); entry.response_size = atol(matches[4].c_str()); if(matches.size() > 5) { std::string agentstr = matches[5]; matches.clear(); ls_ncsa_entry_agent.match(agentstr, &matches); if(matches.size()==3) { entry.referrer = matches[0]; entry.user_agent = matches[1]; entry.pid = matches[2]; } } //successful if response code less than 400 int code = atoi(entry.response_code.c_str()); entry.setSuccess(); entry.setResponseColour(); return entry.validate(); } logstalgia-1.0.3/src/summarizer.h0000644000203100020310000000734011526610646016624 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #ifndef SUMMARIZER_H #define SUMMARIZER_H #include #include "core/stringhash.h" #include "core/fxfont.h" #include "core/regex.h" #include "textarea.h" extern const char* summ_wildcard; class SummNode; class SummUnit { public: SummNode* source; int words; int refs; std::string str; bool truncated; bool exceptions; std::vector expanded; void prependChar(char c); void buildSummary(); SummUnit(); SummUnit(SummNode* source, bool truncated = false, bool exceptions = false); }; class SummNode { public: SummNode* parent; SummNode(); SummNode(const std::string& str, size_t offset, SummNode* parent); char c; int words; int refs; bool is_root; std::vector children; std::vector exception; void debug(int indent = 0); bool addWord(const std::string& str, size_t offset); bool removeWord(const std::string& str, size_t offset); void expand(std::string prefix, std::vector& expansion, bool exceptions); int summarize(std::vector& strvec, int no_words); }; class SummItem { vec2f dest; vec2f oldpos; bool moving; float elapsed; float eta; float target_x; vec3f* icol; bool showcount; FXFont font; public: bool departing; bool destroy; std::string displaystr; int width; SummUnit unit; vec4f colour; vec2f pos; void setDest(vec2f dest, bool depart = false); void logic(float dt); void draw(float alpha); void updateUnit(SummUnit& unit); SummItem(SummUnit unit, vec2f pos, vec2f dest, float target_x, vec3f* icol, FXFont font, bool showcount); }; class Summarizer { std::vector strings; std::list items; SummNode root; vec3f* item_colour; float pos_x; int max_strings; int font_gap; FXFont font; bool showcount; bool right; bool mouseover; bool changed; float incrementf; float top_gap, bottom_gap; float refresh_delay; float refresh_elapsed; std::string title; Regex matchre; public: Summarizer(FXFont font, float x, float top_gap = 0.0f, float bottom_gap = 0.0f, float refresh_delay = 2.0f, std::string matchstr = ".*", std::string title=""); ~Summarizer(); bool mouseOver(TextArea& textarea, vec2f mouse); void mouseOut(); bool isColoured(); void showCount(bool showcount); void setColour(vec3f col); vec3f getColour(); bool supportedString(std::string& str); void removeString(const std::string& str); void addString(const std::string& str); const std::string& getBestMatchStr(const std::string& str) const; int getBestMatchIndex(const std::string& str) const; float getPosY(const std::string& str) const; float getMiddlePosY(const std::string& str) const; float calcPosY(int i) const; void summarize(); void recalc_display(); void logic(float dt); void draw(float dt, float alpha); }; #endif logstalgia-1.0.3/src/logentry.cpp0000644000203100020310000000552311526610646016625 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #include "logentry.h" bool gMask = true; //AccessLog AccessLog::AccessLog() { } //LogEntry LogEntry::LogEntry() { timestamp = 0; response_size = 0; successful = false; response_colour = vec3f(1.0, 0.0, 0.0); } Regex logentry_hostname_parts("([^.]+)(?:\\.([^.]+))?(?:\\.([^.]+))?(?:\\.([^.]+))?(?:\\.([^.]+))?(?:\\.([^.]+))?(?:\\.([^.]+))?(?:\\.([^.]+))?$"); std::string LogEntry::maskHostname(std::string hostname) { std::vector parts; logentry_hostname_parts.match(hostname, &parts); //if only 1-2 parts, or 3 parts and a 2 character suffix, pass through unchanged if(parts.size()<=2 || parts.size()==3 && parts[parts.size()-1].size()==2) return hostname; int num = atoi(parts[parts.size()-1].c_str()); std::string output; //if last element is numeric, assume it is a numbered ip address //(ie 192.168.0.1 => 192.168.0-) if(num!=0) { for(size_t i=0;i0) output += '.'; output += parts[i]; } output += '-'; return output; } //hide the first element //(ie dhcp113.web.com -> web.com for(size_t i=1;i1) output += '.'; output += parts[i]; } return output; } void LogEntry::setSuccess() { int code = atoi(response_code.c_str()); successful = (code<400) ? true : false; } void LogEntry::setResponseColour() { int code = atoi(response_code.c_str()); //set response colour if(code<200) { response_colour = vec3f(0.0f, 1.0f, 0.5f); } else if(code>= 200 && code < 300) { response_colour = vec3f(1.0f, 1.0f, 0.0f); } else if(code>= 300 && code < 400) { response_colour = vec3f(1.0f, 0.5f, 0.0f); } else { response_colour = vec3f(1.0f, 0.0f, 0.0f); } } bool LogEntry::validate() { if(pid == "-") pid = ""; if(referrer == "-") referrer = ""; if(hostname.size()==0) return false; if(gMask) { hostname = maskHostname(hostname); } if(path.size()==0) return false; if(timestamp == 0) return false; return true; } logstalgia-1.0.3/src/paddle.h0000644000203100020310000000327511526610646015662 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #ifndef PADDLE_H #define PADDLE_H #include "core/vectors.h" #include "core/sdlapp.h" #include "core/stringhash.h" #include "requestball.h" #define PADDLE_NONE 0 #define PADDLE_SINGLE 1 #define PADDLE_PID 2 #define PADDLE_VHOST 3 extern int gPaddleMode; class Paddle { protected: vec2f pos; RequestBall* target; std::string token; vec3f token_colour; vec4f default_colour; vec4f proc_colour; vec4f colour; vec4f lastcol; vec4f nextcol; int width, height; int start_y; int dest_y; float dest_eta; float dest_elapsed; public: Paddle(vec2f pos, vec4f colour, std::string token); ~Paddle(); void moveTo(int y, float eta, vec4f nextcol); bool moving(); bool visible(); void setTarget(RequestBall* target); RequestBall* getTarget(); void logic(float dt); bool mouseOver(TextArea& textarea, vec2f& mouse); void drawShadow(); void draw(); float getX(); float getY(); }; #endif logstalgia-1.0.3/src/ball.cpp0000644000203100020310000001270511526610646015674 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #include "ball.h" //Line Line::Line(vec2f start, vec2f end) { this->start = start; this->end = end; } Line::~Line() { } // check if line intersects the plane of another line bool Line::intersects(Line& l, vec2f *p) { vec2f a = end - start; vec2f b = l.end - l.start; float d = a.x*b.y - a.y * b.x; //parallel test if (!d) return false; vec2f w = start - l.start; //check if outside either line segment float s = b.x * w.y - b.y * w.x; float sd = s/d; if (sd < 0.0f || sd > 1.0f) return false; float t = a.x * w.y - a.y * w.x; float td = t/d; if (td < 0.0f || td > 1.0f) return false; //calculate intersect if(p != 0) *p = a * sd + start; return true; } //Projected Ball ProjectedBall::ProjectedBall() { } ProjectedBall::ProjectedBall(const vec2f& pos, const vec2f& vel, const vec3f& colour, int dest_x, float eta, float size, float speed) { init(pos, vel, colour, dest_x, eta, size, speed); } void ProjectedBall::init(const vec2f& pos, const vec2f& vel, const vec3f& colour, int dest_x, float eta, float size, float speed) { this->pos = pos; this->vel = vel; this->colour = colour; this->speed = speed; this->size = size; this->dest_x = dest_x; this->start_x = (int) pos.x; this->eta = eta; this->has_bounced=0; no_bounce = 0; project(); } ProjectedBall::~ProjectedBall() { } /*project path of the ball as a series of line segments */ void ProjectedBall::project() { elapsed = 0.0f; progress = 0.0f; points.clear(); vec2f p = pos; points.push_back(p); //project current position and direction until it hits a wall or crosses dest_x Line finish(vec2f(dest_x, 0), vec2f(dest_x, display.height)); Line top(vec2f(0,0), vec2f(display.width, 0)); Line bottom(vec2f(0,display.height), vec2f(display.width, display.height)); //project far enough to cross a side of the screen float inc = display.width*2.0f; bool finished=false; vec2f currvel = vel; total_length=0; line_lengths.clear(); while(!finished) { Line proj(p, p + currvel*inc); /* debugLog("proj = (%.2f, %.2f), (%.2f, %.2f)\n", proj.start.x, proj.start.y, proj.end.x, proj.end.y); debugLog("finish = (%.2f, %.2f), (%.2f, %.2f)\n", finish.start.x, finish.start.y, finish.end.x, finish.end.y); debugLog("top = (%.2f, %.2f), (%.2f, %.2f)\n", top.start.x, top.start.y, top.end.x, top.end.y); debugLog("bottom = (%.2f, %.2f), (%.2f, %.2f)\n", bottom.start.x, bottom.start.y, bottom.end.x, bottom.end.y); */ vec2f intersect; //find nearest intersected plane if(proj.intersects(finish, &intersect)) { finished=true; } else if(proj.intersects(bottom, &intersect)) { currvel.y = -currvel.y; intersect.y -= 1.0f; } else if(proj.intersects(top, &intersect)) { currvel.y = -currvel.y; intersect.y += 1.0f; } else { break; } float length = (intersect-p).length(); p = intersect; points.push_back(intersect); line_lengths.push_back(length); total_length +=length; } } bool ProjectedBall::isFinished() const { return has_bounced && elapsed>=eta; } void ProjectedBall::bounce() { if(has_bounced) return; pos = finish(); if(!no_bounce) { vel.x = -vel.x; dest_x = 0; } else { dest_x = display.width; } project(); has_bounced=true; } bool ProjectedBall::arrived() const { return elapsed>=eta; } void ProjectedBall::setElapsed(float e) { elapsed =e; } float ProjectedBall::arrivalTime() { return (eta-elapsed)/speed; } float ProjectedBall::getProgress() const { return progress; } void ProjectedBall::dontBounce() { no_bounce=1; } void ProjectedBall::logic(float dt) { elapsed += (dt * speed); progress = elapsed / eta; if(progress>1.0f) { if(!has_bounced) { bounce(); return; } return; } //number of lines int nolines = points.size()-1; //progress float currposf = progress * total_length; int pointno = 0; float len=0; while(pointno=nolines) { if(!has_bounced) { bounce(); return; } return; } vec2f from = points[pointno]; vec2f to = points[pointno+1]; float linepos = (currposf - len)/line_lengths[pointno]; this->pos = from + ((to-from)*linepos); } vec2f ProjectedBall::finish() { return points[points.size()-1]; } float ProjectedBall::getX() { return pos.x; } logstalgia-1.0.3/src/logstalgia.h0000644000203100020310000001051111526610646016546 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #ifndef LOGSTALGIA_H #define LOGSTALGIA_H #define LOGSTALGIA_VERSION "1.0.3" #ifdef _WIN32 #include "windows.h" #endif #include "core/display.h" #include "core/fxfont.h" #include "core/stringhash.h" #include "core/seeklog.h" #include "ncsa.h" #include "custom.h" #include "logentry.h" #include "paddle.h" #include "requestball.h" #include "summarizer.h" #include "textarea.h" #include "slider.h" #include "ppm.h" #include #include #include #include #include #include #include #include #include extern int gHighscore; extern bool gBounce; extern bool gSyncLog; extern bool gResponseCode; extern bool gDisableProgress; extern bool gHideURLPrefix; extern float gSplash; extern float gStartPosition; extern float gStopPosition; extern float gPaddlePosition; extern bool gAutoSkip; extern int gFontSize; void logstalgia_help(); void logstalgia_info(std::string msg); void logstalgia_quit(std::string error); void logstalgia_help(std::string error); class Logstalgia : public SDLApp { std::map paddles; std::string logfile; std::string displaydate; std::string displaytime; bool info; bool paused; bool recentre; bool next; bool sync; bool end_reached; int highscore; time_t mintime; time_t starttime; time_t currtime; time_t lasttime; float screen_blank_interval; float screen_blank_period; float screen_blank_elapsed; float font_alpha; float elapsed_time; float simu_speed; float update_rate; float spawn_delay; float spawn_speed; std::string uimessage; float uimessage_timer; int total_space; int remaining_space; int total_entries; vec3f background; vec4f paddle_colour; float paddle_x; TextureResource* balltex; TextureResource* glowtex; float mousehide_timeout; vec2f mousepos; RequestBall* paddle_target; FXFont fontSmall; FXFont fontMedium; FXFont fontLarge; FXFont fontBall; Summarizer* ipSummarizer; std::vector summGroups; PositionSlider slider; AccessLog* accesslog; SeekLog* seeklog; StreamLog* streamlog; std::list queued_entries; std::list balls; TextArea infowindow; float time_scale; float runtime; float fixed_tick_rate; int framecount; int frameskip; FrameExporter* frameExporter; std::string filterURLHostname(const std::string& hostname); std::string dateAtPosition(float percent); void seekTo(float percent); void readLog(int buffer_rows = 0); RequestBall* findNearest(Paddle* paddle, const std::string& paddle_token); void updateGroups(float dt); void drawGroups(float dt, float alpha); void addStrings(LogEntry* le); void addBall(LogEntry* le, float start_offset); void removeBall(RequestBall* ball); void addGroup(std::string grouptitle, std::string groupregex, int percent = 0, vec3f colour = vec3f(0.0f, 0.0f, 0.0f)); void togglePause(); BaseLog* getLog(); void reset(); void logic(float t, float dt); void draw(float t, float dt); public: Logstalgia(std::string logfile, float simu_speed, float update_rate); ~Logstalgia(); void addGroup(std::string groupstr); void setFrameExporter(FrameExporter* exporter, int video_framerate); void setBackground(vec3f background); //inherited methods void init(); void update(float t, float dt); void keyPress(SDL_KeyboardEvent *e); void mouseMove(SDL_MouseMotionEvent *e); void mouseClick(SDL_MouseButtonEvent *e); }; #endif logstalgia-1.0.3/src/main.h0000644000203100020310000000146511526610646015354 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #ifndef MAIN_H #define MAIN_H #include #include #include "logstalgia.h" #endif logstalgia-1.0.3/src/textarea.h0000644000203100020310000000246111526610646016242 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #ifndef TEXTAREA_H #define TEXTAREA_H #include #include #include "core/display.h" #include "core/vectors.h" #include "core/fxfont.h" class TextArea { vec3f colour; vec2f corner; std::vector content; FXFont font; int rectwidth; int rectheight; bool visible; public: TextArea(); TextArea(FXFont font); TextArea(std::vector& content, FXFont font, vec3f colour); void hide(); void setText(std::vector& content); void setPos(vec2f pos); void setColour(vec3f colour); void draw(); }; #endif logstalgia-1.0.3/src/requestball.cpp0000644000203100020310000001130111526610646017274 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #include "requestball.h" bool gBounce=true; bool gResponseCode=true; bool gDisableGlow = false; bool gHideBalls = false; float gGlowIntensity = 0.5; float gGlowMultiplier = 1.25; float gGlowDuration = 0.15; RequestBall::RequestBall(LogEntry* le, FXFont* font, TextureResource* tex, const vec3f& colour, const vec2f& pos, const vec2f& dest, float speed) { this->le = le; this->tex = tex; this->font = font; vec2f vel = dest - pos; vel.normalize(); int bytes = le->response_size; float size = log((float)bytes) + 1.0f; if(size<5.0f) size = 5.0f; float eta = 5; ProjectedBall::init(pos, vel, colour, (int)dest.x, eta, size, speed); this->speed = speed; start = pos; this->dest = finish(); if(!le->successful) dontBounce(); float halfsize = size * 0.5f; offset = vec2f(halfsize, halfsize); char buff[16]; snprintf(buff, 16, "%s", le->response_code.c_str()); response_code = std::string(buff); response_colour = responseColour(); } RequestBall::~RequestBall() { delete le; } vec3f RequestBall::responseColour() { return le->response_colour; } bool RequestBall::mouseOver(TextArea& textarea, vec2f& mouse) { //within 3 pixels if((pos - mouse).length2()<36.0f) { std::vector content; content.push_back( std::string( le->path ) ); content.push_back( " " ); if(le->vhost.size()>0) content.push_back( std::string("Virtual-Host: ") + le->vhost ); content.push_back( std::string("Remote-Host: ") + le->hostname ); if(le->referrer.size()>0) content.push_back( std::string("Referrer: ") + le->referrer ); if(le->user_agent.size()>0) content.push_back( std::string("User-Agent: ") + le->user_agent ); textarea.setText(content); textarea.setPos(mouse); textarea.setColour(colour); return true; } return false; } int RequestBall::logic(float dt) { float old_x = pos.x; ProjectedBall::logic(dt); //returns 1 if just became visible (for score incrementing) return (old_x<0.0f && pos.x>=0.0f); } void RequestBall::drawGlow() const { if(!hasBounced()) return; float prog = getProgress(); float glow_radius = size * size * gGlowMultiplier; float alpha = std::min(1.0f, 1.0f-(prog/gGlowDuration)); vec3f glow_col = colour * gGlowIntensity * alpha; glColor4f(glow_col.x, glow_col.y, glow_col.z, 1.0f); glPushMatrix(); glTranslatef(pos.x, pos.y, 0.0f); glBegin(GL_QUADS); glTexCoord2f(1.0f, 1.0f); glVertex2f(glow_radius,glow_radius); glTexCoord2f(1.0f, 0.0f); glVertex2f(glow_radius,-glow_radius); glTexCoord2f(0.0f, 0.0f); glVertex2f(-glow_radius,-glow_radius); glTexCoord2f(0.0f, 1.0f); glVertex2f(-glow_radius,glow_radius); glEnd(); glPopMatrix(); } void RequestBall::draw(float dt) const { bool has_bounced = hasBounced(); if(gBounce || !has_bounced || no_bounce) { vec2f offsetpos = pos - offset; glColor4f(colour.x, colour.y, colour.z, 1.0f); glPushMatrix(); glTranslatef(offsetpos.x, offsetpos.y, 0.0f); glBegin(GL_QUADS); glTexCoord2f(0.0f,0.0f); glVertex2f(0.0f, 0.0f); glTexCoord2f(1.0f,0.0f); glVertex2f(size, 0.0f); glTexCoord2f(1.0f,1.0f); glVertex2f(size, size); glTexCoord2f(0.0f,1.0f); glVertex2f(0.0f, size); glEnd(); glPopMatrix(); } } void RequestBall::drawResponseCode() const { float prog = getProgress(); float drift = prog * 100.0f; if(!le->successful) drift *= -1.0f; vec2f msgpos = (vel * drift) + vec2f(dest.x-45.0f, dest.y); glColor4f(response_colour.x, response_colour.y, response_colour.z, 1.0f - std::min(1.0f, prog * 2.0f) ); font->draw(msgpos.x, msgpos.y, response_code.c_str()); } logstalgia-1.0.3/src/textarea.cpp0000644000203100020310000000605011526610646016573 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #include "textarea.h" TextArea::TextArea() { } TextArea::TextArea(FXFont font) { this->colour = vec3f(1.0f,1.0f,1.0f); this->font = font; this->corner = vec2f(0.0f,0.0f); this->visible = false; this->font.dropShadow(true); } TextArea::TextArea(std::vector& content, FXFont font, vec3f colour) { this->colour = colour; this->font = font; this->corner = vec2f(0.0f,0.0f); setText(content); } void TextArea::hide() { this->visible=false; } void TextArea::setColour(vec3f colour) { this->colour = colour; } void TextArea::setText(std::vector& content_) { this->content.clear(); //calculate area rectwidth = 0; rectheight = content_.size() * (font.getHeight()+4) + 2; std::vector::iterator it; for(it = content_.begin(); it != content_.end(); it++) { std::string s = *it; if(s.size() > 100) { s = s.substr(0,100); } int width = font.getWidth(s) + 6; if(width>rectwidth) rectwidth = width; this->content.push_back(s); } this->visible=true; } void TextArea::setPos(vec2f pos) { corner = pos; int fontheight = font.getHeight() + 4; corner.y -= rectheight; if((corner.x + rectwidth) > display.width) { if((corner.x - rectwidth - fontheight )>0) { corner.x -= rectwidth; } else { corner.x = display.width - rectwidth; } } if(corner.y < 0) corner.y += rectheight + fontheight; if(corner.y +rectheight > display.height) corner.y -= rectheight; } void TextArea::draw() { if(!visible) return; glDisable(GL_TEXTURE_2D); glEnable(GL_BLEND); glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); vec4f col(colour, 0.2f); glColor4fv(col); glBegin(GL_QUADS); glVertex2f(corner.x, corner.y); glVertex2f(corner.x, corner.y + rectheight); glVertex2f(corner.x+rectwidth, corner.y + rectheight); glVertex2f(corner.x+rectwidth, corner.y); glEnd(); glEnable(GL_TEXTURE_2D); glColor4f(1.0f, 1.0f, 1.0f, 1.0f); int yinc = 2; std::vector::iterator it; for(it = content.begin(); it != content.end(); it++) { font.draw((int)corner.x+2, (int)corner.y+yinc, (*it).c_str()); yinc += font.getHeight() + 4; } } logstalgia-1.0.3/src/main.cpp0000644000203100020310000002746711526610646015721 0ustar andrewcandrewc/* Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #include "main.h" #ifdef _WIN32 std::string win32LogSelector() { OPENFILENAME ofn; char filepath[_MAX_PATH]; filepath[0] = '\0'; ZeroMemory(&ofn, sizeof(ofn)); ofn.lStructSize = sizeof(ofn); ofn.hwndOwner = 0; ofn.lpstrFile = filepath; ofn.nMaxFile = sizeof(filepath); ofn.lpstrFilter = "Website Access Log\0*.log\0*.*\0*.*\0"; ofn.nFilterIndex = 1; ofn.lpstrFileTitle = 0; ofn.nMaxFileTitle = 0; ofn.lpstrInitialDir = 0; ofn.Flags = OFN_PATHMUSTEXIST | OFN_FILEMUSTEXIST; GetOpenFileName(&ofn); return std::string(filepath); } #endif int main(int argc, char *argv[]) { //defaults int width = 1024; int height = 768; bool fullscreen = false; float simu_speed = 1.0f; float update_rate = 5.0f; bool multisample = false; vec3f background = vec3f(0.0, 0.0, 0.0); int video_framerate = 60; std::string ppm_file_name; std::string logfile = ""; std::vector groupstr; std::vector arguments; SDLAppInit("Logstalgia", "logstalgia"); SDLAppParseArgs(argc, argv, &width, &height, &fullscreen, &arguments); for (int i=0; i=arguments.size()) { logstalgia_quit("specify speed (1 to 30)"); } simu_speed = atof(arguments[++i].c_str()); if(simu_speed < 1.0f || simu_speed > 30.0f) { logstalgia_quit("speed should be between 1 and 30\n"); } continue; } if(args == "-u" || args == "--update-rate") { if((i+1)>=arguments.size()) { logstalgia_quit("specify update rate (1 to 60)"); } update_rate = atof(arguments[++i].c_str()); if(update_rate < 1.0f || update_rate > 60.0f) { logstalgia_quit("update rate should be between 1 and 60\n"); } continue; } //specify page url group if(args == "-g") { if((i+1)>=arguments.size()) { logstalgia_quit("specify group definition"); } groupstr.push_back(arguments[++i].c_str()); continue; } if(args == "--paddle-mode") { if((i+1)>=arguments.size()) { logstalgia_quit("specify paddle-mode (vhost,pid)"); } std::string paddle_mode = arguments[++i]; if(paddle_mode == "single") { gPaddleMode = PADDLE_SINGLE; } else if(paddle_mode == "pid") { gPaddleMode = PADDLE_PID; } else if(paddle_mode == "vhost") { gPaddleMode = PADDLE_VHOST; } else { logstalgia_quit("invalid paddle-mode"); } continue; } if(args == "--paddle-position") { if((i+1)>=arguments.size()) { logstalgia_quit("specify paddle-position (0.25 - 0.75)"); } gPaddlePosition = atof(arguments[++i].c_str()); if(gPaddlePosition < 0.25f || gPaddlePosition > 0.75f) { logstalgia_quit("paddle-position outside of range 0.25 - 0.75"); } continue; } if(args == "--font-size") { if((i+1)>=arguments.size()) { logstalgia_quit("specify font-size (10 - 40)"); } gFontSize = atoi(arguments[++i].c_str()); if(gFontSize < 10 || gFontSize > 40) { logstalgia_quit("font-size outside of range 10 - 40"); } continue; } if(args == "-b" || args == "--background") { if((i+1)>=arguments.size()) { logstalgia_quit("specify background colour (FFFFFF)"); } int r,g,b; std::string colstring = arguments[++i]; if(colstring.size()==6 && sscanf(colstring.c_str(), "%02x%02x%02x", &r, &g, &b) == 3) { background = vec3f(r,g,b); background /= 255.0f; } else { logstalgia_quit("invalid colour string"); } continue; } //dont bounce if(args == "--no-bounce") { gBounce = false; continue; } //dont draw response code if(args == "--hide-response-code") { gResponseCode = false; continue; } //no paddle if(args == "--hide-paddle") { gPaddleMode = PADDLE_NONE; continue; } if(args == "--start-position") { if((i+1)>=arguments.size()) { logstalgia_quit("specify start-position (0.0 - 1.0)"); } gStartPosition = atof(arguments[++i].c_str()); if(gStartPosition<=0.0 || gStartPosition>=1.0) { logstalgia_quit("start-position outside of range 0.0 - 1.0 (non-inclusive)"); } continue; } if(args == "--stop-position") { if((i+1)>=arguments.size()) { logstalgia_quit("specify stop-position (0.0 - 1.0)"); } gStopPosition = atof(arguments[++i].c_str()); if(gStopPosition<=0.0 || gStopPosition>1.0) { logstalgia_quit("stop-position outside of range 0.0 - 1.0"); } continue; } //disable automatic skipping of empty time periods if(args == "--disable-auto-skip") { gAutoSkip = false; continue; } //disable progress bar if(args == "--disable-progress") { gDisableProgress = true; continue; } if(args == "--disable-glow") { gDisableGlow = true; continue; } //enable multisampling if(args == "--multi-sampling") { multisample = true; continue; } if(args == "--glow-duration") { if((i+1)>=arguments.size()) { logstalgia_quit("specify glow-duration (float)"); } gGlowDuration = atof(arguments[++i].c_str()); if(gGlowDuration<=0.0 || gGlowDuration>1.0) { logstalgia_quit("glow-duration outside of range 0.0 - 1.0"); } continue; } if(args == "--glow-intensity") { if((i+1)>=arguments.size()) { logstalgia_quit("specify glow-intensity (float)"); } gGlowIntensity = atof(arguments[++i].c_str()); if(gGlowIntensity<=0.0) { logstalgia_quit("invalid glow-intensity value"); } continue; } if(args == "--glow-multiplier") { if((i+1)>=arguments.size()) { logstalgia_quit("specify glow-multiplier (float)"); } gGlowMultiplier = atof(arguments[++i].c_str()); if(gGlowMultiplier<=0.0) { logstalgia_quit("invalid glow-multiplier value"); } continue; } if(args == "--output-ppm-stream") { if((i+1)>=arguments.size()) { logstalgia_quit("specify ppm output file or '-' for stdout"); } ppm_file_name = arguments[++i]; #ifdef _WIN32 if(ppm_file_name == "-") { logstalgia_quit("stdout PPM mode not supported on Windows"); } #endif continue; } if(args == "--output-framerate") { if((i+1)>=arguments.size()) { logstalgia_quit("specify framerate (25,30,60)"); } video_framerate = atoi(arguments[++i].c_str()); if( video_framerate != 25 && video_framerate != 30 && video_framerate != 60) { logstalgia_quit("supported framerates are 25,30,60"); } continue; } if(args == "--sync") { gSyncLog = true; if(!logfile.size()) logfile = "-"; continue; } //if given a non option arg treat it as a file, or if it is '-', pass that too (stdin) if(args == "-" || args.size() >= 1 && args[0] != '-') { logfile = args; continue; } // unknown argument std::string arg_error = std::string("unknown option ") + std::string(args); logstalgia_quit(arg_error); } #ifdef _WIN32 if(!logfile.size()) { //open file dialog logfile = win32LogSelector(); if(!logfile.size()) return 0; } #endif if(!logfile.size()) logstalgia_quit("no file supplied"); // wait for a character on the file handle if reading stdin if(logfile == "-") { #ifdef _WIN32 DWORD available_bytes; HANDLE stdin_handle = GetStdHandle(STD_INPUT_HANDLE); while(PeekNamedPipe(stdin_handle, 0, 0, 0, &available_bytes, 0) && available_bytes==0 && !std::cin.fail()) { SDL_Delay(100); } #else while(std::cin.peek() == EOF && !std::cin.fail()) SDL_Delay(100); #endif std::cin.clear(); } //enable vsync display.enableVsync(true); // this causes corruption on some video drivers if(multisample) display.multiSample(4); display.init("Logstalgia", width, height, fullscreen); //init frame exporter FrameExporter* exporter = 0; if(ppm_file_name.size() > 0) { try { exporter = new PPMExporter(ppm_file_name); } catch(PPMExporterException& exception) { char errormsg[1024]; snprintf(errormsg, 1024, "could not write to '%s'", exception.what()); logstalgia_quit(errormsg); } } if(multisample) glEnable(GL_MULTISAMPLE_ARB); Logstalgia* ls = 0; try { ls = new Logstalgia(logfile, simu_speed, update_rate); //init frame exporter if(ppm_file_name.size() > 0) { ls->setFrameExporter(exporter, video_framerate); } for(size_t i=0;iaddGroup(groupstr[i]); } ls->setBackground(background); ls->run(); } catch(ResourceException& exception) { char errormsg[1024]; snprintf(errormsg, 1024, "failed to load resource '%s'", exception.what()); logstalgia_quit(errormsg); } catch(SDLAppException& exception) { if(exception.showHelp()) { logstalgia_help(); } else { logstalgia_quit(exception.what()); } } if(ls!=0) delete ls; if(exporter!=0) delete exporter; display.quit(); return 0; } logstalgia-1.0.3/src/core/0000755000203100020310000000000011526610646015201 5ustar andrewcandrewclogstalgia-1.0.3/src/core/display.h0000644000203100020310000000627711526610646017033 0ustar andrewcandrewc /* Copyright (c) 2008 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef SDLAPP_DISPLAY_H #define SDLAPP_DISPLAY_H #include "extensions.h" #include "logger.h" #include "vectors.h" #include "texture.h" #include "fxfont.h" #include #include #include #include #include class SDLInitException : public std::exception { protected: std::string error; public: SDLInitException(std::string& error) : error(error) {} virtual ~SDLInitException() throw () {}; virtual const char* what() const throw() { return error.c_str(); } }; class SDLAppDisplay { SDL_Surface *surface; bool enable_shaders; bool enable_alpha; bool vsync; int multi_sample; int SDLFlags(bool fullscreen); public: int width, height; bool fullscreen; vec3f clearColour; SDLAppDisplay(); ~SDLAppDisplay(); void init(std::string window_title, int xres, int yres, bool fullscreen); void quit(); void update(); void clear(); void enableVsync(bool vsync); void setClearColour(vec3f colour); #ifdef SDLAPP_SHADER_SUPPORT void enableShaders(bool enable); #endif void enableAlpha(bool enable); void multiSample(int sample); void mode3D(float fov, float znear, float zfar); void mode2D(); vec4f currentColour(); void fullScreenQuad(bool coord_flip); void renderToTexture(GLuint target, int width, int height, GLenum format); GLuint emptyTexture(int width, int height, GLenum format); GLuint createTexture(int width, int height, bool mipmaps, bool clamp, bool trilinear, GLenum format, unsigned int* data); vec3f project(vec3f pos); vec3f unproject(vec2f pos); void checkGLErrors(); }; extern SDLAppDisplay display; #endif logstalgia-1.0.3/src/core/seeklog.h0000644000203100020310000000547211526610646017013 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef SEEK_LOG_H #define SEEK_LOG_H #include "display.h" #include "logger.h" #include #include #include #include class BaseLog { protected: std::istream* stream; public: virtual ~BaseLog() {}; virtual bool getNextLine(std::string& line) { return false; }; virtual bool isFinished() { return false; }; }; class StreamLog : public BaseLog { bool fcntl_fail; #ifdef _WIN32 HANDLE stdin_handle; #endif public: StreamLog(); ~StreamLog(); bool getNextLine(std::string& line); bool isFinished(); }; class SeekLogException : public std::exception { protected: std::string filename; public: SeekLogException(std::string& filename) : filename(filename) {} virtual ~SeekLogException() throw () {}; virtual const char* what() const throw() { return filename.c_str(); } }; class SeekLog : public BaseLog { std::string logfile; long file_size; float current_percent; bool readFully(); public: SeekLog(std::string logfile); ~SeekLog(); void setPointer(std::streampos pointer); std::streampos getPointer(); void seekTo(float percent); bool getNextLine(std::string& line); bool getNextLineAt(std::string& line, float percent); float getPercent(); bool isFinished(); }; extern long gSeekLogMaxBufferSize; #endif logstalgia-1.0.3/src/core/sdlapp.cpp0000644000203100020310000002270311526610646017174 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "sdlapp.h" std::string gSDLAppResourceDir; std::string gSDLAppConfDir; #ifdef _WIN32 std::string gSDLAppPathSeparator = "\\"; #else std::string gSDLAppPathSeparator = "/"; #endif std::string gSDLAppTitle = "SDL App"; std::string gSDLAppExec = "sdlapp"; #ifdef _WIN32 HWND gSDLAppConsoleWindow = 0; void SDLAppCreateWindowsConsole() { if(gSDLAppConsoleWindow !=0) return; //create a console on Windows so users can see messages //find an available name for our window int console_suffix = 0; char consoleTitle[512]; sprintf(consoleTitle, "%s Console", gSDLAppTitle.c_str()); while(FindWindow(0, consoleTitle)) { sprintf(consoleTitle, "%s Console %d", gSDLAppTitle.c_str(), ++console_suffix); } AllocConsole(); SetConsoleTitle(consoleTitle); //redirect streams to console freopen("conin$", "r", stdin); freopen("conout$","w", stdout); freopen("conout$","w", stderr); gSDLAppConsoleWindow = 0; //wait for our console window while(gSDLAppConsoleWindow==0) { gSDLAppConsoleWindow = FindWindow(0, consoleTitle); SDL_Delay(100); } //disable the close button so the user cant crash gource HMENU hm = GetSystemMenu(gSDLAppConsoleWindow, false); DeleteMenu(hm, SC_CLOSE, MF_BYCOMMAND); } void SDLAppResizeWindowsConsole(int height) { if(gSDLAppConsoleWindow !=0) { RECT windowRect; if(GetWindowRect(gSDLAppConsoleWindow, &windowRect)) { float width = windowRect.right - windowRect.left; MoveWindow(gSDLAppConsoleWindow,windowRect.left,windowRect.top,width,height,true); } } } #endif bool SDLAppDirExists(std::string dir) { struct stat st; return !stat(dir.c_str(), &st) && S_ISDIR(st.st_mode); } std::string SDLAppAddSlash(std::string path) { //append slash unless the path is empty if(path.size() && path[path.size()-1] != gSDLAppPathSeparator[0]) { path += gSDLAppPathSeparator; } return path; } //info message void SDLAppInfo(std::string msg) { #ifdef _WIN32 SDLAppCreateWindowsConsole(); #endif printf("%s\n", msg.c_str()); #ifdef _WIN32 printf("\nPress Enter\n"); getchar(); #endif exit(0); } //display error only void SDLAppQuit(std::string error) { SDL_Quit(); #ifdef _WIN32 SDLAppCreateWindowsConsole(); #endif fprintf(stderr, "%s: %s\n", gSDLAppExec.c_str(), error.c_str()); fprintf(stderr, "Try '%s --help' for more information.\n\n", gSDLAppExec.c_str()); #ifdef _WIN32 fprintf(stderr, "Press Enter\n"); getchar(); #endif exit(1); } void SDLAppInit(std::string apptitle, std::string execname) { gSDLAppTitle = apptitle; gSDLAppExec = execname; std::string conf_dir = ""; std::string resource_dir = "data/"; std::string fonts_dir = "data/fonts/"; #ifdef _WIN32 char szAppPath[MAX_PATH]; GetModuleFileName(0, szAppPath, MAX_PATH); // Extract directory std::string exepath = std::string(szAppPath); int pos = exepath.rfind("\\"); std::string path = exepath.substr(0, pos+1); conf_dir = path + std::string("\\"); resource_dir = path + std::string("\\data\\"); fonts_dir = path + std::string("\\data\\fonts\\"); #else //get working directory char cwd_buff[1024]; if(getcwd(cwd_buff, 1024) == cwd_buff) { conf_dir = std::string(cwd_buff) + std::string("/"); resource_dir = std::string(cwd_buff) + std::string("/") + resource_dir; fonts_dir = std::string(cwd_buff) + std::string("/") + fonts_dir; } #endif #ifdef SDLAPP_CONF_DIR if (SDLAppDirExists(SDLAPP_CONF_DIR)) { conf_dir = SDLAPP_CONF_DIR; } #endif #ifdef SDLAPP_RESOURCE_DIR if (SDLAppDirExists(SDLAPP_RESOURCE_DIR)) { resource_dir = SDLAPP_RESOURCE_DIR; fonts_dir = SDLAPP_RESOURCE_DIR + std::string("/fonts/"); } #endif #ifdef SDLAPP_FONT_DIR if (SDLAppDirExists(SDLAPP_FONT_DIR)) { fonts_dir = SDLAPP_FONT_DIR; } #endif resource_dir = SDLAppAddSlash(resource_dir); conf_dir = SDLAppAddSlash(conf_dir); fonts_dir = SDLAppAddSlash(fonts_dir); texturemanager.setDir(resource_dir); fontmanager.setDir(fonts_dir); gSDLAppResourceDir = resource_dir; gSDLAppConfDir = conf_dir; } void SDLAppParseArgs(int argc, char *argv[], int* xres, int* yres, bool* fullscreen, std::vector* otherargs) { for (int i=1; i1 && args[0] == '-' && args.rfind("x") != std::string::npos) { std::string displayarg = args; while(displayarg.size()>1 && displayarg[0] == '-') { displayarg = displayarg.substr(1, displayarg.size()-1); } size_t x = displayarg.rfind("x"); if(x != std::string::npos) { std::string widthstr = displayarg.substr(0, x); std::string heightstr = displayarg.substr(x+1); int width = atoi(widthstr.c_str()); int height = atoi(heightstr.c_str()); if(width>0 && height>0) { debugLog("w=%d, h=%d\n",width,height); *xres = width; *yres = height; continue; } } } // non display argument if(otherargs != 0) { otherargs->push_back(args); } } } SDLApp::SDLApp() { fps=0; return_code=0; appFinished=false; } void SDLApp::updateFramerate() { if(fps_updater>0) { fps = (float)frame_count / (float)fps_updater * 1000.0f; } else { fps = 0; } fps_updater = 0; frame_count = 0; } bool SDLApp::isFinished() { return appFinished; } int SDLApp::returnCode() { return return_code; } void SDLApp::stop(int return_code) { this->return_code = return_code; appFinished=true; } int SDLApp::run() { Uint32 msec=0, last_msec=0, buffer_msec=0, total_msec = 0; frame_count = 0; fps_updater = 0; if(!appFinished) init(); msec = SDL_GetTicks(); last_msec = msec; while(!appFinished) { last_msec = msec; msec = SDL_GetTicks(); Uint32 delta_msec = msec - last_msec; // cant have delta ticks be 0 buffer_msec += delta_msec; if(buffer_msec < 1) { SDL_Delay(1); continue; } delta_msec = buffer_msec; buffer_msec =0; //determine time elapsed since last time we were here total_msec += delta_msec; float t = total_msec / 1000.0f; float dt = delta_msec / 1000.0f; fps_updater += delta_msec; //update framerate if a second has passed if (fps_updater >= 1000) { updateFramerate(); } //process new events SDL_Event event; while ( SDL_PollEvent(&event) ) { switch(event.type) { case SDL_QUIT: appFinished=true; break; case SDL_MOUSEMOTION: mouseMove(&event.motion); break; case SDL_MOUSEBUTTONDOWN: mouseClick(&event.button); break; case SDL_MOUSEBUTTONUP: mouseClick(&event.button); break; case SDL_KEYDOWN: keyPress(&event.key); break; case SDL_KEYUP: keyPress(&event.key); break; default: break; } } update(t, dt); //update display display.update(); frame_count++; } return return_code; } logstalgia-1.0.3/src/core/bounds.h0000644000203100020310000001113111526610646016641 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef BOUNDS_H #define BOUNDS_H #include "display.h" #include "vectors.h" class Bounds2D { public: vec2f min; vec2f max; bool first; vec2f centre() { return min + (max - min) * 0.5f; } float width() { return max.x - min.x; } float height() { return max.y - min.y; } float area() { return width() * height(); } void reset() { min = vec2f(0.0, 0.0); max = vec2f(0.0, 0.0); first = true; } Bounds2D() { reset(); } Bounds2D(vec2f min, vec2f max) { reset(); update(min); update(max); } void update(vec2f point) { if(first) { min = point; max = point; first=false; return; } if(min.x > point.x) min.x = point.x; if(min.y > point.y) min.y = point.y; if(max.x < point.x) max.x = point.x; if(max.y < point.y) max.y = point.y; } bool contains(vec2f point) { if(first) return false; if(min.x<=point.x && min.y<=point.y && max.x >= point.x && max.y >= point.y) return true; return false; } bool overlaps(Bounds2D& b) { if(max.y < b.min.y) return false; if(min.y > b.max.y) return false; if(max.x < b.min.x) return false; if(min.x > b.max.x) return false; return true; } void draw() { glBegin(GL_LINE_STRIP); glVertex2fv(min); glVertex2f(max.x, min.y); glVertex2fv(max); glVertex2f(min.x, max.y); glVertex2fv(min); glEnd(); } }; class Bounds3D { public: vec3f min; vec3f max; bool first; void reset() { min = vec3f(0.0, 0.0, 0.0); max = vec3f(0.0, 0.0, 0.0); first = true; } Bounds3D() { reset(); } Bounds3D(vec3f min, vec3f max) { reset(); update(min); update(max); } float width() { return max.x - min.x; } float height() { return max.y - min.y; } float depth() { return max.z - min.z; } float area() { return width() * height() * depth(); } vec3f centre() { return min + ((max-min) * 0.5); } void update(vec3f point) { if(first) { min = point; max = point; first = false; return; } if(min.x > point.x) min.x = point.x; if(min.y > point.y) min.y = point.y; if(min.z > point.z) min.z = point.z; if(max.x < point.x) max.x = point.x; if(max.y < point.y) max.y = point.y; if(max.z < point.z) max.z = point.z; } bool contains(vec3f& point) { if(first) return false; if(min.x<=point.x && min.y<=point.y && min.z<=point.z && max.x >= point.x && max.y >= point.y && max.z >= point.z) return true; return false; } void draw() { glColor4f(1.0f, 1.0f, 1.0f, 1.0f); glBegin(GL_LINES); glVertex3fv(min); glVertex3fv(max); glEnd(); } }; #endif logstalgia-1.0.3/src/core/resource.h0000644000203100020310000000506711526610646017211 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef RESOURCEMANAGER_H #define RESOURCEMANAGER_H #include #include #include #include #ifdef _WIN32 #include "windows.h" #endif class ResourceException : public std::exception { protected: std::string resource; public: ResourceException(std::string& resource) : resource(resource) {} virtual ~ResourceException() throw () {}; virtual const char* what() const throw() { return resource.c_str(); } }; class Resource { int refs; public: std::string name; Resource(std::string name) { this->name = name; refs=0; }; int refcount() { return refs; }; void addref() { refs++; }; void deref() { refs--; }; }; class ResourceManager { protected: std::map resources; std::string resource_dir; public: void setDir(std::string resource_dir); std::string getDir(); ResourceManager(); virtual ~ResourceManager(); void purge(); void release(Resource* resource); Resource* grab(std::string name); virtual Resource* create(std::string name) { return 0; }; }; #endif logstalgia-1.0.3/src/core/stringhash.cpp0000644000203100020310000000635511526610646020070 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "stringhash.h" int stringHash(const std::string& str) { int val = 0; int n = str.size(); for (int i = 0; i < n; i++) { val = val + str[i] * (31^(n-i)); } if(val<0) { val = -val; } // unsigned long hash = 5381; // // size_t strlen = str.size(); // for(size_t i=0;i> 12); key = key + (key << 2); key = key ^ (key >> 4); key = (key + (key << 3)) + (key << 11); key = key ^ (key >> 16); return key; } vec3f colourHash2(const std::string& str) { int hash = stringHash(str); int r = abs(intHash(hash*7)) % 255; int g = abs(intHash(hash*3)) % 255; int b = abs(intHash(hash)) % 255; vec3f colour = vec3f(r, g, b); colour.normalize(); return colour; } vec3f colourHash(const std::string& str) { int hash = stringHash(str); int r = (hash/7) % 255; if(r<0) r=0; int g = (hash/3) % 255; if(g<0) g=0; int b = hash % 255; vec3f colour = vec3f(r, g, b); colour.normalize(); return colour; } logstalgia-1.0.3/src/core/vectors.h0000644000203100020310000002041511526610646017041 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef VECTORS_H #define VECTORS_H #include template class vec2 { public: T x; T y; vec2(const vec2& vec) { this->x = vec.x; this->y = vec.y; } vec2(T x = 0, T y = 0) { this->x = x; this->y = y; } vec2 perpendicular() const { return vec2(y * -1.0f, x); } T dot(const vec2 &vec) const { return x*vec.x + y*vec.y; } T operator* (const vec2 &vec) const { return x*vec.x + y*vec.y; } vec2 operator+ (const vec2 &vec) const { return vec2(x+vec.x, y+vec.y); } vec2 operator- (const vec2 &vec) const { return vec2(x-vec.x, y-vec.y); } vec2 operator* (const T n) const { return vec2(x*n, y*n); } vec2 operator/ (const T n) const { return vec2(x/n, y/n); } friend vec2 operator* (T n, const vec2& vec) { return vec2(vec.x*n, vec.y*n); } bool operator== (vec2 &vec) const { return (vec.x==x && vec.y==y); } bool operator!= (vec2 &vec) const { return (vec.x!=x || vec.y!=y); } T length2() const { return x*x + y*y; } T length() const { return sqrt(x*x + y*y); } void normalize() { T len = length(); if(len == 0) return; *this *= (1.0/len); } vec2 normal() const { vec2 v(x,y); v.normalize(); return v; } operator T*() const { return (T*) &x; } vec2& operator= (const vec2 &vec) { x = vec.x; y = vec.y; return *this; } void operator+= (const vec2 &vec) { x += vec.x; y += vec.y; } void operator-= (const vec2 &vec) { x -= vec.x; y -= vec.y; } void operator*= (T n) { x *= n; y *= n; } void operator/= (T n) { x /= n; y /= n; } }; template class vec3 { public: T x; T y; T z; vec3(const vec3& vec) { this->x = vec.x; this->y = vec.y; this->z = vec.z; } vec3(T x = 0, T y = 0, T z = 0) { this->x = x; this->y = y; this->z = z; } vec3 cross(const vec3& vec) const { return vec3(y*vec.z-z*vec.y, z*vec.x-x*vec.z, x*vec.y-y*vec.x); } T dot(const vec3& vec) const { return x*vec.x + y*vec.y + z*vec.z; } T operator* (const vec3 &vec) const { return x*vec.x + y*vec.y + z*vec.z; } vec3 operator+ (const vec3 &vec) const { return vec3(x+vec.x,y+vec.y,z+vec.z); } vec3 operator- (const vec3 &vec) const { return vec3(x-vec.x,y-vec.y,z-vec.z); } vec3 operator* (T n) const { return vec3(x*n,y*n,z*n); } vec3 operator/ (const T n) const { return vec3(x/n, y/n, z/n); } friend vec3 operator* (T n, const vec3& vec) { return vec3(vec.x*n,vec.y*n,vec.z*n); } bool operator== (vec3 &vec) const { return (vec.x==x && vec.y==y && vec.z==z); } bool operator!= (vec3 &vec) const { return (vec.x!=x || vec.y!=y || vec.z!=z); } T length2() const { return x*x + y*y + z*z; } T length() const { return sqrt(x*x + y*y + z*z); } void normalize() { T len = length(); if(len == 0) return; *this *= (1.0/len); } vec3 normal() const { vec3 v(x,y,z); v.normalize(); return v; } vec2 truncate() const { return vec2(x, y); } operator T*() const { return (T*) &x; } vec3& operator= (const vec3 &vec) { x = vec.x; y = vec.y; z = vec.z; return *this; } void operator+= (const vec3 &vec) { x += vec.x; y += vec.y; z += vec.z; } void operator-= (const vec3 &vec) { x -= vec.x; y -= vec.y; z -= vec.z; } void operator*= (T n) { x *= n; y *= n; z *= n; } void operator/= (T n) { x /= n; y /= n; z /= n; } }; template class vec4 { public: T x; T y; T z; T w; vec4(T x = 0, T y = 0, T z = 0, T w = 0) { this->x = x; this->y = y; this->z = z; this->w = w; } vec4(const vec4& vec) { this->x = vec.x; this->y = vec.y; this->z = vec.z; this->w = vec.w; } vec4(vec3& vec, T w) { this->x = vec.x; this->y = vec.y; this->z = vec.z; this->w = w; } vec4& operator= (const vec4 &vec) { x = vec.x; y = vec.y; z = vec.z; w = vec.w; return *this; } T dot(const vec4& vec) const { return x*vec.x + y*vec.y + z*vec.z + w*vec.w; } vec4 operator+ (const vec4 &vec) const { return vec4(x+vec.x, y+vec.y, z+vec.z, w+vec.w); } vec4 operator- (const vec4 &vec) const { return vec4(x-vec.x, y-vec.y, z-vec.z, w-vec.w); } vec4 operator* (T n) const { return vec4(x*n, y*n, z*n, w*n); } vec4 operator/ (const T n) const { return vec4(x/n, y/n, z/n, w/n); } T operator* (const vec4 &vec) const { return x*vec.x + y*vec.y + z*vec.z + w*vec.w; } friend vec4 operator* (T n, const vec4& vec) { return vec4(vec.x*n, vec.y*n, vec.z*n, vec.w*n); } bool operator== (vec4 &vec) const { return (vec.x==x && vec.y==y && vec.z==z && vec.w==w); } bool operator!= (vec4 &vec) const { return (vec.x!=x || vec.y!=y || vec.z!=z || vec.w==w); } T length2() const { return x*x + y*y + z*z + w*w; } T length() const { return sqrt(x*x + y*y + z*z + w*w); } void normalize() { T len = length(); if(len == 0) return; *this *= (1.0/len); } vec4 normal() const { vec4 v(x,y,z,w); v.normalize(); return v; } vec3 truncate() const { return vec3(x, y, z); } operator T*() const { return (T*) &x; } void operator+= (const vec4 &vec) { x += vec.x; y += vec.y; z += vec.z; w += vec.w; } void operator-= (const vec4 &vec) { x -= vec.x; y -= vec.y; z -= vec.z; w -= vec.w; } void operator*= (T n) { x *= n; y *= n; z *= n; w *= n; } void operator/= (T n) { x /= n; y /= n; z /= n; w /= n; } }; typedef vec2 vec2f; typedef vec3 vec3f; typedef vec4 vec4f; typedef vec2 vec2i; typedef vec3 vec3i; typedef vec4 vec4i; #endif logstalgia-1.0.3/src/core/fxfont.cpp0000644000203100020310000001177111526610646017220 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "fxfont.h" FXFontManager fontmanager; FXFont::FXFont() { ft = 0; } FXFont::FXFont(FTFont* ft) { this->ft = ft; init(); } void FXFont::init() { shadow = false; shadow_strength = 0.7; shadow_offset = vec2f(1.0, 1.0); round = false; align_right = false; align_top = true; } FTFont* FXFont::getFTFont() const{ return ft; } void FXFont::roundCoordinates(bool round) { this->round = round; } void FXFont::alignRight(bool align_right) { this->align_right = align_right; } void FXFont::alignTop(bool align_top) { this->align_top = align_top; } void FXFont::shadowStrength(float s) { shadow_strength = s; } void FXFont::shadowOffset(float x, float y) { shadow_offset = vec2f(x,y); } void FXFont::dropShadow(bool shadow) { this->shadow = shadow; } int FXFont::getFontSize() const{ return ft->FaceSize(); } float FXFont::getHeight() const{ return ft->Ascender() + ft->Descender(); } float FXFont::getWidth(const std::string & text) const{ FTBBox bb = ft->BBox(text.c_str()); float width = (bb.Upper().X() - bb.Lower().X()); return width; } void FXFont::render(float x, float y, const std::string & text) const{ if(round) { x = roundf(x); y = roundf(y); } glPushMatrix(); glTranslatef(x,y,0.0f); glScalef(1.0, -1.0, 1.0f); ft->Render(text.c_str()); glPopMatrix(); } void FXFont::print(float x, float y, const char *str, ...) const{ char buf[4096]; va_list vl; va_start (vl, str); vsnprintf (buf, 4096, str, vl); va_end (vl); std::string text = std::string(buf); draw(x, y, text); } void FXFont::draw(float x, float y, const std::string & text) const{ if(align_right) { x -= getWidth(text); } if(align_top) { y += getHeight(); } if(shadow) { glPushAttrib(GL_CURRENT_BIT); vec4f current = display.currentColour(); glColor4f(0.0f, 0.0f, 0.0f, shadow_strength * current.w); render(x + shadow_offset.x, y + shadow_offset.y, text); glPopAttrib(); } render(x, y, text); } // FXFontManager void FXFontManager::setDir(std::string font_dir) { this->font_dir = font_dir; } void FXFontManager::purge() { for(std::map::iterator it = fonts.begin(); it!=fonts.end();it++) { fontSizeMap* sizemap = it->second; for(fontSizeMap::iterator ft_it = sizemap->begin(); ft_it != sizemap->end(); ft_it++) { delete ft_it->second; } delete sizemap; } fonts.clear(); } FXFont FXFontManager::grab(std::string font_file, int size) { char buf[256]; if(font_dir.size()>0 && font_file[0] != '/') { font_file = font_dir + font_file; } //sprintf(buf, "%s:%i", font_file.c_str(), size); //std::string font_key = std::string(buf); fontSizeMap* sizemap = fonts[font_file]; if(!sizemap) { sizemap = fonts[font_file] = new fontSizeMap; } fontSizeMap::iterator ft_it = sizemap->find(size); FTFont* ft; if(ft_it == sizemap->end()) { ft = create(font_file, size); sizemap->insert(std::pair(size,ft)); } else { ft = ft_it->second; } return FXFont(ft); } FTFont* FXFontManager::create(std::string font_file, int size) { FTFont* ft = new FTTextureFont(font_file.c_str()); if(ft->Error() || !ft->FaceSize(size)) { delete ft; throw FXFontException(font_file); } return ft; } logstalgia-1.0.3/src/core/regex.h0000644000203100020310000000427211526610646016471 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef REGEX_H #define REGEX_H #define REGEX_MAX_MATCHES 100 #include "sdlapp.h" #include "pcre.h" #include #include class RegexCompilationException : public std::exception { protected: std::string regex; public: RegexCompilationException(const std::string& regex) : regex(regex) {} virtual ~RegexCompilationException() throw () {}; virtual const char* what() const throw() { return regex.c_str(); } }; class Regex { const char *error; int erroffset; pcre *re; bool valid; public: Regex(const std::string& regex, bool test = false); ~Regex(); bool match(const std::string& str, std::vector* results = 0); bool isValid(); }; #endif logstalgia-1.0.3/src/core/display.cpp0000644000203100020310000001733111526610646017357 0ustar andrewcandrewc /* Copyright (c) 2008 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "display.h" #include "sdlapp.h" SDLAppDisplay display; SDLAppDisplay::SDLAppDisplay() { clearColour = vec3f(0.0f,0.0f,0.0f); enable_shaders=false; enable_alpha=false; vsync=false; multi_sample = 0; } SDLAppDisplay::~SDLAppDisplay() { } void SDLAppDisplay::setClearColour(vec3f colour) { clearColour = colour; } int SDLAppDisplay::SDLFlags(bool fullscreen) { int flags = SDL_OPENGL | SDL_HWSURFACE | SDL_ANYFORMAT | SDL_DOUBLEBUF; if (fullscreen) flags |= SDL_FULLSCREEN; return flags; } void SDLAppDisplay::enableVsync(bool vsync) { this->vsync = vsync; } #ifdef SDLAPP_SHADER_SUPPORT void SDLAppDisplay::enableShaders(bool enable) { enable_shaders = enable; } #endif void SDLAppDisplay::enableAlpha(bool enable) { enable_alpha = enable; } void SDLAppDisplay::multiSample(int samples) { multi_sample = samples; } void SDLAppDisplay::init(std::string window_title, int width, int height, bool fullscreen) { this->width = width; this->height = height; this->fullscreen = fullscreen; int flags = SDLFlags(fullscreen); SDL_Init(SDL_INIT_TIMER | SDL_INIT_VIDEO); atexit(SDL_Quit); //vsync if(vsync) SDL_GL_SetAttribute(SDL_GL_SWAP_CONTROL, 1); else SDL_GL_SetAttribute(SDL_GL_SWAP_CONTROL, 0); if(multi_sample > 0) { SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS, 1); SDL_GL_SetAttribute(SDL_GL_MULTISAMPLESAMPLES, (GLuint) multi_sample); } if(enable_alpha) { SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8); } #ifdef _WIN32 SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 24); surface = SDL_SetVideoMode(width, height, 32, flags); #else if(enable_shaders) { SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 24); surface = SDL_SetVideoMode(width, height, 32, flags); } else { SDL_GL_SetAttribute(SDL_GL_DEPTH_SIZE, 16); surface = SDL_SetVideoMode(width, height, 24, flags); } #endif if (!surface) { std::string sdlerr(SDL_GetError()); throw SDLInitException(sdlerr); } #ifdef SDLAPP_SHADER_SUPPORT if(enable_shaders) { setupARBExtensions(); } #endif SDL_WM_SetCaption(window_title.c_str(),0); } void SDLAppDisplay::quit() { texturemanager.purge(); fontmanager.purge(); } void SDLAppDisplay::update() { SDL_GL_SwapBuffers(); } void SDLAppDisplay::clear() { glClearColor(clearColour.x, clearColour.y, clearColour.z, 1.0f); glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); } void SDLAppDisplay::mode3D(float fov, float znear, float zfar) { glMatrixMode(GL_PROJECTION); glLoadIdentity(); gluPerspective(fov, (GLfloat)width/(GLfloat)height, znear, zfar); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); } void SDLAppDisplay::mode2D() { glMatrixMode(GL_PROJECTION); glLoadIdentity(); glOrtho(0, width, height, 0, -1.0, 1.0); glMatrixMode(GL_MODELVIEW); glLoadIdentity(); } vec4f SDLAppDisplay::currentColour() { vec4f colour; glGetFloatv(GL_CURRENT_COLOR, colour); return colour; } void SDLAppDisplay::checkGLErrors() { //TODO } void SDLAppDisplay::fullScreenQuad(bool coord_flip) { int y1 = coord_flip ? 0 : 1; int y2 = coord_flip ? 1 : 0; glBegin(GL_QUADS); glTexCoord2i(0,y1); glVertex2f(0, 0); glTexCoord2i(1,y1); glVertex2i(display.width, 0); glTexCoord2i(1,y2); glVertex2i(display.width, display.height); glTexCoord2i(0,y2); glVertex2i(0, display.height); glEnd(); } void SDLAppDisplay::renderToTexture(GLuint target, int width, int height, GLenum format) { glBindTexture(GL_TEXTURE_2D, target); glCopyTexImage2D(GL_TEXTURE_2D, 0, format, 0, 0, width, height, 0); } GLuint SDLAppDisplay::emptyTexture(int width, int height, GLenum format) { GLuint textureid; glGenTextures(1, &textureid); glBindTexture(GL_TEXTURE_2D, textureid); glTexImage2D(GL_TEXTURE_2D, 0, 4, width, height, 0, GL_RGBA, GL_UNSIGNED_BYTE, 0); glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER,GL_LINEAR); glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER,GL_LINEAR); return textureid; } GLuint SDLAppDisplay::createTexture(int width, int height, bool mipmaps, bool clamp, bool trilinear, GLenum format, unsigned int* data) { GLuint textureid; glGenTextures(1, &textureid); glBindTexture(GL_TEXTURE_2D, textureid); if(mipmaps) { gluBuild2DMipmaps(GL_TEXTURE_2D, 4, width, height, format, GL_UNSIGNED_BYTE, data); } else { glTexImage2D(GL_TEXTURE_2D, 0, 4, width, height, 0, format, GL_UNSIGNED_BYTE, data); } //GL_LINEAR_MIPMAP_LINEAR - Trilinear //GL_LINEAR_MIPMAP_NEAREST - Bilinear if(trilinear) { glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER,GL_LINEAR_MIPMAP_LINEAR); } else { glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MIN_FILTER,GL_LINEAR_MIPMAP_NEAREST); } glTexParameteri(GL_TEXTURE_2D,GL_TEXTURE_MAG_FILTER,GL_NEAREST_MIPMAP_NEAREST); if(clamp) { glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_S, GL_CLAMP_TO_EDGE); glTexParameteri(GL_TEXTURE_2D, GL_TEXTURE_WRAP_T, GL_CLAMP_TO_EDGE); } return textureid; } vec3f SDLAppDisplay::project(vec3f pos) { GLint viewport[4]; GLdouble modelview[16]; GLdouble projection[16]; GLdouble winX, winY, winZ; glGetDoublev( GL_MODELVIEW_MATRIX, modelview ); glGetDoublev( GL_PROJECTION_MATRIX, projection ); glGetIntegerv( GL_VIEWPORT, viewport ); gluProject( pos.x, pos.y, pos.z, modelview, projection, viewport, &winX, &winY, &winZ); winY = (float)viewport[3] - winY; return vec3f((float) winX, (float) winY, (float) winZ); } vec3f SDLAppDisplay::unproject(vec2f pos) { GLint viewport[4]; GLdouble modelview[16]; GLdouble projection[16]; GLfloat winX, winY, winZ; GLdouble posX, posY, posZ; glGetDoublev( GL_MODELVIEW_MATRIX, modelview ); glGetDoublev( GL_PROJECTION_MATRIX, projection ); glGetIntegerv( GL_VIEWPORT, viewport ); winX = pos.x; winY = (float)viewport[3] - pos.y; glReadPixels( int(winX), int(winY), 1, 1, GL_DEPTH_COMPONENT, GL_FLOAT, &winZ ); gluUnProject( winX, winY, winZ, modelview, projection, viewport, &posX, &posY, &posZ); return vec3f((float) posX, (float) posY, (float) posZ); } logstalgia-1.0.3/src/core/pi.h0000644000203100020310000000315611526610646015767 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef PI_H #define PI_H #define PI 3.14159265 #define RADIANS_TO_DEGREES 57.29577951 #define DEGREES_TO_RADIANS 0.017453292 #endif logstalgia-1.0.3/src/core/plane.h0000644000203100020310000000331711526610646016455 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef PLANE_H #define PLANE_H #include "display.h" #include "vectors.h" class Plane { public: vec3f normal, point; float d; Plane(); Plane(vec3f v1, vec3f v2, vec3f v3); float distance(vec3f p); }; #endif logstalgia-1.0.3/src/core/extensions.cpp0000644000203100020310000000352511526610646020111 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "extensions.h" #ifdef SDLAPP_SHADER_SUPPORT bool gShadersEnabled = false; void setupARBExtensions() { GLenum err = glewInit(); if (GLEW_OK != err) { /* Problem: glewInit failed, something is seriously wrong. */ debugLog("GLEW Error: %s\n", glewGetErrorString(err)); exit(1); } gShadersEnabled = true; } #endif logstalgia-1.0.3/src/core/sdlapp.h0000644000203100020310000000631211526610646016637 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef SDLAPP_H #define SDLAPP_H #include "display.h" #include "logger.h" #include #include extern std::string gSDLAppConfDir; extern std::string gSDLAppResourceDir; extern std::string gSDLAppPathSeparator; extern std::string gSDLAppTitle; extern std::string gSDLAppExec; #ifdef _WIN32 void SDLAppCreateWindowsConsole(); void SDLAppResizeWindowsConsole(int height); #endif void SDLAppInfo(std::string msg); void SDLAppQuit(std::string error); void SDLAppInit(std::string apptitle, std::string execname); bool SDLAppDirExists(std::string dir); std::string SDLAppAddSlash(std::string path); void SDLAppParseArgs(int argc, char *argv[], int* xres, int* yres, bool* fullscreen, std::vector* otherargs = 0); class SDLAppException : public std::exception { protected: std::string message; bool showhelp; public: SDLAppException(std::string message, bool showhelp = false) : showhelp(showhelp), message(message) {} ~SDLAppException() throw () {}; bool showHelp() { return showhelp; } virtual const char* what() const throw() { return message.c_str(); } }; class SDLApp { int frame_count; int fps_updater; int return_code; void updateFramerate(); protected: float fps; bool appFinished; void stop(int return_code); public: SDLApp(); virtual ~SDLApp() {}; int run(); virtual void update(float t, float dt) {}; virtual void init() {}; virtual void logic(float t, float dt) {}; virtual void draw(float t, float dt) {}; virtual void mouseMove(SDL_MouseMotionEvent *e) {}; virtual void mouseClick(SDL_MouseButtonEvent *e) {}; virtual void keyPress(SDL_KeyboardEvent *e) {}; int returnCode(); bool isFinished(); }; #endif logstalgia-1.0.3/src/core/logger.h0000644000203100020310000000316511526610646016636 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef LOGGER_H #define LOGGER_H #include #include #include void debugLog(const char *args, ...); #endif logstalgia-1.0.3/src/core/quadtree.h0000644000203100020310000000655211526610646017174 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef QUADTREE_H #define QUADTREE_H #include #include #include "vectors.h" #include "bounds.h" #include "frustum.h" class QuadItem { public: Bounds2D quadItemBounds; virtual void updateQuadItemBounds() {}; virtual void drawQuadItem() {}; }; class QuadTree; class QuadNode { GLuint listid; Bounds2D bounds; std::vector children; std::list items; QuadTree* tree; int getChildIndex(vec2f pos); void addToChild(QuadItem* item); int depth; QuadNode* parent; public: bool allowMoreItems(); int usedChildren(); QuadNode(QuadTree* tree, QuadNode* parent, Bounds2D itembounds, int parent_depth); ~QuadNode(); int getItemsAt(std::vector& itemvec, vec2f pos); void getLeavesInFrustum(std::vector& nodevec, Frustum& frustum); int getItemsInFrustum(std::vector& itemvec, Frustum& frustum); int getItemsInBounds(std::vector& itemvec, Bounds2D& bounds); void addItem(QuadItem* item); //if not subdivided, subdivide, add to correct subdivided node. bool empty(); void generateLists(); int draw(Frustum& frustum); void outline(); }; class QuadTree { Bounds2D bounds; QuadNode* root; public: int unique_item_count; int item_count; int node_count; int max_node_depth; int max_node_items; int getItemsAt(std::vector& itemvec, vec2f pos); int getItemsInFrustum(std::vector& itemvec, Frustum& frustum); int getItemsInBounds(std::vector& itemvec, Bounds2D& bounds); void addItem(QuadItem* item); void generateLists(); void getLeavesInFrustum(std::vector& nodevec, Frustum& frustum); int drawNodesInFrustum(Frustum& frustum); QuadTree(Bounds2D bounds, int max_node_depth, int max_node_items); ~QuadTree(); void outline(); }; #endif logstalgia-1.0.3/src/core/texture.h0000644000203100020310000000447311526610646017062 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef TEXTURE_H #define TEXTURE_H #include "SDL_image.h" #include "resource.h" #include "display.h" class TextureException : public ResourceException { public: TextureException(std::string& texture_file) : ResourceException(texture_file) {} }; class TextureResource : public Resource { int colourFormat(SDL_Surface* surface); void loadTexture(std::string file, int mipmaps, int clamp, int trilinear, bool external_file); public: int w, h; GLuint textureid; TextureResource(std::string name, int mipmaps, int clamp, int trilinear, bool external_file); ~TextureResource(); }; class TextureManager : public ResourceManager { public: TextureManager(); TextureResource* grab(std::string file, int mipmaps=1, int clamp=1, int trilinear=0, bool external_file = false); }; extern TextureManager texturemanager; #endif logstalgia-1.0.3/src/core/resource.cpp0000644000203100020310000000524511526610646017542 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "resource.h" ResourceManager::ResourceManager() { } std::string ResourceManager::getDir() { return resource_dir; } void ResourceManager::setDir(std::string resource_dir) { this->resource_dir = resource_dir; } void ResourceManager::purge() { //free all resources - should be called BEFORE SDL_QUIT ... for(std::map::iterator it= resources.begin(); it!=resources.end();it++) { delete it->second; } resources.clear(); } ResourceManager::~ResourceManager() { } Resource* ResourceManager::grab(std::string name) { //debugLog("grabing %s\n", name.c_str()); Resource* r = resources[name]; if(r==0) { //debugLog("%s not found. creating resource...\n", name.c_str()); r = create(name); resources[name] = r; } r->addref(); return r; } void ResourceManager::release(Resource* resource) { Resource* r = resources[resource->name]; if(r==0) return; //debugLog("decrementing ref count for %s\n", name.c_str()); r->deref(); if(r->refcount()<=0) { //debugLog("no refs to %s, deleting\n", name.c_str()); resources.erase(r->name); //sufficient? delete r; } } logstalgia-1.0.3/src/core/camera.h0000644000203100020310000000641211526610646016605 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef CAMERA_H #define CAMERA_H #include "display.h" #include class Frustum; class Light { vec3f pos; public: Light(); Light(vec3f pos); void lookAt(vec3f target); void setPos(vec3f pos); vec3f getPos(); }; class Camera { protected: vec3f _pos; vec3f _target; vec3f pos; vec3f target; vec3f up; float fov; float znear; float zfar; public: Camera(); Camera(vec3f pos, vec3f target = vec3f(0,0,0)); void setPos(vec3f pos, bool keepangle = false); void setFov(float fov); void setZNear(float znear); void setZFar(float zfar); void setTarget(vec3f target); vec3f getTarget(); vec3f getPos(); vec3f getUp(); float getFov(); float getZNear(); float getZFar(); void reset(); void look(); void lookAt(vec3f target); void focus(); void focusOn(vec3f p); }; class CameraEvent { protected: bool finished; public: CameraEvent(); bool isFinished(); virtual void prepare(Camera* cam) {}; virtual void logic(float dt, Camera* cam) {}; }; class CameraMoveEvent : public CameraEvent { float duration; float elapsed; float fov; vec3f pos; vec3f target; float old_fov; vec3f old_pos; vec3f old_target; public: CameraMoveEvent(float fov, vec3f pos, vec3f target, float duration = 0.0); void prepare(Camera* cam); void logic(float dt, Camera* cam); }; class CameraPath { Camera* cam; CameraEvent* current; int current_index; bool loop; bool finished; std::vector events; public: CameraPath(Camera* cam, bool loop = true); ~CameraPath(); void addEvent(CameraEvent* ce); void clear(); void logic(float dt); void reset(); bool isFinished(); }; #endif logstalgia-1.0.3/src/core/extensions.h0000644000203100020310000000344311526610646017555 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef SDLAPP_EXTENSIONS_H #define SDLAPP_EXTENSIONS_H #ifndef SDLAPP_SHADER_SUPPORT #include "SDL.h" #include "SDL_opengl.h" #else #include "logger.h" extern bool gShadersEnabled; #include #define NO_SDL_GLEXT #include "SDL.h" #include "SDL_opengl.h" void setupARBExtensions(); #endif #endif logstalgia-1.0.3/src/core/fxfont.h0000644000203100020310000000562411526610646016665 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef FX_FONT_H #define FX_FONT_H #include "display.h" #include "vectors.h" #include "logger.h" #include "resource.h" #include #include #include class FXFontException : public ResourceException { public: FXFontException(std::string & font_file) : ResourceException(font_file) {} }; class FXFont { FTFont* ft; bool shadow; bool round; float shadow_strength; vec2f shadow_offset; bool align_right, align_top; void render(float x, float y, const std::string & text) const; void init(); public: FXFont(); FXFont(FTFont* ft); FTFont* getFTFont() const; void print(float x, float y, const char *str, ...) const; void draw(float x, float y, const std::string & text) const; float getWidth(const std::string & text) const; void alignTop(bool top); void alignRight(bool right); void roundCoordinates(bool round); int getFontSize() const; float getHeight() const; void dropShadow(bool shadow); void shadowStrength(float s); void shadowOffset(float x, float y); }; typedef std::map fontSizeMap; class FXFontManager { std::string font_dir; std::map fonts; FTFont* create(std::string font_file, int size); public: void setDir(std::string font_dir); void purge(); FXFont grab(std::string font_file, int size); }; extern FXFontManager fontmanager; #endif logstalgia-1.0.3/src/core/logger.cpp0000644000203100020310000000423411526610646017167 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ //#define SDLAPP_DEBUG_LOG "debug.log" #include "logger.h" bool firstEntry = true; void debugLog(const char *str, ...) { #ifdef SDLAPP_DEBUG_LOG FILE *log; if (firstEntry) { log = fopen(SDLAPP_DEBUG_LOG, "w"); if(log==0) { fprintf(stderr, "could not create %s\n", SDLAPP_DEBUG_LOG); exit(1); } firstEntry=false; } else { log = fopen(SDLAPP_DEBUG_LOG, "a"); if(log==0) { fprintf(stderr, "could not append to %s\n", SDLAPP_DEBUG_LOG); exit(1); } } va_list vl; va_start(vl, str); vfprintf(log, str, vl); va_end(vl); fclose(log); #endif } logstalgia-1.0.3/src/core/regex.cpp0000644000203100020310000000515611526610646017026 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "regex.h" Regex::Regex(const std::string& regex, bool test) { re = pcre_compile( regex.c_str(), 0, &error, &erroffset, 0 ); if(!re) { valid = false; if(!test) { throw RegexCompilationException(regex); } } else { valid = true; } } Regex::~Regex() { if(re != 0) pcre_free(re); } bool Regex::isValid() { return valid; } bool Regex::match(const std::string& str, std::vector* results) { int ovector[REGEX_MAX_MATCHES]; int rc = pcre_exec( re, 0, str.c_str(), str.size(), 0, 0, ovector, REGEX_MAX_MATCHES ); //failed match if(rc<1) { return false; } if(results!=0) { results->clear(); char* resbuff = new char[str.size()]; for (int i = 1; i < rc; i++) { resbuff[0] = '\0'; pcre_copy_substring(str.c_str(), ovector, rc, i, resbuff, str.size()); results->push_back(std::string(resbuff)); } delete[] resbuff; } return true; } logstalgia-1.0.3/src/core/seeklog.cpp0000644000203100020310000001220611526610646017337 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "seeklog.h" long gSeekLogMaxBufferSize = 104857600; //StreamLog StreamLog::StreamLog() { this->stream = &std::cin; fcntl_fail = false; #ifdef _WIN32 stdin_handle = GetStdHandle(STD_INPUT_HANDLE); #else int ret = fcntl(STDIN_FILENO, F_GETFL, 0); if (fcntl (STDIN_FILENO, F_SETFL, ret | O_NONBLOCK) < 0) { debugLog("fcntl(stdin) failed\n"); fcntl_fail = true; } #endif } StreamLog::~StreamLog() { } bool StreamLog::getNextLine(std::string& line) { //try and fix the stream if(isFinished()) stream->clear(); #ifdef _WIN32 DWORD available_bytes; if (!PeekNamedPipe(stdin_handle, 0, 0, 0, &available_bytes, 0)) return false; if(available_bytes==0) return false; #endif std::getline(*stream, line); //remove carriage returns if (line.size() > 0 && line[line.size()-1] == '\r') { line.resize(line.size() - 1); } if(isFinished()) { return false; } return true; } bool StreamLog::isFinished() { if(fcntl_fail || stream->fail() || stream->eof()) { return true; } return false; } // SeekLog SeekLog::SeekLog(std::string logfile) { this->logfile = logfile; this->stream = 0; if(!readFully()) { throw SeekLogException(logfile); } } bool SeekLog::readFully() { if(stream!=0) delete stream; std::ifstream* file = new std::ifstream(logfile.c_str(), std::ios::in | std::ios::binary | std::ios::ate); file_size = file->tellg(); if(!file->is_open()) return false; file->seekg (0, std::ios::beg); //dont load into memory if larger than if(file_size > gSeekLogMaxBufferSize) { stream = file; return true; } //buffer entire file into memory char* filebuffer = new char[file_size+1]; if(!file->read(filebuffer, file_size)) { file->close(); delete file; return false; } filebuffer[file_size] = '\0'; file->close(); delete file; stream = new std::istringstream(std::string(filebuffer)); delete[] filebuffer; return true; } SeekLog::~SeekLog() { if(stream!=0) delete stream; } float SeekLog::getPercent() { return current_percent; } void SeekLog::setPointer(std::streampos pointer) { stream->seekg(pointer); } std::streampos SeekLog::getPointer() { return stream->tellg(); } void SeekLog::seekTo(float percent) { if(isFinished()) stream->clear(); std::streampos mem_pointer = (std::streampos) (percent * file_size); setPointer(mem_pointer); //throw away end of line if(mem_pointer!=0) { std::string eol; getNextLine(eol); } } bool SeekLog::getNextLine(std::string& line) { //try and fix the stream if(isFinished()) stream->clear(); std::getline(*stream, line); //remove carriage returns if (line.size() > 0 && line[line.size()-1] == '\r') { line.resize(line.size() - 1); } if(stream->fail()) { return false; } current_percent = (float) stream->tellg() / file_size; //debugLog("current_percent = %.2f\n", current_percent); return true; } // temporarily move the file pointer to get a line somewhere else in the file bool SeekLog::getNextLineAt(std::string& line, float percent) { stream->clear(); std::streampos currpointer = getPointer(); seekTo(percent); bool success = getNextLine(line); stream->clear(); //set the pointer back setPointer(currpointer); return success; } bool SeekLog::isFinished() { bool finished = false; if(stream->fail() || stream->eof()) { debugLog("stream is finished\n"); finished=true; } return finished; } logstalgia-1.0.3/src/core/camera.cpp0000644000203100020310000001275011526610646017142 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "camera.h" //Light Light::Light() { } Light::Light(vec3f pos) { this->pos = pos; } void Light::lookAt(vec3f target) { gluLookAt( pos.x, pos.y, pos.z, target.x, target.y, target.z, 0.0f, 1.0f, 0.0f); } void Light::setPos(vec3f pos) { this->pos = pos; } vec3f Light::getPos() { return pos; } //Camera Camera::Camera() { } Camera::Camera(vec3f pos, vec3f target) { fov = 90.0f; znear = 0.1f; zfar = 1000.0f; up = vec3f(0.0, 1.0, 0.0); this->_pos=pos; this->_target=target; reset(); } void Camera::focus() { display.mode3D(fov, znear, zfar); glMatrixMode(GL_PROJECTION); look(); } void Camera::focusOn(vec3f p) { display.mode3D(fov, znear, zfar); glMatrixMode(GL_PROJECTION); lookAt(p); } void Camera::look() { lookAt(target); } void Camera::lookAt(vec3f target) { gluLookAt( pos.x, pos.y, pos.z, target.x, target.y, target.z, up.x, up.y, up.z); } vec3f Camera::getUp() { return up; } float Camera::getZNear() { return znear; } float Camera::getZFar() { return zfar; } float Camera::getFov() { return fov; } void Camera::setFov(float fov) { this->fov = fov; } void Camera::setZNear(float znear) { this->znear = znear; } void Camera::setZFar(float zfar) { this->zfar = zfar; } void Camera::setPos(vec3f pos, bool keepangle) { if(keepangle) { vec3f dir = target - this->pos; this->pos = pos; this->target = pos + dir; } else { this->pos = pos; } } void Camera::setTarget(vec3f target) { this->target = target; } vec3f Camera::getPos() { return pos; } vec3f Camera::getTarget() { return target; } void Camera::reset() { pos = _pos; target = _target; } // CameraEvent CameraEvent::CameraEvent() { finished=false; } bool CameraEvent::isFinished() { return finished; } // CameraMoveEvent CameraMoveEvent::CameraMoveEvent(float fov, vec3f pos, vec3f target, float duration) : CameraEvent() { this->fov = fov; this->pos = pos; this->target = target; this->duration = duration; this->elapsed = 0.0; } void CameraMoveEvent::prepare(Camera* cam) { this->elapsed = 0.0; this->finished = false; this->old_fov = cam->getFov(); this->old_pos = cam->getPos(); this->old_target = cam->getTarget(); } void CameraMoveEvent::logic(float dt, Camera* cam) { elapsed += dt; if(duration <= 0.0 || elapsed >= duration) { cam->setFov(fov); cam->setPos(pos); cam->setTarget(target); finished=true; return; } float pc = elapsed/duration; float f = old_fov * (1.0 - pc) + fov * pc; vec3f p = old_pos * (1.0 - pc) + pos * pc; vec3f t = old_target * (1.0 - pc) + target * pc; cam->setFov(f); cam->setPos(p); cam->setTarget(t); } // Camera Event Path CameraPath::CameraPath(Camera* cam, bool loop) { this->cam = cam; current = 0; current_index = -1; this->loop = loop; finished=false; } CameraPath::~CameraPath() { clear(); } bool CameraPath::isFinished() { return finished; } void CameraPath::reset() { finished=false; current_index = -1; current = 0; } void CameraPath::clear() { for(std::vector::iterator it = events.begin(); it != events.end(); it++) { delete *it; } events.clear(); } void CameraPath::addEvent(CameraEvent* ce) { events.push_back(ce); } void CameraPath::logic(float dt) { if(finished || events.size() == 0 && current==0) return; if(current == 0) { if(loop) { current_index = (current_index + 1) % events.size(); } else { current_index++; if(current_index >= events.size()) { finished=true; return; } } current = events[current_index]; current->prepare(cam); } current->logic(dt, cam); if(current->isFinished()) { current = 0; } } logstalgia-1.0.3/src/core/frustum.h0000644000203100020310000000443411526610646017064 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef FRUSTUM_H #define FRUSTUM_H #include "vectors.h" #include "camera.h" #include "plane.h" #include "pi.h" #include "bounds.h" class Camera; class Frustum { float near_distance, far_distance; float view_ratio; float fov; float near_half_width; float near_half_height; float far_half_width; float far_half_height; vec3f near_top_left, near_top_right; vec3f near_bottom_left, near_bottom_right; vec3f far_top_left, far_top_right; vec3f far_bottom_left, far_bottom_right; Plane planes[6]; public: Frustum(); Frustum(Camera& camera); void update(Camera& camera); void updatePerspective(Camera& camera); void updateView(Camera& camera); bool boundsInFrustum(Bounds2D& bounds, float z = 0.0); bool contains(vec3f p); }; #endif logstalgia-1.0.3/src/core/quadtree.cpp0000644000203100020310000002244311526610646017524 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "quadtree.h" // QUAD NODE // allow more items in node if // - has no children and one of any of: // * maximum depth reached // * item count is less than desired capacity bool QuadNode::allowMoreItems() { return (children.size() == 0 && (depth >= tree->max_node_depth || items.size() < tree->max_node_items ) ); } void QuadNode::addItem(QuadItem* item) { if(allowMoreItems()) { tree->item_count++; items.push_back(item); return; } if(children.size() != 0) { addToChild(item); return; } vec2f average = bounds.centre(); vec2f middle = average - bounds.min; vec2f relmax = bounds.max-bounds.min; Bounds2D newbounds; children.reserve(4); //top left newbounds = Bounds2D( bounds.min + vec2f(0.0, 0.0), bounds.min + middle ); children.push_back(new QuadNode(tree, this, newbounds, depth)); //top right newbounds = Bounds2D( bounds.min + vec2f(middle.x, 0.0), bounds.min + vec2f(relmax.x,middle.y) ); children.push_back(new QuadNode(tree, this, newbounds, depth)); //bottom left newbounds = Bounds2D( bounds.min + vec2f(0.0, middle.y), bounds.min + vec2f(middle.x,relmax.y) ); children.push_back(new QuadNode(tree, this, newbounds, depth)); //bottom right newbounds = Bounds2D( bounds.min + middle, bounds.max ); children.push_back(new QuadNode(tree, this, newbounds, depth)); for(std::list::iterator it = items.begin(); it != items.end(); it++) { QuadItem* oi = *it; tree->item_count--; addToChild(oi); } items.clear(); } void QuadNode::addToChild(QuadItem* item) { if(children.size()==0) return; for(int i=0;i<4;i++) { if(children[i]->bounds.overlaps(item->quadItemBounds)) { children[i]->addItem(item); } } } void QuadNode::getLeavesInFrustum(std::vector& nodevec, Frustum& frustum) { if(items.size()>0) { nodevec.push_back(this); return; } if(children.size()==0) return; //for each 4 corners for(int i=0;i<4;i++) { if(!children[i]->empty() && frustum.boundsInFrustum(children[i]->bounds)) { children[i]->getLeavesInFrustum(nodevec, frustum); } } return; } int QuadNode::getItemsInFrustum(std::vector& itemvec, Frustum& frustum) { if(items.size()>0) { int items_added = 0; for(std::list::iterator it = items.begin(); it != items.end(); it++) { QuadItem* oi = (*it); if(oi!=0) { itemvec.push_back(oi); items_added++; } } return items_added; } if(children.size()==0) return 0; int count = 0; //for each 4 corners for(int i=0;i<4;i++) { if(!children[i]->empty() && frustum.boundsInFrustum(children[i]->bounds)) { count += children[i]->getItemsInFrustum(itemvec, frustum); } } return count; } int QuadNode::getItemsInBounds(std::vector& itemvec, Bounds2D& bounds) { if(items.size()>0) { int items_added = 0; for(std::list::iterator it = items.begin(); it != items.end(); it++) { QuadItem* oi = (*it); itemvec.push_back(oi); items_added++; } return items_added; } if(children.size()==0) return 0; int count = 0; //for each 4 corners for(int i=0;i<4;i++) { if(!children[i]->empty() && bounds.overlaps(children[i]->bounds)) { count += children[i]->getItemsInBounds(itemvec, bounds); } } return count; } int QuadNode::getItemsAt(std::vector& itemvec, vec2f pos) { if(items.size()>0) { int items_added = 0; for(std::list::iterator it = items.begin(); it != items.end(); it++) { QuadItem* oi = (*it); if(oi!=0) { itemvec.push_back(oi); items_added++; } } return items_added; } if(children.size()==0) return 0; int index = getChildIndex(pos); if(index == -1) return 0; return children[index]->getItemsAt(itemvec, pos); } bool QuadNode::empty() { return (items.size() == 0 && children.size()==0); } int QuadNode::getChildIndex(vec2f pos) { if(children.size()==0) return -1; for(int i=0;i<4;i++) { if(children[i]->bounds.contains(pos)) { return i; } } //debugLog("(%.3f, %.3f) is outside of bounds of node (%.3f, %.3f) to (%.3f, %.3f) \n", pos.x, pos.y, bounds.min.x, bounds.min.y, bounds.max.x, bounds.max.y); return -1; } QuadNode::QuadNode(QuadTree* tree, QuadNode* parent, Bounds2D bounds, int parent_depth) { //debugLog("new QuadNode from (%.3f, %.3f) to (%.3f, %.3f) \n", bounds.min.x, bounds.min.y, bounds.max.x, bounds.max.y); this->parent = parent; this->tree = tree; this->bounds = bounds; this->depth = parent_depth + 1; listid = 0; tree->node_count++; } QuadNode::~QuadNode() { if(listid) glDeleteLists(listid, 1); if(children.size()>0) { for(int i=0;i<4;i++) { delete children[i]; } } tree->item_count -= items.size(); items.clear(); tree->node_count--; } int QuadNode::usedChildren() { int populated = 0; if(children.size()>0) { for(int i=0;i<4;i++) { if(!children[i]->empty()) populated++; } } return populated; } int QuadNode::draw(Frustum& frustum) { if(listid && items.size()) { glPushMatrix(); glCallList(listid); glPopMatrix(); return 1; } int drawn = 0; if(children.size() > 0) { for(int i=0;i<4;i++) { QuadNode* c = children[i]; if(!c->empty() && frustum.boundsInFrustum(c->bounds)) { drawn += c->draw(frustum); } } } return drawn; } void QuadNode::generateLists() { if(items.size() > 0) { if(!listid) listid = glGenLists(1); glNewList(listid, GL_COMPILE); for(std::list::iterator it = items.begin(); it != items.end(); it++) { QuadItem* oi = (*it); oi->drawQuadItem(); } glEndList(); return; } if(children.size() > 0) { for(int i=0;i<4;i++) { QuadNode* c = children[i]; if(!c->empty()) { c->generateLists(); } } } } void QuadNode::outline() { bounds.draw(); if(children.size()==0) return; for(int i=0;i<4;i++) { QuadNode* c = children[i]; if(c!=0) { c->outline(); } } } //Quad TREE QuadTree::QuadTree(Bounds2D bounds, int max_node_depth, int max_node_items) { item_count = 0; node_count = 0; unique_item_count = 0; this->max_node_depth = max_node_depth; this->max_node_items = max_node_items; root = new QuadNode(this, 0, bounds, 0); } QuadTree::~QuadTree() { delete root; } int QuadTree::getItemsAt(std::vector& itemvec, vec2f pos) { return root->getItemsAt(itemvec, pos); } int QuadTree::getItemsInFrustum(std::vector& itemvec, Frustum& frustum) { return root->getItemsInFrustum(itemvec, frustum); } int QuadTree::getItemsInBounds(std::vector& itemvec, Bounds2D& bounds) { return root->getItemsInBounds(itemvec, bounds); } void QuadTree::getLeavesInFrustum(std::vector& nodevec, Frustum& frustum) { return root->getLeavesInFrustum(nodevec, frustum); } void QuadTree::addItem(QuadItem* item) { root->addItem(item); unique_item_count++; } int QuadTree::drawNodesInFrustum(Frustum& frustum) { return root->draw(frustum); } void QuadTree::generateLists() { root->generateLists(); } void QuadTree::outline() { root->outline(); }logstalgia-1.0.3/src/core/plane.cpp0000644000203100020310000000346111526610646017010 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "plane.h" Plane::Plane() { d = 0.0f; } Plane::Plane(vec3f v1, vec3f v2, vec3f v3) { vec3f edge1 = v1 - v2; vec3f edge2 = v3 - v2; normal = edge2.cross(edge1); normal.normalize(); point = v2; d = -(normal.dot(point)); } float Plane::distance(vec3f p) { return (d + normal.dot(p)); } logstalgia-1.0.3/src/core/stringhash.h0000644000203100020310000000353411526610646017531 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifndef STRINGHASH_H #define STRINGHASH_H #include #include #include "vectors.h" //basic string hash algorithm int intHash(int key); int stringHash(const std::string& str); vec2f vec2Hash(const std::string& str); vec3f vec3Hash(const std::string& str); vec3f colourHash(const std::string& str); vec3f colourHash2(const std::string& str); #endif logstalgia-1.0.3/src/core/frustum.cpp0000644000203100020310000001134211526610646017413 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "frustum.h" // Lighthouse 3D Frustum tutorial: // http://www.lighthouse3d.com/opengl/viewfrustum/index.php?gasource Frustum::Frustum() { } Frustum::Frustum(Camera& camera) { update(camera); } void Frustum::update(Camera& camera) { updatePerspective(camera); updateView(camera); } void Frustum::updatePerspective(Camera& camera) { view_ratio = (float) display.width / (float) display.height; fov = camera.getFov(); near_distance = camera.getZNear(); far_distance = camera.getZFar(); float toa = (float) tan(fov * 0.5 * DEGREES_TO_RADIANS); near_half_height = near_distance * toa; near_half_width = near_half_height * view_ratio; far_half_height = far_distance * toa; far_half_width = far_half_height * view_ratio; } void Frustum::updateView(Camera& camera) { vec3f source = camera.getPos(); vec3f target = camera.getTarget(); vec3f up = camera.getUp(); vec3f view_ray = target - source; view_ray.normalize(); vec3f horiz_normal = view_ray.cross(up); horiz_normal.normalize(); vec3f vert_normal = horiz_normal.cross(view_ray); //calculate the positions of the 8 points that make up //the viewing frustum and then use them to create the 6 planes vec3f near_centre = source + view_ray * near_distance; vec3f far_centre = source + view_ray * far_distance; vec3f near_horiz_offset = horiz_normal * near_half_width; vec3f near_vert_offset = vert_normal * near_half_height; near_top_left = near_centre + near_vert_offset - near_horiz_offset; near_top_right = near_centre + near_vert_offset + near_horiz_offset; near_bottom_left = near_centre - near_vert_offset - near_horiz_offset; near_bottom_right = near_centre - near_vert_offset + near_horiz_offset; vec3f far_horiz_offset = horiz_normal * far_half_width; vec3f far_vert_offset = vert_normal * far_half_height; far_top_left = far_centre + far_vert_offset - far_horiz_offset; far_top_right = far_centre + far_vert_offset + far_horiz_offset; far_bottom_left = far_centre - far_vert_offset - far_horiz_offset; far_bottom_right = far_centre - far_vert_offset + far_horiz_offset; //top planes[0] = Plane(near_top_right, near_top_left, far_top_left); //bottom planes[1] = Plane(near_bottom_left, near_bottom_right, far_bottom_right); //left planes[2] = Plane(near_top_left, near_bottom_left, far_bottom_left); //right planes[3] = Plane(near_bottom_right, near_top_right, far_bottom_right); //near planes[4] = Plane(near_top_left, near_top_right, near_bottom_right); //far planes[5] = Plane(far_top_right, far_top_left, far_bottom_left); } bool Frustum::contains(vec3f p) { for(int i=0; i < 6; i++) { float dist = planes[i].distance(p); if(dist < 0) return false; } return true; } bool Frustum::boundsInFrustum(Bounds2D& bounds, float z) { vec3f corner; for(int i=0; i<6; i++) { corner.x = planes[i].normal.x > 0.0 ? bounds.max.x : bounds.min.x; corner.y = planes[i].normal.y > 0.0 ? bounds.max.y : bounds.min.y; corner.z = z; if (planes[i].distance(corner) < 0.0) return false; } return true; } logstalgia-1.0.3/src/core/texture.cpp0000644000203100020310000000663411526610646017416 0ustar andrewcandrewc/* Copyright (c) 2009 Andrew Caudwell (acaudwell@gmail.com) All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "texture.h" TextureManager texturemanager; // texture manager TextureManager::TextureManager() : ResourceManager() { } TextureResource* TextureManager::grab(std::string name, int mipmaps, int clamp, int trilinear, bool external_file) { //debugLog("grabing %s\n", name.c_str()); Resource* r = resources[name]; if(r==0) { //debugLog("%s not found. creating resource...\n", name.c_str()); r = new TextureResource(name, mipmaps, clamp, trilinear, external_file); resources[name] = r; } r->addref(); return (TextureResource*)r; } // texture resource TextureResource::TextureResource(std::string file, int mipmaps, int clamp, int trilinear, bool external_file) : Resource(file) { //if doesnt have an absolute path, look in resource dir if(!external_file && !(file.size() > 2 && file[1] == ':') && !(file.size() > 1 && file[0] == '/')) { file = texturemanager.getDir() + file; } debugLog("creating texture from %s\n", file.c_str()); SDL_Surface *surface = IMG_Load(file.c_str()); if(surface==0) throw TextureException(file); w = surface->w; h = surface->h; //figure out image colour order int format = colourFormat(surface); if(format==0) throw TextureException(file); textureid = display.createTexture(w, h, mipmaps, clamp, trilinear, format, (unsigned int*) surface->pixels); } int TextureResource::colourFormat(SDL_Surface* surface) { int colours = surface->format->BytesPerPixel; int format = 0; if (colours == 4) { if (surface->format->Rmask == 0x000000ff) { format = GL_RGBA; } else { format = GL_BGRA; } } else if (colours == 3) { if (surface->format->Rmask == 0x000000ff) format = GL_RGB; else format = GL_BGR; } return format; } TextureResource::~TextureResource() { if(textureid!=0) glDeleteTextures(1, &textureid); } logstalgia-1.0.3/src/slider.cpp0000644000203100020310000000622111526610646016240 0ustar andrewcandrewc/* Copyright (C) 2009 Andrew Caudwell (acaudwell@gmail.com) 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 . */ #include "slider.h" // PositionSlider PositionSlider::PositionSlider(float percent) { this->percent = percent; font = fontmanager.grab("FreeMonoBold.ttf", 16); int gapx = display.width / 30; int gapy = display.height / 25; bounds.update(vec2f(gapx, display.height - gapy*3)); bounds.update(vec2f(display.width - gapx, display.height - gapy*2)); slidercol = vec3f(1.0, 1.0, 1.0); mouseover = -1.0; mouseover_elapsed = 0; fade_time = 1.0; alpha = 1.0; } void PositionSlider::setColour(vec3f col) { slidercol = col; } bool PositionSlider::mouseOver(vec2f pos, float* percent_ptr) { if(bounds.contains(pos)) { mouseover_elapsed = 0; mouseover = pos.x; if(percent_ptr != 0) { *percent_ptr = (float) (pos.x - bounds.min.x) / (bounds.max.x - bounds.min.x); } return true; } mouseover = -1.0; return false; } bool PositionSlider::click(vec2f pos, float* percent_ptr) { if(mouseOver(pos, &percent)) { if(percent_ptr != 0) { *percent_ptr = percent; } return true; } return false; } void PositionSlider::setCaption(std::string caption) { capwidth = 0.0; this->caption = caption; if(caption.size()) { capwidth = font.getWidth(caption); } } void PositionSlider::setPercent(float percent) { this->percent = percent; } void PositionSlider::logic(float dt) { if(mouseover < 0.0 && mouseover_elapsed < fade_time) mouseover_elapsed += dt; if(mouseover_elapsed < fade_time && alpha < 1.0) { alpha = std::min(1.0f, alpha+dt); } else if(mouseover_elapsed >= fade_time && alpha > 0.0) { alpha = std::max(0.0f, alpha-dt); } } void PositionSlider::draw(float dt) { glDisable(GL_TEXTURE_2D); glLineWidth(2.0f); glColor4f(slidercol.x, slidercol.y, slidercol.z, alpha); bounds.draw(); float posx = bounds.min.x + (bounds.max.x - bounds.min.x) * percent; glLineWidth(2.0f); glBegin(GL_LINES); glVertex2f(posx, bounds.min.y); glVertex2f(posx, bounds.max.y); glEnd(); glBlendFunc (GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glEnable(GL_BLEND); glEnable(GL_TEXTURE_2D); glColor4f(1.0, 1.0, 1.0, 1.0); if(caption.size() && mouseover >= 0.0) { font.draw(std::min((double)display.width - capwidth - 1.0, std::max(1.0, mouseover - (capwidth/2.0))), bounds.min.y - 25.0, caption.c_str()); } } logstalgia-1.0.3/data/0000755000203100020310000000000011526610646014373 5ustar andrewcandrewclogstalgia-1.0.3/data/logstalgia.10000644000203100020310000001631411526610646016610 0ustar andrewcandrewc.TH Logstalgia 1 .SH NAME Logstalgia - a web server access log visualization tool .SH SYNOPSIS \fIlogstalgia\fR [\-f] [\-WIDTHxHEIGHT] [options] logfile .SH DESCRIPTION \fIlogstalgia\fR is a visualization tool that replays or streams web server access logs as a retro arcade game simulation. .SH REQUIREMENTS \fIlogstalgia\fR's display is rendered using OpenGL and requires a 3D accelerated video card to run. Logstalgia supports several standardized access.log formats used by web servers such as Apache and Nginx (see 'SUPPORTED LOG FORMATS' below). As \fIlogstalgia\fR is designed to playback logs in real time you will need a log from a fairly busy webserver to achieve interesting results (eg 100s of requests each minute). .SH OPTIONS .TP \fB\-f\fR Fullscreen. .TP \fB\-WIDTHxHEIGHT\fR Set the window size. If \-f is also supplied, will attempt to set the video mode to this also. .TP \fB\-b, \-\-background\fR Background colour in hex. .TP \fB\-x \-\-full\-hostnames\fR Show full request ip/hostname. .TP \fB\-s, \-\-speed\fR Simulation speed. Defaults to 1 (1 second-per-second). .TP \fB\-u, \-\-update\-rate\fR Page Summary update speed. Defaults to 5 (5 seconds). .TP \fB\-g name,regex,percent[,colour]\fR Urls matching the given regex will appear under a new section with the given name using the given percentage of the screen. Colour may optionally be supplied in the common hexadecimal format (eg FF0000 for red) If no groups are supplied the default groups are Images (image files), CSS (.css files) and Scripts (.js files). If there is enough space remaining a catch-all group of Misc will appear as the last group. .TP \fB\-\-paddle\-mode MODE\fR Paddle mode (pid, vhost, single). \fBvhost\fR \- separate paddle for each virtual host in the log file. \fBpid\fR \- separate paddle for each process id in the log file. \fBsingle\fR \- single paddle (the default). .TP \fB\-\-paddle\-position POSITION\fR Paddle position as a fraction of the view width (0.25 - 0.75). .TP \fB\-\-sync\fR Read from STDIN, ignoring entries before the current time. .TP \fB\-\-start\-position POSITION\fR Begin at some position in the log file (between 0.0 and 1.0). .TP \fB\-\-stop\-position POSITION\fR Stop at some position. .TP \fB\-\-no\-bounce\fR No bouncing. .TP \fB\-\-hide\-response\-code\fR Hide response code. .TP \fB\-\-hide\-paddle\fR Hide paddle. .TP \fB\-\-hide\-url\-prefix\fR Hide URL protocol and hostname prefix of requests. .TP \fB\-\-disable\-auto\-skip\fR Disable automatic skipping of empty time periods. .TP \fB\-\-disable\-progress\fR Disable the progress bar. .TP \fB\-\-disable\-glow\fR Disable the glow effect. .TP \fB\-\-font\-size SIZE\fR Font size. .TP \fB\-\-glow\-duration\fR Duration of the glow (between 0.0 and 1.0). .TP \fB\-\-glow\-multiplier\fR Adjust the amount of glow. .TP \fB\-\-glow\-intensity\fR Intensity of the glow. .TP \fB\-\-output\-ppm\-stream FILE\fR Write frames as PPM to a file ('\-' for STDOUT). .TP \fB\-\-output\-framerate FPS\fR Framerate of output (used with \-\-output\-ppm\-stream). .TP \fBlogfile\fR The path to the access log file to read or '\-' if you wish to supply log entries via STDIN. .SH EXAMPLES Watch an example access.log using the default settings: .ti 10 \fIlogstalgia\fR SDLAPP_RESOURCE_DIR/example.log Watch the live access.log, starting from the most recent batch of entries in the log (requires tail). Note than '\-' at the end is required for \fIlogstalgia\fR to know it needs to read from STDIN: .ti 10 tail \-f /var/log/apache2/access.log | \fIlogstalgia\fR \- To follow the log in real time, use the \-\-sync option. This will start reading from the next entry received on STDIN: .ti 10 tail \-f /var/log/apache2/access.log | \fIlogstalgia\fR \-\-sync Watch a remote access.log via ssh: .ti 10 ssh user@example.com tail \-f /var/log/apache2/access.log | \fIlogstalgia\fR \-\-sync .SH SUPPORTED LOG FORMATS Logstalgia supports the following standardized log formats used by web servers like Apache and Nginx: .ti 10 NCSA Common Log Format (CLF) .ti 10 "%h %l %u %t \\"%r\\" %\>s %b" .ti 10 NCSA Common Log Format with Virtual Host .ti 10 "%v %h %l %u %t \\"%r\\" %\>s %b" .ti 10 NCSA extended/combined log format .ti 10 "%h %l %u %t \\"%r\\" %\>s %b \\"%{Referer}i\\" \\"%{User-agent}i\\"" .ti 10 NCSA extended/combined log format with Virtual Host .ti 10 "%v %h %l %u %t \\"%r\\" %\>s %b \\"%{Referer}i\\" \\"%{User-agent}i\\"" The process id (%P), or some other identifier, may be included as an additional field at the end of the entry. This can be used with '\-\-paddle\-mode pid' where a separate paddle will be created for each unique value in this field. .SH CUSTOM LOG FORMAT Logstalgia now supports a pipe ('|') delimited custom log file format: .ti 10 timestamp - unix timestamp of the request date. .ti 10 hostname - hostname of the request .ti 10 path - path requested .ti 10 response_code - the response code from the webserver (eg 200) .ti 10 response_size - the size of the response in bytes The following are optional: .ti 10 success - 1 or 0 to indicate if successful .ti 10 response_colour - response colour in hexidecial (#FFFFFF) format .ti 10 referrer url - the referrer url .ti 10 user agent - the user agent .ti 10 virtual host - the virtual host (to use with \-\-paddle-mode vhost) .ti 10 pid - process id or some other identifier (\-\-paddle-mode pid) If success or response_colour are not provided, they will be derived from the response_code using the normal HTTP conventions (code < 400 = success). .SH RECORDING VIDEOS See the guide on the homepage for examples of recording videos with Logstalgia: .ti 10 http://code.google.com/p/logstalgia/wiki/Videos .SH INTERFACE The time shown in the top left of the screen is set initially from the first log entry read and is incremented according to the simulation speed (\-s). The counter in the bottom right hand corner shows the number of requests displayed since the start of the current session. Pressing space at any time will pause/unpause the simulation. While paused you may use the mouse to inspect the detail of individual requests. Interactive keyboard commands: .sp .ti 10 (q) Debug Information .ti 10 (c) Displays Logstalgia logo .ti 10 (n) Jump forward in time to next log entry. .ti 10 (+-) Adjust simulation speed. .ti 10 (<>) Adjust time scale. .ti 10 (ESC) Quit .SH AUTHOR .nf Written by Andrew Caudwell Project Homepage: http://code.google.com/p/logstalgia/ .SH COPYRIGHT .nf Copyright (C) 2008 Andrew Caudwell (acaudwell@gmail.com) 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 . .fi .SH ACKNOWLEDGEMENTS .nf Catalyst IT (catalyst.net.nz) For supporting the development and promotion of Logstalgia! .fi logstalgia-1.0.3/data/fonts/0000755000203100020310000000000011526610646015524 5ustar andrewcandrewclogstalgia-1.0.3/data/fonts/FreeMonoBold.ttf0000644000203100020310000042061411526610646020565 0ustar andrewcandrewc FFTMKüL²!pGDEFÑ6GPOS8NÙxöGSUB¸ÿ¸þH0OS/2òPW¨VcmapØÝ•¬8.cvt Š¢xfpgm‹…BhÆgasp glyfM:!¼Ÿheadê?¹…,6hhea°—d$hmtxqÖy| 6loca¡E¾Œ 0maxpeˆ nameê_Õ*ÀÄqpost Á×87Éprepƒ5Ì0GhõL€RÑ_<õ èÄ)aÄ)aýÝþ’òW„þÔZXýÝÿfòð<c ÆX¼Š»/ŒŠ»ÿ]ß1 ¤ ÿPxû GNU ÿý ÿ8„, ¿ß÷X!XX܈>SPKìuS*“*áSSS6BKBiKSjá“**8hLÿë ! !S6 !ÿíÿø  >* ÿëÿö IúS}Sÿô}*ÿø6!!K! >u!>ÿí*ÿø!6I U§ú§>ÜS!Iú$ˆÿùv!**ÿù}}*•ú 1á´¦z!ÿÞÿÞÿÕSÿëÿëÿëÿëÿëÿëÿì! SSSSÿød  ******ÿó6!!!!>>>>******* ÿøÿë*ÿë*ÿë*!6!6!6!6 !! ! ! ! ! !!!!!!!!!  S>S>S>S>S>ÿï 6u !4!>!>!>!> >ÿøÿøÿøÿø***ÿìÿõ 6 6 6>I>I>I>I* * * ÿöIUIUIUKÿøÿ¾ÿø!!6ÿ¨!* >ÿ™9!ÿåiS!>ÿíÿ„*ÿßÿ­ÿø>II ÿý * ÿÄIU,,6úšÜÿë*S>* !ÿë*ÿë*ÿìÿó !!! ÿí**,u!!ÿøÿë*ÿìÿó ÿë*ÿë* ! !C>S>**ÿÕ6 6 >I*  IUÿë* !*****!!ÿø6!!!!IIu!! >in>iÿíÿíÿíÿš?*6666M66KKI99 Uhhh!:!B!hhþ%þ¢}}ÑÑ}ð±ús}þ%þ¢þ%þþ%ýßþ%þ˜þ0þYþYþ%þ%þ¬þ\þ%þ%þ%þžýÝþ¢þ\þ¢þ(““ç“yˆÿGáÿ-ÿ8ÿ›ÿnÿ%ÿxaÿë IS ÿëÿíÿø# I* ÿðS!Ic ! *I\Si4 u*.ÿèq*F ÿúÿêa * RGÿü*  ">SSSÿÒÿÄÿøÿë  ÿè> ÿí !* &ÿêÿäÿùÿë "ÿéÿý*4Tb#!ÿëI4ÿð3*.ÿø6>ÿÜ1ÿõÿõÿ÷T,ÿô4!! b,I>>uÿãÿã 4 T ÿù b Obÿèÿë>I2444ÿÄ!6!6*> &1%/%/!6!6Sÿèÿë4&1ÿë*ÿë*ÿìÿó !",",ÿèÿë>I>I***",&1ÿëÿ÷™™˜ÔÔÔÔÿã™<Ôú1áõ<<{<<–{<,<<<0–{<<<<<02<3$**ñ‹fi^9edCBgc8f`=d\=i897a9dCi9fQKf2i%t^oOÿë* ÿø ÿø ÿø!6 ! !! !! ! ! ! ! ! K!!     S>S> ! ! !!>>!>!>ÿíÿíÿíÿíÿíÿíÿøÿøÿøÿø**** ÿø ÿø 6 6 6 6>I>I>I>I>I* * * * ÿëÿëÿöÿöÿöÿöÿö  IUIUIU Kÿë*ÿë*ÿë*ÿ|ÿßÿë*ÿë*ÿë*ÿë*ÿë*ÿë*ÿë*ÿë* ! ! ! !ÿˆÿÐ ! ! !S>S>***ÿ•ÿÝ******** ****ÿãÿãôÀÀô`Y[`^^–“S“S!_ø§ÿû1¨”Ÿ§¨£¨¦•”Ÿ§¨£ !;=7ÿòÿß ÿë<ÿÞÿÎÿÞÿÎÿÕÿßÿÞÿÜÿÞÿÕÿÜÿÞÿëf S-**S 3d(**# )*¨¯úÈúÈúÈúúÈÈúúÈÈúúÈÈÈÈÈÈæ´–ú––ú––ú––úúÿÕÿÕÿÕú,úÈ,ÈÈÈ, 222222222¯¯22––##¨¨TTÇÇy##¨¨TTÇÇ^##!H!!!!!!!!!#.2222¬22222###2222!!!!XS!22222222!!!pp00u·ÿòÿòÿï#$þ€~~ƒŽ“—©°¸»ÁÃÉîðö3TY\akmu…‰Ž˜œ¢¼ÇÑÝ"(7uz~ŠŒ¡ÎÒÖñ_ÄÈÌõù¹Äêôõ™›ù   " & 0 7 : < F I K d p ‰ ¤ ª ¬ µ!!!!!"!'!+!5!_!“""" " """""4"a"e"‡"¥##*%•%¡%º%Ç%Ë%Í%Ù%î%÷& &7&;&lö¾öÃûÿýÿÿ  †•™«³»ÀÃÇËðôø$PV[_emoy‡Œ”œž»ÆÐØ!'7tz~„ŒŽ£ÐÕñŒÇËÐø°»ÐðЛ    & 0 2 9 < D H K d p t £ ª ¬ µ!!!!!"!&!*!5!S!"""" """""4"`"d"‚"¥##)%% %£%¼%É%Í%Ï%â%ð&&0&9&iö¾öÃûÿýÿÿÿãÿÂÿÀÿ¿ÿ¾ÿ½ÿ¼ÿºÿ¸ÿ´ÿ³ÿ°ÿ¯ÿ®ÿ«ÿªÿ¨ÿ¤ÿˆÿ‡ÿ†ÿ„ÿÿ€ÿÿ|ÿ{ÿyÿxÿuÿrÿqÿYÿPÿHÿBÿ ÿÿÿÿþÄþÀþ½þ¸þ·þ¶þµþ´þ²þ˜þŠþ^þ\þZþWþUýŸýžý“ýŽò³å©å¨å¤äžä™ä“ä‘äŽä…ä„äƒä‚ä{äzäyäaäVäSä:ä5ä4ä,ãÑãÎãÍãÊãÅãÂãÀã·ãšãjâþâýâüâûâ÷âöâòâðâÜâ±â¯â“âvâ áôàààààààààßøßÒßÑߤSO    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a†‡‰‹“˜ž£¢¤¦¥§©«ª¬­¯®°±³µ´¶¸·¼»½¾±rdei³x¡pkçvjˆšsgwÿul|^¨ºcn Qm}´b‚…—¦§­®©ª¹ÜÁ:¿à¼½²y«¯µ„ŒƒŠ‘Ž•–”œ›óqz°,°K°*PX°JvY°#?°+X=YK°*PX}Y Ô°.-°, Ú/°+\X G#Faj X db8!!Y!Y-°,KRXE#Y!-°,i °@PX!°@Y-°,°+X!#!zXÝÍYKRXXýíY!°+X°FvYXÝÍYYY-°, \Z-°,±"ˆPX° ˆ\\°Y-°,±$ˆPX°@ˆ\\°Y-°, 9/-¸ÿ…K°PX±ŽY±F+X!°YK°RX!°€Y°+\X° E°+D° E²K+°+D° E°+DYµGoe]e!y****XvÒ:–àò:zœ°ÄÚü(L|Âä ^~¸ô>`€¢Ú,`šØ:j°ìB|¤Þ  : n ¸ ô H p ¤ Î > r ” ¬ Î æ   2 n ¤ Ü  > r ¬ â.f†ÄôRˆ¸6hÀü2R’¦ä"b®ZxÎîDŽÂØà8Hj–Â"P¦ÈêP¦|†’žª¶ÂÎx„œ¨´ÀÌØ".:FR^Úæòþ N–¢®ºÆÒÞ@–¢®ºÆÒÞêöP\ht€Œ˜Â ,8D€Œ˜¤°¼ bnz†’žª¶ÂÎ  R Ž š ¦ ² ¾ Ê Ö!"!f!r!~!Š!–!¢!®!º!Æ!Ò" ","8"€"º"Æ"Ò"Þ"ê"ö##B#€#Œ#ª#ô$:$F$R$^$j$ž$ª$¶$Â$Î$Ú$æ$ò$þ%B%z%†%’%ž%ª%¶%Â%ò&4&p&|&ˆ&”& &¬&¸&ø'@'L'X'd'p'|'ˆ'”' '¬'¸(((ˆ(”( (à)0)<)†)¾******6*B*N*Z*f*r*~*Ð++(+4+@+L+X+d+p+|+ˆ+”+ +Î, ,P,X,–, ,ä-(-0-l-š-Ê-Ô-Þ.4.n.®.þ/B/f/œ/Þ0 0N00È0ø1(1`1–1Ú2(2f2°2ú3L3’3´3ü4.4r4 4â5$5f5¨5Ø66D6€6¼6Ä6æ6î767€7Ø8*8ˆ8”8 8¬8¸8Ä8Ð8Ü8è8ô99 99$909<9H9R9^9j9v9‚9Ž9š9ì:.:::F:R:^:¢:à:ì:ø;;;;(;d;p;|;ˆ;”; ;¬;¸;Ä;Ð;Ü;è;ô<< <<$<0<<0><>H>|>®>º>Æ??Z?f?r?~?Š?–?¢?®?º?Æ?Ò?Ü@ @@X@@ÒAALHLRLjLLÂLðMM2MPMlMvM€MžM¦M°MÎMÖMàMìMøNN NN$N0NP€PŒP˜P¤P°P¼PÈPÔPÜQ"QXQœQæR RNR|R„RŒR¾RþSSfSnSvSªTT.TZTŠTÆUUNU¦U²U¾UÊUÖUâVVlV˜VØW$WXWdWpWÂXXLXTX\XhXtXÚYPY¢YúZNZžZü[[4[<[h[š[¢[ö\L\Š\ä]&]`]h]p]x]¨]°]¸]À]ö^f^n^ž^Ø__b_˜_è``f`¢`à`èa(ajaŒa¼aÄb,bvb°cc:clc cÚcâddddDdLd–dždÐeeLe–eÊffHf†fÈgggg‚gºgúhh hhh^h¨iiXi¨i´iüj2jdj¶kk:k\kˆkºll(l€lðmFmmÚnnVnŠnÌooBovo¸oöoþp8pŒp¸pÀpÈpÐpØqq.qdq˜qØrr`r¦rÞssVs’sÖttXt–tžt¦t®t¶t¾u.u°uòv&v.vhv¢vØvävðvüwwVw¸wÄwÐxxVx¶y yxyøzfzÈ{{h{°{ô|J|ž|ª|¶|æ}}Z}ž}þ~T~”~ ~î~úVb´€€l€Ò€ò¡H¡R¡t¡€¡Š¡”¡Ò¡ö¢*¢@¢t¢æ¢ü£ £R£h£Œ£¾£Ü£ú¤R¤t¤²¤ò¤þ¥ ¥L¥L¥r¥˜¥Ì¦¦"¦Z¦˜¦˜¦˜¦˜¦˜¦˜¦˜¦¢¦¬¦¶¦À¦Ê¦Ô¦Þ¦è¦ò¦ü§6§Š§Ø¨(¨„¨Ä¨þ©\©°ª.ª~ª†ªÈªÐªØªà«V«Ö¬>¬®­6­ ® ®Š®ô¯€¯ü°b°œ°Â°î±±@±r±¨±Ú²,²@²V²†²à³³j³¨³¼³Æ³Î³è´,´p´Š´¾´ôµ"µPµ|µ¨µÔ¶ ¶h¶t¶€¶’¶ª¶Î¶ò····*·B·Z·r·Š·¦·Â·à·þ¸¸¸.¸>¸N¸^¸n¸~¸Ž¸ž¸®¸¾¸Î¸Þ¸î¸þ¹¹"¹6¹J¹\¹p¹„¹–¹¨¹º¹Î¹â¹ôººº.º@ºTºhºzºŒº º´ºÆºØºì»»»$»8»L»^»t»Š» »¶»Ì»â»ø¼¼(¼@¼X¼n¼„¼š¼°¼Æ¼Ø¼ê½½½*½>½R½f½~½’½¦½À½Ô½è¾¾¾*¾B¾X¾r¾¾¦¾À¾à¾ø¿¿.¿F¿^¿z¿˜¿¶¿à¿øÀÀÀ.À>ÀNÀpÀ~ÀŒÀ–À À®À¼ÀÆÀÐÀâÀôÁÁÁ&Á2Á>ÁLÁZÁhÁvÁ„Á’Á Á®Á¼ÁÊÁÖÁâÁîÁü®ÄÄÄÄ Ä.ÄDÄ`ĂĤÄâÅÅ"ÅVÅbÅtłŖŤŏůÅÜÅêÅþÆ ÆÆ*Æ>ÆJÆ\ÆjÆxƌƘƪƸÆÌÆØÆêÆöÆöÇÇÇPÇhnjǾÇÔÇöÈÈ$È2ÈVÈtȄȔȰÈÚÈèÈöÉÉÉ2ÉFÉPÉdÉnɊɬÉÀÉÔÉðÊ ÊÊ2Ê^ÊŠÊ”ÊÂÊîË"ËVËpËˬËÒËðÌÌ6Ìb̾ÍÍḧ́͸ÍÞÎ Î.ÎJΰÏÏNÏ„!*š.±/<²í2±Ü<²í2±/<²í2²ü<²í23!'3#! èÇÇšýf!XÜÿñ}~#"&'&5462#"&46;2{,.F-H''&& þ×1) #-."ýÊ'6'&8&ˆ8ÐZ3#"'3#"'ˆ€¦€Zþ#ÿþ#>ÿ¤£AE3763232+32+#"&565##"&54657#"546;7#"546;7632#3 G 1 BB CB / H 2 B" !C#  14GHqK.¨?·dj21¨?¶¨? ¡2j2¨?þÓjSÿ…¬L2632#"'.#"#"&=&'#"=43232654&/&5467546.1"  2+ 3-6KA9 XN+$32 E)1@&*J˜Q@¬BB "*");%A\S ## S C=C !, |;W  "Pÿñ i '3?2#"&546"32654&#"&547%6322#"&546"32654&ä;QR9:RR9,,,+çþ– j  ™;QR:9RR9,,,+iR;8RR:9RA,,,,Ýv  v MR;8RR:9RA,,, +Kÿòü&-4$+'#"&547&54632632&#"7323#'32üB= )HSc`"[=!%)&d5B‚T5RddVHg8:&=Z"(‘R34x4:ì8lZ3#"'ì€Zþ#ÿgèx%4>32#".:S #+#e  R;óEº†?F}F’¤€¾uÿgUx4>54'&54632#"&u#+#e  R;9S!h?F}F’¤€¾NE¹‡SÐn*27632#"&/#"&54?'.46325údV 2V4444V VnBY%G HH G(Y*.0+"=#"546;54323.CdŽB" Ž2Jd¤BB¤2¤B" ¤“ÿb_† 73#"&547Û„  †þô  *å.I #!"43!2.Bþ€BB€!!2dáÿñwu #"&46;25''&&'6'&8&Sÿ· #"&547>32ùþÀ  A býY¦ Sÿñ~2#"&=4>26=4&",jo-eGjo-e.@j@@j@~¢u_K{Q¢u_K{QþðmN^^NmN^^S~746;#"&46?32#!"S" eW ÔeBBþÒB2™,7ýæd6ü~ 3632!5>54&#"#"&5462÷%n•É.2þ:T›nB1%1}¶z¼,Ak€6BXiF~u&4"":noBÿñ~3%254&'&546;2654&#"#"&54632#"&54632 ¡PI4(%6<4'4~P[s*1q6kI\q :Ub,8+/ #)+DdJ)=7`$@=$/& Kün24;5!5322+75óB&þðñƒ===C„&–d&S‘þ€20&dîòòBÿñn*+632#"&5463232654&#"#"&5!2çBÊ8+[x !5]=Zz ;-NJ>2)d. "<2s~`6=,9*9;7D* iÿñ~*".547632#"&#">32'32654&#"K4Q1 MeŒ5@- O}$?&OolÑ 81/68) D'32#"=>54&#"#"&46;2ÌdHT0]tI[,2`D<072k''&&ŠBO#iT=P(6B8%1 %/þ%'6'&8&Lÿhýl3<".=4632+5#"&546754&#"32>32532.4R0 bQh7/ @\iT;.?T>+"1 i!2<0$ ˜*@UM&©¨lSþç )\>F_ 2>€`œ&KL.#33¡1%)ÿëmG"%46;'#32+"5463#"546;2+"'^" îBB…B# ›?C# ØÇDB‹BNO2::d22þdÀÀ ;G'24;#"546;2#!32654&+4&+32 BB#ýUo?jlYþÙsq6C6/…N@‡¯fd2^G@15\HXV+""þ·(0Ž!ÿò4U+%2>32#"&=4632632#".'.#"J/C ‰d§œtFH 2=4LdkV+P•rBx¢"" TB% gO@KZ &G3"5463"546;2#4&+32>5PC =# Ôm•‘y¦[Kno2E! 22 v/u3Keþ42 &G'$2!"4;#"5463!"=#35432#"=#!5Âdþ)BBB" ÁdêU1212UÛC˜d2–CC2CCqBB4 &G%%"=#32+"4;#"5463!"=!35432I2UdBB×BBB" ×dÿU21©Cdd2—BB3BBqC!ÿòPU32#".=4632632#".'.#"3275#"5463 C*C^:Dl@*Ÿ}Q@F7TeÀE8dB" 2& „#!4GD$Gu£ !!N " cQ@§E2EG0 4;5#32+"546;&546;2+35#"546;232+HBÖBByB" 4" eBBÖB" eB4BBydd2-dŽŽ22-þdSG%2#!"546;#"5463!2+à "BþÒB" eeB" . "Bed2222þ6ÿòeG+#"'5432327>5#"5463!eB9^Tƒ2E09&wB" GdþØZoA¢C# `$"2 ZG++7&54;2#32+.'32+"4;#"546;'B#²BdB>°aH BBn#[.<#BB–BBB" –Gd•™ !3d™3³dkŠ3ldd2!;G2!"546;#"546;2+354 þ(B" 99B" ÖBB9×"!À22dþ\CÿíoH)%46;#'32+"43&546323322+"i" #o[v#!!BC=4"MЇnB4=B‚B2!ûûþß2d.þ×)2-þdÿøPG!2##32+"43#"546;#"5463B=cþý# "BC=B" s#B" GdþŠþÚ2d2þx$2ÿòCU2#"&546"32654&,=#¤æ¤Í”ij’j&z³ 3<57\5~³²NyUTzxSW kG!*$+.'#32+"4;#"546;23%32654&+kBO%s `#BB–BBB" ßa{lA= þ™L?S>0pddH‹ zdd2cO\;9aÞ1% +>ÿòU<2#".5."#"'#"=463232654.'.54632>Ô1A^BBXl;~gSI3R28L;Mg&,|]M5U" XC %, "% /œ`'BB!!&, $ J+Le!*.G$+"546;#"=!#"=#3áBçB" Akd2mBdd2]BBÁÁ "B]þ ÿòNG%%"&5&546;2+265#"546;2#ˆºˆ=" ‚ "B#LjL#B" ‚!!=Íaz|_02þá.@@.22ÿëmG+#"&46;2##"546;2ôB "" „BDÍcÊD" … "2þ­S:dþã2ÿöbG2# #&546;2+73#"5463 B/.!!ƒCC0$LhL#5B" G2*þþëã*dþðââ2 NG-3"54637'&54;27&54;2+"547'#LB¦ž:B[C&_]&CZ "9§;BoB7ef6B2ƹ/22mm20ºÅ022/xx/2CG&746;5'"4;27&546;2+32+"v# A¥@CYB&_^(# \ " ¤ACCæC2‘îd2!ˆˆ"î‘dIG"=!35462!5#Äd˜þÑâ:þ:.³[Bªaþ~H "" ¬dFúÿlÛs +32+32ÚB:;BBŸž!!A2ýÁdSÿ·#"&'&54632¸A  þÀ ‹ýZ§ }ÿl^s 4;#"4;#"&~B:;BBŸž!!b2?düùSEŒ#"&54?#"&'+uÂÄîŠ éé ÿôÿƒdÿµ!5dýK22}ð^¸#"/&54632Â… … ¨op*ÿð; +7463254#"#"&54763232+5#"&%5&#"32*†l-;])h UW\iBBuK[Jj[?03O, RwDe 1 NFÊd'OH2 ,ÿøÿò;p%4;632#"'#"546;#"&"32654&Bt?Wq†ˆnPGtB"  "KDQSBASR>2ß2…È„1#2¨ÂK8;KK:8L6ÿð5Â'#".'&#"32>32#".546326322 )AGU°5F …m>a:&qV: 03B, O@{+>-<;kˆB!ÿòep#$+5#"&46325#"&546;3'4&#"26eBtHOp‡‡qW? "" ttRDCQS„Sdd#1†Æ…2|ýôu2ë=[K¸dd«&))·dd¨>o$#!"546;5#"546;3#5Bþ¨B" zNC# ²zˆvdd2í2þ¯ iiuÿ3èo46;265#"5463!+"#5u#o+3ÊB" .mRrB9w›.'e2þ7Ojp46;32#!"546;#"i"!²zBBþ¨B" zNC>ýôd2¨ÿíoÂ/3"435&54;6326322+4&"2+4&#"2#0C<322+"4354#"32+B=C^$<)Nd=BYC=Z#7#BBpdí020"XP¶dd²H&¶d*ÿð. 2"&546"264&/j•–Ø––nD\[†[[ˆab‡‡bc†dL98MMpMÿøÿ3;Â)4;632#"'32+"4;#"&4&#"32BtDUi‹ŠhRI:!!B®BB "ßRBCRSBAƒ2-:a\z8«2dº´hDD35D!ÿ3eÂ&4;5#"&54632532+32+2654&#"3B:IShŠ‹i/F%tBBBB®„SSCASÍd«8z\a -dþFd;D35DE346;Á!2#"&#"32#!"546;5#"4;>½*T,EH‹CCþ×B" :#BB‡32#"&=#"546;543232+Ö"4'A!! Ug*Ud#B" #2µ "Bµ-J@×2XB" X2 ÿó;µ#"&54;2+5#"&=#"&546;32675#mB‡=B_%;)Oc" tX&2'#Q2þ¯d0#YPµþêH)¶Xµ+7#"4;2+##"4;2Bmk BB‡ "B§h§BB„ "ƒ2××d2þ¯QdXµ"54;2#'#.54;2#737¹BB]B4T\GD^UB\ "@'=4632\  5M 11 M4å #%'N5­Z¤5Núÿg^n 2"546,2dnBý}BBƒ "§ÿg±o*5467.=4&'.54632#"&5467>ü  5M 11 M4 #%'N5­Z¤5N>³7463232>32#".#"#"&>_8&H4 `3#L8 !&üg32k33((ÿÿÿÿÜÿ}ªY›ÀSÿÔó•.%2632"=.54675432632#".#"6-S RBdM[^J2- 32$&;NIÅ05 MBBQqMIrMC# CB*B$C2/B!&V7+3632#!"54>7654'#"546;&54632#".#"3}C-Ë+84þ¿B&1EB" ,aL;c#)DWd ;9.,.3%7 23&I]A&#GI@3>.4632632762#"&/"'#"&54?&547"2654&ƒ+ 01/2* ! "/`0!  Â'78L86„ 1(  1/00"    "1/1/7('99&)7CDA27&546;2#32+32+32+"546;5#"4;5#"4;'+"&5463³!"^_)# [BA‹Haaa/ "BÂB# .aaaHŠ " D†… &dÇ8"8#22#8"8Èúÿg^n2"=2"=46údd22dnBËBBËþŠBËBBË "$ÿV4G.>"=#"+54232654/.547&546;'&'"3>54X)k\W=51VEçX‘(ijK;eZHá”c&* =Q77' ';=+C+[?Xò9""%2:(%ˆÐŽ2"&462"&4«2##2#ó2##2#Ž###2####2ÿùÿñ^V'2>%2>32#"&=4632632#".#"2#"&54%"32654&/"  T5H_YC)&#"&15Wþ´´‚|³3a‰ˆ_c‰‰½  .VA$E\<,3("%,™³€³µ~jˆa`Šˆbaˆv¶éS)5463232+5"&5463254#"#"&5&#"32!"&5463!2—Y4CI32U7jKaM$:FË% /9{ÿ!ÿ472€N 8(2D ª &'!;Ÿ!7#"/7632#"/7632¯— øø N— øø Ú ¹¸  Œ ¹¸  *sѽ 463!"=!"*" edþÿB‹þøBB¤ÿÿ*å.Iÿùÿñ^V )4?%2+"5435&54;2+./32654&+72#"&46"32654& *,D-++-]8G!$,( 1~´´‚|³´a‰ˆ_c‰‰ö1#$$#¾"#:./ , $$J FÓ³€³µü´I‰ÀŠˆb`‰}"Ûr"4;2#²55ô55"PP}óÛT 2#"&46"32654ã’fgJGfÞ^CC.0CTgIJgh’*D^ED0/*.p+"=#"4;5432343!2#!.CdŽBBŽ2þ?B€BBþ€®ddBBdd€B" €þRdd•÷­}4623632!5>4&#"#"&¡MpK4&#"#"&†9++µ,,90 ×þü   {MpK324-aAK<-'S9$2>].œtFH 2+6MckY0Dl ")K*7!"] 79G*Bx¢"" TB( gO@KZÿÿ &F# jŽ(ÿÿ &I#!6‘(ÿÿ &H#ÿö(ÿÿ & "j{(ÿÿSE# s,ÿÿSH#![,ÿÿSG#ÿþ,ÿÿS "j{,&G/3"54635#"546;5"546;2#2+32>=4&+OB B# =# Ôm•‘y$ "BJo2E! [Kn22Œ2 v/uW242.KeŒÿÿÿøP#ÿø†1ÿÿÿòCH# s2ÿÿÿòCJ#!=’2ÿÿÿòCH#2ÿÿÿòC#†2ÿÿÿòC "j{2dPôà%"&54?'&462762#"',g(gg(gg(ggÑggg(gg(gg ÿºN~!)17#"&54?&546327>32#"32654&#"Ÿ69C¤tMH.4=¤sJâç%*Ijþ¹ë,,IjD IXp~³0: APp~³žþÛyS=±)yT@ÿÿ ÿòNJ# s’8ÿÿ ÿòNH#!=8ÿÿ ÿòNG#8ÿÿ ÿòN "j{8ÿÿCH#!@< G(+32+"4;#"4;2+3232654&+ .aEbcBBÖBBBBÖBBcbEa.þʃ2--2ƒ@800(dddd(0 ÿðo524;462#"&5463232654.'&54>54&#"+ Ba˜f#vUF4C$;$7&/&,"I+B]dz@Q`G2)EƒQd@1,$): ,$>þ—)3ÿÿ*ÿð;¸# dDÿÿ*ÿð;¸#!7Dÿÿ*ÿð;¸"ôDÿÿ*ÿð;ƒ"øóDÿÿ*ÿð;v"jøèDÿÿ*ÿð;×"õDÿóÿðdÂ7BG2#32632#"'#"'#"&54>3254&#"#"&54>326"3275&%&#"³Jfû %W *<25/3;N^2I>+R )=,B24°1>& +687Âg./)"#  XI'<  88ý .;=\\6ÿ5Â@%#"&546323254#"5.54632632#".'&#"32>3256Q?K<-'S8$8*D2&rU: 2 )AGV°4G Y, L)7!"X ,R5lˆ!!MB- NA{ÿÿ!ÿð&¸# pHÿÿ!ÿð&·#!CÿÿHÿÿ!ÿð&Å"ö Hÿÿ!ÿð&v"j÷èHÿÿ>¸# dóÿÿ>¹#!-óÿÿ>Å" óÿÿ>v"jèó*ÿð.†2>%#"&54632&'#"&546?./&546327632%"32654&.$7H@k—e&;/?J\ 2"AM -aYþþA[[A@\Zé9Z6# …^`ˆO+2     )  CP:5KJ4;Qÿÿ;ƒ"ýóQÿÿ*ÿð.¸# nRÿÿ*ÿð.¸#!BRÿÿ*ÿð.Å" Rÿÿ*ÿð.ƒ"óRÿÿ*ÿð.v"jèR*.643!2#!2"&42"&4*B€BBþ€žD))D))D))D)æddF$$%:™$$%:ÿº=î%-#"'#"&54?&54632762326547&#"$*4–lB>806•kK;0(‰½C\þݾ"C[’+BLb‡:2CNaˆ1&ŽÃM8"jÅM8&ÿÿ ÿó;¸# lXÿÿ ÿó;¹#!4Xÿÿ ÿó;Å"ú Xÿÿ ÿó;v"júèXÿÿÿ3CÆ#!e\ÿøÿ3;p*4;>32#"'32+"4;#"&4&#"32Bt%F/h‹ŠhRI:!!B®BB "ßRBCRSBA>2è a\z8«2duþ‘hDD35Dÿÿÿ3Cv"jè\ÿÿÿëmá#$"o$ÿÿ*ÿð;|#$X DÿÿÿëmI#ÿÊš$ÿÿ*ÿð;¶"øDÿëÿ0mG582632#"&5467#"546;'#32+"5463#"546;2'ú/ O(,2#,DB" îBB…B# ›?C# ØÇ!#+5+kNO„ 0)%52::d22þ'0†ÀÀ*ÿ0DÂ6A2632#"&5467#5#"&5463254#"#"&547632325&#"32Ô/ O(,2#,:K[Jj†l-;])h UW\i "(/(7?03O, R„ 0)%5'O8De 1 NFÊ). 2 ,ÿÿ!ÿò4Y#!j¡&ÿÿ6ÿð5¹#!XFÿÿ!ÿò4X# &ÿÿ6ÿð5Å" Fÿÿ!ÿò4 "{&ÿÿ6ÿð5v"eèFÿÿ!ÿò43"{&ÿÿ6ÿð5¤"ìFÿÿ &("Ép'!ÿò©}&146;7632#"'32+5#"&46325#"&4&#"26]" tL R BBtHOp‡‡qW? "RRDCQS„S?t }þ½d#1†Æ…2|þ·=4&+OB B# =# Ôm•‘y$ "BJo2E! [Kn22Œ2 v/uW242.KeŒ!ÿðep +46;32+32+5#"&546325#""2654&]" t!!BBBtDPo‹iPFBC?VQˆQU?u2þÍd(}df‹.y¯R=8CB8>Rÿÿ &á#$\o(ÿÿ!ÿð&N#$OÿÜHÿÿ &I#š(ÿÿ!ÿð&¶"÷Hÿÿ & "{(ÿÿ!ÿð&v"÷èH ÿ0KG;2632#"&5467!"4;#"5463!"=#35432#"=#!542Ú/ P(,2#,þ‹BBB" ÁdêU1212Ud6.„ 0)%5d2–CC2CCqBB4CC˜%3!ÿ0&Â)/2632#"&547#"&54632!32632!."€/ O(,2:v”•mp“þh"‚5‚ *DP×& PnQ„ 0)>+gc‡ˆg'X!G!ˆ)12ÿÿ &("p(ÿÿ!ÿð&›"þãHÿÿ!ÿòP6" ~*ÿÿ!ÿ3P¤" ìJÿÿ!ÿòP=#Ž*ÿÿ!ÿ3P«"üJÿÿ!ÿòP "{*ÿÿ!ÿ3Pw"ÿéJÿÿ!þ’PU#Rÿ0*!ÿ3PÑ(746;26=#"&54632532++""2654&#"&4?632" m+3BKe‡‡eR;tBBmRpB‚9QQrRQ1R R›.'71…cd…2$dþ›Oj,MnNM68N/~~ ÿÿE6"~+ÿÿ E_#ÿ–§KEG:#32+"4;5#32+"546;5"435&546;2+35#"546;22@CBByBBÖBByB" AA4" eBBÖB" eB4 #†2ðddd2ðd+-dŽŽ22-+ Ep,4;2+63232+"4;54&#"32+"4;#"& BäBBp2d‡=[K¸dd«&))·dd¨ÿÿS#†,ÿÿ>ƒ"óóÿÿSá#$Xo,ÿÿ>N#$XÿÜóÿÿSI#š,ÿÿ>¶"óSÿ0G/2632#"&5467#"546;#"5463!2+32”/ O(,2#,éB" eeB" . "Bee "+3+„ 0)&5222þ(0>ÿ0o(,2632#"&5467!"546;5#"546;32#5¬/ O(,2#,þêB" zNC# ²zB*2*Dv„ 0)%52í2þ¯2'0óiiÿÿS "{,>µ46;32#!"546;5#"i# ²zBBþ¨B" zNCƒþ¯d2íÿïÿòyG9+3254323265#"546;2+#"'+"546;#"546;2íB  2%*EB" °BBePFK 4zB" B" z "2þuC# ` 972dþØ[n. 22 ÿ38o-1$#!"546;5#"546;3#546;265#"546;+"#5˜BþøB" R:C# žR`vE#o+3\B" ÀmRrB9wdd2í2þ¯ iiüö.'e2þ7Oj.ÿÿ!þ ;p#4ÿ>N4$µ&$+"547'#"4;5#"&54;7&54;2+3$DvBNtBB "BtPBp "Bˆˆ dd2M¤dí2–?22nÿÿ!;Y#!¡/ÿÿ>t#!e¼Oÿÿ!þ ;G#Vÿ>/ÿÿ>þ p#3ÿ>Oÿÿ!SU#ôÏ/ÿÿ>Rp#óêOÿÿ!;G"yf/ÿÿ>Sp#yÜO ;G1+7632354632!"546;5#"&546?5#"&46;{B9X‰×2þ(B" 96h9 "" ÖGd|4Q[!"C¿2g  <¥:>p'46;63232#!"4;5#"&546?5#"l# ¯;Uz "Bþ¨BBz;SKC>á$ 1·2d" /¥ÿÿÿøPY#!]¡1ÿÿ;Æ#!bQÿÿÿøþ PG#8ÿ>1ÿÿþ ;Â#0ÿ>QÿÿÿøPX#ÿø 1ÿÿ;Å"ü Q;Â$24;5&54;>322+"4354#"32+B=C^$<)Nd=BYC=Z#7#BBpdí020"XP¶dd²H&¶dÿøÿ5PG02326=32+"43#"546;#"546;2##"&546.#+þþ# "BC=B" s#B" ‚B=eJ:@Y1(ˆþÚ2d2þx$2dþPm"ÿ5þÂ,24;5&54;>32#"&5463232654#"32+B=C^$<)NdeJ:@.#+Z#7#BBpdí020"XPþØPm"1($H&¶dÿÿÿòCá#$Xo2ÿÿ*ÿð.N#$[ÿÜRÿÿÿòCI#š2ÿÿ*ÿð.¶"RÿÿÿòCW#:¡2ÿÿ*ÿð.Ä"=RÿìdG#/%#"&'#35432!"&463!"=#3632'3ä2“2þŸzzNd.Ú6N& (B)ýBB" z¥þ¤¥BBA7" ˜(>;24(ÿõÿðeÂ+22#32632#"'#"&546326"32654&3&#"´Jfü@Q ,A2S46NLjiLM85¸"11"#11œ4 Âi-W!#JJ…_dŠPPeN76NM68N\\ !ÿÿ kY#!ø¡5ÿÿ6;Æ#!rUÿÿ þ kG#Cÿ>5ÿÿ6þ ;Á#ÿ>Uÿÿ kF#ÿþŽ5ÿÿ6;¶"þUÿÿ>ÿòJ#!V’6ÿÿIÿð¸#!VVÿÿ>ÿòX# 6ÿÿIÿðÅ"þ V>ÿUS#".5."#"&546323254#"5&'#"=463232654.'.54632>322B^BCXm;n`K=/$S9$5 672 R18M;Mg&,|\N5»C %,@& /NJ\K+6""[BB!!&, $ J+Le!" IÿÂH#"&'&#"#"&546323254#"5&'#"=43232654'.54632632ú)>&=X„#FjYKÿò4" |6ÿÿIÿð£" ëV*ÿ.G223254#"5#"546;#"=!#"=#32+#"&546Ý8$5 TB" Akd2mBBBMK23254#"5.=#"546;543232+32>32#"&546Á8$5 32#"&=#"546;54¤˜ R R"Bµ"4'A!! Ug*Ud#B" #O" X  } } #2Ä-J@×2XB*.G+"=#32+32+"546;5#"546;5#"=!ü2mB "BBBBBçB" AAB" AkdDB]Î2Md2M2Î]BBÁÁ " ÿðO8+32+32>32#"&=#"546;5#"546;543232ÍBµ$ "B$"4'A!! Ug*Ud#B" ##B" #2µ "ƒ2<2$-J@72<2XB" Xÿÿ ÿòN#†8ÿÿ ÿó;ƒ"úóXÿÿ ÿòNá#$Xo8ÿÿ ÿó;N#$RÿÜXÿÿ ÿòNI#š8ÿÿ ÿó;¶"úXÿÿ ÿòNd#8ÿÿ ÿó;Ö"þÿXÿÿ ÿòNW#:¡8ÿÿ ÿó;Ä"4X ÿ0NG>2632#"&5467#".5&546;2+265#"546;2#{/ S$,2#CR8=" ‚ "B#LjL#B" ‚!!=$33$„ 0) .+^@02þá.AA.22þê1P5/9  ÿ0;µ82632#"&5467#5#"&=##"&546;32675#"4;2Ê/ O(,2#,%;)Oc " tX&2'#BB‡=(<„ 0)%50#YP¶þêH)¶dþ¯2 DÿÿÿöbX# :ÿÿXÅ" ZÿÿCX# <ÿÿÿ3CÅ" \ÿÿC "j{<ÿÿIG#!V=ÿÿUº#!X]ÿÿI "{=ÿÿUv"è]ÿÿI'"o=ÿÿU›"ã]K;o!"&#"32#!"546;5#"546;54632 c%T‹BBþ×B" :/B# .hY³ý1þŠd2í2%EP?ÿøÿò;p +"32654&%4;2+632#"'#"546;#"&CDQSBASRþsB×!!Bc?Wq†ˆnPGtB"  "_K8;KK:8Lß22{2…È„1#2¨ÿ¾;G032654&+4&+324;#"#"&546;2#!Âq6C6/…N@‡¯fþ6B-4T=ýUo?jlYþÙV+""þ·(0Ždd ?*:3^G@15\HXÿÿCG›ÿøÿò;p +"32654&%43!2#!632#"'#"546;#"&CDQSBASRþsBŸ!!BþÕ?Wq†ˆnPGtB"  "_K8;KK:8Lß22{2…È„1#2¨ÿÿ!ÿò4U &UGÀ!ÿò—§2%#"&=4632>32#"&#"#".'&#"32>324‰d§œtKE72+> 2+6LdkZ/D m+P•rBx¢#/F3-eB) gO@KZ6ÿðŽ"1#".'&#"32>32#".54632>32#"&#"2 )AGU°4G …m>a:&qK782+> 3B, O@{+>-<;kˆ/H3-ÿÿ&G’ÿ¨&G )4&+32>5%"&546;2+"5463#"Â[Kno2E! þ34[6ëm•‘yÌC -3Keþ42l?*94 v/u2 CG "=!2+32#!"&546;5!;5#Žd×#BBBþÙh]bd³ÿf«©nB—2þdZVH^3¾ŽŽ!ÿòep %4&#"2646325!"43!32+5#"¯RDCQS„Sþr‡qW?þÔBBBBtHOpÙÿòU@;2+"32674>32#"'#"&547.54632>32#".5."»I@*BB;?NL82R 3ISg~M|]N41A^B¥".32," ,& " BB'`NX2A*Le!" XC %,ÿ™ÿ…&G+%"=##"&546323265#"5463!"=!35432I2UeJ:@.#+B" ×dÿU21©C±Pm"1(¡2—BB3BBqC9ÿ…$~/"&#"32+#"&54632326=#"546;54632ô '+9 #C9eJ:@.#+9C# 9fH8@ 0"42îPm"1(î27Ji !ÿò˜¤<4632>32#"&#"#".'.#"3275#"546;2#".5!Ÿ}K<6.+> F7TeÀE8dB" ¯C*C^:Dl@*=u£,>3-N " cQ@§E22& „#!4GD$ÿåÿóep44;6322=#"&546;".=4&#"32+"4;#"&Bt/NS|" t52825+'CCpBB ">2ËYM}HH²þç3G" "G3s('#×dd¨iÿð#G46;32632#"&5#"i# ²+#-@:JeNCþf(1"mP6SG)64;5#"5463!2+32+32#!"546;5#SBeeB" . "Bee!!Bee "BþÒB" eeêd•22•2†22†!;~1746;4632#"&#"7&54;2+32+"547'#"!" fH8@ '+OCp!!Bv !CCvBgtB2gJi 0"©?22`d2[¤>p!64;5#"546;32+32#!"546;5#SBeNC"!²e!!BezBBþ¨B" zeêd¾2þÞ2†d2†Cp17+"547#"&54?'#"546;27632+"43'óBZB1«U XdB a>R SÅ4B\C@xr;222,L-.2 8*,þ†-2dßßÿíÿóoG/2#+5#"'#"&5"4;267"&54;327"43,C<322+"434#"32+B=C^$<)Nd=BYC=Z#7#BBpdí020"XPþ}ddH&¶dÿòCU2#"&546."!326,3263232+g@j@@j@0B .-eGjo-eG8-AH==BBpEDN^^NDN^^þmdfFKk6K{Q¢u6K{Q8aIþšdÿßÿð‹æ 8>7.4;4&+"+"&=46;2>3232+ÎCFFAAFG‹B (5†cc†…d71 (9LBBp^G=?&’ '+DUi‹ŠhRI:!!B®BBfH8@ç5DD422 0"@:a\z8«2d4Ji ÿ3>G 732654.#+"4;#"546;2+3232+.'#32ÏR?&)BBBB" | "BrZUC+ BBWz !!QVþá2d22.U=RQÏd(lcY3>ÿòU<26323267>32#"'#"&47>54&"#"=46„5M]|,&gM;L82R3ISg~;lXBB^A1U!eL+J $ ,&!!BB'`œ/ %" ,% CX "IÿðÂ35432632327632#"'#"&5467>54&#"#"&^/ 8IZt^i~E0R+ &33=Wa~%!#„X=&-5[%BM<;@ '',C!B P=#<"IG$2!57'5!"=#354À:þ:˜˜Ædá–—âî" ¬dÁÁaªBBF¾ÁH  ÿ5O82326=#"&=#"546;5432;2+32>32#"&546.#+E=Ud#B" #2µBµ"4'A!! eJ:@Y1(J@×2XB" X2Ä\Pm"ÿý.G$746;#"#"&5463!#"=#32+"v" Ak-4Y8 2mBBBçB2 ?*94Á "B]þd ÿð~346;54632#"&#";2+32>32#"&=#" " #fH8@ '+µBµ"4'A!! Ug*Ud#BƒJi 0"2Ä-J@×*ÿ….G"=#32632#"&5#"=!ü2m+#-@:JekdDB]þ_(1"mP¡]BBÁÁ " ÿò¹/2+"&5&546;2+265#"546;254&546P4R2ˆºˆ=" ‚ "B#LjL#B" ‚-¹?*67þêaz|_02þá.@@.2  ÿó'1$+5#"&=#"&546;32675+"&54;254&54632#;B_%;)Oc" tX&2'# B‡-4Z7dd0#YPµþêH)¶2 ?*94íÿÄCG1"&546;27&546;2+32+"546;5'"4Z7\B&_^(# \ " ¤ACCæC# A¥-q?*942!ˆˆ"î‘d2‘î ÿ3 '127"4;254&54632#"&#32+"&54;7&543± ";rx@Cj-4R2æ "B× Bd7¬1Bµ0ßßd ?*68þF22lN,2IG!+35462!57#"4;7#"=!32áBmiâ:þ:j"BBqu³d˜w!!2† "" |d†d•BBza˜Uµ%+3632!57.54;7#"=!ÅBX7¯/þNJBLU•d™i4Ì266" XSH2S BBmQf,ÿÎ3G,"=!032#"&'&54>3232654&+"&4637#Äd˜wJaQm;Q&  *+N,DQ&)~u³‹Bza˜kIE`'F0 $53)'*•,ÿÎ3G*"=#2+"32>32#".546;'5!ÿd³u~)&QD,N+*  &Q;mQaJw˜‹B•*')35$$ 0F'`EIk˜az6 V*462+3632!57#"4;654&#"#"&J}¶z B,#‡Ñ.2þ*´9BB»'B1%1®:noS/2^ 6BXid#'&4""ÿÿúÿg^n_šÿg¾n 2"546#2"546Œ2d£2dnBý}BBƒ "Bý}BBƒ "ÿÿÜÿñ}~ÿòVG6##"'#"5463"&546;2+354323276=#"546;2V)=-ÿB! " cBBJ2% B" iBþØ_2#2dþgC# V 52ÿ38o15+35432!"546;#"546;46;265#"546;+"#5+Bg2þÀB" B" Ž$#o+3fB" ÊmRrB9wGdþ\C"!À22ý.'e2þ7Oj#"'&5476;+"'&5476;265#5'32+"'&5476;#"'&54763Ä\"  ÀmRr"  o+3/w~>  à"  >.#  Q þ7Oj .'ƒiiýô  ¨ ÿ3Go:#546;265"&546;+"2#2+"5463"&546;5"5463?lÿ#o+3" [mRrB—B1cs:BRC !" ]r<" oiiüö.'eþ7Oj20þ:Öd2þÈÔ2ÿ38oF#546;265#"546;+"74&#"2+"'&547635&54;>322#0wô#o+3B" ymRrB?   d  =C^/p= oiiüö.'e2þ7OjÍ))¶  í020!¨¶2ÿÿÿëmD#ÿÊŒ$ÿÿ*ÿð;±"øùDÿÿSD#Œ,ÿÿ>±"ùóÿÿÿòCD#Œ2ÿÿ*ÿð.±"ùRÿÿ ÿòND#Œ8ÿÿ ÿó;±"úùXÿÿ ÿòN–#q$žÿÿ ÿó;#qÿû”¾ÿÿ ÿòN#v Vžÿÿ ÿó;~#vƾÿÿ ÿòN #Užÿÿ ÿó;}#ÿúžÿÿ ÿòN#CÿóVžÿÿ ÿó;~#CÿîÆ¾ÿÿ!ÿð& HG²Àÿÿÿëm–#qÿï$†ÿÿ*ÿð;#qÿõ”¦ÿÿÿëmm#qÿÊûÊÿÿ*ÿð;Ú"qøhËÿÿÿìfÍ"qJ[ˆÿÿÿóÿðd:"qȨ ÿòSU=%+#".=4632632#".'.#"3275#"546;32S" DU6@d<'Ÿ}F@D+6N(#1*98dB" ÈB¡?$#5HB"Gu£ !!N "  $:9@)>#d2d!ÿ3Pà /"2654&++"546;26=#"&54632532+329QQrRQB$[9pB" m+3BKe‡‡eR;tBB!!_MnNM68Nþj2.62.'71…cd…2$dþªÿÿ!ÿòP0"x*ÿÿ!ÿ3Pž"ðæJÿÿ Z&"ðn.ÿÿÿí;_#ÿp§Nÿ)CU".2632#"&5467.54632"32654&0 O(,2#)b¤sÄ#/óÿÿSI#1Xš,ÿÿ>¶#1XóÿÿÿòCW#/¡2ÿÿ*ÿð.Ä#/!RÿÿÿòCI#1Xš2ÿÿ*ÿð.¶#1[RÿÿÿÕkW#/°¡5ÿÿ6;Ä#/*Uÿÿ kI#1êš5ÿÿ6;¶#1dUÿÿ ÿòNW#/¡8ÿÿ ÿó;Ä#/Xÿÿ ÿòN='1YŽ8ÿÿ ÿó;¼'1R X>þêU<K2#".5."#"'#"=463232654.'.54632>#"&4?632Ô1A^BBXl;~gSI3R28L;Mg&,|]M5sR RU" XC %, "% /œ`'BB!!&, $ J+Le!ý-~~ IþêÂ1@"'&#"#"'#"=43232654'.54632632#"&4?632ú:)>&=X„#!%~aW=33& +R0E~i^tZI8 /¨R R[ "(<#=P B!C,'' @;~~  þêO(7+32>32#"&=#"546;543232#"&4?632ÍBµ"4'A!! Ug*Ud#B" #2µ "{R Rƒ2Ä-J@×2XB" Xýâ~~ ÿÿED#Œ+ÿÿ E_#ÿü§KIÿ5G#2326=!5#"=!35462#"&546.#+þž.³d˜þÑâ:eJ:@Y1(dFBBªaþ~H "" ºPm"Uÿ5µ!%2#"&54632326=!5%#"=!36Õ2eJ:@.#+þ²•d™þú¯šBfPm"1(Sþ BBmQÿ6ÿÿÿëmõ"Êg$ÿÿ*ÿð;b"øÔD ÿ#&G>23254#"5#"4;#"5463!"=#35432#"=#!542##"&546é8$5 ÉBBB" ÁdêU1212UdÈKm… F5°UGA) 23MBˆk;<->+{@O ,!ÿ5Øp .%4&#"32646;32632#"&=#"&46325#"&¯RDCQILBSR" t+#-@:JeHOp‡‡qW? "Ù&=?/?=*/OE0R+ &3d!B P=8 09QQrRQƒ2mRpB" m+3BKe‡‡eR;_MnNM68NoBþ`Oj2.'71…cd…2ÿÿ ÿCE³ KR³ÀE~024;4632#"&#"63232+"4;54&#"32+BfH8@ '+o%#546;5#"4;5#"546;32+32#!"Pvœ" zOBBONC# ²O!!BOzBBþ¨BoiiýÃ6dS2·26diÿð#µ46;32632#"&=#"i# ²+#-@:JeNCƒþø(1"mP¤nêµ+32+"546;5#"546;2êBJJ "BøB" JJB" ø "ƒ2í22í2>p1746325#"546;2>32#"'32#!"546;5&#"#"&>_8NC"!²`3zBBþ¨B" z !&üg‘2þÃkWd2((iÿ5#p46;32632#"&5#"i"!²+#-@:JeNC>ý‚(1"mPÿÿÿíÿóoµ P\µÀÿíÿ3oµ/2#+5#"'#"&="4;2675"&54;3275"43,C<322+"4354#"#"&5466.#+=C^$<)Nd=BYC=Z#7#eJ:@Y1(_020"XP¶dd²H&þØPm"ÿ5ÃÂ,24;5&54;>3232632#"&54#"32+B=C^$<)Nd+#-@:JeZ#7#BBpdí020"XPþØ(1"mP$H&¶d?µ 2#2+"54635"&546;5"5463ÝB1c­:BRC !" ]¬<" µ20þ¯¢d2íþü 2ÿÿ*ÿð.Â@ÿÿ6ÿô;µ UqµÀÿÿ6ÿô;‚ øqµÀ6ÿ5„µ++32632#"&=#"&5463232675#"43!2;" :+#-@:Je32#"&#"32#!"546;BB‡32 ,EH+#-@:Je#BB‡&=X„#!%~aM6+#-@:Je3& +R0E~i^tZI8 /[ "<#=P(1"mPrC,'' @;32#"&5#"546;543232ÍBµ"4'A!! Ug*Ud#B" #2µ "ƒ2þ~-J@•2XB" X ÿó;µ.%#326+5#"&5#"4;5#"&546;35+"&54;2#™ÖU&2ÈB_%;)NdBB" t×# B‡==šCd0#XOdS·S2·d6ÿÿXµ YXµÀÿÿXµ ZXµÀÿÿC‚ \XµÀUÿ5̵"2632#"&=!5%#"=!3632U-@:Jeþ²•d™þú¯/+g"mPSþ BBmQÿ6" f(1hV""=>3232+"4;5>54&#"ÌdHT0]tI[!!B„BB`D<072ŠBO#iT=P(€2dÄ%1 %/hV""=&#"32+"546;5.54632d180324‰d§œtFH 2+6LdkZ/D R+P•rx¢"" TB) gOÿKZÿòCU#2"&42#"&546"32654&2##2#<54&#""=>3232+«BSB!!S`D<072dHT0]tI[!!B„d020%1 %/BBO#iT=P(€2hV*$+"546;5.54632"=&#"32+3ÂB„B!![It]0THd1802"&54:R:jŠj¯#))#9YY9ðhŽ2"&42##2#Ž###2±æ§× 2"&46"2654&,3HIdII2**8*)×H20GHbG5(6(((úÿ0Ï2632#"&54673_0 O(,2$+b6.„ 0)%7%3s å2632#"&#"#"&54632u. C*j, C+iP@ R@= L@}ðÛ¶#"&4?632"&4?632#f f ff nnnnnÿÿþ%ðÿ¸Cý¨ÿÿþ¢ðÿƒ¸vý¨þ%ñÿ„¸#"&546?"'þÕq ˜ _a  ˆ  ÿÿþ ÿý¨ÿÿþ%"ÿƒrqý¨ýß"ÿÉr"43!2#þ55€55"PPÿÿþ%÷ÿƒ¯ý¨ÿÿþ˜ÿŽý¨ÿÿþ0ÿxŽjý¨þYÃÿO×"4>54&#"#"54632"&5þº$*)G41J* ä ((2FD19!   ÿÿþYæÿO×ý¨ÿÿþ%ðÿƒ¶ý¨ÿÿþ%ñÿ„¸ý¨þ¬þüÜ "&=462þü  ´ŠŠþ\ÿLÜ "&=462"&=462´     ´ŠŠŠŠþ%ðÿƒ¶&54632#"'%&54632"'þÝ f þö fnn nn þ%÷ÿƒê2267>2"&5462"&4þ8:R:jŠj–2##2#¯#))#9YY9P###2þ%÷ÿƒ¯"&5462"&'."þVjŠj:R:÷9YY9#))#þžãÿ@º2#"&+53254&546þó4R2-º?*68d ýÝÿ5ÿ26=3#"&54632þT#+deJ:@-g1(Pm"þ¢ÿ5ÿË2632#"&=3¬-@:Jed+g"mP(1ÿÿþ\ÿÿ?zý¨ÿÿþ¢ÿ0ÿwý¨þ(ÞÿŽÈ%632#"&54þC þþ <‡†ÿÿ“K_o¶ÿÿ“ÿk_¶þ çÿ52632#"&=3™-@:Jed+g"mP(1ÿÿ“ÿb_µÿÿyØZ !×ÿèÿÿˆÐT#<v´júÿÿÿGmG#<þÎÿ£GÿÿáÖwZyÿÿÿ-K]#<þ´ÿ½K%ÿÿÿ8RG#<þ¿ÿ¡M ÿÿÿ›HG#<ÿ"ÿ¡OCÿÿÿnÿòCU#<þõÿ³Uÿÿÿ%IG#<þ¬ÿ¥ZÿÿÿxMG#<þÿÿ¥^ÿÿaÿð#<"=ÙènÿÿÿëmG$ÿÿ ;G%ÿÿ 8G MG$#!"5463#"546;!3MBþBB# {?C# اþ¯åtdd22þ^ÿÿ &G(ÿÿIG=ÿÿEG+ÿòCU62#"&546"32654&463235432#"&=##"5,ì22ë<$ï;G17.546;235462#532654&+";#54623´@Lk0Jo3L@3*û.HAG0ˆH.û*3v~HbLk8H~lÊW7>M‹8VÊlÿÿSõ"jgOÿÿCõ"jgZÿÿ!ÿòeä"<DfÿÿIÿðÓ"54&#"32654.'& #a˜f#voL-f+B]BÒ&/&,"I@[4$;$7›G@Q`G2)EƒOfj)3.$>þ—."): ÿ3Eµ&27"4;232+"&54;5&543³ ";rx@C\ "4³ "B{ B ±1Bµ0ßßd-þ¬f22fT,2*ÿð.~ ."264&7"'.#"32"&547&54>32632.D\[†[[¸:+3%n!j•–Ø–M;&=?/?=*/OE0R+ &3d!B P=8 0322+4#"32+B=C^$<)Nd=B_Z#7#BBpdí020"XPþ}dãH&¶dSÿño2#"&=4>3."#26,jo-eGjo-e.ê?j?éê?j?o¢uPK{Q¢uPK{QþòN\\²L\\ÿÿiÿð#µêÿÿ4$µÄCp!46;2+"43'+"547'#" a$. Ý4B\C@xr;BZB1¬.dB> ,þX-2dßß022,NZ ÿ3;µ0$+5"'32+"&54;#"&546;32675+"&54;;B_%;R% "Bp B" tX&2'# B‡dd0#j22ºþêH)¶2þ¯ÿÿXµYuÿ  }G"546;>54.'&54>7&=4>7##"=!'32+"#[1;MU1;=!Q(„Gw./R`0@6.!"à+  /W9c.;+4mT%J &HF10 &$ÿÿ*ÿð.ÂRÿÿ.)µÉÿèÿ3.Â#434632#"'32+"&264&#"B–oj•–lYE "B€ ¦[†[[AD\›2Bc†ˆab‡0‰2‡8MMpMLqÿÜþÏA2#.54&#"+"'#"=43232654.'.546;27>Ö0 8@?5VwM;7851))E /+Jk%&eT K5 ¿U6 4*"" $M?($2H1% <%AW *ÿðZ "264&3"&546;2#.D\[†[[’-–Ø––où^L98MMpM=Hb‡‡bc†*Fÿðµ%2632#"&=#"&463!2+œ-@:Jer\†+T"mP¤**¤(1 ÿðKµ"%26=#"4;2+#"&=#"&546;(+BBB‡ "Bqb^l" t-T*7œd2«Z\\X­þü,1ÿúÿ6BÂ+%26=4+7+"&=#"&=#"&546;;32“(#NÌ`M*Ma}1‚N`d*tBú7@[˜˜XAÅþæ$ ^[Aÿ3Jµ5+;2#"./2+"&54;7'.+"&46;27"4;2HB”q$#/! XQ?B‡ "B“` ]5GR@B‡ "ƒ2àÏ * ¡|d2ß° *_‚}dÿêÿ2n~.4;;46226=32++"&=#"&=#"&Bt(,*0*t "BfR*Oi "ƒ2÷2,ìþ%9ù2•Wk˜˜lV“ÿØAÅD".547&54;2+326=4632327654'#"&54;2#"'È+D&(1m&0# * #10&0n3(eP7+ %(+=L8SD +DS/G!"$ŠŠ%O(0PF++ CTl•+  ÿÿaÿð#v"jÙènÿÿ ÿðKv"jþèzÿÿ*ÿð.Ó"<3tÿÿ ÿðKÓ"<3zÿÿÿØAÖ"<16~RÿÞ q)3254&#"32654&#'4>32+32#".Èsk71T$"V2638é3dDMzÝvvÝxTA`3¦&%þ¥p.z6hg@WNŠŠLb>gnGÿÔ‰:4632#"&'.5>;232>54.#";2+"&kwVDe0~[Vq  g %2" 0 &^`GN¨^ƒjœV‰Ð}H + %7_:(=J0!+) 7ÿçAL%#&546327>32#"&#"0[·˜‚%,5  ÷þð äÆ.ÿüÿ3\/#";2654&+'546232+"&=#"&5463ú @:<> d ><:@ d* r‚€r * r€‚rQH07AB6/Id˜˜~d_w˜˜w_d~ÿØAÅ7".547&543$32#"'326=463232654'È+D&(1²3(eP7+ %O0# * #(70(+=L8SD ++ CTl•+  ”DS/G!"$ŠŠ%eBNF*ÿ3.Â#73!2#!"&54632#"'264&#"Ž!,þòQ`–oj•–lYE[†[[AD\ M&*YGc†ˆab‡é8MMpMLÿÿ &7"C,(ÿÿ &ç"jíY(ÿEFF="5#6327232656=&'#"32+"'#&'54737##"=!¾d@. 2ª¢@Ž&.6#ê/7(d-!;{'"&d (  @fb 87.%2+"546;#"&5463!#"=!#"&54?6328!!BÖB"  "" Ö2ÿ²… … d22— "B3þ‹po"ÿò6U3+32>7632#"&=4632632#".'&#"32 BØkW-=Šd§œt;S -5E` Ö##2GT*Q•rBx¢" !T "(WEÿÿ>ÿòU6ÿÿSG,ÿÿSç"jY,ÿÿSç"jY,ÿÒ€G=K4;23#2+".'546;#"&'&=432265&'26=4.'&+3FBú! 0‚/ |\‹Np'#"2 2q6)2 0‘9 ("H`þŸo, B" X*þR+ ŒÿÄ|HLZ4;23#2+"'54;5323+"&'54;&'54;23+75#"'#&'26=4.'&+3ÚBf! +‚/ |\ˆ?B¼! Bx!@2@f! B¼ Ù6)2 ( 9 ("H`12 22,2 2ŽŽ þP+ Œÿø^G>"5#632+"'54;5&'#"323+"'#&'54737##"=!¢d@. 2ª£@Ž&NeL'212"& 2 (  @fbR72B%2+.#32+"546;#"&546;2+7&54;2##"&54?632!!Bn#‰<$BB–B"  "" –BB$²Bd ">°-Y"j… … d2n¨²d2d•™ !32™yU‹poC70@ 4;532+"546;&546;2+75#"546;232+#"/&54632FBÖBByB" 4" eBBÖB" eB4BBy‡… … dâ¹)d2-dã¹*22-þd'opD'$83"54637.546;27&54;2#2267>2"&54¸BD¦%\!!^^&DZB:Ø6B–:R:jŠj2t  ¬¬220þ/2'#))#9YY9ÿCGF%#"'654'#.'#&'5473#"'#&'54;2+3#"'#&'54;2+/ ‘6“ 0! By?BÖ" By"B22 - * 212þ 22þ*ÿÿÿëmG$CG "=!32#!"4;#"5463!4+3.dÿ³db]hþÙBBB#×Sh©«nB3^HVZd2—þ´ŽŽÿÿ ;G% 8G%2+"546;#"&5463!#"=!8!!BÖB"  "" Ö2ÿd22— "B3þÿsWG!23"=!"=3265&54633#áB4hdþvdf4" CŠG2-þ¯BBKKBB¯,:-þþ½,ÿÿ &G(ÿèoGA#7&54;2#32+.#2+"54635"#"4;67'"4;25"546;2žAvB6B8s] BBX;; !BaB! ;;XBB ]s8B6BvA" a!!2’– !3d™1µdvŽ 22 Žvdµ1™d3! –’2>ÿòU?4;2654&"#"=4632632#"'#"=463232654&+"¨B*>KB^A14N]|M~gSI3R28LLA;B"3." ,% CX "!eL*A4VN`'BB!!&, !-CG0 4;532+"546;&546;2+75#"546;232+FBÖBByB" 4" eBBÖB" eB4BBydâ¹)d2-dã¹*22-þdC'0D 4;532+"546;&546;2+75#"546;232+2267>2"&54FBÖBByB" 4" eBBÖB" eB4BByø:R:jŠjdâ¹)d2-dã¹*22-þd'#))#9YY9RG2%2+.#32+"546;#"&546;2+7&54;2#!!Bn#‰<$BB–B"  "" –BB$²Bd ">°-Y"d2n¨²d2d•™ !32™yU KG*72326=&5463!232+"4;##"&=46?24" B4BByBBmTC;SÌAX-2-þddþŸE=I9 "ÿÿÿíoH0ÿÿEG+ÿÿÿòCU2CG" 4;#32+"546;&5463!232+FBÖBByB" 4" ‚B4BBydþd2-2-þdÿÿ G3ÿÿ!ÿò4U&ÿÿ*.G7DG$3"54637.546;27&54;2#¸BD¦%\!!^^&DZB:Ø6B2t  ¬¬220þ/2TG JW32>54.#7+2#32#!"546;5".54>35#"5463!2#";^$22$¢Be;$//$;e "BþÒB" e;$//$;eB" . "þõ$22$j  «2 "4"%:% 22 %:%"4" 2È  ÿÿ NG;ÿsRG#"=!"547#"4;2+3#"&54;2+3RdþnB4BByBBÖ "ByBBfBK2-ddþ2dþ¯&2G, 4;5#".=&54;2+3275#"4;232+4B-= 17#4BfBBREBBf "4BBzdl&2#²-2d¯&&¯d-þdÿênG14;2#3"&546;2##!"547"&546;2#3ÊB@B0€"J,BþB,J"€ãddþþ.22.!þÿäÿspG3#3"=!"547"&546;2#3"4;2#3"&546;2b:dþB,J"}0B@B0}"Jþ¯BBK2.!þddþÿù_G'"&=!2+32+"&54;#32654&++MBBLDa1y_Ô "BfÊ`3;;3`D" Ádd%=>"Sj2]Bà1+*1ÿëmG1:#2+"&543"546;2$+32+"&463".54;32654&+m<"Sj<2þ1+*1 G&+32+"&54;#"&54;32654&+gBcb7U3" z_é!!B "BÖcv4;;4vGdd'52Sj22þ1+*1"ÿò6U4723267#"546;.#"#"&=4>327632#"&546TB2WkØB" Ö `E$0& S;tœ§e‰ŸTG2EW!" T"¢xBr•P+ÿéÿòyU&,#"&5#32+"5463&546;2+3546732&"25y|dcx: BBbB 4" _BB 9zblsdøø"†ªšed2!-dŽj“¶RÍÎËÿý[G#, 4;5##"4;67&546;2+32+5#"3AB#` s%OBB =Al{aß!!B "B–#p0>S?dz ‹Hda9;\Oc2þ2B¡+ %1ÿÿ*ÿð;ÂD4ÿò$#.20#0#"632#"&=4>;546"2654&Ê2S=GF& >Xo‡ˆnpŠ'1UXD €CQR„RRBK)"2†cd„wJjJ+ "þÞK8;KJ;9KTÿÿµ /232654.326=4#"435"4;2#"&#ö0 0'(<*(F:¨^D>>D¨-H+6#$<4Q9  í +´díd4'I /4$2 böµ%"=&#2+"435"43!Ä2@O=9 YC==CQôBí04díd "#ÿ¤5µ#735'"&=326="43!2#3#"=!úš²c =CJB=82þ»dìÂ"É#~Âd40í~ "BBÿÿ!ÿð&ÂHÿëlµO%+"54675+"546;7'"&546;25.546;27&54;2#32+"547'_)2/ 8IZt#~aW=3dC,'d B%BM<0 8=P B8µ075"56;720#20+"4352+"435"4;À×=7 ZB==9 YC=×=9 YC==?XCQ{o 2220í02d|o 02dídb8¯B2267>2"&5475"56;72#2+"4352+"435"4;:R:jŠjF×=7 ZB==9 YC=×=9 YC==?XC¯#))#9YY9þ·{o 2220í02d|o 02dídb4$µ&$+"547'#"4;5#"&54;7&54;2+3$DvBNtBB "BtPBp "Bˆˆ dd2M¤dí2–?22nFµ&%+"435'#"&=43226="43!2#2F9 YC=‡4L2=CJB==44dìíd.)5="  ßd40íÿðlµ(2+2+"5435##'#2+"5435#"54;7*B8;>_B@gLg@B_>;8B©SSµ40í1331íííí1331í04ÂÂ3$µ035"56;720#20+"435#2+"435"4;Ô¯=7 ZB==9 YC=¯=9 YC==?XCQJI2220í02d>>02dídbÿÿ*ÿð.ÂR.)µ"'20+"435"43!2#2+"43ˆ¹=9 YC==CvB==9 YC=Pí02díd20í02dÿÿÿøÿ3;ÂSÿÿ6ÿð5ÂF>¶%+"435##"=!#"=#2›9 YC=X2Ü2X=54dì "B "Bìÿÿÿ3Cµ\ÿÜÿ3|ˆ.7#32654&%4;32+32+"4;5#"&546;5#"&";5ž@@>@^ðA7,Lø2Æa\zs2dsz\abÛL,7AðÿÿCµ[ÿ¤9µ&"=!"505435"5054732#5"=4732#32þŒB==BYC=·=BYC=^\B20í01dìí00dí~ "1'µ*%+"435#"&="4;#326="54;72#2'9 YC= 8Xh=?XC=6$<=9 ZB==44d)=PUdbUT0440íÿõdµ7%#!"54635.54;2+35#"&54;2+35#"&54;22dBþBC-HyBAByH-C444í52íí44íí25íÿõÿ¤dµ:23#"=!"54635.54;2+35#"&54;2+35#"&543!C$2þ;BC-HyBAByHµ5í~ "B4í52íí44íí2Cµ%7"=!2#3+"435#32654&+G2C=QgU!,<(¨C=XÑ2A6DNõB~d9H@%8dí "‘ ÿ÷`µ!:32+"435"4;2326=4.#%"&56?32#2+"5463™5iS%=,¨D>>DXB<'<( * %0AF?33BECQ9>K/?díddí   œ12/í/22Tµ$2+"435"4;2326=4.#öEWB!!,='¨D>>DXB<(F:5$&Q9 .$&9díddí   ,ÿð,Â-72327#"4;&#"#"&=4632632#"&546^ H4ˆÂ+ÿôÿðdÂ$04632#"&5#2+"435#"4303+%"32654&Èp`dhig[mB8?JB2*>>D ?//=>.-Tl‚΂_N922díd1O\E@?FE@?F4$µ#,746;7.54>;2#2+"435#+"#";4" "F;-!+>%¨B<JBvBP3B50H22C 9<&8dídd9F2Q ÿÿ!ÿð&²"C6úHÿÿ!ÿð&U"j÷ÇH ÿGþpN4;26=74'5&+"323+"'54;#"&46;5#"'#&'54;32+6;2+"'ÔB$*4*1! Cp?B4  3! Bt  :N2J%lS'?‡2+)ß(‡ 212X 2zg=#73ìOj1bö¥'%"=&#2+"435"43!#"&54?632Ä2@O=9 YC==CQ[… … ôBí04díd "ipo,ÿð,Â-#".'&#";2+32>32#".54632632 )Ar"¾?<ˆ4G ˆjMp8qW9 3 ", ]dI+>*FH'kˆ#ÿÿIÿðÂVÿÿ>oLÿÿ>U"jÇóÿÿuÿ3èoMÿãÿÿŽ´*02+"5435'#"&=43232="4322654#¹x]'@< nC=l‡7I21 "=C(B!>2p6S+< 13ìíd0&6=7 ßd5í ,ÿãoµ392+"5435#2+"'435"54;2#35"54>;22654#šy\%?="oC=²"BYB==>b>=²= ZB>2p5T+< 13PP213í04d87- 4í , EpO3"'54;#"&46;5#"'#&'54;32+6;2323+"'54;74'5&+"323#Y?B4  3! Bt  :NOb! Bp@C)1! C12X 2zg=YLˆ 212{(‡ 24$¥&6$+"547'#"4;5#"&54;7&54;2+3#"&54?632$DvBNtBB "BtPBp "Bˆˆ Z… … dd2M¤dí2–?22nùpo8¥0@75"56;720#20+"4352+"435"4;#"/&54632À×=7 ZB==9 YC=×=9 YC==?XC… … Q{o 2220í02d|o 02dídbDopÿÿÿ3C•"æ\ ÿ9µ775"'5430;2#2+"'654'#"'=475"'54;2#Á×88 YB6;Cš6œA=98 YB6eí*21-í/2- 1)í*21- G&+32+"&54;#"&54;32654&+gBcb7U3" z_é!!B "BÖcv4;;4vGdd'52Sj22þ1+*1Tµ$2+"435"4;2326=4.#öEWB!!,='¨D>>DXB<(F:5$&Q9 .$&9díddí    5;'&54632654&+32'"5476;2#"/+32+"5476;O " ;2rróA á\v% 0Y__ !AÎA &)0±±0gQ>1a00sÿùÿ3<Â?"327'&54>32654&#"/#"'32+"4;#"&54;632CCRSB$<+R®6.6RI:!!B®BB "BtDUi‹F'^D35D$=!64Dþž 68«2dº2-:a^<' 8¼%2+"546;#"&5463!5432!8!!BÖB"  "" r2þœd223B" —þbö%+"435"4;54632&#2@9 YC==Cí2¤O=44díd "Bí 8G%2+"546;#"&5463!#"=!8!!BÖB"  "" Ö2ÿd22— "B3þOöµ'%+"435#"&54;5"43!#"=&#32+2@9 YC=')'=CQ2@O4)4=44dM(Pd "BP(Mÿo&5:"=#632#526=4&#"32+"54;#"5463!ö1ø-:.1  (C,+12#!$#‰@@ @'Çd>2±&1"Ê% `!Ÿ  S001s0“böµ%"=&#2+"435"43!Ä2@O=9 YC==CQôBí04díd "ÿèÿsoGE2#32"=#.#2+"54635"#"4;67'"4;25"546;2#7&543,B8s] Bd6;; !BaB! ;;XBB ]s8B6BvA" a!!AvBGd™1µ2}BBKvŽ 22 Žvdµ1™d3! –’22’– !3ÿëÿ¤lµV%2#"=#"547'+"54>?5+"546;7'"&546;25.546;27&54;2#>2'BNÿòU?4;2654&"#"=4632632#"'#"=463232654&+"¨B*>KB^A14N]|M~gSI3R28LLA;B"3." ,% CX "!eL*A4VN`'BB!!&, !-IÿðÂ8743232654&+"4;2654&#"#"=432632#"'#"5I3& +R0EO/*=?/?=&>)2/ 8IZt#~aW=3dC,'d B%BM<0 8=P Bÿx>59"&=#.#32+"546;#"54;2+7&54;2#32K!„;#@@‘@ @@‘@!#­@`A=ª,U!  ˆ Ik£­100s011” 210•uSy2ÿ§§,"=#"547'#"54;5#"54;7&546;2+32ä2T?LoAAAAoN l@@„„ %YA0KŸ01å10’>01j{HARG2%2+.#32+"546;#"&546;2+7&54;2#!!Bn#‰<$BB–B"  "" –BB$²Bd ">°-Y"d2n¨²d2d•™ !32™yU4$µ&$+"547'#"4;5#"&54;7&54;2+3$DvBNtBB "BtPBp "Bˆˆ dd2M¤dí2–?22nRG2%2+.#32+"546;#"&546;2+7&54;2#!!Bn#‰<$BB–B"  "" –BB$²Bd ">°-Y"d2n¨²d2d•™ !32™yU4$µ&$+"547'#"4;5#"&54;7&54;2+3$DvBNtBB "BtPBp "Bˆˆ dd2M¤dí2–?22nRG2%2+.#32+"546;#"&546;2+7&54;2#!!Bn#‰<$BB–B"  "" –BB$²Bd ">°-Y"d2n¨²d2d•™ !32™yU4$µ&$+"547'#"4;5#"&54;7&54;2+3$DvBNtBB "BtPBp "Bˆˆ dd2M¤dí2–?22nÿsEG4232"=#"4;5#32+"546;&546;2+35#"5463ïB4BdWBBÖBByB" 4" eBBÖB" G2-þ2}BBKdd2-dŽŽ2ÿ¤8µ2"=#"435#2+"435"4;#35"56;72#227C=×=9 YC==?XC=×=7 ZB==\Bd>>02dídbJI2220í0L "ÿÿEG+8µ035"56;720#20+"435#2+"435"4;À×=7 ZB==9 YC=×=9 YC==?XCQJI2220í02d>>02dídbÿÄÿov5A2632#526=4#"32+"546;#32+"546;&5463{A6&3. (C,+1B#&@@u@ ½??v@ 2 51±& 6*Ê% `!Ÿ=#M100sþ100s-8µ"'20+"435"43!2#2+"43—×=9 YC==C”B==9 YC=Pí02díd20í02dÿÿ!ÿò4U&ÿÿ6ÿð5ÂFÿÿ!ÿò4U&ÿÿ6ÿð5ÂF*ÿs.G"=#32"=#"546;#"=!ü2mBBdÅB" AkdDB]þ2}BBK2]BBÁÁ ">ÿ¤µ%"=#2#"=#"435##"=!è2X=27C=X2ÜôBì2L "Bdì "B "15(2+32+"54;5'"54;27&54763ñ@ ?AAà??@ >BU !&]Z& !51çŒ1001Œç01„„ ÿnCµ&2+32+"546;5'"4;27&5463 " ¤ACCæC# A¥@CYB&_^(# µî‘d2‘îd2!ˆˆ"CG2746;5#"546;'"4;27&546;2+32+32+"v# AdC# d¥@CYB&_^(# \ " ¤dCCdACCæC2-2îd2!ˆˆ"îd-dÿnCµ246;5#"546;'"4;27&546;2+32+32+"v# A_C# _¥@CYB&_^(# \ " ¤_CC_ACCæC`-2îd2!ˆˆ"îd-d ÿx<55"&=#"547'+"54637'&54;27&54;22 M@5bb3?kA¡š7?XB&]Z$@W@˜¢ˆ I0.tt.00Á²-11jj11´¿y" ÿ§1§3"=#"&5467'+"54?'&54;27&54;22K!IG&Al@5Œ|2?Z%;;@Y@4€“5YA;; 20.|i,01110,j{.H"ÿx>5*"&=!"547#"&54;2+3#"54;2+3þzA4!@u??Ð@@u@@aˆ I0,s110þs0110þªÿ§.§)"&=!"=435"&=4732#5"54732#3ÿþ‰@; @UC=Á;@VAZY"0/å/01äå1.0åy&ÿs2G1232"=#"4;5#".'5&54;2+3275#"43Ü "4 "dXBB-= 05#4BfBBREBBG-þ}BBKdl&2#²-2d¯&&¯d1ÿ¤'µ/2#2#"=#"435#"&="4303#326="54;åB==27C= 8Xh=?XC=6$<=9 µ40í2L "Bd)=PUdbUT04% 53%46;5#".'5.54;2+3275#"546;232+"*"-:'99!@c@@8!A A"b@@@uA0i& 7*­110ª&ª01þ10/§0%#0+"5435#"&="&54;#326="=4;72#29VA;"3Ue <UA2"&54žAvB6B8s] BBX;; !BaB! ;;XBB ]s8B6BvA" a!!þò:R:jŠj2’– !3d™1µdvŽ 22 Žvdµ1™d3! –’2õ#))#9YY9ÿël•Oc%+"54675+"546;7'"&546;25.546;27&54;2#32+"547'2267>2"&54_°-Y"d2n¨²d2d•™ !32™yU4$µ&$+"547'#"4;5#"&54;7&54;2+3$DvBNtBB "BtPBp "Bˆˆ dd2M¤dí2–?22nÿÿEG+8µ035"56;720#20+"435#2+"435"4;À×=7 ZB==9 YC=×=9 YC==?XCQJI2220í02d>>02dídb&2G, 4;5#".=&54;2+3275#"4;232+4B-= 17#4BfBBREBBf "4BBzdl&2#²-2d¯&&¯d-þd1'µ*%+"435#"&="4;#326="54;72#2'9 YC= 8Xh=?XC=6$<=9 ZB==44d)=PUdbUT0440íÿÿÿëm'"x$ÿÿ*ÿð;•"æDÿÿÿëmç"jY$ÿÿ*ÿð;U"jÇDÿìfG8;"4;#"5463!"=#3632#"&'#35432!"&546;5#+5BsB" ·d~/2“2þ£])9_Ý@d2¥BBA7" NBB" {::)5ÔÔÿóÿðdÂ7BG2#32632#"'#"'#"&54>3254&#"#"&54>326"3275&%&#"³Jfû %W *<25/3;N^2I>+R )=,B24°1>& +687Âg./)"#  XI'<  88ý .;=\\ÿÿ &'"îx(ÿÿ!ÿð&•"øæH"ÿò6U4723267#"546;.#"#"&=4>327632#"&546TB2WkØB" Ö `E$0& S;tœ§e‰ŸTG2EW!" T"¢xBr•P+,ÿð,Â-72327#"4;&#"#"&=4632632#"&546^ H4ˆÂ+"ÿò6ç4=F723267#"546;.#"#"&=4>327632#"&5462"&462"&4TB2WkØB" Ö `E$0& S;tœ§e‰k2##2#ó2##2#ŸTG2EW!" T"¢xBr•P+H###2####2,ÿð,U-6?72327#"4;&#"#"&=4632632#"&5462"&462"&4^ H4ˆÂ+É###2####2ÿèoçAJS#7&54;2#32+.#2+"54635"#"4;67'"4;25"546;2&2"&462"&4žAvB6B8s] BBX;; !BaB! ;;XBB ]s8B6BvA" a!!ó2##2#ó2##2#2’– !3d™1µdvŽ 22 Žvdµ1™d3! –’2µ###2####2ÿëlUOXa%+"54675+"546;7'"&546;25.546;27&54;2#32+"547'2"&462"&4_ÿòç?HQ4;2654&"#"=4632632#"'#"=463232654&+"2"&462"&4¨B*>KB^A14N]|M~gSI3R28LLA;B2##2#ó2##2#"3." ,% CX "!eL*A4VN`'BB!!&, !-÷###2####2IÿðU8AJ743232654&+"4;2654&#"#"=432632#"'#"52"&462"&4I3& +R0EO/*=?/?=&>)2/ 8IZt#~aW=3b2##2#ó2##2#dC,'d B%BM<0 8=P B###2####2>ÿòU?4;2654&"#"=4632632#"'#"=463232654&+"¨B*>KB^A14N]|M~gSI3R28LLA;B"3." ,% CX "!eL*A4VN`'BB!!&, !-IÿðÂ8743232654&+"4;2654&#"#"=432632#"'#"5I3& +R0EO/*=?/?=&>)2/ 8IZt#~aW=3dC,'d B%BM<0 8=P BC¿08 4;532+"546;&546;2+75#"546;232+"4;2#FBÖBByB" 4" eBBÖB" eB4BByÖ55ô55dâ¹)d2-dã¹*22-þdoPP8-0875"56;720#20+"4352+"435"4;'"4;2#À×=7 ZB==9 YC=×=9 YC==?XCK55ô55Q{o 2220í02d|o 02dídbŒPPCç09B 4;532+"546;&546;2+75#"546;232+2"&462"&4FBÖBByB" 4" eBBÖB" eB4BByÝ2##2#ó2##2#dâ¹)d2-dã¹*22-þdç###2####28U09B75"56;720#20+"4352+"435"4;2"&462"&4À×=7 ZB==9 YC=×=9 YC==?XCR2##2#ó2##2#Q{o 2220í02d|o 02dídb###2####2ÿÿÿòCç"jY2ÿÿ*ÿð.U"jÇRÿòCU2#"&546!3267.",327632#"&5462"&462"&4TB2WkØB" Ö `E$0& S;tœ§e‰k2##2#ó2##2#ŸTG2EW!" T"¢xBr•P+H###2####2,ÿð,U-6?72327#"4;&#"#"&=4632632#"&5462"&462"&4^ H4ˆÂ+É###2####2D¿$,3"54637.546;27&54;2#"4;2#¸BD¦%\!!^^&DZB:Ø6Bt55ô552t  ¬¬220þ/2oPPÿÿÿ3C-"q»\Dç$-63"54637.546;27&54;2#2"&462"&4¸BD¦%\!!^^&DZB:Ø6B{2##2#ó2##2#2t  ¬¬220þ/2ç###2####2ÿÿÿ3CU"jÇ\D5$3A3"54637.546;27&54;2##"&4?632"&4?632¸BD¦%\!!^^&DZB:Ø6Bf f ff 2t  ¬¬220þ/2ínnnnÿÿÿ3C£"í\&2ç,5> 4;5#".=&54;2+3275#"4;232+2"&462"&44B-= 17#4BfBBREBBf "4BBzË2##2#ó2##2#dl&2#²-2d¯&&¯d-þdç###2####21'U*3<%+"435#"&="4;#326="54;72#22"&462"&4'9 YC= 8Xh=?XC=6$<=9 ZB==þ„2##2#ó2##2#44d)=PUdbUT0440íñ###2####2ÿëmç1:CL#2+"&543"546;2$+32+"&463".54;32654&+2"&462"&4m<"Sj<2þ1+*1Ì###2####2ÿ÷`U!:CL32+"435"4;2326=4.#%"&56?32#2+"54632"&462"&4™5iS%=,¨D>>DXB<'<( * %0AF?33BECþâ2##2#ó2##2#Q9>K/?díddí   œ12/í/22ñ###2####2ÿIÿÄ2"&462"&54 ²‡  ™ÿ¿ÿÄ)32"&4'2#"&5462#"&4672#"&546"2"&54å  ø    u²‡  vv    ™ÿ¿ÿÄ #32+"&5462#"&4672#"&546®† † ý    <   vv  ˜ÿ¿ÿÄ ,#"&546;2+#"&572#"&4672#"&546Û. ‡ 0  Ç    e   c v  ÿ‰IÿÄ 2"&54 <  Ôÿ‰„ÿÄ 2"&5462"&54å‡<    Ôÿ„ÿÄ2"&4&2"&5462"&54 *‡²‡    Ôÿ›„ÿÄ 32+"&546é‡ ‡ <   Ôÿ$…ÿÄ#"&546;2+#"&5. ‡ 0  e   c ÿãW 2"&54 W  ™ÿ¿ÿÄ2"&4'2#"&5462#"&46 Y  ø  wL  vÓI 2"&54   ÿ@ÿÄ 5462"&   ؈ ˆ <|à !2#!"&46n|þ„à**Ô„E 32+"&546é‡ ‡ E   úÿg^n 2"546,2dnBý}BBƒ "BW 2#"&546%  W  1lW 2#"&546O  W  áÿñwµ #"&46;2#"&546;25''&&''&&'6'&8&?'''8&õ¢1Þ2"&4Þ<à.46326=#"&46;#"/32+567'&<#åB qZM#æ$ qYK®ä M*±X5M åM*±Z4L <à"232#!"&46;5.'.'#"&46;84 -þ„ë  žžà$F0Ë**Ë  *{Ýà$74675.+"&46;2#"&/#"&{xf/??Le2?#2#vR.*SR xy#S *'<à#"&463!2+"&5Yë|-*|**þ¶<à (754632#"&2"&=.'.'#"&46;_84 * ýý2¬¬Ã$F0ýý  *–zà "&5#"&463z*NàþRJ*{Ýà#"&46;2+"&5úMþM*|**þ¶<à+2"&=.'##"&=&54>7#"&46;r76 *h7 ýà#G0ýý7 ÷÷  *, à/!".=#"&46;3>7>=##"&54?3+0G# q? ^ ‡‘.A05!67Ë*þÑ Ëk$ “þÑM.¾nà "&=#"&463n*HàðŒ*<ÿ8ôà2"&5.'.'#"&46;J84 * ÕÕà$F0þ;Å  *<ôà*%+"&46;>7>=.'.'#"&46;2òXRÔÔ   ÔÔ57!Ò L_* ~  *$N8 9<u!"&54?6=!5462! ¾þ„*|.¾# ¾ MÇc±4,¾0à$.#"#"&#32!54>7#"&46;¬0 $ PøF75!þ@&ý/. P ¬|$E0þÑ,*à*2#"&46;5.'##"&5#"&46;73c8N$Ã_un à 65þÑ*Ë}¬J*mm–ÿ8zà "&5#"&463z*NàýŠ*{½à2!"&46;5.'#"&46;76 þð¬ à#G0þÑ*Ë *<ÿÿà9.#"#"&#326323765%547#"&46;2"&#"#"546¸0 $ P0%  Pþ¤8&ý47!.n5 ¹/. P _. P &16*%M7A4,nµ ,<#à%7#"&46;32>?#"&46;+"&463Ñ.5‰@&˜' ?*Þd*þ„Å*þÊ8*<ÿ8à/.#"#"&#32+=4>7#"&46;2"&5¸0 $ P T¸&ý0G#*/. P *t** 67þ;<à=.#"#"&#32+4&54>7#"&46;2+"&46;>5¸0 % ZM¸&ý57! 67ýý/. Z* ) #/*$N8 9 0G#*<ÿ8à75#"&46;#"&5'5#"&46;,Œ-‘ÎO-‘_* Œþ¶Uœ!*x0à75#"&46;!"&463!%5#"&46;Ic-‘yyþR3þú-‘'J *¡Zf*Ü<*q2ÿ8à%!"&54?675!"&463!'#"&54632Nv þ¶®"pŽ#w –*ú= sÞþŒt<à2"&=.'.'#"&46;r84 * ýýà$F0ýý  *39à("546;+!32#3&546;23>7È'f& XG þÑ]E$?#!-|2þÊSWàþè þæ2à,2"&=.'.'#+"&46;>75#"&46;r84 * lL?   -ýà$F0ýý  ë?L* ë*$à "&5#"&463!"&5#"&463*NÂ*NàþRJ*þRJ**à "&5#"&463#"&=#"&463*N^*HàþRJ*ðŒ**¾à "&=#"&463!"&=#"&463*H¼*HàðŒ*ðŒ*ñ;‹] 3#"545þQ"]þ!‹;] 3#"5453#"545˜Q"èQ"]þ!ÿþ!f òÇ%"&54>72654./7òu¢u 6OpO 240 = $7FºR]\S*89:7$.3'+2 [i ïq&6"&54>7&54&+"''7653;232654.j'(s s)3R <? &7.IN67M",¡,"8&Q\\Q,G%8U (LKP 6&Ÿ3(7887-(^þüúm#24>54&"&54632"&%4.'26^-?@-,>,9Q89Q''yªy^#+ B0%TxTM8E"@3++-88QQ8 #!2"$<(VaaV .($2&<==9þòm'32#"&547&#'&+53&=463264&#"326ƒ?][GJQ &5ŽY,9 [ü*@^>0(&Ž9$'<6&5/mXGHmeF?2 5%‹1r_Ã?FaDV¡5-AM&6Peþüôm)74>32"&=4>732654#"&%K4Jgqªt I@OxKr+K EÒ12 JJþØW^]V& 4E=::=(U(' %dþüôm92#"&54>7326=.+5326=4#"&'46C2J%::rTUu P+O2! U()  "?=RC ‘*4%"&5467#"&4632754&#"326764&"26eŽe!?FF?6L!›%Y9Jþù*!&&!ÉAZ@@ZA·GeeG(d$Z|ZL7 /Uu2D] (5H5 þÜ-AB,.@@Bÿþn$374>32632'>54&#"#"&'#'&326754&#"B118*"2AC,--%#"$X?6S ? ,!%49!%4»3J&$$mE9V/+'?-)K#4?YC3!')5&"916&gÿþñm%'>7."'&'>2ñ$&1NhN15qœq´6O1''=*4GG4*=''CZNkkcþüõz+%4.'7#"&54>726=4&+5326· )'&'"IwRSv  P,RrRJ(8J'9î' /#<-)G2](ScbS& $89>?9(4B>88þñ m<&+"'67&54>326262#7654#"#54&"#54&#"ßkµ&>2\ -)RR2 I /+? >+Z5e|/þñ½= ^438C()9! BQd ŸžŸŸdM†!bTf ò‘$"&5463254&"&54624&#"26òg’hhIE-OpO9u¢u?B0/DD^CÞþÝIggJIh+œ8<=84@'SaaþŒ/CC^DC` ø§(#"&#"632"&5463232>74&#"2ø@4D'72AIhh’h\@D$BC/.ED^„/-7'œ*h’hgJ#A[ýæ^CD./D=ÿÿm'7.54632632'>54#"#54&#"{3&%FG<%):GF&%3O!>'O¼:$!#7S3Hi,,iH3T6#!$:r•˜d ô“-%"&54>732654&+532654.'732ôv¤v4 Q98RA/?Y#)<>1> T3I,E½S_^S-"  9:<8-??" LBsH3:%3\þüü“4#"&54>7265#"&/732654'&'732>7üyTUy L+UvT)+P94M?*,+;$!< “þUaaV*  $6<==;a9QG5&,;=ÿþ8%'>54#"#54&#"'&54>=3326323O >'O39& 8`€`8GX=X=WHÈ"Œ!,=,+=,"'KfK'2>lZ55Zl>r”#!,==,$"•ó€"ÂOi +>>+ iO/RM--MR9þü yB325>32632#"&546732654&#"#5754&#"#"&54>7®7%3$( ,0EpVUt-.(O;'()![ŽZWJ;,(57N11qUVtAP;7"&5467265#"ó#2B.”.T 1$(x¦x+-(StR‘Ê 4 ?/Cõ>&üöT``T3D%0):<<:K9þñm9"#'?&=4632632'>=4&#"#'4&#".œ @P9@**@9P//-(%,#(>-,I7hu07*JnE=Eg@8Q22Q8#=[0+)D0#+'”%+@E]"fZ8H-dþüôz+326=3"&=46726=#"&54>7$ @*(X?qªu-.(OxKF=lO%1&3M,LþcW^]V4F%0+=::=ÓRF;"C ‘+6'&54632632#"&5463254&#"#54&"4&#"326‚+-T;?*%;2HpOPqqPS.#">/B/TJ76LL65L-(@:T//H2þ¡Q\\QP](Ú""fR //þ•5:9l99iï‘ ,%65'4&#"#4632#"'6324&#"326$M78L?aC7OgC%7MPs)r*.7! (CH=7MS(£ËFuO7AP R4sPC[ *L2 -9þûz2%+.5467326=.+532654&/.=3;;‹_y~BB1<;lMElE/P +(> *7¹D!7JS…«yc¢S(IXtrS=1E? 1 @f ò‘ %"&5463234&"326òt¤tuQX/??OpOO89N½S__SRa,Mþ,7=<89;;Qþ§‘*->54&#"#54&#"! 4632632#Š $%>"$,§ÛI4<"$:4I1/$®WÎ  $!=K'$D‚ýnm3J,,J3/7œþ«Kþü g?I%#"&546254&+"''7653;267'#"&54732654/.#"32L@/4IIh;1 9 > 2+='=$Ku*X/<}SV…’/5a<9Yl =%%!›3J34I6³ /BDL >+¤A`Zl.QbR3RUXSx'= ++7636QÝ4%4$f ò‘%#"&5376324&"26òsSPv?›1^Qu?OpOKxK½T^WOàþ¸Â'uaR8<=n==2þü&mS4.'7#"&/+"&'7;2654&#"57'&#".546327654&+532326è "-8'1 " ++A/$: 6” jj"2¤C[>5#'8$£8A'5J .-&& Rc§  70*/A) “y ?1#)†¸i ï“B732654&##57264&+532654&+".'7;2#"&5467Ý /63R*`):**?S1Nu'(æ ' %-+?*>*3% :(+!-7 (93DEK*6% 3FO32654&+532654&+532654./7;2#"&''67>32'>54&#" 2C68A$!8 >C#.2  *; 7bUe‘ %,E'&5N7X '>>Fi0I-!+>>%  =4&#"ä¥OX`5StS4 A§.! . ?<3;+C.:SS:.D*2 #. // . ^ÿú+#"'732>54&'퀓#"'7327ú5-,43T_4'N F#&HE)J523@[M>\vqPSP 38aX48T.=<)4J>[@"<  oÿé%8&#"32"&546726=4&+532654&#"&54632¡1 $9]ADpšp+,'JhK?,3D#37 7CI1/Ð# Y=N-3T&N^]O0C$0'4994&,>?5$"5G32H O  ‘'0##"&46;5#"&46;23#'54&+"35#"26 XhIJghJr€8QP878PXX>+7++€r0DD^Dm>sIhg”gOpPP8I>SI++<+þüsD^DDÿÿÿëþçmG#ý$ÿÿ*þ×;Â#ÿ²üñDÿÿ ;õ"øg%ÿÿÿøÿò;#ÿî‚Eÿÿ ÿ`;G#ÿ¶ýJ%ÿÿÿøÿR;p#ý<Eÿÿ ÿˆ;G#qÿ¶ýf%ÿÿÿøÿz;p#qýXEÿÿ!ÿ4E#v‰ÿÿ6ÿM²"vrú©ÿÿ &õ"îg'ÿÿ!ÿòe#‚Gÿÿ ÿ`&G#ÿŠýJ'ÿÿ!ÿRep#ÿìý<Gÿÿÿˆ&G#qÿŠýf'ÿÿ!ÿzep#qÿìýXG ÿ#&G*623254#"5#"5463"546;2+#"&5464&+32>5d8$5 CC =# Ôm•‘yCKÿSo#ýHLÿÿSÒ#v‘ÿÿ>H#v±ÿÿ ZE#v.ÿÿ!;`#vÿ†¨Nÿÿ ÿ`ZG#ýJ.ÿÿ!ÿ`;p#ýJNÿÿ ÿ|ZG#q ýZ.ÿÿ!ÿj;p#qÿþýHNÿÿ!ÿ`;G##ýJ/ÿÿ>ÿ`p#ýJOÿÿÿ`;Í"q¢[ßÿÿ>ÿ`è"qÙvàÿÿ!ÿd;G#qýB/ÿÿ>ÿbp#qý@Oÿÿ!ÿ;G#"ý /ÿÿ>ÿp#ý OÿÿÿíoH#vÿÿ0ÿÿÿío²"v*úPÿÿÿíoì"^0ÿÿÿíob"ÔPÿÿÿíÿ`oH#ýJ0ÿÿÿíÿ`oÂ#ýJPÿÿÿøPõ"øg1ÿÿ;b"ýÔQÿÿÿøÿ`PG#ýJ1ÿÿÿ`;Â#ÿýýJQÿÿÿøÿdPG#qýB1ÿÿÿb;Â#qÿýý@QÿÿÿøÿPG#ý 1ÿÿÿ;Â#ÿüý QÿÿÿòCâ#v5*—ÿÿ*ÿð.h#v5°·ÿÿÿòC¿#j.1—ÿÿ*ÿð.0#j.¢·ÿÿÿòCñ#Cÿó9ÿÿ*ÿð.b#CÿóªÿÿÿòCñ#v 9ÿÿ*ÿð.b#v ªÿÿ E#vÿ¤3ÿÿÿøÿ3;²"v(úSÿÿ õ"˜g3ÿÿÿøÿ3;b"ÔSÿÿ kõ"’g5ÿÿ6;b" ÔUÿÿ ÿ`kG#ýJ5ÿÿ6ÿ`;Á#ÿàýJUÿÿ ÿ`kÜ"qÎjÿÿ6ÿ`;\"qAêÿÿ ÿbkG#qý@5ÿÿ6ÿb;Á#qÿÜý@Uÿÿ>ÿòø"j6ÿÿIÿðp"þâVÿÿ>ÿRU# ý<6ÿÿIÿPÂ#ý:Vÿÿ>ÿòK#ÿ½ÿÿIÿð#ÿÍŽÿÿ>ÿò®# "ÿÿIÿð#‘#ÿÿ>ÿRö"/h ÿÿIÿPn"à ÿÿ*.õ"g7ÿÿ ÿðï#ÿxaWÿÿ*ÿ`.G#ýJ7ÿÿ ÿPO#ÿÿý:Wÿÿ*ÿh.G#qýF7ÿÿ ÿ^O#qÿÿý<Wÿÿ*ÿ.G#ÿÿý 7ÿÿ ÿO#ÿþýWÿÿ ÿRNG#jý<8ÿÿ ÿS;µ#jÿåý=Xÿÿ ÿENG#ý:8ÿÿ ÿF;µ#ÿåý;Xÿÿ ÿNG#ý8ÿÿ ÿ;µ#ÿäýXÿÿ ÿòNä#v4,*ÿÿ ÿó;R#v,š+ÿÿ ÿòN¡#j,ÿÿ ÿó;#j„-ÿÿÿëm"r9ÿÿXo"ßYÿÿÿëÿ`mG#ÿþýJ9ÿÿÿ`Xµ#ÿÿýJYÿÿÿöbE#Cÿó:ÿÿX²"CóúZÿÿÿöbE#v :ÿÿX²"v úZÿÿÿöbõ"jg:ÿÿXb"jÔZÿÿÿöbõ"g:ÿÿXb"ÔZÿÿÿöÿ`bG#ýJ:ÿÿÿ`Xµ#ýJZÿÿ Nõ"þg;ÿÿCb"þÔ[ÿÿ Nõ"jþg;ÿÿCb"jþÔ[ÿÿCõ"g<ÿÿÿ3Cb"Ô\ÿÿID#Œ=ÿÿU±"ù]ÿÿIÿ`G#ýJ=ÿÿUÿ`µ#ýJ]ÿÿIÿ`G#qÿþý>=ÿÿUÿ^µ#qÿþý<]ÿÿ ÿ`Ep#qý>Kÿÿÿðï#jÿxaWÿÿXÛ"Zÿÿÿ3CÛ"\ÿÿK;#\Aÿÿÿëÿ`mG#ýJ$ÿÿ*ÿP;Â#ÿ²ý:Dÿÿÿëm‚#)I«$ÿÿ*ÿð;#)n<Dÿÿÿë¼K#vá“„ÿÿ*ÿðe!#vŠi¤ÿÿÿ|mO#Cþÿ—„ÿÿÿßÿð;#Cÿbf¤ÿÿÿë—#)@À„ÿÿ*ÿð‡(#)8Q¤ÿÿÿëmô#ÿðd„ÿÿ*ÿð;e#ÿöÕ¤ÿÿÿëÿ`mD#ÿÊŒDÿÿ*ÿP;±"øùEÿÿÿëmç#vÿÆ/Äÿÿ*ÿð;W#vÿéŸÅÿÿÿëmÞ#Cÿ×&Äÿÿ*ÿð;K#C “Åÿÿÿëm#)$FÄÿÿ*ÿð;š#)UÃÅÿÿÿëmì#\Äÿÿ*ÿð;\#ÌÅÿÿÿëÿ`m5#ÿʆDÿÿ*ÿP;¢"øóEÿÿ ÿ`&G#ýJ(ÿÿ!ÿP&Â#ÿýý:Hÿÿ &…#)_®(ÿÿ!ÿð&þ#)U'Hÿÿ &"r(ÿÿ!ÿð&o"÷ßHÿÿ ¼K#vᓌÿÿ!ÿð}#v¢f¬ÿÿÿˆ&O#Cÿ —ŒÿÿÿÐÿð&#CÿSf¬ÿÿ Ÿ—#)PÀŒÿÿ!ÿð„=#)5f¬ÿÿ &ô#ÿødŒÿÿ!ÿð&e#Õ¬ÿÿ ÿ`&D#Œ\ÿÿ!ÿP&±"öù]ÿÿS…#)R®,ÿÿ>#)7BóÿÿSÿ`G#ýJ,ÿÿ>ÿ`o#ýJLÿÿÿRCU#ý<2ÿÿ*ÿP.Â#ý:RÿÿÿòC‚#)g«2ÿÿ*ÿð.þ#)d'RÿÿÿòÉJ#vî’–ÿÿ*ÿðŠ#v¯f¶ÿÿÿ•ÿòCJ#Cÿ’–ÿÿÿÝÿð.!#Cÿ`i¶ÿÿÿò¯‡#)`°–ÿÿ*ÿð %#)QN¶ÿÿÿòCô#d–ÿÿ*ÿð.e#Õ¶ÿÿÿRCD#Œpÿÿ*ÿP.±"ùqÿÿÿòYI#vÿÜ‘]ÿÿ*ÿð[°"vùø^ÿÿÿòYI#C%‘]ÿÿ*ÿð[®"Cö^ÿÿÿòY’#)r»]ÿÿ*ÿð[#)e@^ÿÿÿòY#ÿùŽ]ÿÿ*ÿð[…"üõ^ÿÿÿRY˜#ý<]ÿÿ*ÿP[#ý:^ÿÿ ÿRNG#ý<8ÿÿ ÿS;µ#ÿåý=Xÿÿ ÿòN‹#)d´8ÿÿ ÿó; #)@6Xÿÿ ÿòL#vÿí”kÿÿ ÿóÇ"vãlÿÿ ÿòC#C‹kÿÿ ÿó·"Cÿÿlÿÿ ÿò‰#)h²kÿÿ ÿóô#)-lÿÿ ÿò# Žkÿÿ ÿó–"þlÿÿ ÿR¹#ý<kÿÿ ÿS'#ÿåý=lÿÿCE#Cÿô<ÿÿÿ3C²"Cóú\ÿÿÿ`CG#ýJ<ÿÿÿ3Cµ#ËýC\ÿÿC#)a¨<ÿÿÿ3C#)[*\ÿÿC"r<ÿÿÿ3Co"ß\ÿÿ*å.I¤ÿÿ*å.Iÿÿ*å.I¦*å.I #!"43!2.Bþ€BB€!!2dÿãåuI #!"5463!2uBýòB"  "22ÿÿÿãåuI§ôZÆw4>32"&ôOX['0ž kN „  )ÿÿÀZ“w©‡ÑÀÿÿÀÿZ“w©‡ÑÀôZÆw4632#".ô0"[XO3)   „ Nkÿÿ`Zÿw&©9©ÿlÿÿYZùw­YÑÀÿÿ[ÿ[ûx­[ÒÀ`Zÿw)4632#".74632#".`0"[XOÍ0"[XO3)   „ Nk )   „ Nk^ÿ¤ún+"5#"&46;54323úCYdZ "" Z2Yµdþ•BBk:wB" w^ÿ¤ún'+32+"=#"&54;5#"&46;54323úCYYC# YdZ "BZZ "" Z2Yµd2wBBw2:wB" w–šÁÅ 2"&46+?WX|WXÅW@=WX|Wÿñ?u ##"&46;23#"&46;23#"&46;2m''&&¬''&&¬''&&'6'&8&'6'&8&'6'&8&Xj$/9DN#"&547%632%2#"&46"326542#"&46"3265472#"&46"32654Õþ“  m  þ‚1CE/0DDH0""#(1CE/0DDH0""#Ô1CE/0DDH0""#yv  u çD1/DD`D:"0""þÚD1/DD`D:"0""\D1/DD`D:"0""“K_o 3#"&547Û„  oþô  SKßo 3#"&547'3#"&547[„  {„  oþô  õþô  K?o 3#"&54?3#"&547%3#"&547 „  õ„  þå„  oþô  õþô  õþô  “K_o #"'E  oõ   SKßo #"'!#"'×E  DE  oõ   õ   K?o #"'##"'!#"'GE  ,E  äE  oõ   õ   õ   !VŸ7#"/7632¯— øø Ú ¹¸  ;Ÿ%'&4632#"&547®— ÷÷ Ù ¹¸  _ÿñú~-9#"&'&54632#"&46;2 #"&'&54632#"&46;2ø,.#".H''&&Ð,.#".H''&& þ×1) #-."ýÊ'6'&8&þ×1) #-."ýÊ'6'&8&fDô #"&5467632þQ¯Žþé øÿg±o*%#"&=467.=4632\5M  M4 11 —¦N5¤'%# ¤5NZ§ÿg`o*#"&5467>=4&'&47>=4&'.54632`  M4 11 5Mì¤'%# ¤5NZ¦Nÿÿÿñ^~""œáÿÿÿûÿñi~""dÿ1ÿR.G$++"&'+"4;#"4;23>=4&/67Õ5‰ ]66$"66Åj–|aOO2::2z`N "NYNgI.Cc þçj 2","2 ý§ Y¨î°} 2"&=426=4&"ì€DD€DC#<##<#}dG9GddG9GBC.55.C.55÷šs+"54;5#575u%%%,O++£’Osæ ""!7òæ”ë¯p%2+632#"&546323254&#"#"&=3v(u%7JFS8J $!W!< ¸p"!= O;5P# A)­Ÿî«}&%".54632#"&#"632'32654&#",(; tQ ' -L ')0DB|",î$::Y B6*K48E‰& !$§ö°s"=!#"&547#Æ a  X„(<=þÞ !¨î°}$#"&547&54632'"264&"264u;I<:I;6J54K"#2##2(%8%º$:1==1:$#0/AA.1]((¥ ((£î¬})#"&546323267#"&54632'.#"326¬!.9+ ' -L ')0DB:4AH'Æ2Q-  B6*K48E?L' #ÿÿ¨ÿR°áÆþdÿÿ¦ÿ[²â{þdÿÿ•ÿ[­átþdÿÿÿRºáuþdÿÿÿ[š×Çþdÿÿ”ÿO¯ÔÈþdÿÿŸÿR«áÉþdÿÿ§ÿZ°×Êþdÿÿ¨ÿR°áËþdÿÿ£ÿR¬áÌþd &G/24;5#"4;5#"4;5#"5463!"=!32+32+32+ B9999B" ×dÿ’’““dBB×di8*8|2—BB3|8*8id!&V?".#"32+32+3632#!"54>767#"4;&'#"4;&54632˜#)o`WTË+84þ¿B&1li^O aL;c¼#78863.,.3+882I]A&Bà8%>5462+54622"&=.#"#"&#"&53ž *UHð*(6P(*(A 1 *Êd  þã :Mê†|!56 EE-!þ¶®ÿòU=#".'&#"32+32+32>32#"&'#"4;5#"4;>32632 -&04I ÃǬ§ R=*< }Xg ‰^>J±B( J@8*88?,Owd8*8h†&" ;ÿ…¬4?#".'&'>32#"&=./57>754632632 - ) ^GTr uT1'ú'5 -±B( þv%H . ## .rW8*8_‚  "B " þV‘ F4SP$=ÿØ!L-%2654&547##"&5463!2#""&54633.)$Î ?.C')`ŒT43.‘3TB0F U;1~(FbO87&V)3"54>7654&54632#".#"3632#yB&1+aL;c#),Ë+843%7#Œ!I]A&#+;9.,.ÿòdG D2#"&546"32654"4;2#46;32+##"&=46323265#""/0!!//4%doýÄ" ~ƒÎ!!Bjc„6;2;2BÑ;)(;;)):+!-!!ÜPPmþ±O2þGÈG8=9 "A cÿQ7ß =4'327&=332>54.#"#"&547&=3632#"¥" 9Z"1 /&:4)#-B61;++Zr•Vb.X9C"(95'%ª3&(?<'NN@WcER61ÜŠW0a\9ÿåJ\LY4>3277632'#".5463232654&#"#"&54654&67>5.' ?%;#›#\1~ˆ "8$+  +"  $$ R ËB734#&%!ä0L+TZC+& Šhj_1*BX.ÿßÜlG@32+"54;5##"=!"=2+"5475&54;732+"5435#”//v..#%$"JÀ//?.$.I54J..?//8þÙ$%%$Ù1..zz..1OŠ$%%!Ú$$Ú%%$ˆ~ÿÿ;G^;G15#"&=3#";2654&+53"&=#+"&546´3*û.Hˆ0GAH.û*3@L3oJ0kLÑlÊV8‹M>7WÊl~H8kLbH~ÿÿ ZG.ÿÿÿëmg‡ÿÿ<àcÿÞÿìy~1GW%23254.546;2654&#"#"&54632#"&54632+"54;5#"&467#"&547632},-\&/&"  M27H @HU;Eé9++µ,,90 ×þü   D4 *=/!<.G:þ¼!""!í Lþ= à ÿÎÿìy~N^4623632!5>4&#"#"&23254.546;2654&#"#"&54632#"&546#"&547632&MpK4&#"#"&2+632#"&546323254&#"#"&=7#"&547632&MpK;b> &G'62!5##"=43235#"=!2+32#!5 dU2121UêdÁ "BBBþ)ÛC4BBqCC2CC–2þd˜Sÿ·.7&#"7>32#"'#"&54?&=4>32326=4c5@ Î  !--eG/#!  ,8-eG98˜5@ ^Nm,!²% FLi_K{QF]Qu_K{Qßþ¾^NmIG33%!øK÷þ[ˆGý¹dAIG!#:÷KcˆˆGý¹ãþ¿A4+ %32+"&546;2+"!2#!òòp•”qòòFT —þi V_&£qr &K@&@Mÿ4·59?%32+"'#"&54?.546;7>3232+32+2'7#?#"òò&  %6>”q^-  (RB”¾Bd2l ŠB3FT _&PM&{Fr ` 7&‹&$iC‹K@4+ %267!"&463!.+"&46;2+"&463/CV þi— TFòòq”•pò_M@&@K& rq£&ÿ4·59?%27'#"&46;'#"&46;'&5463232#"&/+"&463%67#'3.+/AÒ¨Bf<  -Jq”6/*  (#%òk" X*‚ TF_Š&‹&7 ` rAt&YT &1$8Z@K-ÿŸŸ)!!76;2#!"=47&=43!2+"'±þô ˜**4þ}5  Ÿ 5€4));ï þóO34}2,#,1}31*æ.J 463!2#!"*" €BBþ€Bdÿÿ*.p sXpÀÿÿSÿ· ÿÄ‚¹ 32+ #"43±!§Ô55ôb'55QyáVýa7V3|4ô .326?.#!#";2+"'#"&546326;2„T0 3+%0 3$ M;;MLUUJN<Š44þv5"ÖÜІþPVV D9É6463!#!"3!#!" ^S4þÌW-*4þÌS´¤q$f.;$ D9É#!"&46747!2654#!"&46747!29^SþÌ4*-WþÌ4SX¤p$;.f$ ÿ9L-446;7>323+3+#"&54?.7#" ^Sœ3  +]pÍþN  >32'326549^SN  :E4wqè43  '16“nP*-Rp j(Ï(] Hb(Ë;.Rÿÿ ÿð9' ÿ Oÿÿ)ÿðB%& \ ÿ ÿçI5333ðZðZÐý0Z*sѽ #!"5!2ÑBþÿde "‹2¤BB¨ÿk©s"'632|¬¬™™•ll þ»þ» ¯ÿk°s2#"&54?'&546ܬ¬™™sþ”þ” EE úX^!!Xý¨^dÈX!!Xý¨Èúÿ8^ #^d üèÈÿ8 #È üèúX^ 3+53#53ôdddÈÈþÔdd^ddddÈX 3+53#53ôdddÈÈþÔddÈÈÈÈúÿ8^  #=3#5^dddôþpdÈÈý¨ÈÈÈÿ8  #=3#5ÈÈÈôþpdÈÈý¨ÈÈúX^ %#5;#!#53#53Ñ‚‚FAAþò‚‚ÈAAúdddddÈX %#5;#!#53#53Ñ‚‚FAAþò‚‚ÈAAÈÈÈÈÈÈúÿ8^  #5#553#5^ddddd;ÏÏþ²ÏÏÌggüæggÈÿ8  #5#553#5ÈÈÈÈÈ;ÏÏþ²ÏÏÌggüæggúÿ8X^!##ú^úd^dþ>úÿ8X!##ú^údÈþpÈÿ8X^!##ÈÈÈ^dþ>Èÿ8X!##ÈÈÈÈþpÿ8^^##5^dú^ýÚÂdÿ8^##5^dúý¨Èÿ8^##5ÈÈ^ýÚÂdÿ8##5ÈÈý¨ÈúúX 733údúú&þ>dúÈX 733údúÈXþpÈÈúX 733ÈÈÈú&þ>dÈÈX 733ÈÈÈÈXþpÈú^ %!533^þ¢údúdÂÈ^ %!533^þ¢údÈÈú %!533þpÈÈúdÂÈ %!533þpÈÈÈÈúÿ8X 33#údúúÈèþ>dþ>úÿ8X 33#údúúÈèþpÈþpÈÿ8X 7#33##ú2ÈÈúdú&þ>dþ>Èÿ8X 33##údúÈÈ^Âþ>dþ>&Èÿ8X %#33ÈÈÈúþ>èþ>dÈÿ8X %##33^d2ÈÈÈþpXþpÈÈÿ8X 3##33^úÈÈ2dÈþpXÈÿ8X 33#ÈÈÈÈÈèþpÈþpÿ8^ ##53^dúú üÂdÂÿ8^ ##53^dúú üÈÿ8 %##533^dúÈÈúþ>ÂdÂýÚÿ8 3##533^2ÈÈúd^ýÚÂdÂÿ8 ##53ÈÈÈ üÂdÂÿ8 7#533##úúÈÈ2dÈÈý¨þpÿ8 33##5úd2ÈÈþpý¨Èÿ8 ##53ÈÈÈ üÈÿ8X^!###Xúdú^dþ>Âÿ8X ###5!Xúdú^^dþ>È2ÿ8X 35!###ú^údú^2ÈþpÂÿ8X!###XúdúÈþpÿ8X^!###XÈÈÈ^dþ>Âÿ8X %##5!3ÈÈÈúþ>È2dÿ8X 7#535!##ÈÈÈÈÈúd2Èþpÿ8X!###XÈÈÈÈþpúX %!5333Xý¨údúúdÂþ>ÈX %#!5333Xúþ¢údúú2Èþ>ÈX =333!5údúþ¢údÂþpÈ2ÈX %!5333Xý¨údúÈÈþpúX 33!5ÈÈÈý¨^Âþ>ddÈX 3#!533ÈÈþpÈÈ^d2ÈÈX 33!5#5ÈÈÈþpÈ^ÂþpÈ2dÈX %!5333Xý¨ÈÈÈÈÈþpÿ8X 7#5333##úúúdúúdúdÂþ>dþ>ÿ8X 7#5333##úúúdúúdÈÈþ>dþ>ÿ8X 7#5333##úúúdúúdúdÂþpÈþpÿ8X 7#5333##úúúdúúdÈÈþpÈþpÿ8X 7#5333##úúÈÈÈúdúdÂþ>dþ>ÿ8X 7#5333##ÈÈúdúÈÈúdÂþ>dþ>ÿ8X 7#5333##ÈÈÈÈÈÈÈúdÂþ>dþ>ÿ8X 7#5333###úúÈÈÈÈ2dÈÈþ>d2þpÿ8X %##5#5333^d2ÈÈÈÈÈþp2dÂþpÈÿ8X 333###5úd2ÈÈÈÈþp2dþ>Èÿ8X 3###53533^úÈÈÈÈ2dÈþpÂd2ÿ8X 7#5333##úúÈÈÈúdÈÈþpÈþpÿ8X 33###5údúÈÈÈþpÈþpÈÿ8X 7#5333##ÈÈÈÈÈÈÈÈÈþ>dþ>ÿ8X %##5333ÈÈÈÈÈÈþpÂdÂþpÈÿ8X 7#5333##ÈÈÈÈÈÈÈÈÈþpÈþpúX^%#53#53Xúúþ¢úúúdddÈX%#53#53Xúúþ¢úúÈÈÈÈæÿ8r ##rŒŒŒ þ>ÂýÚþ>´ÿ8¤ ##¤ððð þ>ÂýÚþ>–XÂ5!!!!Xý¨Xý¨úd,d–ÿ8 ###Âddd üèüèúÿ8X 3##!^úúd^^ddþ¢Šd–ÿ8X^ 7#!##úd–dúþ>&dþ>–ÿ8X #!#3úd–dú^ýÚŠdÈþ¢Âdÿ8^ #5!##53úú^dúú^dýv^dÿ8Â^ %###5!#^dd–Âdúþ>ÂdýÚÿ8 !5!##53#^þ¢ÂdÈ–úd^dýv^dþ>ú–X %3!33#^úþ¢dúúúdŠþ¢d–úX 333!3údd–þ>d^Âþ>d&––X  7!!33#3ú^þ>dÈ–údúdŠþ¢d–^ 75#533!5úúúdþ¢údd^ývdú 3!533^dþ>–d^ÂýÚdÂþ>–  %3!573#5^dþ>–dúú&ývdÈ^þ>dúÿ8X 3#3##3^úúúúddÂdddþ¢è–ÿ8X  3##33–dd,dd– üÂþ>èþ>d–ÿ8X  3#3###33–ddÈú–dúúd– üÂdþ¢&Âþ¢ÿ8^ 3##535#5úddúúúÂ^ü^dddÿ8  ##533#ÂdÈ––dd üèýÚdÂüÿ8  ###57#533Âddd–úú–d üèýÚþ>^ddd^ÿ8X !!##5!Xý¨^dúXÂdÈþ¢^ddÿ8X^ %####5!Âddd–Xúþ>Âþ>Âddÿ8X !!3####5Xý¨^ú–ddd–Âdddþ¢Âþ>^d–X  =!3!533Xúúý¨úd–dd,dd^úX 3!53333–ý¨–ddd^ddÂþ>–X  =!'33!#533Xúd–þ¢ú–d–ddÈÂþ¢dd^ÿ8X #5333#3###53úúúdúúúúdúú^d^þ¢dddþ¢^dÿ8X 7#533##33–––dd,dd–údÂüÂþ>èþ>dÿ8X  33!#5333####5^d–þ¢ú–ddú–ddd–^Âþ¢dd^ýÚdþ¢Âþ>^dúÿ8X^ 3#"#46ôddPFd‚^dFPþÔ,x‚ÿ8^^ 2#4&+5dx‚dFPd^‚xþÔ,PFdÿÿú^  ŒXXÀúúX %"&53;ôx‚dFPdú‚x,þÔPFdÿÕÿƒ:+XVý¨®è4üÿÕÿƒ:7ƒVý¨V®4è4ÿÕÿƒ:  ' 7 gVþÿþÿVþäVV,þ&4¬þT4ÚÚ4þT¬4ú,^!!,þÔ^dú,^ #^d þ ôÿÿ,úX^“,ÿÿúÿ8^,”þ È,!!,þÔÈÈ, #È þ ôÿÿ,ÈX—,ÿÿÈÿ8,˜þ ÈX%!5!5!!,þÔ,,þÔúd2ÈÈÿ8 33#úd2È,ôþ þ ôÈX%!5!!,þÔ,,ú2È2dÈÿ8 #3##ú2È2d,ôþ þ ,X !!Xý¨ þ ÿ8Xÿµ!!Xý¨K}ÿ8X25!!Xý¨2úÿ8X¯5!!Xý¨¯þ‰ÿ8X,!!Xý¨,þ ÿ8X©!!Xý¨©ýÿ8X&!!Xý¨&ýÿ8X£!!Xý¨£ü•ÿ8X !!Xý¨ üÿ8  !! ýó üÿ8 !!Âþ> üÿ8w !!wþ‰ üÿ8, !!,þÔ üÿ8á 3#áá üÿ8– 3#–– üÿ8K 3#KK ü,ÿ8X !!,,þÔ üÿ8&î #'+/37;?CGKOSW[_cgkosw%3#'3#'3#%3#'3#'3#3#'3#'3#%3#'3#'3#3#'3#'3#%3#'3#'3#%3#'3#'3#%3#'3#'3#%3#'3#'3#%3#'3#'3#22È22È22ô22È22È22,22È22È22ô22È22È22,22È22È22ô22È22È22,22È22È22ô22È22È22,22È22È22ô22È22È22222222–22222ú22222–22222^22222–22222–22222–22222–22222–22222<ÿ8Xî #'+/37;?CGKOSW[_cgkosw{ƒ‡‹“—›Ÿ£§«¯³·»¿ÃÇËÏÓ×Ûßãçëï%3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#'3#'3#'3#'3#'3#%3#22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22–22d22d22d22d22ô22222d22d22d22d22ô22222222222222–22222222222ú22222222222–22222222222^22222222222–22222222222–22222222222–22222222222–22222222222–22222222222£X !!Xý¨ } ÿ8X 3# KK ü2&ô3!2ôôþ 2&ô7!!!ŠDþ¼XôXDþdôþ 2&ô 753!!!μÿDþ¼Xôœ¼¼DDþdôþ 2&ô 3!!5%!5!!52ôþdDþ¼Dþ¼Dôþ 00X1þï332&ô )!3##!3#&þ ôþí00X133ôþdDþ¼Dþ¼D 2&ô #'3!%#3#3#37#35#3#3735'35352ôþ•111111Š222222X11111ôþ ‹3D1X000¹1à3»00‰11þï332&ô 3!%3'35'#352ôþd~~úJúJÆ~ôþ Ö~úúJú~~2&ô )!3=#3#&þ ôX~~JúJ4~ôþâ~úJúJD~2&ô 3!%'3'7'#35''7'?5#2ôþÈJJJJJúJJ>JJJÒJôþ rJJúJþ¼JJ>JJJ>J¯©ú353¯úúú¯©ú735#53ý^^NúN^¬úú2&,3!2ô,þÔ2&,7!5!!†Hþ¸TôX|Ô,þÔ–Âô)!ÂþÔ,ô–Âô%#!!j|ÔþÔ,THþ¸Tô?,3!2ô2,þÔ?,7!7!!|Hþ¸w2ô2X|Ô,þÔ#5Æ)5ýî Æ#5Æ%'!›ooxýî X¾¾Xƨ°â)7°þø„⨰â%'!7GŸþø„<..<âT þ5 þ÷T'%nÁrþ5 oÞoþ÷Ǭ %¬å…… Ǭ %'73/¨å…6… yú %úþ…… #5Æ 5þøþöÆþ:Æ#5Æ# ›Þo þøþön¾þ:ƨ°â%'°„„ââ⨰â%#7'G6„„„¦.jââTTË  ýîT5ÁþŽË oÞo ýîǬ ?Çå……þöǬ %57@/¨å…6…þö^ß 7%^……þö#5! ,þ÷    þ÷#5%7' ,ŒŒŒŒþ÷  }ŒŒŒþ÷  þ÷!ÿþ7 2#"&4672#"&546"2654&.'9:()9:+m›noœŸoNlk˜kkl:P::R8¨ÜpošTjKMlkLKlHÿíQ 77+ææããz{{QþÏþÍ4³´³³!ÿþ7 2#"&546"2654&/m›noœŸoNlk˜kkÜpošTjKMlkLKl!ÿþ7 2#"&54627&#"64/m›noœŸC› CÜpošþg8TX_j(þæ6®!ÿþ7 2#"&546/m›noœŸÜpoš!ÿþ7 2#"&5462654&#/m›noœŸlLkkIÜpošTþ’kLKl!ÿþ7 2#"&46#"3)oŸœon›pIkkLšopÜTlKLkÿÿ!ÿþ7ƒà#5À@ÿÿ!ÿþ7ƒà5ÿÝ@À!ÿþ7 2#"&46#526)oŸœon›'»Ijk˜jšopÜþö¶kKLkk!ÿþ7 2#"&54635/m›noœŸK·LjÜpošþø´i#,!"&5463,oššoœon™.7!2.ošš™noœÿ8X  !!"3264&Xý¨.*:9)(:9 ü48R::P:XX1!"3264&2"&546Xþ×oŸœon›mIkk˜klXý¨5šopÜTlKLklMKj2&ô!&þ ôþ 2&ô!2ôþ ôþ ÿÿ2&ô êXôÀ2&ô!!&þ ôô¬Š¬Š"&46"2654&#.4JKjKL6((8('ŠJjKLjJ<'((*2&ô%3#!,¢¢úôXDþdôþ ÿÿ2&ô ïXôÀ2&ô7!!ŠDþdôXDþdôþ ÿÿ2&ô ñXôÀ2&ô 3!#332ôþÚvvXvôþ œþ¼Dþ¼D#5Æ %2"&546'!-$ooxýî Æn¾¾XÆ#5Æ%'!›o ýî X¾¾XÆ#5Æ735 ½oþ÷ X¾þêÆþ:2&ô 3!#!+32ôÎÎDÎvvôþ œÎvDv2&ô !!%3!35#2ôþ &vþ¼ÎXvôþ XDvÎvvÿÿ2&ô ÷XôÀ2&ô )!#!5#735&þ ôþÚvDÎXvôXþ¼vÎvv!ÿþ7 2#"&5463532654&'/m›noœŸE…1H cALkP;ÜpošÜ‚ Fˆ>PkL@dÛ!ÿþ7 "&54632%5'3>54&#"/oŸœon›þß H1†Þ;PkLAcšopÜÜ0F ‚XÛd@LkPÿÿ!ÿþ7 ûXÀ!ÿþ7 2#"&46.'#5326)oŸœon›! H1†Þ;PkLAcšopÜÜ0F ‚XÛd@LkPX®02546;2#"&=46;'6‚ Í‚¯À 0$ Ì‚°À Sÿì1<#546;2#"&=46;'7#"&5!21Í‚¯ÀËò$²Ì‚°ÀËþ4$!ÿþ7  2"&54672#"&546"2654&-*m›noœŸoNlk˜kk<ØÜpošTjKMlkLKl2&ô 35!%5!%5!2ôþ ôþ ôddÈddÈdd2&ô 53%#55!%5!^ÈþÔÈôþ ôdddddþ ddÈdd2&ô 35!'53%#=!2ôÈÈþÔÈôddÈdddddddd2&ô 53%#553%#55!^ÈþÔÈ,ÈþÔÈôdddddþÔdddddþÔdd2&ô 7#553!5!5úÈ,Èþ ôþ ddddddôddÈdd2&ô 53%#553%#=!^ÈþÔÈ,ÈþÔÈôdddddþ dddddddd2&ô %3+5373+53'!!^ÈÈdÈÈdÈÈdÈÈÈôþ dddÈddÈd2&ô 53%#553%#553%#5^ÈþÔÈ,ÈþÔÈ,ÈþÔÈdddddþÔdddddþÔddddd!ÿþ7 )4?2"&546#2"&546"5462#"&'."2#"&546"2654&|*Š*PfP ,>, bm›noœŸoNlk˜kk€ñ*CC*  …ÜpošTjKMlkLKl!ÿþ7 )4?2"&546#2"&5462267>32"&542#"&546"2654&|*Š* ,>, PfP†m›noœŸoNlk˜kk€‡  *CC*ÜpošTjKMlkLKl!ÿþ7 )4"2654&#"2654&"2654&""&'&2#"&546|*´*:c‚c 6N6lm›noœŸ€v6SS6 '' ÜpošpÿïLG7462"&4632ø"AZA@.•ˆþ)(//P)pÿï G$7462"&54654.'"&4632ø"+64$" ' AZA@.•ˆ7#']H&þç(//P)0ÿï :"&46325'"&4632 AZA@.¬AZA@.¦þ (//P)ÚKô(//P)%0ÿï :"&46325'"&46325' AZA@.¬AZA@.T¬¬¦þ (//P)JKd(//P)%µK5Kuÿ3èµ46;265#"5463!+"u#o+3ÊB" .mRrB›.'e2þ7Oj·þê_ÿÅ#"&4?632RR R~~~ ÿò¦o)S+32+"546;5#"546;54632#"&#"3 +32+"546;5#"546;54632#"&#"3&B!!BB¯C# *&C# &O92G6!ˆB!!BB¯C# *&C# &O92G6!µdíd2í2'>U$'díd2í2'>U$'ÿòkp)?C+32+"546;5#"546;54632#"&#"346;32+"546;5#"#5&B!!BB¯C# *&C# &O92G6!g" x$ "B®C# &B©vµdíd2í2'>U$'2þ¯22íiiÿïio9+32+"546;5#"546;546326;32+"546;#"'#"&#"3#B!!BB°B" +%C# %N7@-"‚%CC¯C# &" .(!µdíd2í2&=Wýõd2§ 0&#ÿòòÁ 354>54&#"34632#3 Ø#*#8#*#H=‰5#.$,888þ˜hgÄ0 2#,8"7A’/2'þÊA{hgþ™eÂ9tÀÓ0:•à * +† F@$Ñ,P»"ËHï =&IHqÏ×Hó … H ­  H ; r ® É `Ø (k 4ª û " V. Œ² H‡ Xö Q "a H… Û &ï H  ÷  H ‰$ ›H Á & H ?aiH… …" •H ¹ û( H ; }" H ±ÿ( H ?t ‰ ‰•HµemH‰ ïûH$M$ †a$Hé$T3*}*‡*H¥- 9-E-He Ó "ã H ÿ" H 3 Ï "ß H i s H‘Copyleft 2002, 2003, 2005, 2008 Free Software Foundation.Copyleft 2002, 2003, 2005, 2008 Free Software Foundation.FreeMonoFreeMonoBoldBoldFontForge 2.0 : Free Monospaced Bold : 14-4-2008FontForge 2.0 : Free Monospaced Bold : 14-4-2008Free Monospaced BoldFree Monospaced BoldVersion $Revision: 1.41 $ Version $Revision: 1.41 $ FreeMonoBoldFreeMonoBoldGNUGNUhttps://savannah.gnu.org/projects/freefont/https://savannah.gnu.org/projects/freefont/The use of this font is granted subject to GNU General Public License.The use of this font is granted subject to GNU General Public License.http://www.gnu.org/copyleft/gpl.htmlhttp://www.gnu.org/copyleft/gpl.htmlThe quick brown fox jumps over the lazy dog.The quick brown fox jumps over the lazy dog.â#mFree Mono â#mhttp://www.gnu.org/copyleft/gpl.htmlKal1nFree Mono Kal1nhttp://www.gnu.org/copyleft/gpl.htmlFetFree Mono Fethttp://www.gnu.org/copyleft/gpl.htmlNegritaFree Mono Negritahttp://www.gnu.org/copyleft/gpl.htmlNegritaFree Mono Negritahttp://www.gnu.org/copyleft/gpl.htmlNegritaFree Mono Negritahttp://www.gnu.org/copyleft/gpl.htmlpolkrepkoDovoljena je uporaba v skladu z licenco GNU General Public License.http://www.gnu.org/copyleft/gpl.html`erif bo za vajo spet kuhal doma e ~gance.Tu néFree Mono Tu néhttp://www.gnu.org/copyleft/gpl.html>;C68@=K9Free Mono >;C68@=K9http://www.gnu.org/copyleft/gpl.html G0I0E N30 68;-1K; F8B@CA... 40, => D0;LH82K9 M:75<?;O@J!NegritoFree Mono Negritohttp://www.gnu.org/copyleft/gpl.htmlNegritoFree Mono Negritohttp://www.gnu.org/copyleft/gpl.htmlPogrubionyFree Mono Pogrubionyhttp://www.gnu.org/copyleft/gpl.htmlHalvfetFree Mono Halvfethttp://www.gnu.org/copyleft/gpl.htmlGrassettoFree Mono Grassettohttp://www.gnu.org/copyleft/gpl.htmlFélkövérFree Mono Félkövérhttp://www.gnu.org/copyleft/gpl.htmlˆ½Ä¿½±Free Mono ˆ½Ä¿½±http://www.gnu.org/copyleft/gpl.htmlFettFree Mono Fetthttp://www.gnu.org/copyleft/gpl.htmlGrasFree Mono Grashttp://www.gnu.org/copyleft/gpl.htmlGrasFree Mono Grashttp://www.gnu.org/copyleft/gpl.htmlLihavoituFree Mono Lihavoituhttp://www.gnu.org/copyleft/gpl.htmlVetFree Mono Vethttp://www.gnu.org/copyleft/gpl.htmlfedFree Mono fedhttp://www.gnu.org/copyleft/gpl.htmltu néFree Mono New tu néhttp://www.gnu.org/copyleft/gpl.htmlNegretaFree Mono Negretahttp://www.gnu.org/copyleft/gpl.htmlLodiaFree Mono Lodiahttp://www.gnu.org/copyleft/gpl.htmlÿƒ2  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a¬£„…½–膎‹©¤ŠÚƒ“òóˆÃÞñžªõôö¢­ÉÇ®bcdËeÈÊÏÌÍÎéfÓÐѯgð‘ÖÔÕhëí‰jikmln oqprsutvwêxzy{}|¸¡~€ìîº ýþ    ÿøù !"#$%&'()*+,ú×-./0123456789:;âã<=>?@ABCDEFGHIJ°±KLMNOPQRSTûüäåUVWXYZ[\]^_`abcdefghij»klmnæçopqrstuvwxyz{|}~¦€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABØáCDÛÜÝàÙßEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmn¨opqrstuvwxyz{|}~€Ÿ‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—›˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆDz³ȶ·ÄÉ´µÅʂ‡«ÆËÌÍÎÏо¿ѼÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíî÷ïðñòóôõö÷Œøùúûüýþÿ     ˜™ï¥’”• !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâã¹äåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ     ÀÁ softhyphenmicroAmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccent Gcommaaccent gcommaaccent Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflex Kcommaaccent kcommaaccent kgreenlandicLacutelacute Lcommaaccent lcommaaccentLcaronlcaronLdotldotNacutenacute Ncommaaccent ncommaaccentNcaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracute Rcommaaccent rcommaaccentRcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsuni0180uni0181uni0182uni0183uni0186uni0187uni0188uni0189uni018Auni018Buni018Cuni018Duni018Euni0190uni0191uni0193uni0195uni0196uni0197uni0199uni019Auni019Buni019Cuni019Duni019Euni019FOhornohornuni01A2uni01A3uni01A4uni01A5uni01A6uni01A7uni01A8uni01A9uni01ABuni01ACuni01ADuni01AEUhornuhornuni01B3uni01B4uni01B5uni01B6uni01B7uni01B8uni01BBuni01C0uni01C1uni01C3uni01C7uni01C8uni01C9uni01CBuni01CCuni01CDuni01CEuni01CFuni01D0uni01D1uni01D2uni01D3uni01D4uni01D5uni01D6uni01D7uni01D8uni01D9uni01DAuni01DBuni01DCuni01DDuni01DEuni01DFuni01E0uni01E1uni01E2uni01E3uni01E4uni01E5Gcarongcaronuni01E8uni01E9uni01EAuni01EBuni01ECuni01EDuni01EEuni01F0uni01F4uni01F5uni01F6uni01F8uni01F9 Aringacute aringacuteAEacuteaeacute Oslashacute oslashacuteuni0200uni0201uni0202uni0203uni0204uni0205uni0206uni0207uni0208uni0209uni020Auni020Buni020Cuni020Duni020Euni020Funi0210uni0211uni0212uni0213uni0214uni0215uni0216uni0217 Scommaaccent scommaaccent Tcommaaccent tcommaaccentuni021Euni021Funi0224uni0225uni0226uni0227uni0228uni0229uni022Auni022Buni022Cuni022Duni022Euni022Funi0230uni0231uni0232uni0233uni0250uni0251uni0252uni0253uni0254uni0256uni0257uni0258uni0259uni025Buni025Cuni025Funi0260uni0261uni0265uni0266uni0267uni0268uni0269uni026Auni026Buni026Duni026Funi0270uni0271uni0272uni0273uni0274uni0275uni0279uni027Auni027Buni027Cuni027Duni027Euni027Funi0280uni0281uni0282uni0283uni0284uni0285uni0287uni0288uni0289uni028Cuni028Duni028Euni0290uni0294uni0295uni0296uni0297uni0298uni029Cuni029Euni029Funi02A0uni02A1uni02A2uni02BB afii57929uni02D0uni02D1 gravecomb acutecombuni0302 tildecombuni0304uni0305uni0306uni0307 diaeresiscomb hookabovecombuni030Auni030Buni030Cuni030Duni030Euni030Funi0310uni0311uni031Buni0321uni0322uni0327uni0328uni0337uni0374uni0375uni037Auni037Etonos dieresistonos Alphatonos anoteleia EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosiotadieresistonosAlphaBetaGammaEpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsi IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonosuni03D0theta1Upsilon1phi1omegapiuni03F1uni0400 afii10023 afii10051 afii10052 afii10053 afii10054 afii10055 afii10056 afii10057 afii10058 afii10059 afii10060 afii10061uni040D afii10062 afii10145 afii10017 afii10018 afii10019 afii10020 afii10021 afii10022 afii10024 afii10025 afii10026 afii10027 afii10028 afii10029 afii10030 afii10031 afii10032 afii10033 afii10034 afii10035 afii10036 afii10037 afii10038 afii10039 afii10040 afii10041 afii10042 afii10043 afii10044 afii10045 afii10046 afii10047 afii10048 afii10049 afii10065 afii10066 afii10067 afii10068 afii10069 afii10070 afii10072 afii10073 afii10074 afii10075 afii10076 afii10077 afii10078 afii10079 afii10080 afii10081 afii10082 afii10083 afii10084 afii10085 afii10086 afii10087 afii10088 afii10089 afii10090 afii10091 afii10092 afii10093 afii10094 afii10095 afii10096 afii10097uni0450 afii10071 afii10099 afii10100 afii10101 afii10102 afii10103 afii10104 afii10105 afii10106 afii10107 afii10108 afii10109uni045D afii10110 afii10193uni048Cuni048Duni048Euni048F afii10050 afii10098uni0492uni0493uni0494uni0495uni0496uni0497uni0498uni0499uni049Auni049Buni049Cuni049Duni049Euni049Funi04A0uni04A1uni04A2uni04A3uni04A4uni04A5uni04A6uni04A7uni04A8uni04A9uni04AAuni04ABuni04ACuni04ADuni04AEuni04AFuni04B0uni04B1uni04B2uni04B3uni04B4uni04B5uni04B6uni04B7uni04B8uni04B9uni04BAuni04BBuni04BCuni04BDuni04BEuni04BFuni04C0uni04C1uni04C2uni04C3uni04C4uni04C7uni04C8uni04CBuni04CCuni04D0uni04D1uni04D2uni04D3uni04D4uni04D5uni04D6uni04D7uni04D8 afii10846uni04DAuni04DBuni04DCuni04DDuni04DEuni04DFuni04E0uni04E1uni04E2uni04E3uni04E4uni04E5uni04E6uni04E7uni04E8uni04E9uni04EAuni04EBuni04ECuni04EDuni04EEuni04EFuni04F0uni04F1uni04F2uni04F3uni04F4uni04F5uni04F8uni04F9 afii57799 afii57801 afii57800 afii57802 afii57793 afii57794 afii57795 afii57798 afii57797 afii57806 afii57796 afii57807 afii57839 afii57645 afii57841 afii57842 afii57804 afii57803 afii57658uni05C4 afii57664 afii57665 afii57666 afii57667 afii57668 afii57669 afii57670 afii57671 afii57672 afii57673 afii57674 afii57675 afii57676 afii57677 afii57678 afii57679 afii57680 afii57681 afii57682 afii57683 afii57684 afii57685 afii57686 afii57687 afii57688 afii57689 afii57690 afii57716 afii57717 afii57718uni05F3uni05F4uni10D0uni10D1uni10D2uni10D3uni10D4uni10D5uni10D6uni10D7uni10D8uni10D9uni10DAuni10DBuni10DCuni10DDuni10DEuni10DFuni10E0uni10E1uni10E2uni10E3uni10E4uni10E5uni10E6uni10E7uni10E8uni10E9uni10EAuni10EBuni10ECuni10EDuni10EEuni10EFuni10F0uni10F1uni10F2uni10F3uni10F4uni10F5uni1E00uni1E01uni1E02uni1E03uni1E04uni1E05uni1E06uni1E07uni1E08uni1E09uni1E0Auni1E0Buni1E0Cuni1E0Duni1E0Euni1E0Funi1E10uni1E11uni1E12uni1E13uni1E14uni1E15uni1E16uni1E17uni1E18uni1E19uni1E1Auni1E1Buni1E1Cuni1E1Duni1E1Euni1E1Funi1E20uni1E21uni1E22uni1E23uni1E24uni1E25uni1E26uni1E27uni1E28uni1E29uni1E2Auni1E2Buni1E2Cuni1E2Duni1E2Euni1E2Funi1E30uni1E31uni1E32uni1E33uni1E34uni1E35uni1E36uni1E37uni1E38uni1E39uni1E3Auni1E3Buni1E3Cuni1E3Duni1E3Euni1E3Funi1E40uni1E41uni1E42uni1E43uni1E44uni1E45uni1E46uni1E47uni1E48uni1E49uni1E4Auni1E4Buni1E4Cuni1E4Duni1E4Euni1E4Funi1E50uni1E51uni1E52uni1E53uni1E54uni1E55uni1E56uni1E57uni1E58uni1E59uni1E5Auni1E5Buni1E5Cuni1E5Duni1E5Euni1E5Funi1E60uni1E61uni1E62uni1E63uni1E64uni1E65uni1E66uni1E67uni1E68uni1E69uni1E6Auni1E6Buni1E6Cuni1E6Duni1E6Euni1E6Funi1E70uni1E71uni1E72uni1E73uni1E74uni1E75uni1E76uni1E77uni1E78uni1E79uni1E7Auni1E7Buni1E7Cuni1E7Duni1E7Euni1E7FWgravewgraveWacutewacute Wdieresis wdieresisuni1E86uni1E87uni1E88uni1E89uni1E8Auni1E8Buni1E8Cuni1E8Duni1E8Euni1E8Funi1E90uni1E91uni1E92uni1E93uni1E94uni1E95uni1E96uni1E97uni1E98uni1E99uni1E9Buni1EA0uni1EA1uni1EA2uni1EA3uni1EA4uni1EA5uni1EA6uni1EA7uni1EA8uni1EA9uni1EAAuni1EABuni1EACuni1EADuni1EAEuni1EAFuni1EB0uni1EB1uni1EB2uni1EB3uni1EB4uni1EB5uni1EB6uni1EB7uni1EB8uni1EB9uni1EBAuni1EBBuni1EBCuni1EBDuni1EBEuni1EBFuni1EC0uni1EC1uni1EC2uni1EC3uni1EC4uni1EC5uni1EC6uni1EC7uni1EC8uni1EC9uni1ECAuni1ECBuni1ECCuni1ECDuni1ECEuni1ECFuni1ED0uni1ED1uni1ED2uni1ED3uni1ED4uni1ED5uni1ED6uni1ED7uni1ED8uni1ED9uni1EDAuni1EDBuni1EDCuni1EDDuni1EDEuni1EDFuni1EE0uni1EE1uni1EE2uni1EE3uni1EE4uni1EE5uni1EE6uni1EE7uni1EE8uni1EE9uni1EEAuni1EEBuni1EECuni1EEDuni1EEEuni1EEFuni1EF0uni1EF1Ygraveygraveuni1EF4uni1EF5uni1EF6uni1EF7uni1EF8uni1EF9enquademquadenspaceemspace thinspaceuni2010uni2011 figuredash afii00208 quotereverseduni201Fminuteseconduni2034uni2035uni2036uni2037 exclamdbluni2045uni2046uni2048uni2049uni204Buni2064 zerosuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperioruni207Auni207Buni207Cparenleftsuperiorparenrightsuperior nsuperior zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferiorlira afii57636Eurouni20B5Ifrakturuni2112 afii61352 weierstrassRfrakturuni2126uni2127uni212Auni212Balephonethird twothirdsuni2155uni2156uni2157uni2158uni2159uni215A oneeighth threeeighths fiveeighths seveneighthsuni215F arrowleftarrowup arrowright arrowdown universal existentialemptyset Delta.mathgradientelement notelementsuchthat notcontainsuni2213uni2215 proportional orthogonal therefore equivalence propersubsetpropersuperset notsubset notsuperset reflexsubsetreflexsuperset perpendicular revlogicalnot angleleft anglerightSF100000uni2501SF110000uni2503uni2504uni2505uni2506uni2507uni2508uni2509uni250Auni250BSF010000uni250Duni250Euni250FSF030000uni2511uni2512uni2513SF020000uni2515uni2516uni2517SF040000uni2519uni251Auni251BSF080000uni251Duni251Euni251Funi2520uni2521uni2522uni2523SF090000uni2525uni2526uni2527uni2528uni2529uni252Auni252BSF060000uni252Duni252Euni252Funi2530uni2531uni2532uni2533SF070000uni2535uni2536uni2537uni2538uni2539uni253Auni253BSF050000uni253Duni253Euni253Funi2540uni2541uni2542uni2543uni2544uni2545uni2546uni2547uni2548uni2549uni254Auni254Buni254Cuni254Duni254Euni254FSF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000uni256Duni256Euni256Funi2570uni2571uni2572uni2573uni2574uni2575uni2576uni2577uni2578uni2579uni257Auni257Buni257Cuni257Duni257Euni257Fupblockuni2581uni2582uni2583dnblockuni2585uni2586uni2587blockuni2589uni258Auni258Blfblockuni258Duni258Euni258Frtblockltshadeshadedkshadeuni2594uni2595 filledboxH22073uni25A3uni25A4uni25A5uni25A6uni25A7uni25A8uni25A9H18543H18551 filledrectuni25ADuni25AEuni25AFuni25B0uni25B1triagupuni25B3uni25B4uni25B5uni25B6uni25B7uni25B8uni25B9triagrttriagdnuni25BDuni25BEuni25BFuni25C0uni25C1uni25C2uni25C3triaglfuni25C5uni25C6uni25C7uni25C9circleuni25CDH18533uni25D0uni25D1uni25D2uni25D3uni25D4uni25D5uni25D6uni25D7 invbullet invcircleuni25E2uni25E3uni25E4uni25E5 openbulletuni25E7uni25E8uni25E9uni25EAuni25EBuni25ECuni25EDuni25EEuni25F0uni25F1uni25F2uni25F3uni25F4uni25F5uni25F6uni25F7uni2607uni2608uni2609uni2630uni2631uni2632uni2633uni2634uni2635uni2636uni2637uni2639 smileface invsmilefaceuni2669 musicalnotemusicalnotedbluni266Cdotlessj commaaccentffuniFFFDÿÿ . 12 ,.DFLTlatnÿÿÿÿ 2XDFLTlatnÿÿÿÿkernkernmark *, ,ÆD 1RX^djpv|‚ˆŽ”𠦬²¸¾ÄþÔ¼þÔ¼þÔ¼þÔ¼þÔ¼þÔ¼þÔ¼þÔ¼þÔ¼þÔ¼þÔ¼þÔ¨þÔ¼þÔ¼þÔ¼þÔ¼þÔ¼þÔ¼þÔ¼þÔ¼ ÂHš(n˜ÎDvˆÚH²Ü2¨Ò„¶HÚ’œ²¼Æà.T^h®¸Êä   Ô Þ  " | æ j ˜ j j  t æ ì ú ì ì  * 0 6 0 P n n n n | Š Š ˜ ˜ ¦ ¬#ÿÑÿíÿÂ&ÿò*ÿö2ÿñ4ÿð7ÿå8ÿé9ÿÅ:ÿó<ÿåDE-FÿüGHRÿýTÿüWÿìXÿôYÿÙZÿó\ÿÙmÿ؉ÿê˜ÿñ›ÿéœÿéÿéžÿé©ÿøªÿ®ÿ¬¼ÿØ$2ÿ÷9ÿî:ÿú<ÿÙƒ„…†‡ˆ”ÿ÷•ÿ÷–ÿ÷˜ÿ÷šÿû $+ÿó.ÿø2ÿòƒ†‡ˆ•ÿò˜ÿò $ÿç-ÿà7ÿå9ÿâ:ÿó;ÿÛ<ÿÍ‚ÿçƒÿç„ÿç…ÿç†ÿç‡ÿçÿXÿÉÿE$ÿÙ-ÿ²2ÿèDÿØHÿÑLÿÒMÿÊRÿÍUÿàXÿÿ‚ÿÙƒÿÙ„ÿÙ…ÿÙ†ÿÙ‡ÿÙ˜ÿè£ÿئÿاÿبÿî«ÿѵÿ͸ÿͺÿÍÿð $7ÿç9:<ÿò‚ƒ„…†‡ˆ$ÿø†ÿø‡ÿøˆÿðÿÔ&ÿè*ÿí2ÿç6ÿ÷7ÿóDHÿúRÿôXÿê\ÿΕÿç˜ÿ禧¨µÿô¸ÿô¾ÿêÿü $&ÿö*ÿö2ÿù6ÿè7ÿÌ8ÿã9ÿÇ:ÿê<ÿÌXÿö\ÿ߃†‡ˆ‰ÿõ”ÿù•ÿù–ÿù—ÿù˜ÿùžÿã¾ÿõªÿ®ÿ¸ÿµÿ£$ÿý&ÿù*ÿú2ÿûDÿõHÿýRÿøXÿøƒÿý†ÿý‡ÿýˆÿý‰ÿú•ÿû˜ÿû£ÿõ¦ÿõ§ÿõ¨«ÿýµÿø¸ÿøºÿý¾ÿø $ÿò7ÿñ9ÿé:ÿþ;ÿæ<ÿÕƒÿò†ÿò‡ÿòˆÿòÿ`ÿßÿN$ÿÃ-ÿ·DÿÏHÿÚRÿÖƒÿÆÿÇÿÈÿÅ£ÿϦÿϧÿϨÿå«ÿÚµÿÖ¸ÿÖºÿÖÿóÿç&ÿò*ÿö2ÿò7ÿä8ÿð9ÿè:ÿø<ÿäDHRÿýXÿù\ÿî‰ÿï•ÿò˜ÿòžÿ§¨(«µÿý¸ÿý¼ÿø¾ÿø $ÿö7ÿ×9ÿö:ÿô<ÿáWÿïƒÿö†ÿö‡ÿöˆÿö,ÿ~ÿ¥ÿlÿÿœ$ÿä&ÿí*ÿí-ÿ¿2ÿò6ÿ×9 :<ÿöDÿÞFÿÛHÿæJÿèLÿÖMÿÏRÿáUÿäVÿÙXY Z mÿ·‚ÿäƒÿä„ÿä…ÿä†ÿä‡ÿäˆÿä”ÿò•ÿò–ÿò—ÿò˜ÿòšÿò¨ÿôºÿá¼ÿ· ÿ¡ÿŽ$ÿíPQÿøUÿÞƒÿí„ÿí…ÿí†ÿí‡ÿíˆÿî$ÿnÿÙÿ\ÿ|ÿˆ$ÿü&ÿè*ÿè2ÿé6ÿå7 DÿÊHÿÑJÿÒLÿÅRÿÌUÿÓXÿñ\ÿïmÿµ‚ÿüƒÿü„ÿü…ÿü†ÿü‡ÿüˆÿô”ÿé•ÿé–ÿé—ÿé˜ÿéšÿé¨ÿåºÿмÿµ$ÿ­ÿ›ÿÿ®$ÿ÷&ÿü*ÿý2ÿþ6ÿï7DÿõHÿýJÿýLÿÚRÿøUÿçX\ÿþmÿá‚ÿ÷ƒÿ÷„ÿ÷…ÿ÷†ÿ÷‡ÿ÷ˆÿ÷”ÿþ•ÿþ–ÿþ—ÿþ˜ÿþš¨ºÿü¼ÿá ÿÎ&ÿä2ÿæ4ÿæHÿôRÿîXÿä\ÿÕ˜ÿæ$ÿŠÿ¯ÿxÿjÿ{$ÿç&ÿÓ*ÿÓ2ÿÔ6ÿÐ7ÿöDÿËHÿÅJÿÅLÿÆRÿÀSÿâXÿÕYÿßmÿ¢‚ÿçƒÿç„ÿç…ÿç†ÿç‡ÿçˆÿä”ÿÔ•ÿÔ–ÿÔ—ÿÔ˜ÿÔšÿÕ¨ÿäºÿͼÿ¢Yÿ×\ÿÌMÿ¯YÿëZÿô\ÿáªÿ²Z\ÿöK NWÿðYÿ÷Zÿý[\ÿìªÿ¿DÿàHÿÕIÿÕLÿÛMÿÄOÿçRÿÑVÿÖWÿú£ÿà¦ÿà§ÿà¨ÿù«ÿÕµÿѸÿÖºÿãÿñªÿ· DÿüHOÿÞ¦ÿü§ÿü¨«µÿý¸ÿý\ÿéªÿ»7ÿÆMÿqÿÁÿÎÿµDHÿõJÿòRÿïVÿ÷Xÿý£¦§¨«ÿõµÿï¸ÿï¾ÿýYÿ³\ÿ³S YZ\7ÿØSYÿôZÿû\ÿêªÿ¼7ÿáWÿóYÿúZÿý[ÿö\ÿïªÿÂWÿý\ÿúFX)/ÿ”ÿ×ÿ†ÿ¡ÿ­DÿïFÿîGÿøHÿùIÿðJÿûKÿìLÿçMÿßNÿâOÿÑP$Q RÿôSTÿüUÿõVÿëWXYZ[\]ÿë¢ÿï£ÿï¤ÿï¦ÿï§ÿ﨩ÿñªÿù«ÿù¬ÿù´ÿôµÿô¶ÿô¸ÿôºÿôªÿ×WÿõªÿÄÿ‹ÿ™6ÿÝDÿðHÿèKÿûRÿâ£ÿð¦ÿð§ÿ𨠫ÿèµÿâ¸ÿâªÿšªÿÈÿxÿéÿdÿ¯ÿ»DÿýFÿõJOÿ³RÿûVÿõ¢ÿý£ÿý¤ÿý¥ÿý¦ÿý§ÿý¨´ÿûµÿû¸ÿûºÿûÿ¦ÿ“ÿ¯ÿ»DÿýFÿúHJOÿÐRÿþVÿõ¢ÿý£ÿý¤ÿý¥ÿý¦ÿý§ÿý¨ª«¬´ÿþµÿþ¸ÿþºDFÿòHÿûRÿöTÿø«ÿûÿzÿíÿeÿ¥ÿ±DÿóFÿëHÿõJÿ÷Oÿ²RÿñVÿë¢ÿó£ÿó¤ÿó¥ÿó¦ÿó§ÿó¨ªÿõ«ÿõ¬ÿõ´ÿñµÿñ¸ÿñºÿñ ÿÑÿÂ&ÿò*ÿö2ÿñ4ÿð7ÿå8ÿé9ÿÅ:ÿó<ÿåÿÑÿíÿÂ&ÿò*ÿö2ÿñ4ÿð7ÿå8ÿé9ÿÅ:ÿó<ÿåDE-FÿüGHRÿýTÿüWÿìXÿôYÿÙZÿó\ÿÙmÿتÿ¼ÿØÿÑÿíÿÂ&ÿò*ÿö2ÿñ4ÿð7ÿå8ÿé9ÿÅ:ÿó<ÿåDE-FÿüGRÿýTÿüWÿìXÿôYÿÙZÿó\ÿÙmÿتÿ®ÿ¬¼ÿØÿÑÿíÿÂ&ÿò*ÿö2ÿñ4ÿð7ÿå8ÿé9ÿÅ:ÿó<ÿåDE-FÿüGHRÿýTÿüWÿìXÿôYÿÙZÿó\ÿÙmÿتÿ®ÿ¬¼ÿØ$7ÿñ9ÿé<ÿÕ$ÿò7ÿñ9ÿé:ÿþ<ÿÕ$ÿò7ÿñ9ÿé:ÿþ;ÿæ<ÿÕ$ÿö$ÿíÿ¡ÿŽ$ÿíPQÿøUÿÞÿ¡ÿŽ$ÿíEPQÿøUÿÞYÿëZÿô\ÿáYZ \Yÿ÷Zÿý\ÿìYÿúZÿý\ÿïWÿóWÿóYÿúZÿý[ÿö\ÿï$')*-/13 5= DFHLN\‚‡,‰‰2”˜3šž8¢£=¦¨?«¬B´¶D¸¸G42@ft‚´ÂÐÞìú(6DjÎôDÿ€ªÿZ®ÿw $ÿî7ÿ¦9ÿÚ:<ÿ¯ƒÿî†ÿî‡ÿîˆÿòÿªÿ_®ÿ}ÿ´ÿÅÿ¼ ÿÿŽÿªÿÂÿÑÿËÿ©ÿÉÿžÿsÿ¶ÿ·ÿ¾ÿ½ÿ¼ÿ¹ÿÌÿÀÿ¾ÿÂÿ£ÿ·ÿÌÿ·ÿÊÿÏÿÒ ÿcÿPÿ½ÿÀÿ¸ÿ›ÿ®ÿ£ÿÂÿ¶ÿdÿ¸ÿÆÿ¿ÿ¾ÿËÿÇ $ÿÛ7ÿ¹9ÿ¸:ÿã<ÿ¤ƒÿÛ†ÿÛ‡ÿÛˆÿÞ $ÿ©7ÿÏ9ÿÒ:ÿÚ<ÿ·ƒÿ©†ÿ©‡ÿ©ˆÿ«ÿÿ $ÿfGÿtRÿqUÿkVÿjWÿ‹Yÿ’Zÿ—\ÿŒƒÿf†ÿf‡ÿfˆÿg $ÿÂ7ÿè9ÿê:ÿó<ÿσÿ†ÿ‡ÿˆÿÄ $ÿ´7ÿÙ9ÿâ:ÿæ<ÿ̓ÿ´†ÿ´‡ÿ´ˆÿµ$ÿú7ÿ¦9ÿ˜:ÿÕ<ÿ²ˆÿù}} ©ª­¯½½ÄiÃÞYïĉ¾logstalgia-1.0.3/data/fonts/README0000644000203100020310000001033111526610646016402 0ustar andrewcandrewc-*-text-*- GNU FreeFont The GNU FreeFont project aims to provide a useful set of free scalable (i.e., OpenType) fonts covering as much as possible of the ISO 10646/Unicode UCS (Universal Character Set). Statement of Purpose -------------------- The practical reason for putting glyphs together in a single font face is to conveniently mix symbols and characters from different writing systems, without having to switch fonts. Coverage -------- FreeFont covers the following character sets * ISO 8859 parts 1-15 * CEN MES-3 European Unicode Subset http://www.evertype.com/standards/iso10646/pdf/cwa13873.pdf * IBM/Microsoft code pages 437, 850, 852, 1250, 1252 and more * Microsoft/Adobe Windows Glyph List 4 (WGL4) http://www.microsoft.com/typography/otspec/WGL4.htm * KOI8-R and KOI8-RU * DEC VT100 graphics symbols * International Phonetic Alphabet * Arabic, Hebrew, Armenian, Georgian, Ethiopian and Thai alphabets, including Arabic presentation forms A/B * mathematical symbols, including the whole TeX repertoire of symbols * APL symbols etc. Editing ------- The free outline font editor, George Williams's FontForge is used for editing the fonts. Design Issues ------------- Which font shapes should be made? Historical style terms like Renaissance or Baroque letterforms cannot be applied beyond Latin/Cyrillic/Greek scripts to any greater extent than Kufi or Nashki can be applied beyond Arabic script; "italic" is really only meaningful for Latin letters. However, most modern writing systems have typographic formulations for contrasting uniform and modulated character stroke widths, and have some history with "oblique", faces. Since the advent of the typewriter, most have developed a typographic style with uniform-width characters. Accordingly, the FreeFont family has one monospaced - FreeMono - and two proportional faces (one with uniform stroke - FreeSans - and one with modulated stroke - FreeSerif). To make text from different writing systems look good side-by-side, each FreeFont face is meant to contain characters of similar style and weight. Licensing --------- Free UCS scalable fonts 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. The fonts are distributed in the hope that they will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. As a special exception, if you create a document which uses this font, and embed this font or unaltered portions of this font into the document, this font does not by itself cause the resulting document to be covered by the GNU General Public License. This exception does not however invalidate any other reasons why the document might be covered by the GNU General Public License. If you modify this font, you may extend this exception to your version of the font, but you are not obligated to do so. If you do not wish to do so, delete this exception statement from your version. Files and their suffixes ------------------------ The files with .sfd (Spline Font Database) are in FontForge's native format. Please use these if you plan to modify the font files. TrueType fonts for immediate consumption are the files with the .ttf (TrueType Font) suffix. These are ready to use in Xwindows based systems using FreeType, on Mac OS, and on older Windows systems. OpenType fonts (with suffix .otf) are for use in Windows Vista. Note that although they can be installed on Linux, but many applications in Linux still don't support them. -------------------------------------------------------------------------- Primoz Peterlin, Steve White Free UCS scalable fonts: http://savannah.gnu.org/projects/freefont/ $Id: README,v 1.6 2008/12/25 12:51:41 Stevan_White Exp $ logstalgia-1.0.3/data/fonts/FreeSerif.ttf0000644000203100020310000361021411526610646020124 0ustar andrewcandrewc FFTMKÿÝ™pGDEFLÐ@W±4^GPOS“–øØõؘGSUBüèQ³”BDOS/2#5qo¨VcmapàOÖW€ ¶cvt ƒ$fH2fpgm‹…Bd8Ægasp±( glyfüZ޼ Xheadî¬o<,6hheaž?d$hmtxÂBh…U€locaoÆÒpf|U„maxp†¢ˆ nameнh ÓXÒpost‰Î‡ð Ú,Öüprep!‘*¤eGùp³Žÿ_<õ‹èÄ)xÄ)xüãýßÚŽ„þÔZ üãýÿÚ``qä G‘Š»/ŒŠ»ÿ]ß1峪ÿÐýÿ (GNU @ ÿý ÿ8„,`ÿÿÿl!MúM‚˜Môô,A= *´0M0MôE4ú8M'úFÿ÷ôôoôô+ô ô ô"ôô8ôQP444¼D™tÒ››Òc , Ò ÒM… Ò"c y Ò Ò",Ò"›,*cÒÒ°Ò Òc MXÿ÷M"ÕôM¼%ô¼ô¼Môô ÿºô ôôôôM…3 ô ôÒôô¼àdÈCà‚(úMaô5ô ôÿêôÿËÈCôFMø&ô*4M'ø&M 94,,M]ô$ÅÿêúFM4,96ô,î%îî¼ÒÒÒÒÒÒy›c c c c MMM MÒÒ Ò"Ò"Ò"Ò"Ò"4&Ò"ÒÒÒÒÒ,ô ¼%¼%¼%¼%¼%¼%›&¼¼¼¼¼ÿøÿðôôôôôôô4ôô ô ô ô ôôôÒ¼%Ò¼%Ò¼%›¼›¼›¼›¼ÒXÒôc ¼c ¼c ¼c ¼c ¼Ò ôÒ ôÒ ôÒ ôÒô Ò$ MÿäM ÿíMÿüMMÒ,… ÿºÒ"ôôc c c \c ¼c Ò ôÒ ôÒ ô,ÿôÒ ôÒ"ôÒ"ôÒ"ôyÒ›M›M›M,*…3,*…%,*…3,*…'c c c Òô Òô Òô Òô Òô Òô °ÒÒôÒc ¼c ¼c ¼Môÿÿ›ÿ˜†'ôÿö†ôÿï››¼ÒÒÿœ†'ôc Ò%,ÿ½Mÿ´Ò ™Ù MM*"ôà° ÒÿºôÖÒ"ô" ,ÿ—ô›,*…3sP cÿ÷ÿôcÒô õ!Ò6›c ¼,,…ô.ôg·¥ôÈCCX/M‚5ްè y ,W è  Ò¼%M ÿíÒ"ôÒô Òô Òô Òô Òô ¼Ò¼%Ò¼%y›&Ò ô Ò ôÒ"ôÒ"ôÒ"ô,…ÿº5Ž°Ò ô°Ò ôÒ¼%y›&Ò"ôÒ¼ÿåÒ¼%c ¼ÿâc ¼Mÿ}ÿƒMÿüÒ"ôÿèÒ"ô› Mÿ•›MÒôÿÖÒô ,*…3c ÒôÿûÒ¼%c ¼Ò"ôÒ"ôÒ"ôÒ"ôÒôUÿº¼ôûôE¼¼ôô¼¼Òª)ª)¢)Æ)ÿºôôäô Fô ô ô ÿêÿý,   ôÿôôôœµ)€+MÿûMÿûMÿûMMMMÿÎç ç …3Mÿ´ô Mÿ´ôÿù  ôÿú ôÒôþ¼¼…È-¼'¼'¼'¼ôôÆ)™5[ô»ô¼'¼'%* 1 ¦ Ò**ôôcc,ÿû,ÿù952° 6ú˜MLôDôLMfMWv<v<<<M M údM M]MúdM M2M3TTMtMuM M M%M MMvMCM@MMÿýP`7 Èó"H,(ÌÌÌÌÌÝ2Û2Sô ¼<<&&G@µµMQ¯ ¯ ¯ ¯ Q Q FþÆÿþ¾þ´þ¾þþÍÿ)þÅÿþöþÈþ¾ÿBÿ'þzþÍþÍþÿþ÷þÿÿâþåþæþÅþÌÿ‰ÿÿþèþ…þ’þ©þ—ÿcÿçþÀþqþÉþøþçþóÿ þxþyþ~þ~þþŸþtþ’þþþ›þŸýáþ1ýßþëþ†þ¨þ£þ¨þÆþþÆÿÿ þ÷þ¡ÿþ}þþÌþòþ‹þŽþþGþÄþáþôþÍþbþºþ§þÿþ½þYþ¯þâþâþâþâþâþâþâþËþÝÿþ²þÃþÂþ¿þÍþþúþòþ¼þ½ÇÇ.LP MÒúB ÿ؆ÿØûÿØ2ÿØ]ÿØgÿØ ÿÐÒ›J ”c c ÒÖMÒ"Òy Ò t=Ò"Ò,sc¸)æÒ _õ!M K)ª) K)Hà,ª)à'3 ; à;ààÿüôK#,·')ª €ÿç൵) ÿÐôµ),Klÿþ)ÿØlÿþ€+¬!þªcÿ÷½7e;e;s!!)å)i)c ›$, ›,*MM … ÉÔºÒ"ÒêÒ †'›+r*ë ›$å 8#8#î#îÞ+7#%2#\Ï)›Ûe'7%ëb$b$õÕ&†#ºP&íô((1ô»¶ Ì¡ š5(-5(¶Üô›$ôñ**,Ïë½ç ¼¶ $ ¢¼…3ÿòÿºÊÂ$  ôô Aµ)Ž7É®Úö#ýåÌÃÙ_µÖô!à!àÿÔL%É-%ô Aµ) Aµ)òñ¨)q±½½848#5,ø,ô, ¢, ¢= Ô$þ,…Ò"ôÒ"ôÒ"ôTŸÒôØ”öÊÒ ›¼cäÒôÒôÒ ôÇÓÒôÒôÒôb1b1MåÌÒ"ôîÒô7#5ÒôÞ+šôUÒô(Òô(y›&c ¶ Ò%¼Ò%¼åÌ ¡,…8#8#%(-Ò"ôÒ"ôº½ÛôÛôÛôëÕ&Ï,ô„3]<)I<6)Î #5Ò ¼cÜþJþþ þ[þ[þtþCý_þJ~¢q^'^0^7^=^:^/   !Œ„Œ-âcú6Ù“^UA ùTIùWƒù•¶~¨|{œâzìz½WrrHÿÿKÿÿ·|µ|µ‚µ‚-ÿù&ÿùq‚Z‚!€¸‚õy„%‹y¨Iƒƒ6,63,X5 NG)rþ «dñe¸IÑ.ÒO¥/Ë8¨MÔ,Nžrî{Rÿÿjyƒ°Z‹ÿã¸ÿžÿÿ”ÞÿÙ¨|ÿóŠI– ÿýžœÿÔØÿº·ÿýÄÿΞ÷ÿÿ ƒg£ ,œÿ¿ŠÿÔ„#Èøÿý”ÿç‰ÿδÿºÛÿÙ  Nêÿý¼ÿýžç”« Õ ž'”(…'¾(,(ñ(O(U(§ÚŸÿ㎎t^)ÿÙ)ÿÙUÿÙPÿÙÇÿÙ<ÿÙŽÿÙŽÿÙçÿÙÿÙ¶ÿÙ¶ÿÙÚÿÙÞÿÙxÿÙ.ÿÙBÿÙÞÿÙuÿÙuÿÙÿÙaÿÙ¶ÿÙŽÿÙ¶LÿÙ¶ÿÿŽÿÙŽÿÙgÿÙÿÙmÿÙ¶ÿÙ¶ÿÙ¶ÿÙ?ÿÙ?ÿÙÿÙPÿÙPÿÙmÿÙgÿÙÞÿÙaÿÙŽ9ÿÿUÿÙUÿÙUþŒþ¹ÿ:ÿbÿbŸÿãgÿÙgÿÙUÿÙUþÈUþÈÿÙçÿÙÿÙ¶ÿÙ.ÿÙÿÙaÿÙÿÙÇÿÙ<ÿÙÿ2ÿ2ŽgÞõÇÿÿ¤ÿÿ9ý¾uÿú9ÿÿ¾ÿÿaÿÙaÿþrªþÌ,/8NRÿìÿìÕÿçÿðÿñ1ÿã\á6D*\,l.:ÿðåä×ÿóɘÿõÄÿóOÿñ'ÿõ)žÿÏ”ÿñ ÿöŸÿñÂ'ÿóÝ ÞÿñÁ'Àÿôcÿñ»ÿîÿñìÿñÚÿñºÿñÿñûÿÎÓÿñ ÿñ£ÿìþÄ£ÿñÊÿ¯½ÿìÊþ…þØÿ þáýû&ÿô!ÿÈÿô9ÿÈÿºd Ûþó ÿñ¤ÿñÕÿì\á6þêý×ô0µJß"ûÿüñ&ô âÿÿ÷\á»ÿê»ÿó­ÿó°Þ))žmeè’²žTTòèTè&j²"Pì>, >äøú2"žÖÖÿþ""T¬¾¾ÿ„þaþbþ~þxþdþ7ÿ4jÿþìäúhà0ÿúàÿþÔìÿøÿü<0þòT„»ÿÙ_@öwÿÿ¡ÿÿwÆÿÿÆÿÿãÿýet w]ô*sÏZ"TD¿@ÿÿ;«UZUDâýøxÿÄþîÿ u€4Êñÿþ›êJKá\ÂHÉZVÖ'·L®T8Y‹W‹W§X¿[º[\ rTÄYŽWzZ½Z±S±T½Y†ÿìPQÅU„]¸\·\ÞV¤[¤^¥^¤^`¨X«ZŸY¦XŒ]£S¡MÝ8L©LL»L:IÛM¤O‚RðNìNLINÕNæNKM´MGL)LÖJÃH¿KÜLPMÎKM×MMNL LÛMåMâMëO KÁKÿKôMþMOMÿLÉM)JMËLM˜KÔLÑK“MÿÙC,(zJLÞL>LgPP¤LYÿѤL¤OðM£IœN¡MáNÑO¾N¾P¯M£P«PwÁÔ<>” $'>F%\ èÍ#\å?äF#v v &F*\\\{Í!F%”\ Í”v F%\ ÍF\v,'>F*Ív5v/Í>Í(ý°|¤üíýüíüãõ Œ!ˆ*EFFTFEFRF‰FîF1F²FFTFFFxFxF2FÃFF{FDFOFEF‚F+F±FgFgFXFXFŸFŸFxFOFFÿFEF1FxF/FQF½F=FƒFF1F1FúFõFÿgÒBÓÿ³þIþ[þIþ[þÿþÿV›IFFF–ÿ –ÿ·–ÿ‹ ÿŽ Vþ]ÿZþ»þ#ÿ þóÿ þºÃG8<8<g<§=¨<ÿåÿ<ƒ<`<«GÍ$ÅMÀP"MkMÞNáMËMÃMÓM×MJNÐM»LÃMÌMÑM®L¸&D1MDGÓLvMÒMMÈMöMÐLM¸M» MÌNÏKRÇMÔMÁMÆ!Ä! !u!Ã!Ä!Ä!¾!Ã!Ä!4Ã!Å!·!Á!À!¶!õ! !ÿÿ0!Â!s!Ä!ëÄ!å!Ä!å»!ô!FÇ!Ã!àžÅ!¢!GEE0  G öEV1211G8ö2d-k119111ý¥9q:+.Ô.)+Â;ÂMI.?>ý=SßkCÈ1;qG0‚RG1ö0¼1G-¼-ö0G--,G,Ù-G-G-1.‚1N‚öè$‚1(¼@¼@¼@ö¼@¼?ÙAN@7@¼>¼ý@¼¼¼ö¼ö$ÙAN7¼¼ý öö ¼  ÿÚöÿÚöÿÚ ÿÚ¼ÿÚ ÿÚ ÿÚÙ%Ù%Ù%"#Ù%Ù%öÙö;ö;ö;11ö:1Xö8ö;d11dG7k0Âà¼öˆ˜0Gk l*?á]*2‚?Ÿ%¼IöHÙH¼3Ÿ+¼6ö3¼6G/ß/6/G//G(G/¶ÿß*BÙAB*J¼A*N*Bà>ý>ŸQQˆ>Ù ˆ ´ Ù k Ù Ù q è öÿÜkÿÜT ö@k@¼7¼7¼Kà@ö4*NNö<G<ö;ðAdC "¼"¼" "­"Ùþ"Ù"Â&Â&Â&Â&Â&ýHÂ&Â&Ó0 0Ÿ0d%d0Ÿ4Ÿ0d%k+1+‚+Ù%Ù%öQ1+¼%ö˼¼%%ö4¼¼%ö˼¼%%ö4¼ Ó#Ÿ#Ÿ#dd#G' 3N#ˆ#*¼%1# ÿöÙÿöÙÿödŸÿöGÿ÷ ÿè1?ý?ý?1>à?ö11?ý?7?q?q?* ?4?c?‡FG6F‡8FüFGF‡8GFG6FG8FüFGF8Zö[G"Ó"G"áAdCö¼Iö¼I?Ÿ1ö*¼"ö&ö&ö&1 ö&öC1ö&‚1Ô.öé0G¦˜:˜: ; 0é0¼0Ÿ2d#‚L‚L‚2G¼OöQ‚OG2¼%ÙfÐHG6öC¼1ˆ%d2Gk0ä¿ ä ©' ™h¯ ý ôÒ¼˜ ô ûôÒ¼%›ô›ô›ô›¼ÒôÒôÒôÒôÒôc ¼c ¼c ¼c ¼c ¼, MÒ ôÒô Òô Òô Òô Òô MÿáMÒ"ôÒ"ôÒ"ôc c ÿïc ÿïc ÿïy  y  y  Ò ôÒ ôÒ ôÒ ôÒ"ôÒ"ôÒ"ôÒ"ô,ô,ô›M›M›M›M,*…3,*…3,*…3,*…',*…3c c cÿ÷cÿ÷Òô Òô Òô Òô Òô ÒôÒô°Ò°Ò°Ò°Ò°ÒÒ ôÒ ôÒôc ¼c ¼c ¼ô ÿýÒô¼%MÒ¼%'%Ò¼%Ò¼ÿ¾'%Ò¼%Ò¼%Ò¼%Ò¼%'%Ò¼%Ò¼%c ¼¸ c ¼c ¼cÿµ¼ÿº¸ c ¼c ¼MMÒ"ô'"IÒ"ôÒôÿ×'"IÒ"ôÒ"ôÒ"ôÒ"ô'"IÒ"ôÒ"ôÒô 'I Òô Òô 'I Òô Òô ÒôÒô'IÒôK)K)K)K)K)K)K)K)ÒÿïÒÿÿAAÿíA AÿúAÿíAÿäª)ª)ª)ª)ª)ª)yy+°°°°ÿþyÿÜyÿâèÿîèÿÐèÿäèÿÉèÿÄèÿ½ ! ! ÿò ÿá ÿñ ÿà ÿÙ ÿÙ,,¸3¸¸=¸¸¸ôôôôôôyÿëyÿû°ÿÕèÿé°ÿÕèÿìy èèèÿûµ)µ)µ)µ)µ)µ)µ)µ)°ÿþ°èÿüèÿÞèÿüèÿ×èÿÊèÿËK)K)ª)ª) ; ;ôôµ)µ)K)K)K)K)K)K)K)K)°ÿï°ÿÿèÿíèÿÏèÿ÷èÿæèÿãèÿÚ\ÿÜ\ÿâËÿîËÿÐËÿäËÿÉËÿÄËÿ½µ)µ)µ)µ)µ)µ)µ)µ)“ÿþ“ËÿüËÿÞËÿüËÿ×ËÿÊËÿËK)K)K)K)K)K)K)ÒÒÒÒ°úÿœLô¥ô]lÒÿÍÒÿÌyyµôvôuô] ÿð ÿÑ ÿí ÿè ÿÙ ÿèMM ôôôeôdô],,¸)¸)y0y/ |wôõ)µ)µ)µ)µ)yy(yyè!ôÁô¥èôèMú§ÈM'M'ôôèèôMsMOMOMs¼+¼¼-¼+ô;ô:^(^(èoèS÷›cÜ ¸ ” ÕM?M0uš‚¼Dô¹5¹5:ÿ÷£EM+§ÿXXƒxD D ‚ôÅÿê,ÿû,9,,,ÿþ,ÿý,,ÿþ,2,2,2,ÿó,ÿû,9,,,,,ÿþ,ÿý,,ÿþ,2,2,2º7››, ô  Ò v °å"<c*þŠþ‰›ºè6ôÉ!—6ôô):~ j ¡6 ºø&@<Ò"Rÿþÿ››oÔÒÛ õ!õ!—ÿùÒ"ÒŒ"f2#2-), 8.(‚;"¡îîÿûîîÿñîîÿûîîîîÿûîî$îMvŸûÒû$]ûÒ û $ c ›Òy ,B ô  6 ô  ¼ô Ä>Ø Ä>ô-Ä>ó-Ä>Ä>Ä>Ä>Ä>Ä>ñ;ñÿýÄ>ô.Ä>ó.E>EHE>ô-E>ô-ôÄ>Ä>Ä>Ä> Ä>â>â>â>â>’’- - «l«lÄ>Ä>óÝó-Ä>Ä>óÝó-Ä>H-Ä>Ä>H-Ä>H-Ä>Ä>Ä>Ä>Ä>Ä>&Ä>&Ä>&>>>>Ä>Ä>D D Ä>Ä>KÌlîK,K,êdÉ$44·044·077É444|C|C×>ñ>ñ>%ÿþ%ÿþ%ÿþ|U4ý>ý>ý>ý>ÈPú@P@ÿëŽ>Ž>Ž>Ž> 7î7;7ÒVî758úFu;4ö4|8|8|86|8|>|>|8|4|4|>|8|8|>|>|3|>|>4444ßó444444|B|>|>|>|>|>|>|>|>–4–4š>|3|>|>|>|>|>|>|>|>|>|>|>|>|>|>|>|>|>|>|>|>|4|4|4|4|4|4|4|4|4|4Ž>Ž>Ž>|4|4|4|4Ž>Ž>||||||||||=|=|=|=X>X>È>È>Ò>Ò>L>Æ>L>ÒÿÓÒÿÓLÿÓLÿÓ|>|>|>|>>>Æ>rlŽ>Ž>Ž>èèü=ü=*úE×@u9Ò?0404|>|2|2|4|4Ž>Ž>Ž>|>|>|>¿4¿4|>|>|>|>|>|>|>|>|4|4|4|4|>|>|>|>|>|>|>|>úEètètèt 5¼#Ú>Ú>Ú>Ú>4%H®L® ’>’>II 7 7 7 7 7€(€(€(€ÿÌ€€ÿÌ„X„X„X„7„Ù„7îÉîîÉîÉîî­î®Lô-##########yyy°y˜yyyyyyyyy°y°y˜y˜yyyyy°y°y˜y˜yyyyy°y°y˜y˜y˜y˜y˜y˜yyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyyhy°yhyhyyyy°yhyhyyyy°yhyhyyyyyyyyyyyyy°ùùùùùùùùùùùùùùùùù|ùù™ù#ù#|#|#|^|#|#|^#$î#¬########ù#ù#ù#ù#ù#ù#ù#ù#S#0#7#7Ì7Ï"ù#ù#ù#øÀ#À#«#ô «#ô ô%V%î#î#%H€%H%CX2X2X2X2X2X2X2X2%C%H%H%H%" 8 77777¼3G07ŒÿþG7% %t%!õ#A#€#€$€À*%!€"%! a 5 ’ J Z ¸ ` 1 š I a ·r"¶#S"#¶#S"M7+7Ò7Ò7ŸBy<’2d]Î#Á#Î#Ô####²#%W!#¥##±#Î#ó"N$ú#ù#;ÿÿ¥$û#ø#÷#ò#î#(##A#´#######7##I#7#A#0#?#›#è#Ó#í#"#·####÷#Ã#Ä#ª#½#:#/###Ã!¯$¸#±#"#É##$i#ú#ú#÷#÷##Š##Ÿ#ˆ#ˆ"œ#œ$Ü# 8 "Ž#›#ø#ø#####################""#######~#ì#œ#ì#–#Ÿ# # #B#i#<#œ#œ#•#¢"£#Ï#s#D#D#c#c#¸#¸#j#j#ø#²#"a#"x"Ç#x"?#i$Ÿ#Ê#–"èèèèèèèè\\\þ=þ=éM+èfèPè8èèdè9æèèè¼è2è¼è2èÐè2è}èÕè>è«èYèèFè6èßèÂèwèªèXèƒèƒè™è™è/èCèaèŒèÇèÇèÁèÁèÿèùèLèLèfèfèwèwèmèmè‘è~è¹èqèqèDèDèíèíèŒèwèXècèOè‘è‘è‘è\è‹è‹èyèyèyè?èoèoè•è•è•èàè”ènèPè›è™èBèöè·èþèÀè³è*è èMè»èÐèˆè†èqèVèyùßèºèºèÅèzè&èðèËè€èºèkèÈèzèŒèŒèoèoèãèãèxèxè©è©èèè—è—èwèwèpèpè¿è¿èèèèèèèèè¤è¤ètètè*è*è~ètè…èxè1èvèvèvèºèºèºè¡è¡è¡èrèrèrèŒèŒèèwè èvèõèwèÉè}èÆèyè èÑèÐè?èxèíè¦èïè­è¨èkè°èrè€èÕèÆù­ù¨ùkù°è¼èuôôô+ô ô ô"ôô8ôôo]#,, 8#5#¥3^'^0^0^=^/  ^0žržr4ÿô4ÿôî{î}DÿýDÿýRÿÿRÿÿjyjyIÿûIÿûƒ¼„0ÿê0ÿꀿE,6,,,6,3,,,XÔA  ùTk-ÿêù•Œ¶~¶~%ÿü%ÿü{{4ÿô4ÿôœœ*ÿþ*ÿþâzâz>ÿý>ÿýìzîzXÿýXÿý½p}TÿýTÿýrrrrHÿÿHÿÿKÿÿKÿÿ·|·|XÿúXÿúµ|µ|‰ÿú‰ÿúµ‚µ‚77µ‚µ‚%ÿì%ÿì-ÿù-ÿùÌÿÿÌÿÿ&ÿù&ÿùÇÿý&ÿÿq‚?|¢ÿù&ÿöZ‚A|BÿïAÿö!€!€,ÿâ,ÿ⸂¸‚ŠÿâŠÿâõyõy>ÿñ>ÿñ„„ÎÿóÎÿó%%““‹y‹yCÿôCÿô¨n‚ ÿôÜÿîIIƒƒ(ÿúÿù¤ Ô ¤zÔ{¤eÔ{¤zÔ{#uÿÙòQ耀€fFÇeKsM MZLLNKûGKKçE,KVKAI,K›@›@›@KKKKKKKFfO¢GƒK‰K£M®M(I(I(IKKKKKKšJšJšJKKKÑMÑMÑMKÑMÑMÑMÑMÑMÑMÑMKKKKKKKMM M³I¶IÃHÍM´M´M´M´M?M?M?M?MÆIÆIÆIãHðHðHðHNzLzLzLÐH<GÁHFFFKGKGKG´M´M´MGLGL}HGLGLDLGLñIñIñI)L)LûMýHHMoLoLoLÖJÖJÖJÖJÖJÖJÖJÖJÖJÖJÖJÖJ‚HóH/LxKxKxK'H¸M>M>MnM'JL1LÂLšJšJ×F×F×FÜLÜLâMíLÛPÛPÛPUMUM‘E‘E‘EÏM>P7P5PÌLäM'M:MTMTMTMÎKÎKæKAÕGÕGÕGnJnJnJMM×M×MÓH×M×M×M×M×M×M×M×M×M×MgKgKgKMMM‘H‘H‘H“LüJƒHƒHƒHOOONL™L™L™LQiIiIiIÇKÄMÇIÃKNLNLNL¬M¬M¬MøIñDL,LGGGH;HKKKÕIÕIÕIÖMLVHDHAG^H~M~M~M~M¥K¥K¥K L L LèGèGèGñH HØGØGØGØGèGèGèGèGèGèGèGïQïQïQ Y YÛMÛMÛMÛMÛMÛMÛMåMåMõMUHâMâMâMíKíM‚I‚I‚I‚IšI‚I‚I‚I‚I‚I‚I‚I J J JdJdJdJâMâMéK-MâMâMâMâMâMâMâMnGnGnG&J¬JùM$OHôGúGH#H™J™J™JÛHÛHÛHøHÛHÚIÚIÚII‚O‚O‚OíIíIíIûHôLôLôLýIDHËIýH‘F‘F‘F,I,I,I6MÅJÅJÅJpIpIpI M M M K K K K K K K K K K K K K K K N K K K K K K™H™H™H K K K K K K K K K KÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKNJNJNJÁKÁKÁKÁKÁKÁKÁKÁKÁKÁKÿKÿKMÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKÿKJJJÿKÿKÿKøH…JJ%J666þMþMúHþIþMþMþL¼I¼I¼IÓMIJIJIJ­I­I­I²P”E”E”EþMþMþMOO$OOOOOOOIOOOOOOOOOOOOOOOOOOOOOOOOOJ›J[KÉMÉMöJÉMÉMÉMÉMÉIÉ=ÉKÉMÉMÉMÉMÉMÉMÉMÉMÉMÉMÉMÉMÉMÉMÆMÆMÆMÉMÉMÉMÉMÉMÉMÉMÉMÉMÆMÆMÆMÉMÉMÉMËLËLÊHaIaIaIËLËLËLËLËLËLÊGÅIÔM]J]J]JŽI„JeJDJJMMMMMMM-H-H-HMMMMMMMMMM˜K˜K£M˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K˜K:T:T:TÔLÔLÞIëLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÈLÈLÈLÈLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLeMeMeMÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLÔLýJúJÞF¨KðLeKÎKÎKÎKÞMeJeJeJÑKÑKÑK)J)JFL6J6JMMMF9y¡(ž&MMMMMK%C D%KMFMMKBMMMMMMMMMM MMÿLÿLÿLÿLÿLÿ½þúþÏþ ÔÿöZ úiÿôÿòÞÿû\ÿþ'ÿñ¨ÿÿR=ÿÜ8‘>Ôo ÄYÈÿò2×Uÿô›ÿýdþú'ÿòìÿìgÿîC’DhþúUÿþñÿýÓÿètÿðÿôÿÿáÿïÌÿñÄÿóOÿñàÿñÎÿýÿñÿíóÿñ'ÿóÝÿþÞÁÿÿÿÿôþÿêh»ÿî ÿìÿñÿð ÿñûÿÎ éÿð£ÿú8¸ÿýøîõÿðîòÿöîÔÿöïÿó:ÿú”ÿõ:ÿúŒÿú|ÿðõÿúrÿñäL3äwä×ÿýÿñEÿö•ÿì•ýÿþþÿþÿþ÷ÿþ+\“““ÿ¶˜ÿÿWŸÿýq!:!„2ÃÿãÿÿÿÏ imee ²p²pŸÿ[ÂEüü'ÿý¡ÿýzÿï'ÿý$111EÞÿã#ÿòÃÿò#ÿòXÁ'I'Ïÿý'ÿþ'ÿþt66Ï6ÚÂp˜%%NÀÿôLÿôŸë êÿþ¬ pckÿý..B»ÿîÿö»ÿý&ÿüÿýõÿý—ÿýìÿñ<ÿý8>jÿýLUÈU;ÿýžÿýìÿñ%%Hÿù$ÿòððjÿþjÿþ;-@ÿòBÿòBÿò§ÿίéûÿÎÿÎûÿÎüšÿã·ÿæúæŒÿì@ÿì/ ÿìSÿþLÿô€)44ò4òò…zº”¤ 룗ÿþ?£U:ÿúä×ÿý˜ÿÿÄÿýOÿöžÿÏ Â'ÿýÝ ˆî'ÂÿòÅÿüÿñÈøûÿÎÿþú£¯ÿõsÿõÁ¬qOÿöOÿöóŒ©ÿÿ^ÿÿò舓C˜˜ê§ä¡ˆÿý?ÿý»ÿý;ÿýÖŒ ÀÔÿÿÿÿj.ñÿùÖÿΔÿÎÏÿΚÿÎÕ*Ëÿÿ…ÿÿÓNN¹F…ÿýCÿý…ÿý»ÿýÙÅWÿòm"ÿì¯:ÿúåä×ÿýɘÿÿÄÿýOÿö'ÿÿ*žÿÏ” ŸÂ'ÿýÝ ÞÁ'Àÿôc»ÿýìÏ®ûÿÎÓ £ ¤Õ»ÿý»ÿý>%ZM+[Mÿøþhžÿ¦þŽqÿµþ{»ÿ¹þýðþ15ÿEþwÂÿòþþ˜þáþf;ÿ–$ÿ+*ÿ–ý÷ýùýÞýïþf\Êþe:ôoÇ ô.·ÿæñÿýòÂÿòÂÿÄxÿÄet ]ô*sÏZ"TD@ÿÿ«;¿  M©)F S!ùŽŠAôEÞ:fùͳ@ì` ÇŸœµ;Jë¶ÃŸs91wUZU1¼þbþb ¬   ~ö357Nouz~ŠŒ¡Î×áòõ†õù²¹¼ÀÃêô :KUikt~†˜¯ÌÔ°    5 9 E I M P ^ p ƒ Œ ¨ ° ² ¹ Ä È Î × Ý ã ú  ( 0 3 6 9 < B H M \ ^ p t ƒ Š • š œ Ÿ ¤ ª µ ¹ Â È Í ×   ( - 0 2   ( 9 C H M W a p ƒ … ‹ ‘ ” œ ž ¢ ¥ « ± » ½ Æ Ê Ô Ö Ù ß:[ÅõFHMVX]†ˆ®°µ¾ÅÎÖîFZ|")…‡›ùEMWY[]}´ÄÓÛïôþ   # & K q | Œ © ¬ ¯ ² Ý à!!!! !$!(!.!3!9!!®!·!Ý!à!â" "/"="K"W"Z"\"§"¯"¸"½"È"ñ## #####*#H#P#W#^#®$#$i%K%m%%•%¡%³%¶%½%À%Ç%Ì%×%å%ê%ï&&&& &#&&&(&*&,&c&f&q'' '''K'M'R'V'^'g'”'¯'¾'ü** .00000”0™0›0üöAöÜûûû6û<û>ûAûDûNûYû}û‹û•ûÿýòýüþpþtþvþxþzþ|þ„þ’þîþüÿýÿÿ  ø&57PPtz~„ŒŽ£ÐÚðõˆø±´»ÀÃÐð !AM`kt~†˜¯ÌÔ€      7 < G K P X ` … “ ª ² ¶ ¼ Ç Ë × Ü ß æ    * 2 5 8 < > G K Y ^ f r ‚ … Ž ’ ™ œ ž £ ¨ ® · ¾ Æ Ê ×     * 0 2     * > F J W ` f ‚ … ‰ ‘ ” ™ ž   ¤ § ­ ³ ½ À Ê Ï Ö Ø ß? ÐHJPXZ`ˆŠ°²¸ÀÈÐØð Ha  )„‡  HPY[]_€¶ÆÖÝòö    & 0 p t    ¬ ¯ ² Ý à!!! !!"!&!*!0!5!S!!°!º!à!â"""4"@"M"Y"\"`"©"²"º"À"Ë##### #)#G#P#W#^#›$#$`%%P%€%”% %²%¶%¼%À%Æ%Ê%Ï%â%ç%ï&& &&&"&&&(&*&,&.&e&i''' ')'M'O'V'X'a'v'˜'±'õ** .00000A0™0›0¡ö9öÜûûû*û8û>û@ûCûFûVûzûŠû’ûüýòýüþpþtþvþxþzþ|þ€þŒþ•þñÿýÿÿÿãÿÂÿÁÿ¿ÿ¹ÿ¸ÿ·ÿŸÿžÿšÿ–ÿ“ÿŽÿÿŒÿ‹ÿŠÿˆÿzÿxÿnÿmÿkÿeþÄþÃþÂþ¿þ½þ±þ¬þ•þ‡þ„þƒþ}þ|þrþqþiþ`þYþHþ2þþýdüüüüüüü ü ü ü üüûñûðûîûìûëûêûçûåûãûáûÙûÕûÔûÒûÈûÄûÂûÁûÀû¿û¾û¼û»û·ûµûªû©û¢û¡ú”ú“úúúŒú‹úŠú‡ú„úú€ú|úyúxúoúEúDúCúBúAú?ú>ùoùnùmùlùkùgùeùdù[ùSùOù>ù=ù:ù5ù3ù/ù.ù-ù,ù+ù*ù)ù(ù&ù#ùùùùø÷øóö¯ö¥õ›õšõ™õ˜õ–õ•õ”õ’õ‘õõŽõõŒõŠõ‰õ‡õ†õ…õ„õƒõ‚õ€õõ~õxëõëóëòëñëîëâëßëÙë‚ë€ëëzëëêþêüêúêøêöêõêôêóêòêðêïêîêìêëêéêèêæêäêãêáêàêÞêÕê±ê¯ê­êšê˜ê–ê”êjêhêGêFêCêBêAê@ê?ê>ê=ê$êêêêêéñéðéìéêéééèéçéäéãéáéàéÞéÜéÎéÈéÄé»é¶é±é•éŽéˆé‚éFèÒè–èçüçêçççÝçÍçËçÆçÄç¿ç½ç»ç±ç°ç¬ç—ç’ç‘ç‹çŠçˆç‡ç†ç…ç„çƒçæòæñæïæîæíæìæéæèæææØæÕæÔæžä›ä—àŠÞ¡Þ ÞŸÞžÞsÞoÞnÞi-“poLKJIHG@ ¨¶­:765430)'%%   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a†‡‰‹“˜ž£¢¤¦¥§©«ª¬­¯®°±³µ´¶¸·¼»½¾ rdei x¡pk cvj Dˆš s H Igw ó  ÿK l|4¨ºcn T 2 ÷m} b‚…— ô õ ü ý ø ù¹ ‡Á:  D  qr y ú þ „ŒƒŠ‘Ž•–”œ›óe{qwxyz|zf°,°K°*PX°JvY°#?°+X=YK°*PX}Y Ô°.-°, Ú/°+\X G#Faj X db8!!Y!Y-°,KRXE#Y!-°,i °@PX!°@Y-°,°+X!#!zXÝÍYKRXXýíY!°+X°FvYXÝÍYYY-°, \Z-°,±"ˆPX° ˆ\\°Y-°,±$ˆPX°@ˆ\\°Y-°, 9/-¸ÿ…K°PX±ŽY±F+X!°YK°RX!°€Y°+\X° E°+D° E²2+°+D° E²ù+°+D° E²O+°+D° Eºÿ+°+D° E²/+°+D° E²&+°+D° E² "+°+D° E² +°+D° E°+D° E² M+±Fv+D° E²+±Fv+D° Eº#+±Fv+D° Eº ÿ+±Fv+D° Eºÿ+±Fv+D° E²X+±Fv+D° E²'+±Fv+D° Eºÿ+±Fv+D° E²+±Fv+D° E²+±Fv+DY–&&+5<IUNUU[ggms!yTTTTœèHܤh”à,ô`x¤ÄX´4làHx x Ä $ L t ˜  Ä ( Ä ” xü|À¬xàD¼DÔX¨x¨ t¤Àì,Tð`Ä@œÔP°´ü¨ lì X À!L!¤" "l##$ $T$¸$Ô%<%€%%à&d'(' (0(X)()p**++8+H+ü,,`,x,Ô-D-l-Ð.8.d.°.ì/4/À080Ø1€1ø22(2@2X2p2ˆ343Ð3è44404H4`4x455(5@5X5p5ˆ5 5Ô6X6p6ˆ6 6¸6Ð7P7à7ø88(8@8X8p9D9à9ø::(:@:X:p:ˆ:¨;(;@;X;p;ˆ; ;¸<<„<œ<´<Ì<ä<ü=€=˜=°=È=à=ø>„?H?`?x??¨?À?Ø?ð@@ @Ð@àApAˆA A¸AÐAèBB C$C<CTClC„CœC´CÌCäDœE¤E¼EÔFdFðGG G8GPGhG€GìHtHŒHÌHäHüII,IDI\IüJJ,JDJ\JèKdK|K”LLXLpLˆL L¸LÐLèMMˆNN(N@NXNpNˆN OLOàOøPP(P@PXPpPˆP P¸PÐQ”R`RxRSS¬SÄTLT¬UU(U@UXUpUˆU U¸UÐUèVV”WW4WLWdW|W”W¬WÄWÜWôX X$X€YY¼YÌZHZÌ[4[\\\ ]0]¤^(^<^¸^È_L_È`4`Ôahb0bpbÄcxddldøe¨ff˜f¨g8g¬hThèi|jjkk k°l$l mm`m¼nLnØnìodoäp€päq<qLq¨rr”ssxsät\tØtèuu8uHu`uxuu¨uÀuØuðvv v8vPvhv€v˜v°vÈvàww wDw`w„w wÄwàwôx x(xHxdx|x”y zz z8zPzhzô{h||ˆ| |¸|Ð|è}}}(}@}ì~~~,~<~T~l~|~”~¬~Ä~Ü~ô $<Tl„œ´Ìäü€€,€D€\€t€Œ€¤€¼€ÔŒ‚L‚Ѓ\ƒtƒŒƒ¤ƒ¼„p……(…D…d…€…˜…°…Ѕ솆†È‡‡(‡ ‡´ˆ(ˆ<ˆÈ‰T‰ØŠ4ŠH‹‹‹¤Œ”xŽ$ެÄL`ä‘t‘à’$’d’ä“d“¸”<”P”ü•¸–@–Ì—0—@—ؘp™™™,™´š š˜šô›P›À›Ôœ€œÜ@ ž$ž8ž”ŸŸ„Ÿ”Ÿ¨Ÿ¼ŸÐ D °¡,¡ˆ¢¢„¢ô££p£ˆ£˜£¬¤4¤D¤Ì¤à¥,¥¸¦4¦´§`¨<©©°ªD««ä¬x¬è­ì®T®è¯ˆ¯ø°t°Ô±8±L±¼²,²À³<³L³\³¤³¸´´D´X´°µ µ0µTµxµœµÀµäµø¶¶@¶p¶Œ¶ ¶Ð·· ·8·h·˜·¸·Ø¸¸¸P¸|¸Ä¸ü¹H¹ˆ¹øº,ºÀ»»¼$¼¼°¼Ø½½(½L½l½½¤½Ì½Ü½ð¾¾8¾X¾l¾€¾œ¾ð¿¿¿4¿P¿l¿ˆ¿¬¿Ì¿øÀ À À4ÀHÀ\ÀxÀŒÀ À´ÀüÁÁ$Á8ÁTÁlÁ¬ÂÂ4ÂHÂ\Âp¸ÂèÃÃ<Ã\ÃxüÄÄ Ä@ÄhÄ„ÄÔÅ ÅLŘÅÜÆ Æ4ÆHÆdÆ„ÇÇ$ÇDÇxǬÇüÈÈ4È\ÈpȈȤÈÄÈäÉ(ÉHÉpÉÌÊÊ@ÊhÊ|ÊÊ¤Ê¸Ë ËPËdËtˌˬÌÌ(ÌDÌ|̤ÌÈÌÜÍ0ÍDÍhÍŒÍÄÎÎÎÔÏ\πϬÏÜÏøÐÐdДÐÀÑXѨÒÒLÒ°ÓÓ|ÓìÔ”ÔôÕDÕœÖ(ÖXÖ„Ö´ÖÄÖØÖð××,×D×\×t׌פ׼×Ô×ä×ôØHØt؄ؔؤÙ0Ù@ÙPÙ¸ÙÈÙØÚ\ÚlÚÐÚàÛ4ÛDÛèܔܤ݀ÞÞtßPßh߀ߘ߰ßÈà\àüátââ˜ã@ã¨ä$ädäØåTåÄææüç ç”èè°ééˆéðêˆëë˜ìDì\ìtìŒì¤ì¼íLíøîœî´îÌï<ððÀñLñØò\òäó”óüô”õ0õÔö`ö°÷÷÷ÈødøÌù0ù@ùPùhùxú úÐûTüü¸ýlýäþHþ¸ÿ\ÿ¤$”„¨L¸(¤ pÜDœÐlè \ ð Œ  Ä @ ¬ \ äxtÈ4˜„ðl„ „ðd¼¤\ÐxühÜtŒ0¬œ € ¼ˆ˜¨ÀÐ l!!¨!À!Ø!ð"d# #¤$8$Ø%Œ&,& '$'ì(¨)d*4+ ,<--Ä. //˜/ð0\0¤0¼0Ô1”2T2ô3€4l56477„7ø8D8h8¤8È8ì: :È;Œ<8<¼=@=È>`>´>ü?\?´@T@äAüBøC´DxE(EÐF€G$GØH„I0IØJdJèKxKüL°MXN$NÐOdPP`P¼PÌQ8Q¼R8RäS€SøTpTôUxVVWW€XXœYpZZ,ZDZ\[[Ð\H\À]P]Ø^\^Ø_\_à```Ø`ôa a$a<aTadataŒa¤bbb0bHb`bxbb¨cc`cxcc¨cÀcØcðdHd d¸dÐdèeee0eHe`exee¨eÀeØeðf`fpgg¤hhŒi,i¼jDjÔk|llŒlømtmìn€nØooHo¨oÀoðpp|p¨pÀq(r r\rìsLsätTtäuLvvXv°ww¨xxØy8y˜z(zø{|||ä}˜~X~¼È€h8à‚x‚°ƒ ƒPƒ¬„,„Œ„¤„¼„Ô„ì……,…„††x†ð‡€ˆˆ”ˆä‰D‰ˆ‰ÜŠ|‹H‹ÔŒ„ŒðläŽlÈD¬‘‘ˆ‘è’P’`’ü“D“Œ“¸””H”¨”ô•4•D•X•t•¤•ü–€——|—ð˜8˜l˜Ü™™t™ðšœ›› œœDœ˜ÌžTžðŸpŸÔ P ´¡$¡¼¢x£@£°¤D¥(¥¤¦$¦Ä§¬¨H©©Ìª«¨¬¬ˆ­h® ®Ø¯p°°ä±È²`²ø³Ä´L´ˆ´ìµ@µ¤¶¶Ä· ·¨¸T¸¸¸ü¹X¹t¹ º¤»´¼h½T¾¿(À0ÁLÁdÂÂ,ÃlÄÜÅ´Æ„ÇÇÐÈŒÉ,Ê”Ë0ÌÌØÍ€Î(ÎÔÏ|ÐМÑTÒ$ÒØÓHÓ`ÓàÔœÕLÕÔÖ@ÖÜ×d×|Ø4ÙÙÙ´Ú<ÚôÛ¼ÛØÜ”ÜÜÝdÝÜÞHÞ°ßߘßèà(à”à¬á á°áàãDäååˆæ0æìç¬èhéèëHììäíídíÈîtïïÄðTðøñÌòpòôó óüôlôàõlõìö˜÷hø`ù4úú´ûHûôüØýxþTþØÿl”D D   DøpØløˆØ L ¨ 8 à , ¨ $ Œ ü œHÜpø(¸tä€ä ˜ü <<Ü8à`ðÔôÀ$„ð\˜ 0 ¤!H!ð"X"Ð"ô#p# $$¤$Ô%@%œ&T&à'|(((Ô(ì)))4)Ä)Ü*T*´++”,,t--T-ä.P.À//¤00ˆ0ø1X1°22p2À3,3˜4,4„4Ü5,5Ø6 77|7Ø8(8@8d8°8ø9 9h9”9à::`:Œ;;„;ì??`@ @d@¨AATAÈBdChC¨D„EdF˜H HìIˆKKÀL|M¸O(PÀPØQ„RTRÜT4UlU¨W,WøX¸YÈZZ€Zø[|\\ä]Ì^¤_x`äaØc c„cüdhd´e`f,fìgøhh(h@hxi\i¬j$jÈkxl<mTn4o|p”q(q¨rHss¸tlu`uØv¤w wÐxŒyy¨z|{ {Ô|”}}¨~lD€€¬$¨‚‚Œƒƒ¼„x„Ð…d…Ć<‡Tˆœ‰TŠ˜‹8ŒX@ôŽ „œ‘H’D“|”4”À•<•Ä–Œ–è—”˜œ™ˆšhšÜ›4›äœ¬xžž`žØŸ`ŸØ 4 ¬¡\¢¢|£0£œ£ü¤L¥ ¥œ¥ü¦˜§L§è¨x¨Ø©©t©ÜªHªØ«T«ð¬Ø®¯t°°L°à²²ü³P³¸´´|´èµ¤¶8¶È·4·Ä·ø¸L¸Ø¹Ô»0¼€½<¾$¿P¿PÀdÁdÂ\ÔÄPŸÆàÈŒÊ$Ê´˨ÌͰϤÐÐÑ|Ò8ÒðÔ(ÕÕüÖäרؠٸÛ$Ü ÜÌÝÈÞxßàÌáÐâää ä°å4叿æ çç çüèlééÄê|êäë|ì0ì¼íhîLî¤ï(ïÔðˆñ\ò,ó4ôõöH÷øøÔùdúú¤û û¤üDü¬ýýxýÜþ@þ¤ÿ<ÿÔp˜(¼0ä¨\´@ì| 4 ˜ Ì 0 ˆ ä d È  x   \ ¨0Èpô(Ôˆ¬ÀèPŒø` 8ø°\<ØÈŒPôÄ 4 À!H" "€# #¼$L$¼%8&&œ','°(T(È)t)à*´+P,,œ-T-Ì.l.ì/ˆ/ø01H1Ä2T3 3ð4ˆ55Ä6T6È7D7è8´9,9Ô:„;$;˜<<ì=x>>°?L?À@p@äAÄBpCPCäDœEEÌFLFàGLGÔHÄI<IÜJ¬KlL LM\MìN|O8PP¬Q|R(S S¤TXUU¬V`W X$YYô[\]^ _ _øahb cðe f@g¬h¸i¨k l(m|nÐo¼pôqÌrÐt(t¼uduüvÐw¤xpy`z„{L|d}h~@D€€ð‚ƒ4„…܆ðˆX‰œŠÔŒllލÌܑ쓔D•˜—˜€™ä›Tœ¨žDŸ° ô¢`£à¥|§@©ªø¬Ð®ˆ¯@°0±±¼²œ³t³üµ¶(·€¸Ä¹à»$¼h½\¾Ô¿ÀÁÂ$à Ä8Å\ÆpÇÐÉÊ Ì ͰÏ ÐxÒÓÐÔ°ÕÔ××üÙÙàÛ ÜXÝÜß4àŒáÌâxãXääØå¬æ€ç|èŒéÀë ìxíàï4ðò óôôÀõ¨ö°÷|øˆù údû¬ü˜ý¬þÈÿ ¤¬ŒÈ 0t¨  œ \ÐT¤xxp(ü´˜¼´¨ °!Ü"¨#<$ %%Ø&ä' (8) * +<,- .,/0P1€2ø4p5´78è:,;è<ˆ=x>|?(@4A(BBäDDE°FÔGÐHèIÈKTLTMÄOPP„Q RÔSäU€WX°Z¨\]Ø_¼acc dleeàf gThi j4k,l<m8nPo”pÄrs8t`uxvœxydzT{œ|L},~¨€Äƒ „ˆ†\‡¤‰ŠÀ‹ÀŒèŽ8d‘¨’Œ””ü–——Иà™ôš¸œœÜÌžÀŸŒ x¡P¡ô¢Ø£ø¤ä¦ §@¨l©”«D«ü¬ð­ä®Ô¯´°¨±œ² ³´µ¶Ð·L¸0¸à¹Üºˆ»@»è½ˆ¾ðÀLÁ¤ÂØÄlÆÇÔÉ„ËÌ0ÍìÏXÑÒˆÔ¨ÖdØ0ÙìÛTÝHݰÞDÞœßßhààXàÌá á€áàâ”âØãPääØåXæ æÜæôç ç$ç<çTçlç„çœç´çÌçäçüèè,èDè\ètèŒè¤è¼èÔèìééé4éLédé|é”é¬éÄéÜéôê ê$ê<êTêlê„êœê´êÌêäêüëë,ëDë\ëtëŒë¤ë¼ëÔëìììì4ìLìdì|ì”ì¬ìÄìÜìôí í$í<íTílí„íœí´íÌíäíüîî,îDî\îtîŒî¤î¼îÔîìïïï4ïLïdï|ï”ï¬ïÄïÜïôð ð$ð<ðTðlð„ðœð´ðÌðäðüññ,ñDñ\ñtñŒñ¤ñ¼ñÔñìòòò4òLòdò|ò”ò¬òÄòÜòôó ó$ó<óTóló„óœó´óÌóäóüôô,ôDô\ôtôŒô¤ô¼ôÔôìõõõ4õLõdõ|õ”õ¬õÄõÜõôö ö$ö<öTölö„öœö´öÌöäöü÷÷,÷D÷\÷t÷Œ÷¤÷¼÷Ô÷ìøøø4øLødø|ø”ø¬øÄøÜøôù ù$ù<ùTùlù„ùœù´ùÌùäùüúú,úDú\útúŒú¤ú¼úÔúìûûû4ûLûdû|û”û¬ûÄûÜûôü ü$ü<üTülü„üœü´üÌüäüüýý,ýDý\ýtýŒý¤ý¼ýÔýìþþþ4þLþdþ|þ”þ¬þÄþÜþôÿ ÿ$ÿ<ÿTÿlÿ„ÿœÿ´ÿÌÿäÿü,D\tŒ¤¼Ôì4Ld€œ¸Ôð (@Xpˆ ¸Ðè4Ld|˜´Ìäü,D\x”¬Èàø(@Xpˆ ¼Ôð $<Tl„œ´Ìä4Lh„ ¸Ðè0H`x¨ÀØð   8 P h € ˜ ° È à ø  ( @ X p ˆ   ¸ Ð è   0 H ` x  ¨ À Ø ð   8 P h € ˜ ° È à ø  ( @ X p ˆ   ¸pˆ ¸Ðè0DT àLdð 8Ph„ ¸lè¨4Ld|”°Ì8¤ 8P¼Ôì4Lh„ \Œ¤tŒ¤¼Øô,Dt¼¼¼¼¼¼¼¼¼¼¼Ôäô $4\ ä(pè`ÔXÜ ´ à ø!d"h#à$$x%%4%L%l%%Ü&(&È&à'€'”'ä(,(T*¤*À*à+<+˜+°+È+à,,x,Ì-$-X-Ä.$.T.Ü.ð//0/T/Ì/à/ô00000D0X0l0€0”0¨0¼0Ð1”2P33 4t5@5ô6x67˜8$9D9Ð::ˆ:ü;;;,;È==Ô>€??Ä@˜APB<BÌC\D(DÈEÄFXFäHXI\JJ¬K\LHLôMpMÌMÜN\OO$O4P Q@Q R¸T T UDV VWWdW¸WÐWðXX(XHXhX€X X¸XØXøYY0Y@Y¨Z<ZÈZØ[d\\è]°]À^ˆ_t_„_”_¤_´_Ä_Ü_ü``$`<`\`„`œ`¬`Ä`ä`ôaaa$aPala€aœaØbb@bpb„b˜bØcc€cìd,dld€d”dÐdäee4eHe\e¤eèf(fføg„gÔhh0h`hh¸hài$ihi¼jj4jXj|jœj¼jàkk khk°køl8lxl¸løm,mdmÀn0nŒnÄnüo4olo¼p pLppÔqq\q r4rÈsssTs¬t(t`tÌuHupuœuÜvTv¨vèw`w¸xxlx¸xÐxèyyy0yØz$zTz€z˜z°{T{ä||(|`|œ|¸|è}}T}x}¤}Ü~~„l€Ä|‚Ȃ샃,ƒXƒpƒƒÀ„8„t„´„ô…D…”…¨††(†œ‡ ‡ˆˆœ‰@‰¼ŠŠ`ŠxŠ˜ЏŠØŠü‹‹t‹ÔŒŒTŒ˜ŒØ ` ÔŽŽHŽˆŽäD„ÄLà‘,‘x‘Ø’8’¬“ “¼”X”˜”Ø•P•È––l–Ä— —¸˜T˜Ô™L™ˆ™Äš(ššØ› ›”œœlœÈ |Ôüž$žXžŒž°žÔŸ<ŸŒŸø L ¨¡¡ø¢T¢ ¢è££d£¨£Ì£à¤¤,¤P¤€¤´¤ô¥0¥t¥¼¦¦h¦”¦À¦ø§0§˜§ü¨H¨l¨¤¨Ø©©8©d©x©¸©ä©ôª ª˜««8«h«¸«ü¬<¬¤­ ­t­Ü®(®€®Ä¯¯`¯¸°°T°Œ°Ä±8±¬²P²ô³T³°³ø´@´Àµ@µä¶Œ¶Ü·,·Œ·ð¸\¸Ì¹<¹¬ºPºÀºä»»$»D»d¼¼P¼d¼¨¼ð½½@½´¾(¾ ¿¿x¿¬¿È¿üÀÀ$À8À\ÀxÀ ÀÄÀàÁÁ<Á˜ÁÔÁðÂÂdÂx”ÂÄÃPÄÅŘÆlÇDÇìȼÉŒÊHÊdʀʜʸʸʸʸʸʸʸʸʸÊØÊøËË8ËXËx˘˸ËØËøÌÌ8ÌXÌx̸̘ÌàÍÍ4Í`͈Í´ÍàÎÎ0ÎX΄ΰÎØÏÏ0ÏXÏ|ϨÏÔÏøÐ ÐLÐxМÐÄÐðÑÑDÑlјÑÄÑìÒÒLÒ|Ò¬ÒÜÓ Ó<ÓpÓ¤ÓØÔ Ô<ÔlÔœÔÌÔüÕ ÕHÕtÕ ÕÔÖÖ,Ö\ÖˆÖ´Öè××@×tפ×ÔØØDØtØ´ØèÙÙXٌټÙüÚDÚˆÚàÛÛ$Û@Û\ÛxÛ”Û°ÛÌÛèÜÜ Ü<ÜXÜtÜܨÜÀÜÜÜøÝÝ0Ý\ÝxݤÝÀÝÜÞÞ$ÞDÞxÞ¬Þøßüà,àpà´àôá4á€á¼áèââ0âHâ`âxâ¬âØãã(ãtã¨ãüäxå$æ,æ<æ´æÐæàçŒè8éÔëhí8ïð`ðÔòpòÀòüódô¬õ4õØö öLö„öÐ÷ ÷T÷˜÷ðúÈû|ü,ü¬ý þþ€ÿDÿÌ`ð| Ðøxð(´° @  Œ < Œ (`œPü@d<¨À¬ ˆ,|`À `À XÀ ´!l"@##ì%à&È'ˆ(h(Ì*X+ü,Ð-Œ.d/ /à0D0Ü1 1T2833|3¨3ì4,4X4¬55˜66¨7|809@9°:4:Œ:Ø;(;´<$<Ä=0=ˆ=Ì>0>Œ?,?Ü@T@ðA0AˆB$BüD8E FPGLHüKŒLhM„NPOxPLQ„RtSLT|UUèVVPV„V´WWW8WTW¨WøXdXØY„YèZdZÔ[<\H]8]œ^0^ü_h` `¼a,aÔbtcc„d,dèehf fÔgLhhÜiiØj\kk\kÐlhl¸mXmèn`nŒn¸nàoo@o¤oÈoìp0p˜p¼pèqq8qxqÀqärrXrœràs sds¤sìt0t|u,uœvv|vôwPwÄxTxÐypzzŒz¸zà{{P{ˆ{Ø| |@|¨}}Œ}¤~~D~l~~Ð~øl¼Ðà€ €`€€€œ€Ì€ü(Xˆ°Øƒ0„œ…H†† ‡4ˆ0‰(ЬŒD°LÄ’Œ““ô•(–˜—L˜\™tšä›hœ@Hž´ ¡¤¢ˆ£¼¤è¦p§X¨¼©8©Àª¤«`¬t­­Ø¯0°8±¤³,³Ìµ4¶ä¸„¹PºŒ»¤¼À¾8¿ŒÀÀèÁ˜ÃÄèÆœÇÀÈØÊË4Ì\ÍHÎLÏhЄÑPÒÓÓ°ÔœÕÀÖpטØÔÙðÛlܰÝp݈ÝÜÝìÞŒßDßàà”áˆâxãŒä€åtætçpè¸éØëPìí@îï4ïôñ òótô õ$õàöøøùˆú,û(ûôýþÿTè ŒôÀd, L Ä P 4 ð ¤ ¸œ8,øtLüh,È€(ðŒˆp\øÀÈ À!„"H##$l% %ä'((0))œ*ì+è, ,¸.<.T.l.€.Ð.à.ð/// /0/@/P/`/p00´1D2(33ø44(4H4h4€4˜4°4È4à4ø55(5@5X5p5ˆ5 5¸5Ð5è66606H6`6x66¨6À6Ø6ð77„88X8°9\:(:œ;;„;ø<”=0=¨> >¤?4?€?Ì@ìAÔBBdBBðCC|CÄCÔDHDXDpDØEEDE EüF8FtFÜGDGŒGÔHHH¼IIlI|J0J€JÐJàKˆKÌLLœMPM¨NNPN NüOXOœOàP0P„Q(QÌRLRÌS˜TdU U´UÄUÔVDV´W\XX€XüYdYÔZ@Z°[([¬\(\¬] ]¬]ü^h^ì_„_ä`\`ôaŒb bŒc<cìdtdüeˆff€fìgLg¬gèh$h”iihiÌj4jœjØkkpkØldlømdmÐnlooxoàp¬qLqdq|q”q¬r@r¨ssØt t tuDv@v`wwdx`ylz${{à|t}H~4€<¬‚¸ƒà…†D‡€‰а‹¸Ž€¤‘’Œ“è•l—$˜8™hšÐœ ÀŸ ¬¢l£€¤¬¦§¨T©Ôª «´¬ø®,¯±<²L³”µ¶l¸$º¼(½„¿Àä€ôÅÆÀÈ8ÉlÊÜÌ„ÍLÎDÏ ϸЀÑÒÒìÓøÕÖ֨׀ؤÙ„Ú<Û(ÜHÝÞ(ßxàôâã0ä|ææ¬çlètééÜêäëxì@íDî<ï`ðÈñ€òpóHô`õHöD÷„øPùXú˜ûü¸ý¸þ¤ÿ¬¨äXô„LÔ˜” Œ Ì  h”´È L¬ølÀ€ X"D$|&x(P*`,œ-ä/p1,2X3°4ì6„7°9:¸;ä=L>H?t@àB8C¨ElGTIJœLpNDO¼QtS\TTàUtVLVÜW¨X˜YYÐZ´[H\\ô^^à`axcdleðg´h¬iØkDl|mHnHoˆpqÄrÔsäu$v¤w„x¼yØ{ | }ÜT‚ ƒ$„d…Ї$ˆl‰ð‹¸ŒøŽ€$‘¨“”¬–„—l˜€™Ôšœ›|œHpžxŸ  ø¢@£ð¥$¦˜¨@©ª«8¬`­,®8¯h°¼²²Ì³Øµ¶0¶ð·è¹º4»ˆ½½ø¿À\Á¬ÃDÄ`żÇDÈ ÉäË<ÌØÎÏdÑÒhÓ”ÔøÖ˜×(×äØŒÙLÚLÚàÛ¨ܬÝ€Þ(ßߤà°áPâ ã$ãàäüåÌæØèé,êŒë¼íîˆï ðìòxóÐôÌö÷„øøàùÔúû€üDýpþTÿP Œ \ ` œ ¬ @  $ À ¤ P \ ,    € d ˜ ì œ Œ   | À d 4 D  Ô Ü  Ð Ì ø !ø "ð $ %ˆ &$ &ä 'Ð (œ )L *D +„ , ,Ø -Ð .Œ /X 0` 1œ 2, 2ü 4 5 60 7˜ 8, 8ð 9ˆ :x ;$ < =( > ? @ A$ B” CP D E0 EÌ F¤ G¸ HŒ IL JH K€ L LØ MÐ N¨ O¼ Q QÔ Rà T$ U8 V@ W Y Y¸ Zœ [´ \Ø ^ ^à _ô a@ b< cX dˆ e¬ f„ gl hœ i\ j` k” lT mH nx o0 p qP rH st tä uØ w xp y z| {¬ } }ô  €  ‚H ƒ” „¸ †< ˆ ‰Ü ‹¬ Œ¼ Ž   à ‘ì “< ”¸ – —¬ ˜¸ ™Ü ›H œ 8 žx Ÿ¼  ° ¡ä £H ¤p ¥Ì §d ¨$ © ©ô «( «ð ¬ð ® ®À ¯” °@ ±H ² ²ð ´ ´˜ µ` ¶L · ·È ¸Ð º º¬ »ˆ ¼” ½l ½ü ¾Ø ¿à ÀÀ ÁÔ Ã0 Ä Å@ Æ< Ç Èð Êl ËÜ Í| ÏD Ñ Ò Ó4 Ôœ ÕÔ ×, ؘ Ùø Û” ÝT ß< á â ãH ä¬ å¨ æè èX é êŒ ë¼ í( î` ï< ð\ ñ¤ òl ó8 ô ôŒ õH õÜ öÌ ÷Ì øä ùì û$ üˆ ýà þˆ ÿl T  ¨ p t L D P H | Ü T ä ¸ À | t ˜ P @ p T x à | L X ( 0 x  ä €  Ü Ü !¼ "Ô $, $¸ %ˆ &| 't („ )ˆ *d +„ ,È -ä / 0° 2` 4 4ø 6 7X 8@ 9\ :À ;ä <Ø > ?t @ˆ AÐ CX Dh EÌ GL H¸ J K” Mh NX Ox Px QÌ S, T  V W° Yt [4 \è ^H _ø aä bè d$ e¤ fÐ hH id j´ lH m< n€ oø qP rÐ t€ ut v¬ x y8 zT {¸ }T ~p Ì P ‚L ƒ„ „ô …Ø ‡ ˆ` ‰@ ŠD ‹$ ŒX ” Žà 8 ‘Œ “ ”´ –` —ü ™L šà œ° À Ÿ    ¡Œ ¢´ ¤ ¥$ ¦` §Ð ¨ü ªD «œ ¬è ®” ¯Ü ±` ³ ³ð µ ¶@ ·H ¸D ¹T º¬ »” ¼¼ ¾ ¿D ÀT Á¤ Ã0 Ä0 Ål Æà ÇÄ ÈÜ Ê< Ë` Ì( Í ÎT Ïp ÐÄ ÒX Óp ÔÄ ÖT ר Øð Ú| Ü0 Ý@ Þˆ à á@ â° äp å åð æ¬ ç\ è$ é( éÀ ê˜ ëœ ìl í î ï$ ð, ñl òð óä õ öt ÷ü ù´ ú„ û  üÐ þ ÿ„ ø ˜ ,   ` t ¨ ô \ è ˜ „ ˆ È Ä à 0   l D \ ¨ | ˆ Ð Ð " #x $ $Ð %t &L '` '´ (H (h (¸ ) )œ * *˜ + +Ä ,0 ,Ì -d -ð / /´ 0T 0Ä 1 1d 1ü 2L 2Ð 3$ 3œ 48 4 5 5” 6 6 6¬ 7 7” 8 8¬ 9H 9È :\ :| :è ;D <4 = =Ì >¨ ?t @ A B, C D DÔ E„ F, Fø GÐ H` I I¸ J€ KL L L  M8 N N¼ Op P` Q0 Qø RÀ S” T< Tð V$ W X0 Y” Z¬ [Œ \ä ]ô _l `t a˜ b` c( d e f gD h i iÄ jÀ kØ l¬ m˜ n° ot pl q´ s( tø v wD x¨ zp {Ø } ~ | , ƒ „Ü …Ø ‡| ‰` Šð ŒT P  Ü ’¨ “Ì •h –Œ —¤ ˜¸ ™° šÀ œD ¤ ž¤ Ÿ°  ü ¢x £4 ¤P ¥X ¦\ §¤ ¨” ©¼ « «È ­$ ®D ¯@ ° ± ²4 ³ ´< ´Ø µì ¶è ¸` ¹0 º » ¼ ½l ¾¨ ¿  Á Á° ¬ Ãà Äô Æ Æü Ǹ È| ÉŒ ÊX ËX ̘ ÍX Î Ï$ Ð` Ѩ Òœ Ó´ ÔØ Ö ×@ Ød Ù¤ Úà ÛŒ Ü  Ý„ Þ ÞÌ ß´ àô áì ã ä äì å¼ æÌ èL éô ë0 ì´ î ïH ðü ò ó4 ôH õt ÷ ø8 ù\ úˆ ü( ýt ÿ( | d ¤ ¨ Ì P $ h È ´ ø  P À Ð ¨   ( h   < t   ( !ð # $„ &\ '| (À )ô +` ,x -\ .| 0 1œ 2¸ 48 5D 6| 7˜ 8 9ä ;( 54&#"232673##"'#"&546"32654'.16.(3B6B‡+L)).J"þë&/)/E('þ0_4:'wV1E‡V0a!=f "s83:r)3G:^”þ«Li0!/hm $x&ýOr ]§K4_—¯I"U *ÿóî¤-8B654&'533267#"'#"&54?&54632>54&#"327&ëFU*I0:SA[0¯…¤ #&54632e ¯©#.w0ÿO0¤.54>7$8G6%%2M2! ,6226,±-P[€EHUO&$:]Y]†_<"ÿO¤'>54.')8G6%%2M2! ,62,B<¤-P[€EHUO&#<]Xy¢V/E °¤I46='5#"54>7'.5463254&5462>2#".'#"&Ö&1 $%Y' R23,!V %E"D'%2.R- #7 "`  WZ'7 2Xú 533##5#5ùBÛÛBÛÜÜBÜÜB8ÿsÃf0#"&54632'654Ž  !".>2 R 3&-T82'Â3#'öö?Fÿõµd 72#"&546}!" !d" "ÿ÷ÿò¤#äDå¤ýN²ÿòܤ".5467632" 4&ú4R0 5+7Ob||eƒB0JaX+Xž*4Àš˜À˜þ½þÅ<¥oФ"57!5>54·6´$;þì8'Q[ý¨$/Å/Û¤>323267!57654&#" !)I.Nk€¨ï"! 7þz²‚N?4?Ý"A+"fKq†°+‰ ½Šz?N9I+ÿò°¤,7232654&'>54&#"'>32#"&546Q["7L6/M"16=1/GYREW*4#QKj ؤ %##5!53#ØfMþç:,Nðç@§§@½þCWþ© ÿò¶°(%4.#"54?3267+#"&5432326e/CS= mÑ &Ä*’Ž%9KE#8B+Y;PÂ5R- í Y Uuq;\8$ !%>c"ÿòÔ¬ "&547>7>32"32654&e{§7iUvž/0!VfumD/LB58G¡„Îw&#™qq`g‚Œ<;t…YR^gÿøÁ– ##"'7ÁÔAÆÙ)+ ;–ýrT3“8ÿò½¤$2#"&5467.54632'32654&'>54&#""ZAkZUk1QO-lRKa<\<,$F91=*B <3/=:sC[:M\\I3E=ED1DZP>3H,#F0AP=1*? 44=8+*Jÿêˤ#'>7#"&546322>=4#";rŸJLQcwYa|WN3dg01„, Cšz9p[e‡ž|e±9%"$ %'þ!68YiQÿõÀË 2#"&5462#"&546ˆ!" !!" !Ë" "þ™" "PÿsÛË0#"&4632'6542#"&546¦ !".<4 R,!" !23&-T82Í" "ÿö%5% þüþ\¤ æBæH¿¿x‚!5!5þøþ‚BBÈBBÿö5-5¤þ\ü H¿¿HæBDÿøž¤*2#6?654&#"#"462#"&546æLl""%2%?-%:&0]L ¤UF$K/-@ZMA@UG2F& 0|Sý¿! tÿò)¤2>"327#"&54632#"&'#"&546327332654&4&#"326â~œ¤€Yk I[5›ÔÕ˜‹½nJ$36G%3qS EA'1P©)_ 0H…»‡‚¨0!Ä’Ì©|a(!HA/Z¢&þ .zKp ïoQ'.–¢%#5>54/!3#5>73%3Âÿ()þú.DÆ%).Ðùþ8çt+`u)5mëýÈ8ìQ–*5%#!5>54&'5! 2>54'&#32654&+"Q3dEþ²>"!?4="þÅ-B:T0ƒ_FMZV,´:9# 8¼7ª!3 ;´ :+\#øI?;CFÿòy¤46323273#&#"327#"&À@p !  7 m-LQ.vi.ŽU”¸EœÃ!!⺢ˆWAe=Bº­–%#!5>54&'5!24.#"3 ­6T‹Xþä9;[W9m,FrI>N-V\C, 6¼7)AYV6+OQ:%þ U–)7;2673!5>54&'5!#.+"32673#.+É!Hk\%-ýä7 7 6U‡ š@%  &>šP3Q©!5¼5!C& Þ'8è>" "–$%#.+!5>54&'5!#.+"32673ß (=‘!:þè9 7 6Uˆ ‘<) ç=#Ú6!#>±5!C& Þ#< ÿòŤ."326=4&'5!#".5463232673#.ˆ9X6" z6O9ÿ,@-ZbJ1Á–:q  `|)@VO(‹¡#¢8,Ë,0IzN™Æ!ÓN]¾–+!54&'5!!5>=!!5>54&'5!Ñ/:: 8þê:þÑ 8þê:::gÂ66þD5 "?ÃÎ5 "?±66;–74&'5!!5>s!@)?#$>þ×?"m¼7 7þD7!  ÿòr–723254&'5!#"&546; & ==XQ+8l BÏ77þŽ^g( "Ó–35!!563654&/!5>54&'5!7654&'"431¾éD2'þÏ *I9j :þæ; :=±Nƒ1¼úI"`8i»7#>±5!7Í¡H  V–%2>73!5>54&'5!3b2L* 0ýæ7 7;"7'%#®!5¼5!!5þ' _–$ ##5>54&'533!5>5¢ÿû$:ë>#!>ÆçÝÇ8 7þè; =ýÃ&þmL1/M–7þù 5þD5!#> ÿõÖ##5>5.#534&'53à þF$:ë>## «%;ëƒ3+ýò&þxL1/M¹#þQL/"ÿò°¤ !"&546324.#"32>c‡º¸·¹G+:71N- ,W<=Y-¿š—ÂÁœ—¾VHpD,*?VO)3bb<54&'5!2%3254&#" #:dB'#;þè98-TS2þ¬"®`eá06'¶7!!?±6&J:þü“MI"ÿN½¤-##"/.546 4&#"32>°%306!=€V ói/dƒ¸¸rs_2N. (BE&1M. K7`A6  OGz7" ˆ˜Ã•Œ§)?TM(XB)@UP“–%/2#!5>54&'5>54&#"%+NS2 Î%¡î8 :þë88»yqY^–#J5+ý4Å6 #>±5þÁMi"Ô[V?Q–#"#7!#.+!5>5þ6T949U6">þÜ> l.RªªS-þ7 !@ÿòÁ–%73267654&'53#"&54&'5!ÎKa8Z$:è> 5iM€{;<édg+$+]K1,Lþû;XO*}‚876ÿõ¹–#.'5!#654&'5¹%Þö'& .)—“ )– ;ýÏ%B%[þ®o0ÿõ¤–,# #.'53'.'5!654&'5¤(S:? šÁ''õ& k!"+ M„}&–'ߦ§þYF+ þˆR<" Fþ«S- À–4!563654/#5>?'.'5!7654&'5¸15/’À()þ×23_w4 ,é'*@mF=2.0U*q()–!:¶þî+LŒ”A OÁ g4 v;Š2 ¿–&!5>='.'5!#7654&'5¿'8+”$CþÎD!ƒ24" .”'–-BâÂ9!A®ÀI?Þâ U–%2>73!5#"#7!’. ý̵Ý3B! þP& ) °a,$!«ýŸXÿd+– #3#"3+ÓÓZ1ƒ2ý`4ÿ÷ÿò¤3# CåD¤ýN"ÿdõ– 3254+53#"Z-1VÓÓƒ, 4üÎ)¾–#3#\Dµ<µD)mþ“!ÿƒôÿµ!5!ôþ ô}2ûò¦#'&5432ò(š"ûa%ÿöºÌ+874>754#"#"&54632327#"&'#"&75327>%+GY/L*aGR> 'V<.;úZH%"' a&>''=S/AOQÃ!"'I, - ÿöÔ«$>32#"&54&#"576732654&#"™N.Ke‡cDE;'<©þÎ%0}\k’)þ—ü\S[m.ÿöœÌ!74632#"/.#"3267#"&ƒX?[" =KWD+>$ '&>!SkÕoˆ=*.aMVm*4 4 }ÿöë«*'5#"&5463254&#"567327#26=4&#"X0PSfzV63[8ð&3>(9DL @Cw`j•+œýÉ#+æ(5#53>32U 9{z =þü6RRP^-;DYt þÆ87: py#ÿ&ÖÌ/=L7467.54632;##"'"'#"&5467.32654&#"4.#"326I>2+aF((MS]? (N7B7TyGf-5JPBUh8Dey,#'9-#(6 :>/D_ '+)EV*:/8-D9(7'(% !(6+0=)2,HY1 ç«*#5>54&#"5767>32#5>=4#",Ø+ D/#D,{)Ô+K3Wñ45× þÐ-'ŸÇ4 3Æjý«"57#5>=4&2#"&46> ›1í40Š7þ66è!!*ÿºÿ&«#0567#"&54632326542#"&46M-PLVS)52!Šþ7jp<>M{<!*ù«457677654&'53#"#53254./#5>54&#"W&‰Ì%S>™5!Ú Œê6o þ\z  9:Â&! »¸ 'â$«567#5>54&#"c<0ì/ oý«)(Ý#Ì?567>32632#5>=4&#"#5>=4#"#5>=4&#"HD>0=ü/ *Ùiþæ)ý$åÌ*567>32#5>=4#"#5>=4&#"J@3;#7?%Ð&I*$&Ô&ŽO0!OGå%"/Ña"þç+ø%ÿöÖÌ 2"&54632654&#"ú`|€¼}{!N?8@P?5AÌ€bhŒ‡egƒ¹k–`Ug‚Vÿ'ÖÌ,567632#"&'#5>54&#"32654&#" ?Q@PI^yY + 8ò,E#6CC8#C‰ MOx]m”/'Ô#<ö,gSWi,ÿ'èÍ$73#5>=#"&546323276=4#"h6 )ì5$DYFZ^6½>12$]@J© ýª  *¼Jx_l”Ü+PC "ÎdgOÌ#"&#"#5>=4&#"567>32(,2"3ð0PD%4j#:á+ &ú!\5)3ÿö\Ë1273#.#"#"&#"#5332654/.54632 2+"++l-'S:T   (&-4:@5M;!:¸ ˆC8&+@7%4L œ '!-!$B*6E ÿöC#327#"5#&54>7672ÿe 0HY5 2 þâ/+# L- 6+ t ÿößÂ#%'5#"&=4&'533276=4&'533ßN;++<7B$’*.*/ž"2S++G;ü#þº-"&ë%þ©#ÿòÝÂ#"'.'53654'5Ý€ x#Ä fc/Â2þ¿2/N$ ÿÿò¶Â/.'537654&'53"/#"'.'53_!Ë#TZ{ Š[p‡´c6P) .àÞ* þ¦1+ìð',V&þûßÂ2>54'533#5>54/3#5>?'.+53ø  (ž3S€#É[O(‘r^  Ï+.0)*xÄ" Œ{ ¥#Eÿ&ÛÂ)2654/&'53654#53#"&54632—>,u 'Î  sa0‡ š(O2 *2†|Oþ ý þhl\!¢Â%2>7!5#"#7!'. þ‡ Š- [þó "#‡•!7vþkdÿK^¨.=4&'>=4>7^XM#22#.7,4'&88&'4µ6T±4..4²,7  68¨>44>¨86 Cÿò…¤3CB²ýN‚ÿK|¨"25>=467.=4&'‚!*.#22#.7,4'&88&'4¨5%±4..4²,7  68¨>43?¨86 (ºö@23267#"&#"'>£2~#6"6#2~#6"6@D 0%D 0%ÿÿaÿ&ÌÕ 3#"5472#"&546 !54 l4Þ($*P : 5ÿvÀC"+7&5463273"&'3267#"'#7&#"©t],#/K& e ,@' &$;!1"Ps=K BeŒ|‡6þÝ ,89 ŠìC ]M6J ÿøê¤=H%#"&'#"&54632654'#53&54632"&'&#"3#32>322654&#"ê'D( =3*%2)lkjY8J,7-2 }yTA"2þe##3ˆ -2$##""* ¢-$!k5((4IB,]-##y+  %ÿê: Z&'7&547'76327'#"'"2654&b))b2`=BE8b0`''`0b9DA>`á?WWzUUl`;CE9b0`''`0b:CB=`2b))b§X?>YX@>XÿË–47#535'#53'.'537654&+533#3##5>5¾®®§_)*#óA vpÃ'5\’¦­­ 0ô2¶(L(­J*ÝÜ03¸(L(I5$%>Cÿò…¤33CBBBþìžþìFÿlª¤AM4654&#"+#"&5463232654.54632.54632#"4&#"326"$&/"‰YA38&OA:P"+(/6LL6B1 <(M>7ID‘&'…1)%&" ' *qJQ5C1;&9F:*$"*# =5:T03D2<(6D8*þÇ4w&2x( <n 2#"&54632#"&546BÚn((&ÿòÒ¤%12#&#"32673#"&54672 &546"32654&›"V^CHJB-8]+[ozJ‹ÅÆþâÈÉ’y«ªvu©¨FY[TS]'/L iUZoËÈÈ’È*²~{³³|zµŠ¤*4#"&54632327#"&'#"&54>754#"26=L =/i 0+('+$ 5&q   &`s ,&*ÀM*!È -7#"./7>7632#"./7>7632‡q O4A W (L³q O4A W (Là I-;Q ' 9^ I-;Q ' 9^l‚%5!5!ÔþJølÔBþêÿÿ'Â&ÿòÒ¤ (4@%".'##5>=4&'53232654#72#"&546"32654&õ )0 %¢% %±4?O9'%é+!$GÅÈÈÈvªªvs«§˜A c  ñ! 2*H O6]¨.+O¯Ë”ŒÇÈ‘É*´|{³²x€´ #BY!! 7þÉY69†W¤ 2#"&547"32654&ŒxST=:S+==*+>>¤S=323267#57654&#"2:I&.Vy %ýbQ+6 - -;/%D-U UkW2-F#¤%4&+5>54&#"'>32"5462326Ò?4+$?.-?5¬^dcn:9š:š:>86@\mbW6ý­5!üæ"?Ÿ?[_TFǵ6 2#"&546}!" !6" "4ÿ)73632#"'732654&#"b)# (.C:-'% ccA% '- 9ø¤#5>54#"57ø¿ %v&  7þ©Š0¤ 2#"&5463254&#"Ÿ@QXA?RU ,%G-$ '¤K;?UO<@Ok=QW9H(,!Ê -747'&5432#"'47'&5432#"í€K6  7( AfD À€K6  7( AfD *¢]A 6";XD ¢]A 6";XD%ÿòΤ #%##5#53#5# #5>54#"57Î7F´Ë/F‡³þ>1Åþ•¿ %v“9ZZ1 þþ³³ýN²þ‚  7þ©ÿòê¤3 # #5>54#"57>323267#57654&#"Xþ>1Åþ´¿ %v2:I&.Vy %ýbQ+6 ¤ýN²þ‚  7þ©  -;/%D-U UkW2-FÿòΤ 7%##5#53#5# 4&+5>54&#"'>32"5462326Î7F´Ë/F‡³þ>1Åþ„?5+$?/-?=Wo¦4%“9ZZ1 þþ³³ýN²þÖ,)%!3,0#'+#N:N2'%ÿ&xÔ(4>7332654&54632#"&2#"&546-8; %?-$;&0]ELl² ?-V>i;O?@UG2F& 0|SUY,! ÿÿÂz#jÃÔ$ÿÿÂz#i¾Ô$ÿÿÂv#e¾Ô$ÿÿÂF#{ÃÔ$ÿÿÂC#j¾Õ$ÿÿ“#y¹Ì$_–:=%.+;2673!57>=#3#5>7654&'5!#.+"32673%3ä$7‘1LQI+,þ-°@5Ç! õ )14ELWoG7ýöŸå7-î%0R¨!1˜5}!.ä 0)æ#>êF?ÿ)y¤7327#"'632#"'732654&#"'7.546323273#&#"-LQ.vi-U  (.C:-'% %}•À@p !  7 mRWAe=B4% '- YµˆœÃ!!⺢ÿÿ Uz#jŒÔ(ÿÿ Uz#iŒÔ(ÿÿ Uv#eŒÔ(ÿÿ UB#j‹Ô(ÿÿ;z#jÔ,ÿÿ=z#iÔ,ÿÿ Bv#eÔ,ÿÿ<C#jÕ,­–-#!5>=#5354&'5!24.#"3#3 ­6T‹Xþä9SS;[W9m*CwN’’>N-V\C, 6Î,Â7)AYV6'IT=)ã,íÿÿ ÿõÃF#{ÃÔ1ÿÿ"ÿò°y#jÄÓ2ÿÿ"ÿò°z#iÃÔ2ÿÿ"ÿò°v#eÃÔ2ÿÿ"ÿò°F#{ÃÔ2ÿÿ"ÿò°C#jÂÕ2&ñ 7'77''êÄ0ÄÄ0ÄÄ0ÄÄ0ýÄ0ÅÅ0ÄÅ0ÅÅ0"ÿ°°Þ!)7.5463273#"'# 32654 &#"—+¸XWH1X,¸‘[TO1×þÌObs;"B_9˜Â1k‚ D^:˜Á2tlþ54&'5!32%3254&#" #:dB(#;þè98<PxŒþ¬"®`g _06(47!!?±6#< bþü“MH ÿ÷Ô«3#"&546323254'&547654&#"#5>54>32¸hK+6@„ _0+'/‘&%I4N\9y#œRq) ‚Ê  vAJ:1ýÛ(r2LC$SE6?ÿÿ%ÿöº¦"j8Dÿÿ%ÿöº¦"i7Dÿÿ%ÿöº¢"e8Dÿÿ%ÿöºr"{6Dÿÿ%ÿöºk"j9ýDÿÿ%ÿöºÏ"y:D&ÿöxÌ6CJ0"&54632>32!3267#"'#"&546?54&#"'.=2673.#"(\DA4"3"LLþú  3+A$ '_?Q03@%3AEPV (– [:'8J=¦%(+(ˆ .>-VaJC,5UJI*=1-C!$?1%þ¾54!2-$3$éA;:ÿ)œÌ674632#"/.#"3267632#"'732654&#"'7.‚Y?[# =KWD+>$'V= (.C:-'$ &L[Ôo‰=*.aMVm*4 OI7% '- [ yÿÿÿö¨¦"j8Hÿÿÿö¨¦"i7Hÿÿÿö¨¢"e8Hÿÿÿö¨m"j7ÿHÿÿÿøý¦"jåóÿÿ#¦"iæóÿÿÿð'¢"eåóÿÿz'_'ÿ¼óÿö×®(#"&54632.''7&'7732654&#"×}c]}zZ$4& *,{!y>G*1A&_![Šþ N@9?P@5A~©…deˆ#7K-A@, 20…Çj˜aVfVÿÿår"{TQÿÿÿöÖ¦"jTRÿÿÿöÖ¦"iTRÿÿÿöÖ¢"eTRÿÿÿöÖq"{TÿRÿÿÿöÖk"jSýRÿö%!5!'2#"&5462#"&546þøü!" !!" !ÜBæ" "þa" "ÿÖ'"7&5463273#"'#3264&#"}`{a,09'Ab€_/.A% ¡#/8?ÞŸ%+5ANyfƒm}FzhŒ{ÞþÎ*b®Æ0$VFfÿÿ ÿöߦ"j?Xÿÿ ÿöߦ"iTXÿÿ ÿöߢ"eGXÿÿ ÿößm"j@ÿXÿÿÿ&Û¦"iT\ÿ'Ö«,567632#"&'#5>54&#"32654&#" ]4AOI^yY + 8ò, E#6CC8#CoþÖNx]m”/'ÀþÞö,gSWi,ÿÿÿ&Ûq"jd\ÿÿÂ#h¾½$ÿÿ%ÿöº>"h:åDÿÿÂ}#w¾å$ÿÿ%ÿöº¥"w: Dÿ[¢*-#"&547#5>54/!3#5>73#323ÿ5;*6Í()þú.DÆ%).Ðù",þçtIL, .++`u)5mëýÈ8#"n%ÿ[¼Ì:G2327327#"&547&'#"&54>754#"#"&5465327>àR> +5;*6V<.;+GY/L*a†ZH%"' ÌOQÃ!$L, .++I''=S/Aþ¯‘!>, - ÿÿÿòyz#iãÔ&ÿÿÿöœ¦"iLFÿÿÿòyv#eÖÔ&ÿÿÿöœ¢"eGFÿÿÿòyC#xÈÕ&ÿÿÿöœn"x6Fÿÿÿòyv#fÄÔ&ÿÿÿöœ¢"fLFÿÿ­w#fÃÕ'ÿöW«*>'5#"&5463254&#"567327#26=4&#"#"&54632'654X0PSfzV63[8ð&3>(9DLe  !".>2 R @Cw`j•+œýÉ#+æ((9DL>-" x"þc#4@Cw`j•+þÅæ("hDåHÿÿ Ul#w~Ô(ÿÿÿö¨¥"wD Hÿÿ UC#xŒÕ(ÿÿÿö¨n"x8H ÿ[e–9#"&547!5>54&'5!#.+"32673#.+;2673#32Q5;*6þ*7 7 6U‡ š@%  &>š!Hk\%-,IL, .+!5¼5!C& Þ'8è>"÷3Q©#"ÿ[¨Ì&,3267327#"&547#"&54632%3.#"a010G$6."+6;*5Weu\LT þÎÌ *.Z?[-09*G'1$L, .* xho‡[\ A2ÿÿ Uv#fŠÔ(ÿÿÿö¨£"f:Hÿÿ ÿòÅu#eÖÓ*ÿÿÿ&Ö¢"eHJÿÿ ÿòÅk#wÃÓ*ÿÿÿ&Ö™"wTJÿÿ ÿòÅC#xÉÕ*ÿÿÿ&Ök"xDýJ þçŤ.B%4&'5!#".5463232673#.#"3265#"&54632'6549ÿ,@-ZbJ1Á–:q  `W9X6" z6O¥   !".>2 R÷8,Ë,0IzN™Æ!ÓN])@VO(‹¡#ã 3&-T82ÿ&Öà/=L`7467.54632;##"'"'#"&5467.32654&#"4.#"3267632#"&5467I>2+aF((MS]? (N7B7TyGf-5JPBUh8Dey,#'9-#(`   !".>2 R6 :>/D_ '+)EV*:/8-D9(7'(% !(6+0=)2,HY1v 3&-T82ÿÿ¾‡#eÂå+ÿÿ çz#eRØK¾–+/!5>=!!5>54&'5!!54&'5!!5f 8þê:þÑ 8þê:::/::þk/)þD5 "?ÃÎ5 "?±66==6š^^ «24#"#5>5#5354&#"57673#>32#5>5‡K3,Ø+pp D/ss#D,{)Ô+,j"ñ45†6 †6t-'ŸÇ4 3ÿÿK>#{Ì,ÿÿÿä.f"{ãôóÿÿ B#h½,ÿÿÿí$>"hâåóÿÿ;}#wå,ÿÿÿü¥"wâ óÿ[–#!327#"&547#5>54&'5!; $+5;*6ø?"!@)?#$>.$L, .+ 8¼7 7þD7!ÿ[«#."57#"327#"&547#5>=4&2#"&46> ›1!++5;*6ƒ40Š7þ6*$L, .+6è!!*ÿÿ;C#xÿÿÕ,ýÌ"57#5>=4&> ›1í4Š7þ66è!ÿÿÿò¿–#-M,ÿÿÿ&Ø«#MLÿÿ ÿò~‡#e<å-ÿÿÿºÿ&2¯&îeð ÿÿ"þìÓ–#[Òüâ.ÿÿþìù«#[XüâNêÌ8#"&#"#'&+#5>54&'533267>32Ó) %"26"Š}" ê66êC)0$˜+51 9b È '' ƒHF&ÿÿ V‹#i%å/ÿÿ&~#iÿéØOÿÿ þìV–#[püâ/ÿÿþì«#[ÿâüâO V¤/%2>73!5>54&'5!3#"&54632'654b2L* 0ýæ7 7;"7¯  !".>2 R'%#®!5¼5!!5þ' 3&-T82\«(567#5>54&#"#"&54632'654c<0ì/    !".>2 Roý«)(Ý#3 3&-T82ÿÿ V–'Yç/ÿÿŸ«#yê(O V–#%2>73!5>=5754&'5!73b2L* 0ýæ7 WW 7;"››7'%#®!5§212ä5!!5©Y1Yÿ«54&#"#5677#5>=5b c<MM0ì/NjÊ#þú5,5þÝ)(ç6,ÿÿ ÿõÃ|#iÄÖ1ÿÿå§"iTQÿÿ þÿÖ#[Ãüõ1ÿÿÿåÌ#[SüöQÿÿ ÿõÃt#fÂÒ1ÿÿå£"fTQÿÿÿôá"Q1[° ÿ&Ö.26=#5>5.#534&'53#"&54632þb$:ë>## «%;ë 4N)52¸>MCþxL1/M¹#þQL/3+ýýtf<ÿ&¨Ì02654#"#5>=4&#"567>32#"&54632$I*$&Ô&J@3;#7?VS)52¸>Maa"þç+ø%O0!OGþÊjp<ÿÿ"ÿò°#h½2ÿÿÿöÖ>"hTåRÿÿ"ÿò°}#wÂå2ÿÿÿöÖ¥"wT Rÿÿ"ÿò°z#|ëÔ2ÿÿÿöÖ¨"|TRÿúuœ0=23!#.+"32673#.+;7>73!"#"&54>4&#"326V t+F =b3*hF9'4Š|/A&,þ¢‹ ›(?URƒ/4[ca\5/œC&ì%=ê;(õ8G¨³•O|K1ýçŒ72 “Ž˜/ÿö²Ì!+23267#"&'#"&54632>32%"3254&354&#"¤ 5'$;# 'R:.;C3[sqY.D&:)=^þC-@xg;‡ -"P*?J)(0QD,33,€dg‹"**"QfšIWÿ·px|*7ÿÿ“‹#i*å5ÿÿO§"iUÿÿþì“–#[ªüâ5ÿÿþìOÌ#[ÿÔüâUÿÿ“v#fªÔ5ÿÿO¢"fUÿÿ*ÿòë|#ipÖ6ÿÿ3ÿön¨"i1Vÿÿ*ÿòëv#eqÔ6ÿÿ%ÿö\£"eV*ÿ)ë¤G.#"+632#"'732654&#"'7.#"#'332654.546323273¼c<.:DOcXuU  (.C:-'$ $!O %bC7DB^]BgF*b ÏXT4)(H,5g>Mi3% '- XÔ[V?2/I47V9L_""Õ3ÿ)\ËJ273#.#"+632#"'732654&#"'7.#"#5332654/.54632 2+"++l-'S8  (.C:-'% ' 6   (&-4:@5M;!:¸ ˆC8&+@7%4L7% '- ] œ '!-!$B*6Eÿÿ*ÿòëw#fpÕ6ÿÿ'ÿö^¤"fVÿ)Q–0!632#"'732654&#"'7#5>5#"#7!#.+B (.C:-'% )> 6T949U6">A% '- c!@ô.RªªS-þ7  ÿ)C3632#"'732654&#"'7&5#&54>76723#327ª (.C:-'% &B5 2ee , 7% '- \m- 6+ t þâ/+# FÿÿQx#fŠÖ7 ÿö,¤00#"&546323#327#"5#&54>76723'654÷   !".R%e 0HY5 2R< 3&M< þâ/+# L- 6+ t82Q–#53#"#7!#.+3#!5>5þrr6T949U6rr">þÜ> :-.RªªS-þû-Í7 !@ ÿöC##535#&54>76723#3#327#"5F995 2eeee 0HY-b 6+ t b-/+# LÿÿÿòÁ>#{ÂÌ8ÿÿ ÿößf"{/ôXÿÿÿòÁ#hÁ½8ÿÿ ÿöß>"h.åXÿÿÿòÁ}#wÁå8ÿÿ ÿöߥ"w. XÿÿÿòÁ§#yÁà8ÿÿ ÿößÏ"yBXÿÿÿòÁ|#|ëÖ8ÿÿ ÿöߨ"|TXÿ[Á–473267654&'53327#"&547#"&54&'5!ÎKa8Z$:è> &;<+6;*34,~{;<édg+$+]K1,Lþû[[12,$L, -) ~876 ÿ[ôÂ0%327#"&5475#"&=4&'533276=4&'53;ß L+5;*++<7B$’*.*/ž"$7+$L, i++G;ü#þº-"&ë%þ©#ÿÿÿõ¤w#e.Õ:ÿÿÿò¶¤#eÑZÿÿ¿w#eÖÕ<ÿÿÿ&Û£"eW\ÿÿ¿C#jÒÕ<ÿÿ U{#i‹Õ=ÿÿ¢§"i8]ÿÿ UC#x‹Õ=ÿÿ¢k"x7ý]ÿÿ Uv#fŒÔ=ÿÿ¢¢"f8]«".#"!5>5#53>32U 8 =þü6 P^-;DYþ287: py#ÿÿÿöÔ«,5354&#"57673#>32#"&532654&#"F C1N.Ke‡cDE;'<" x"˜%0}\k’)ÙÍü\S[m.ÿ˜Q–+8C%#!5>54&+"#"&543! 2>54'&#32654&+"Q3dEþ²>"9 $3<’ÿ4="þÅ-B:T0ƒ_FMZV,´:9# 8¼3#25)ª!3 ;´ :+\#øI?;CFÿÿ'`®ÿöÿöÔ– +32654&#"7.+>32#"&54!™:'>DE;'<Ý  †N.Ke‡c#576732#!532654&á%=9 #&66!þ(ee:KqA( 3gFþ¾/#gÄ,> þÚ!BjHH þÓ&51<=%,-(YÿïÿöÔ«">32#"&54&+5632654&#"”N.Ke‡cDE;'<«þÎ%0}\k’)Iq~þ©ü\S[m.ÿòy¤"&#"#'332654.#"'>32*@p !  7 m-LQ.vi.ŽU”¸À!!⺢ˆWAe=Bº™œÃÿò&6*2327432#"&#"#&#"327#"&546k?r  ‚)52#7 m-LQ.vi.ŽU”¸À¤!!’<3$ûº¢ˆWAe=Bº™œÃÿö*:174632632#"&#"#"/.#"3267#"&ƒX1& x)52#" =KWD+>$ '&>!SkÕoˆ<3$3.aMVm*4 4 }ÿÿ­–’ÿœ­–34.#"3 #!5>54&+"#"&54;2@,FrI>m6T‹Xþä9/ $3<’ð[W9G+OQ:%þ)-V\C, 6¼1#25))AYV'`®&74>;#"#7!"3!"&7327&#"'<{VF¨~<%&;þºq‚{\L&##3J&¼!<>%s':þ9<&h^IX%-/ÿö÷– .726=4&#""#7!"327'5#"&546325û%4>(9DL ƒ.!“0PSfzV63**æ(=#"#5 $Aš ‡U6 7 7ýä-%\k4, š>& Ï9&Þ &C!5þD5!©Q3 ÷">èÿÿ%ÿò°¤Eÿñä¾.3#"327#"&54>7&546323273#&#"ž^g4K& =,gEJ‹iŠ$/!‡oR1iˆ,8NM!00614a ‡mX'?$ !…OdÌ¥-7ÿ½ÿ4"–+23254&'5!#.+"32673#.+#"&546 & 7 6Uˆ ‘<)  (=‘XQ+8R B5!C& Þ#<è=#þ²^g( ÿ´ÿ&€«&>32#".#"3##"&546323265#5gP_-;9zzVS)52RÂqx#&%Yt þ^jp<;PÏ  ÿò06;%4&'5!#".546323265432#"&#"#.#"32659ÿ,@-ZbJ1Á–:q )52# `W9X6" z6O÷8,Ë,0IzN™Æ! ’<3$ìN])@VO(‹¡#ÿñƒ–%0#"&54>7&'5!7654'534'32ƒ1E‘9VH=I(À, %m{=ÐïX!.(Kƒ [ÀT(BGPM>!C3.¢¡'ýÏ({(6(2 ÿ÷Å«J#".54654&#"#5>54&#"567363232>54.54632Å2X8&7 .67,Ø, i%9W .%.J#%%4g[8 30 H=r!@)?#rr$>þ×?":-Â7 7Â-Í7! 8Í"˜@#"&5<54.#"323!5654.'!5>54&'5!7632 ;:Ìé" ! þÏ8qh"8þæ;#7:"ô^P/h    :Èú&   ƒd»6!%=±6 8ÍäXKù«8"&#"7654&'53#"#53254./#5>5>32A79‰Ì%S>™5!Ú Œê6P^-<DKYþÏz  9:Â&! »¸ 'ppy#«5673##5>=#5354&#"c<cc0ì/aa oþ¾-æ)(ã-Í#ÿöÊ /%#"./##4&'57&#"#54632732673ÊC:€U²yp2$$(" e[\ [e'ãþ²ÃS,MZ5*?5 E,>þ¿ % ÿö£–=%2654&'5!327'5#"'#"54/5!3274&'5!Y8W"0 3"YQ LH(a ]i4 5(4O5$4458É#"2þ[,"[9$ffØlD4þK:J¤8(3þ†ÿºÿ&Ö%4&'53##"&546323265.#538%;ë þF3N)52# «L/3+ýò&ýåtf<;Py#þÿ8åÌ*567>32#5>54#"#5>=4&#"J@3;#7?%Ð&I*$&Ô&ŽO0!OGþS%"/™a"þç+ø%ÿÿÿôÊ¡$"ÿòÄ24.#"32>4&54632#"&54632326>+:71N- ,W<=Y-d<lX¹”‡º¸?U3AHHpD,*?VO)3bb<54&#" &6327>3234."2>þþè* .M,D´þÚ´´“D}- #$5$3,;þ@/WtW/.WvW.(£24:Y„”ÄÄ(Æ41  'B/%þ¬9&86g_99_g67f_99_fÿ'Ì"3#5>54.#"#"&546326324.#"32>Û* E'_byx`w>MUv(þu;';; ;),8Ù+¬$93H`ŽŠda‡TT²þY&‘$KK/^>&QU6>Lÿ—– 43254&#"#"'!5>54&#"#"&54;2Ê"®`eT #:dB'#;þè96$3<’ï-TS2Oþü“MI‚06'¶7!!?±3#25)&Jÿ'Ö« 132654&#"7"&#"632#"&'#5>5>32ŸE#6CC8#Cš78@PI^yY + 8ò,P^-;Nö,gSWi,àKY¹Ox]m”/'Epy#ÿ“– .72654&#"723#!5>54&'5!ç\E6D,dbSzÎ%¡î8 :þë8!@)?#ä<(#7·ÞK/V"ý4T6 #>±7 7g*ÿòë¤/"#733263232673#.#"#"&54>54&73#&7 T:S'-l++"+2 9";M5@:4-&$  L4%7@+&8Cˆ E6*B$!-!' œ ÿÿ2•.ÿB@«%#"&5#"&463232>324&"2@29If)>7672ÿe 3N)52 ,Y5 2 þâ/+# Btf<;P=- 7+ tÿ÷Q–!#.+!5>5#"#"&54‰Â9U6">þÜ> Ž!6<–ªS-þ7 !@ô&25)ÿôÿö^« "&#"3#327#"5#53>32479{z 0HYRRP^-;DKYt þâ/+# L- py#ÿ4Q–2>2#"&5#"#7!#.+Š (8+QX6T949U6¦  (g^s.RªªS-ý0Bÿò:P373267654&'532654&54632#"&54&'5!ÎKa8Z$:è'0<C6;#5iM€{;<édg+$+]K125)4<+Hþû;XO*}‚876 ÿö|1%'5#"&=4&'533276=4&'532654&546323ßN;++<7B$’*.*/ž$3<y"2S++G;ü#þº-"&ë%#25)v þÍ#ÿÿ!ÿóÉ— 4ê—Àÿñ°–(#"#&54&'5332>54'.'.54632°½‘ø!9ÀQ]._M0 "0 "5?5$Iºþ87 þI^c,Lr@CF $4Ip#š,!5>='&#"#"&546327654#53# 8”(?þÎ?&£A/,o42Y”EÛƒ(!&âÂ; ;¶ñ_30J6+Þâ!ÿ&‹Ë6#".#""&5463232654./&'53"7632‹ %= #28- / ?#r &Î  s<>s(W€F*þ¯# D#y!8Gö ýª¬( U– %2>73!5#53#"#7!3#’. ýÌ×Tt¾Ý3B! ÌaÄ& ) °+- ,$!«þà-þì¢Â%2>7!57#537#"#7!3#'. þ‡VtkŠ- [v_}y "#‡Å-£!7v²-¶ÿÿÿòð¤Mÿòð¤"327#"&54>3!#.+^BW5vi.ŽUXyD1‡ 5$“GJYDBe=Bx^&NA'Õ,A(ÿ/jÂ467'7!.+32632#"&W[•/#¦”WR20a(;EaƒMxä u#çuH2G<8*p.ÿ²Â3#"&54>54&#"'7#"#7!63232>32²AH=a-AA-(,Sм .V¸ 7L5LL54$ Š+>:*?'!*,È!а=5,D*&1#"("Û¤$%!5767#53654&#"'>323#3267Û7þz²7^uMB9=kWMh/a€¨ï$$‰‰ ½:2,73ANC?ZmhLDK,°%ÿòD–(%#"&'73264&+54&'5!#.#*#"32D…`Uƒ=eyMmmMZ"5¥'&! 9\‰Î_xCDpcšc¦5!$, ¥€ÿI”Ý$+#"&5463232654'.'"547327”&Ä+'zj4^ B7À8 nÑÖY UÙi{..!)!eH• çÿö{C+%#"&#"#5332654.=#&5476723#{W:M 6<#./BC/5 9,ee+l**w9H œCI&#-#'@)P 8V t ..@5ÿ'ØÌ(3#5>54&#"567>324&#">Ø9be9$4ò* IGf5V2,'E\‡9>zfO"&1(Ô"€3L¾,>>*þÄ=¤ÿÿCÿò…¤_ÿÿCÿòM¤#_È_/ÿ”)f%##5#535#53533#3)ä2ääää2äää‚îî2’2îî2’ÿÿ‚ÿ÷í¤ÿÿ'v#?Ò'ÿÿt¢#@Ò'ÿÿÿö–«#@ôGÿÿ ÿòÕ–#-c/ÿÿ ÿ&%«#Mc/ÿÿÿ&Ø«#MOÿÿ ÿòD–#-Ò1ÿÿ ÿ&”«#MÒ1ÿÿÿ&¶«#MôQÿÿÂv#fÄÔ$ÿÿ%ÿöº¢"f,Dÿÿ @v#fÿþÔ,ÿÿÿíÿþ$ "fâþóþÿÿ"ÿò°v#f¿Ô2ÿÿÿöÖ¢"fNRÿÿÿòÁr#fÖÐ8ÿÿ ÿöߢ"f:XÿÿÿòÁ‘#hÔ8#§!Ô8ÿÿ ÿößÑ"h@x#§ŽXÿÿÿòÁ£ciý0I%Í#§!Ô8ÿÿ ÿöß"iSn"j@XÿÿÿòÁÃcfí¦6ò3Z#§!Ô8ÿÿ ÿöß"f@n"j@XÿÿÿòÁ¬#§!Ôcjü÷1¦)+8ÿÿ ÿöß"j/n"j@Xÿÿÿö¡Ì HºÂÀÿÿÂB#§ Ô$ÿÿ%ÿöºÑ"h7x"j7Dÿÿ‘#hÆ8"$x¾Ôÿÿ%ÿöºÑ"h7x"Dx-ÿÿ_-#hfÔˆÿÿ&ÿöxY#£ö¨ ÿòŤ3232673#&#"326=#5354&'5!3##".546v>j ?œ?a7‡|)`EE!7ÿ0;;­F3`cH.Ǥ!Ó«7\m<§t,4$4,:1NRŽÁ ÿ&éÌ;GNR23263##"&#"3##".547#5367.54>7&5464&#"326.'!2ñ _1$ S_@ $ .N4E+’B8;&+2 #(]b¢51%&2'&#hO0$:þÃüÌ"'*2@S172,3> ( ,# .! )YJ]¾7k3NF;8þÝ +,8ÿÿ ÿòÅv#fÅÔ*ÿÿÿ&Ö¢"f7Jÿÿ"Óv#f¸Ô.ÿÿùv#fÔN"ÿ[°¤0#"&547.54632324.#"32>Ê5;*'«¸·¬ŠŸ+:71N- ,W<=Y-IL, ($ ¼“—ÂÁœ‘¼µHpD,*?VO)3bb<Ç7þÉ5;*'«¸·¬ŠŸ+:71N- ,W<=Y--6üÀL, ($½“—ÂÁœ‘»µHpD,*?VO)3bb<54&'5!!54&'5!326=4& ›,O7ÄþÑ 8þê:::/:: &>7Š7ó'9@)×rÎ5 "?±66ÂÂ66þ˜*.Na!ÿÿ ÿõÃz#jçÔ1ÿÿå¦"jTQÿÿ“‡ÿÿ%ÿöºÏ§ÿÿ_z#ifÔˆÿÿ&ÿöx¦#i«¨ÿÿ"ÿ°°ÞšÿÿÿÖ¦"iUºÿÿÂz#®ÅÔ$ÿÿÿåÿöº¦#®kDÿÿÂl#°Ô$ÿÿ%ÿöº˜#°‡Dÿÿ Uz#®ŸÔ(ÿÿÿâÿö¨¦#®hHÿÿ Ul#°ËÔ(ÿÿÿö¨˜#°‡Hÿÿÿ};z#®Ô,ÿÿÿƒÿ¦#® óÿÿ;l#°MÔ,ÿÿÿü˜#°/óÿÿ"ÿò°z#®ßÔ2ÿÿÿèÿöÖ¦#®nRÿÿ"ÿò°l#° Ô2ÿÿÿöÖ˜#°¡Rÿÿ “z#®Ô5ÿÿÿ•O¦#®Uÿÿ“l#°éÔ5ÿÿO˜#°JUÿÿÿòÁz#®æÔ8ÿÿÿÖÿöߦ#®\XÿÿÿòÁl#°!Ô8ÿÿ ÿöߘ#°X*þçë¤.B23273#.#"#"&#"#'332654.546#"&54632'654ô*b c<.:DOcXvV2g %bC7DB^]Bgx  !".>2 R¤""ÕXT4)(H,5g>Mi"Ô[V?2/I47V9L_üÎ 3&-T823þç\Ë1E273#.#"#"&#"#5332654/.54632#"&54632'654 2+"++l-'S:T   (&-4:@5M;!:C   !".>2 R¸ ˆC8&+@7%4L œ '!-!$B*6Eýº 3&-T82þçQ–+#"#7!#.+!5>5#"&54632'654þ6T949U6">þÜ> D  !".>2 Rl.RªªS-þ7 !@þú 3&-T82 þçC/#327#"5#&547>7672#"&54632'654ÿe 0HY5 8   !".>2 R þâ/+# L- >* tý° 3&-T82ÿÿ¾v#fÃÔ+ÿÿÿûçv#fÿðÔKÿÿÂB#x¾Ô$ÿÿ%ÿöºn"x-D ÿ)U–B7;2673#632#"'732654&#"'7!5>54&'5!#.+"32673#.+É!Hk\%-ä (.C:-'% )þë7 7 6U‡ š@%  &>šP3Q©A% '- c!5¼5!C& Þ'8è>"ÿ)¨Ì33.#"3267632#"'732654&#"'7.54632cÌ *.Z010G$`> (.C:-'% %R^u\LT 5A2“?[-09JU8% '- Yxdo‡[\ÿÿ"ÿò°‘#§Ô#hÃ82ÿÿÿöÖÑ"hLx"jSRÿÿ"ÿò°›#h¹B#{½¾2ÿÿÿöÖÑ"hLx"{MRÿÿ"ÿò°B#xÃÔ2ÿÿÿöÖn"xSRÿÿ"ÿò°‘#hÃ8#xÃÔ2ÿÿÿöÖÑ"hLx"xSRÿÿ¿-#hÓÔ<ÿÿÿ&ÛY"hc\ÿBÌ3=#"''674#"#5>=<54.#"567>3272324#"326B7M{<ÿÿÿö˜Ì D½ÂÀÿößÌ(%'5#".54632>7323'54#"326ß8SX,9N~a3> ’`FA=-,;$S%1F`8c•# þ£ MÎcvL,P?$ÿÿÿùíÏ ðýÅÀEÿöÔ« (32654&#"7"&#">32#"&5>32™:'>DE;'<›79N.Ke‡c7.54632#".#"6324#"326}?9+ >?|d2c ?B10T:;&+L%U—=d[ HrGf‘7.""oC:cx4e/ÿ&[« 1726=4&#"7#"&5463254&#"56732632#"&5û%4>(9DL—0PSfzV63[825)SV**æ((9DL†79“0PSfzV63©-<**æ(32#"&'732>5&#"`þÌ TL\ueVGn$G010Z.* \[‡ogyVQ90-[_s2Aÿÿÿö¡Ì HºÂÀÿö²38@#".54654"#"'&#"'632>32327.54624'326²0" ;'&|dI=ù-L/BJ~T99/4 !"þžÈ'1?Bw,&'6 @--4Jf‘0F1- HD61. F+1 Ã3)â,oÿÿ)ÿöÍ@)ÿöÍ6?32654&#"#"&5463232654&#"#"&54>32#")(Z3<-$ .  1#(*# "61AhE*/GgC‘l ]>3%45 +9$#=<(5A.@E)ÿö‡3[#".54654#"#"'732654&#"#"&5463232654&#"#"&54>32>32327.5462‡0"\ E*/GgC‘+(Z3<-$ .  2#(*# >A!S0 m!"w,&'5i !(5A.@Ev ]>3%45 +9$ ( ({. F+1 )ÿ÷Ê0%#"&546324&#"#"&543232654&#"326=L'WmnV'L=G//G\-$ . " . $-+)J]\K)+k(8‘ZX8(.AA%44%+=}MNƒ=ÿºÿ&Ì05673##"&54632326=#534M-PL??VS)52eeŠþW jp<>M- .<ÿ&m«.<"&#"#".54632326?#"&546325>323276=4#"C79/\@2)+7DYFZ^.2P^-;þ>12$]@JDKYýÊ'GD(CHmJx_l”py#þ­+PC "Îdgÿ&©Í /73276=4#"".5463232657#"&5463273n>12$]@JZ2)+8DYFZ^6=6 /\ñ+PC "ÎdgýÜCHmJx_l”$ þ7'GD(ÿ÷ÞË'%#"&546323273#&#"32=4&'53Þ‰sƒ‡aQ*j*?"SSK&½äˆ!~r`„t&AH(Vl#m% ÿçÂ+9#"&54>7&'53>54&'534.'32ç'p&<=42  ’!Ë>D'Ÿ·  !:¯*Â!ET@XT8("%!0JmmOýÊB7$!(#8ÿ÷)Ì ,.#"#".547&#"'6326324&'32>)g6V@-0 , /BJ~!#~/.,.'/ 5R<+k`9TLX=1- þù8a32#5>=4#"#5>5>32879#D,{)Ô+K3,Ø+P^-<DKY¾-'ŸÇ4 3Æj"ñ45\py# ÿ&««4"&#">32#"&5463232654#"#5>5>32879#D,{VS)52K3,Ø+P^-<DKY¾-'ŸþÓjp<;PYj"ñ45\py#« %2#"&46"573##5>=#5354&€. ›RR1í4PP«*þß7È?\66\?M!ÿö0Ì"57327#"=4&> › 0HYŠ7þ»/+# LÙ!Â7#5>=4&'53³4ò44ò4f66ö66ÿê4«+56732673#"'#5>5&#"#>3254&#"c< 0)0ì/# 5%  oþÒ 91æ)( .14˜#ÿý«",##5>=.5463254&#"5673#.#"`,ì+""" b=`´!!0Ü*)Ù µ%þž) ÿ&i«32632#"&54&#"#567¶25)SV c<©ý*P;<pj4#ÿ/«-4&'7!#5>54&#"#567!#"&432326ÎSV“þþ0ì/ c<>”[WƒaF:(a/32HuçþÏ)(Ý#ç äxMZp*80=ü/ *Ùi)þ$$ÿ&ÂÌE4&#"#5>=4#"#5>=4&#"567>32632#"&54632326n +B++à+B:(Þ*HD>0=ü/ *Ùiþæ)ý$K/TT²þæjp<;ÿÿ&åÌ04&#"567>32#5>=4#"#"&54632326PJ@3;#7?%Ð&I*$VS)52-%O0!OGå%"/Ña"þ¤jp<;ÿ&[Ì1%54#"#5>=4&#"567>3232632#"&5TI*$&Ô&J@3;#7?25)SVcÑa"þç+ø%O0!OGþP;<pjÿùãÂ##5>5.#5354&'53ã,þÚ  -~þ-¡±/þ›lþþ !0- þÂÚ/ ÿÿÿöÖÌá†Ì'7%0!"&54632;#&+"32673#.+;2674&#"326†þuVjsh^Ü @pY()Y2Q%/þ¿(#1 7)'rr€Wj‹ bD•'(¤%-()E="(XM)ÿöŒæ7%#"&'##"&54>32&"32>54&543232>54Œ`R9??9R`\ŠKu½ÐÂu '",/.+1äW—I;;I—WMy<‘z‰b'C* 0=.546754&'53>54.'kc‡€j0ì/k‚j0ì/EQG5TGPQË |aiy k)(hyj^~ w)(ýÕ zI*PH þg™ nPKxÿÿÿûÿöE UJÂÀÿÿÿûE• JÍÀÿûÿ&±Â172326=4&'5332732632#"&'5#"&546",2"3ð0E25)QW%4X#:á+ &ú!BP;<kg\5)ÿ8OÌ#"&#"#5>54&#"567>32(,2"3ð0PD%4j#:þW+ &Â!\5)ÿ&SÌ)"&#"32632#"&54&#"567>32(,225)SVPD%4j#:þ˜P;<pjN!\5)€Í".#"!5>=>7>32V 9 =þü6 L/-;fYð87|B:$"'#ÿÎ:Í"#"&54632!5>=4Z;-/L 6þü= ±#'"$:B|78ðY ÎÐ&2;#'##5>54&'52654&#"ábSzr t‘(*Ø$ %¥H?/7ÐK/V"ª"Ñi,) .3%Þ>&"8·ÿÿ ÎÐ ÛÐÀ3ÿ&\Ë>273#.#"#"&'32632#"&=332654/.54632 2+"++l-'S:Q25)M4 (&-4:@5M;!:¸ ˆC8&+@7%4L5P;<drœ '!-!$B*6Eÿ´ÿ&€«>32#".#"#"&546323265gP_-;9VS)52Âqx#&%YýÊjp<;P ÿç«"".#"3##"&546232=#53432ç$<{{´"B$'23š25)SV5ce¢þ1P;<pj¢  t ÿúÿöîÂ%/%'5#"&=#5354&'53354&'533#3'#32765ßN;++<7BMM$’²/žMM"²*.*2S++G;Q1z#Èx%È1^#—M-"& ÿöæÂ'%"&54635#"#53"26545#4&+2æƒÀƒ`Hl·:?Z„Z@:¶ hHa©[XX[H^ €ŽN;BXXB54#53ï%f*á,Y+Çe,# 0•³˜„'+vƒ,% ”?35ÿ&UÂ"%2>732632#"&5!5#"#7!'. 25)N3þ¥ Š- [þó "#´P;<ft•!7vþkÿš©Â&%+'>7#5#"#7!36324&#"326©c7I * ' ‘ Š/[þó9m@"S!7*S6WE C•&2vþk¤X2Aÿ/jÂ4&'7#"'7!#"&432326$SV“¥#0”[WƒaF:(a/32Huç#u äxMZp*8&.DþþU:6D/0CP@F á*–3·_VX6EsW5&%63'œ¤%2#5>=232654&#"#"&546ÁZdP0ì/ DWK= "[¤‰n^|z)(ÂmVMa.*='œ¤&2#"/.#"32>3#5>=.546?[" =KWD /ì0Pd¤=*.aMVmÂ()z|^n‰ÿÿ'ÿòœ– 4ÖÀÿVœ£#4632#"/.#"3267#"&5ƒX?[" =KWD+>$ '&>!Sk¬oˆ=*.aMþ‡Ul*4 4 |aÿÿÿöÖÌ"y{ëRÿÿÍРÿÿ)ÿ÷Ê ýÆÁÀÿ÷ˆ£2#"&#"#&#"32=4&'53#"&546324632ˆ1a*j*?"SSK&½‰sƒ‡a'.xa";k<¶xt&AH(Vl#m%ˆ!~r`„ bƒÿÿЫÿ[« $.#"&54632##"&5434.#"5673#"325 RS4'/DšOMS§'#0'9xýS(8C#D/sNþ7 0#3†ÿÿÿù NÂÀ®Ð45"32>73!5265h /ô2#Š þ}/ i,)(7þÁ "|'ÿ'n« 173276=4#"%"&#"#5>=#"&546325>32n>12$]@JÖ79)ì5$DYFZ^01P^-;ñ+PC "ÎdgúKYý=  *¼Jx_l”py#'œ¤-23##5>=#535232654&#"#"&546ÁZdPff0ì/^^ DWK= "[¤‰n^|:1)( 1…mVMa.*='œ¤.2#"/.#"32>33##5>=#535.546?[" =KWD ^^/ì0ffPd¤=*.aMVm…1 ()1:|^n‰ÿö«%-<%"&#"'5##"&5463254&#"567!3267#"'54&#"326¥8¦*WY]vY:0 V=LþóŠE-kŠ0$V?(,;B1=‡‡ =@ƒ]\š+œçþk(E(0áæ(M%+'>7#"'5##"&5463254&#"567!3632'#"%4#"326%54&#"326 c7I * ' ‘*WY]vY91 V=Lþó9m@"„Š0$E$6Z7*Sþe?(,;B1=6WE C =@ƒ]\š+œçþk¤ý(0á4 ŠAæ(76723#;2654.546323273#&#"W:Î\5 :]]3#./BC/S9=  T.0FE0w9H-T t þ¾T&#-#'@)8B ‰{$1#&< ÿ"«-4".#"#"&546232=#"5#'>76723432#32"$<´"B$<,<\5<p´"Bþèp3 n&%Ytþ@é&%Y 8-V téýÁUþÝU ÿšCCL%#"''>7&'#"5#'>76723#32>7&54632#".#"6324#"326}?9+ G 2X\5<ee3  |d2c ?B10T:;&+L%U—=d[ HHq-V t þÛS  (/f‘7.""oC:cx4e/ÿ&¶«M".#"327>32#"&5463232654#"#5>=4+!5>5#53>32A 9{e"3;#7?VS)52I*$&Ô&=z =þü6RRP^-;DYt O0!OGþÊjp<>Maa"þç+øPþÆ87: py#«55673254.546323273#&#"#!5>54&#"c<0iQ/BC/S9=  T.0FE0V;þ¥/ oý²)?-#'@)8B ‰{$1#%<(8@(Ý#«!567!32>7!5>54&#"#"c<KþóŠ'. þ/ ÝŠ, oçþk "#‡(Ý#þåÿPÿúÏ–/_77.'537654#53#"/#"/&'537.'537654#53#"/#"/&'53~3; „*2 PP  ;I  Ru3; „*2 PP  ;I  RuÉzw!ir  »Ž¾$ yzw!ir  »Ž¾$ eÌ–%#"'7!.#"'7!.lð¢ð¢Ó(§§(†(§§(ÿVÒ6%326754&'53327'#"=4#"#"&5462K3,Ø+ Q""E,{21;D6# ¨j"ñ45þ)  0-'Ÿ¸c<.*?,!ÿÉÔ>%32754&'5332632".5<5#"=4#"#"&5462M85-Ø-21;D6# :X|21;D6# ¥j?ñ0#!1þBc<.*?,!RŸºc<.*?,!ÿû1§'#5>=4&#"#567632#5>=4#"[Œ 0,+4P ‰1#Ñw ý  ·3`h^?ÿù/§,"&#"632#5>=4#"#5>=>32¾ $%+4P ‰1#%Œ 4=&`-6h3`i_?&x ÃCH œ¼¹567#"&54632326=4&62"&4S,9n"   û þîƒ $%.˾9ÿ"!"&#"#5>=4#"567>32è   0)ç(w~*7 ÿÿÝ%R3À› -(2326=4&'5332632#"&=#"&540      14S# ï0#$ @>7 #&"373#"+5>=4&'534&+326–WE ?J2;3&+ !;}`4-‘Í$h ¡&1.'537654.'53"/#"/.'53Ó  z 18  I U 7C  O l 9Ñ! ‚ÌÉ  ˜€'+72654/&'53"76545#"&54632d% E| D9 Q [/ ³J /•  “¡ðA7  ÿÿËäß ÿÿËá òL õâ&#"32632#"&54632í"&'/4=<*%½#-*;4*> ÿÿD íáZ9ìÀL õâ#"&54632#"&#"32í%*<=4/'&"0 >*4;*-#fÿöÆ632#"'732654&#"f*99*!" » ;R: ++ÿÿWÿçÆ]MÅÀðo2#0512654&#"#"&546m5N<02)4-% 7oRB9JU‚B3/:   %ðo2#"/.#"32763#5.546”%7 $.4)30ûgg§ ûB¢#'37B}>|"yz¢§§ggÿÿdù–¾¬" #BY!! 7þÉY6]û=¦ #7632…(“û” ûò¦ #'&54>;2ò(š ûa dþý–ÿÂ0#05030–22þýÅÿÿ ÿgBÿqýD2ÿÿà #'&54>;2(š èa 3ÿÿ» 7>;23“ šð” aTÂÌ3#73Ân77n7dhdThÂÌ3Tn7ÌdtØÇ 2#5264&#u*9;)''Ç:*):"&6'uÙÇ "&5463"3Ø*9;)'':*):"&6' 3A 7533!5‹6€þÉi··66 /A7#5!##‹7€6æ66·%4'6 %##5#5353'f6ff6Ð6ff6ff —BÍ7!! 7þÉÍ6û3˜ 3#"&'3326|8Q 50,.˜FW2/(v Ùn 2#"&546¦n(C Ç 2#"&546"3264&¦);;)*9;)'&''Ç;R::*(;"&6'&6'@ÿ[ù#"&547332å5;*6.,IL, .+#"Kr3#"/&#"#>32326.0) 1# 4&$" r91 .14 ÿýûy¦#7632#7632Á(“#þÊ(“#û” a” ,C3'>32327.5462#".54654#"9/4 !"0"AA„D61. F+1 ,&'6 KKP '77''’€€€€Ž_``_``` )ž&2#"&54>7'&'53>54'534'32(? $% U z( '_n' "Š2p*2'42"  §P=,þ­J  !«©567#5>54&#";$  { þ¤ " Õ&/273#.#"#"&#"#5332654/.54632ª  A2#.    "' .$R( &! - ^ '!) /3>54&'533#5>54/3#5626?'&+53¤  _$/L y 00 W E5|ÄEv  LJ  cN$ "(\ ò%2#"/.#"3263#5>=.546¬&6 $-4) 0;237>;2“ šˆ“ š” a” aÿÿÿALÿ«{ý9ÿÿQÍÀ£Ø ù£æ3## ˜b6æ6· ù£æ#5#5£6bæí·6 ÿÉ£¶533 6b7í·6 ÿÉ£¶#5353£˜b676· ÿ8Dÿä53!536þÉ6’v¬¬v ÿ8Dÿä!!53CþÉ6’6¬ÿ BÿÙ!'7!Bþø<bb<œHffHÿÿþÆûÿ¥¦jþ³ÿÿÿûÿð¦iþ³ÿÿþ¾ûÿõ¢eþ³ÿÿþ´ýÿþg{þ³ÿõÿÿþ¾#ÿõYhþ³þ#ÿõY!!þÞþ"Y6ÿÿþÍûÿæ˜wþ³ÿÿÿ) ÿŒnxþ³ÿÿþÅ ÿïnjþ³ÿ ÿ£°#>54#"#"54632–",'#  -!05 1(  *#'3ÿÿþöÿ½Çyþ³ÿÿþÈûD¦|þËÿÿþ¾ûÿõ¢fþ³ÿBùÿt¾0#05030Œ22ùÅÿÿÿ'ùÿƾ&¬R¬åþzûÿö¦'&54323'&5432Κ#“tš#“ûa ”a ”þÍûÿæÍ3#"&=332>'4632#"&7€:P_& —˜NJa"! þÍûÿæ˜ .#"#>327.,05 Q8|û9(/2WFÿÿþÿ ÿ¨âZþ³ÿÿþ÷ ÿ á[þ³ÿÿþÿ ÿ¨â\þ³ÿâ±m¤"#"&54632'>548&$ R ,&<)/Z ;þåÿÿÄÿ¹ #'&54>;2<(š òa þæÿÿÅÿ¹ 7>;2þæ“ šò” aþÅþœÿ²ÿÓ#5353#„··66ã6€þÉþÌþÿ¹ÿÔ#33þ66·â7€6ÿ‰ùvæ#5#5v6·æí·6ÿÿMÉ42654.54632#"'5G"0 & #&/K53i% #9/5J"þèþÿÿxÿÆ&#"327#"&4632ˆ "!*99*E++ :R;þ…þÔÿ¼ÿÁ533!5ú6€þÉö··66þ’þÕÿÉÿÂ#5!##í7€6t66·þ©þ×ÿ«ÿÙ ##5#5353Uf6ff66ff6ffþ—ÿ=ÿÎÿs!!þ—7þÉ6ÿcÿ.+5367"&5462326590 -B."  »!.- ÿçÿ„.1327.5462"&=73 ".B- 0˜ -.!» þÀÿUÿ"ÿ¹ 4632#"&þÀy! þqÿVÿšÿº 4632#"&74632#"&þqÇx! ! þÉÿ ÿÿÑ 4632#"7"3264&þÉ9*);;)**"!'&¼R;;R:¥++&6'þøþçÿƒÿÚ0#"&54632'654²  !".>2 RŽ 3&-T82ÿÿþçÿ)ÿ¸zþ³ÿÿþóÿ[ÿ¬zþ³ÿ þýÿ;ÿÂ0#05030Å22þýÅþxÿ ÿ¯ÿ·##5!#‡Ë676v¬¬þyþåÿ¸ÿÁ,32>3232654'&5432#"&'#"&54632þß    ,K9(AKF%=)2))2)?<X5$*6*$5Yþ~ÿ&ÿµÿÍ#'37K}>|"yz3§§ggþ~ÿÿµÿÅ#'#73K"zy"|>âgg§þÿ%ÿ©ÿÂ3#"&=332>t€:P_& >NJa"þŸÿ$ÿ¸ÿÁ.#"#54632e &_P:€Ü"aJNþtÿ;ÿ¾ÿ¥3#"/&#"#>32326_ (2'4.#[) .(= þ’ÿ8ÿÉÿn!!þ’7þÉ’6þÿpÿõÿ¦!!þÞþ"Z6þÿÿõÿ·!!!!þÞþ"Þþ"I666ÿÿþ›¾ÿå({þšþ¶þŸÉÿ€ô%3#þŸááô+ýáÉô%!!ýá3ýÍô+þ1mÿÕP-þ1’þn”¼'¼ýßÿãÿþ*%ýßþ(ýØþëþ÷ÿ{ÿ¾632#"'732654&#"þë*99*!" M ;R: ++þ†ÿÿ½ÿ¿53!53y6þÉ6·v¬¬vþ¨þÕÿ­ÿÚ5#'!!‰™6þûô˜˜Îþûþ£ÿÿ×ÿ±2"&#"#".#"#"54632>y!/, " 5 % (O/#+#$*$  8+)(,þ§íÿåÜ '77''Ù€€€€e_``_```þÆîÿ:í4&5467'6þû4/; 5446 55/& 7%þ#ÿõÅ!!5!!þÞþ"Þþ"Y6¢6ÿÿþÆûÿ¥¦jþ³ÿÿÿûÿð¦iþ³ÿÿÿ &V{ÿ ÿÿþ÷ ÿ á[þ³þ¡ýÿÄ""&462''>7632"&462<(( 1 ’((A((˜ T M2º((ÿÿÿ¯ÿµ#"=33265Q]JL¥XOc.Nÿÿþ}÷ÿ´£Éìÿÿþÿÿõÿ·ÒÿÿþÌþýÿ‹ÿÂ&ÈPÈÃþòÿ&ÿ‚ÿ¶3#050#þò3273326H0)"C1# 4&!>-‰91 :Q .14 6N ÿÿþŽôÿØ"#xþKÿé#xþÉ´{þ?ÿÿþÿ×ÿ#{þŒ{þŒþGÿ ÿëÿÙ '7!'7!'7b:þÉ;bb;7:ŽfHHffHHþÃþÙÿ‘ÿî5'7'äHffHþÙß<bb<ßþáõÿß»57'5þáÒÒþõHHWÿÿþôÿ„λ þÍûÿæÍ.#"#546324632#"&7 &_P:€¾0"aJN !ÿÿþaþÝÿŸÿÌÜÿºüðþºÿÿ¸ÿâ57'5þºÒÒþäHHWþ§ÿÿ¥ÿä'57[þþÒÒâWWHHþÿÿÿÿá 73#'57'5þør"r$__þçÒÒþá¾¾HHWÿ ÿžÐ632#"'732654&#"ò*99*!" Å ;R: ++ÿÿ dnx‹þ¼þöÿsÿÅG46=#"54>7'.5463254&5462>2#"&'#"&û - )    + ,"  '  ÷)         0 + -   ., þXÿÿÏÿÅ".#"'#"&546326324&#"326'.#"32612(71<#(3(9:1#'!3 &­4 3)?G,1#)?)F0<5(%"9"6(þ¯êÿ™è33#7#þçA#”9?'™èdš_þâÿ=ÿÒ #"&'7327q­T‰Asš¡n8‹>M QQþâ« #"&'7327q­T‰Asš¡n¡‹>M QQþâ$O!!þâ<ýÄO+þâÿrÿ!!þâ<ýÄc+þâ%¶232>7#"&#"'>Y.q$(.TC-q(,6"1O­@  N4@!Q2þâ ¡ &#"'>32n¡šsA‰T­ QQ M>þâÿ ÿÙ5!'7'7þâ<bb<œHffHþÊôÿy¾*54>754#"#"&54632327#"&'#"&753276þË&!   *#  $k*  "#   !#S  > þÜôÿ‡¾3267#"&54632'3.#"þû'?%+2(? ƒW&o3*G3,09Nÿóÿw"57#5>=472#"&46Û B e  œ˜  c{  þ±ôÿn¾ 2"&54632654&#"ð)57Q55!"½6*,<8+-8O.?)$,7$þÂôÿŒº"5#"&=4&'533276=4&'533u$ >  D  %l ‹ d ’ þÂôÿg¼4632#"/&#"327#"&þÂ8%'  %!!3#.S/:  )!%/)C5þ¿ôÿ…('5#"&5463254&+567;#26=4&#"º!#,4% ) f ô3).?C  ó c+%'/þÍôÿ™'#5>=4&+5767632#5>=4#"ô \ #5Z †g É ‚$DU  U-þ€ôÿź>567>32632#5>=4&#"3#5>=4#"#526=4&#"þ‚" !%1 ^  _  _  Ÿ   $$LX Zl ]-y  l þùôÿ‡º "&#"#5>=4#"567>32Š g "  `  j 'þñôÿcñ#327#"=#&54>7672§, &  ¹ {& 6 2þ»óÿ»#"/.'537654'5 73 T,*º ‰{!  mn þ¼ôÿ‚¶1>54'533#5>54/3#5>?'.+53á C #7V '! > 1( Yw  3T<5  G=  -š '>32š‡â @2<".ÿ!È #"&547ȇ @2<"ÿ(ÿµ#"=33265(]JL¥XOc.NÿÿPÿsÛËÿÿ+âÖ ò0ÿÿù< "XJjîÿÿ¢"ÇB`¸Ö"&462¸"2""2´2""2"ÿÿÿØ–"Ö¯!¹ÿÿÿØw–"Ö©#¹ÿÿÿØì–"Ö¯%±ÿÿÿØÿò¤"ÖÇ+^ÿÿÿØM "Ö¯0¨ÿÿÿØF¤"Ö©4}ÿÿÿÐÿö "¾ýDÿÿ¢$ÿÿQ–% "–#.+"!5>54&'5!"+)(ˆ $7þè9!6%,þ6"';±5!v¢)3 výŠ6 ¹Üá¢ý€Ýþ#ÿÿ U–(ÿÿ U–=ÿÿ¾–+ÿôÊ¡. &6 4."32>#4&+"#53;26=3ÊÈþäÈÇ[2o”o0&5N.8\8\’’ÚþâÈÈÇþ©HŠeeŠH*UP>%9[j-#(Á*!ÿÿ;–,ÿÿ"Ó–.¢!!#532>54' 3#5>73Âÿ«²DÆ5Ðù  1œþO*=HëýÈ  ÿÿ _–0ÿÿ ÿõÖ1=;– !-#4&#!"#5!#4+"#53;2654'3!533!26=3;&/þÇ0þb;£ £%bþVC"&ç/,'4¯þIB"Ø"þI¯[1#ÿÿ"ÿò°¤2¾–)5>5!!5>54&'5!¾þê:þÑ"6þê: 8«7!"6&<òþ5"&<±7 6þD5"ÿÿ–32•) !#.+"!26=32ýÜLþ¶ dB¤ IS]þô1#)LI±@RMRZþõ2#ÿÿQ–7)¥ =4.#"#"&54632>32#"&54654&#"3!52>53)&$"9$-N7% #7K,$9"$"S/+þä"%KyI2 )!7 %324+5!&#"6324&#26"Ëa^S ,' þâW q¥!8IO(T *1# 3bT4jkU^bþÜYcZ55 (/^xl+J3#X)11U7Ucþ|mm„^XÎÿÿ À–;L–Q4.'53234.'5!27>76;#"';!526=#"&'.546U 4%$/+&= ZA"+.##7$?`;+ ;"þÔ#A 2n%($/  ?P^SC Y@þ¦ BQ^P@   *C;Kdq &%!q"U: 8!ɤ-#32673!5>54&#"!53;5"&54>32É‘kœ$þîSbhczaTþî¢k‘7^sBDvh<œlŸ9(š©VhŠŽdW©œ(9ŸlEi=:k;)#"&462"&462!5>54&'5! ((|((Ïþ×;&&;):((: ((((ü×9¼9 8þD8  †'P"&462"&4624.#"#"&54632>32#"&54654&#"3!52>546Ø((¢((/1$"9$-N7% #7K,$9"$"S/+þä" ((((ýÊo¡R$ )!7 %.9 d:Zks\AJ  T#+¡<-$2 9,.<ku#!8H‹\^’cG {r<B~,UF0LD"+OAOZHÿ7ì£9%#"&'332>54.#"#"546232>54&#"#4>32ìgW,G8'4 / &)$ 51#/R,R9HeŠTcÄXt0)'@K&:9$! 061J!<5"ýdU5\U1IEd/ _ÿ ÍÍ+4>54&#"#4323>5>32#"&Çt1K-*&^^œ5[9 =û'œ/?bB\\tn¨– |H*+,ÿúê¥%3%#"&546327.54632#.#"4.#"32ê}db{xU( =,/>15YG*(0GTG0]@0@> :'yÝa‚}^Rs $,/8C2(6)&;AdM-M:T@#EC))ÿöÍ6%#"&54675.54632#".#"32632#"&#"327+‘CgG/*EhA16" #*(#1  . $-<3Z(lvE@.A5(<=#$9+ 54%3>]'ÿ>Ȳ?#"543232654#"#"&547.54632&#"632#"'32632ÈyIC'C5W9 dSn0[N1 (; @W#Q&6/.12( ( @<-FO&)7ch¶‰8*,)$0?3›O1> .ÿ ÛÍ##4#"#4.#"#4323>32ÛT>U*[$ F='4 à&cþ´@gd",,D`27%3ÿöã )".54>2"#2>5ã .PhP. 0L`L0 \øøø-:-U0WbG//GbW0+VZD,,DZV"þÞ!*M5775M*;ÿö Ã%#"&5332>=3 /97/To;>;9Yþ… # á'>32#"&#"3#5254.'#4ȷº€m*+0f³%â,06?H%-\>O'^á?AKøQ-&ÿöÊ¡)%#"./##.#"#5463232673ÊC:€U² $$(- b [e'ãþ²Ã4 *5*@" &P/M?^o^?83;O/hN.". $4K&P][z\2D)€$bxoM(455$ / !-5 :M2)!H?7^/4M68$''+3*.2?A(0A&#- ,ÿÿÿöÖÌR#ÿö(Ö0+32653#"&5##".6'3325#"#>32327(*6*i21†f R24  BP1Ä1#Ö< þåEN*œ@3AþÛ#$%$0L-,ÿ#áÍ*%#"'#>54&54>324.#"32>áwfE6 T1V8ct\ 8&| :%!/ éh‹+ST/ " 6×65_P/€‰$IN1Á"IE,!89'ÿµô:2654&#"#"&5467632#"&#";72632#"&54632E)cI`ŠU52L$;"C6 O&6 "D,#. 0“*!~an¨(  .8+=V!3(6@-")ÿö ß"#"'#"&546323274.#"32 5/"*2x]b}~h~2 ;*=4ƒyßS _4^ˆ†bh‡ þÝ(JQ1gDò ÿö’Ô%#"'3253#"&5&#"#>32327’40: (+=00;%˜%"Ô9(þèw(+6+!=9ÿöÐÍ$#"&54654#"#463232654&54632ÐÂHP#0(610$2=F=?1þÅXI$‘$9\:FO4|6@g@(Ž$”ÿçÿ Í)42#7.54632.#"&54>4.#">(: zhT4L<+TK'(-)QQ $:• +]\iÍ'@A"lœÖÖ "4_=Vƒ!iK€dB,FV@8È67"ŽþñŒÿ/ÍÍ-#"./#'.#"#&54632733273Í + +†Y¸- 4$# /{W¬"+Y+9Bƒþñyu$N#)?)Œõþ©?>F+Sÿ }C0#7.54654#"#54323>54&54632¨ ^ _w!2d/2D?EV3 -X ÖÖh^s8_„O1x?G5ýË rH(‡ *";lgF)ÿöŒÍ@%#"&'##"&546732>54&543232>=4.'5Œ`R9>>9R`j]*  #",/.+1!+ &]jäW—I;;I—W_ˆ#9(  8&(0323>324#">4#"32ê|cqn4'‹R$5Nkn!%fBawP7E…^]F ƒ'8 GAàd†šuhOh#"*?Rm>Ji;)dB1þkÅ$>@%Dnÿö9Á3@#4##".546=4#"#4>3232="546322/.#"9AÉ3D *'#"-"kîQ:˜$2'´ &$BU!!þ¡"@B.LTV#*;:+ 2 &22Ѹ¤:Lþî88XF9 !ˆÿþb =#"&54654&#"3!52>=<54.'.54;2>32b"$"R/+þä" /)"2kQ! (4 $9? 7!) KáÙ'€#9SAA.  LB',!*B*+<ÿÿÿØ #\ºÖ¾ÿÿÿþbC"\j„Õ+ÿ U@%#7.546?34&'>U†oFo†—jj–TZPJX×PZWJâlzÖÖzlg~ss~gRuþc|tSM|ÿö J##"&'##"&5467#>3!54.+"32654&543232>5m66`R9>>9R`33#* K)ó] %Ü$ #1,/.+1!+µqBW—I;;I—W@o/Sþä 5!# "2! 8&(W6"t88s7V*L6&!ÿnõÍF%#"&5432327#"547#"&54>7654#"#54>3267>32327õGK$< 6 f%W`* #"? &Z5Q$]?2 –Dsq p¬'&H+ "%?6j- 4,²!"1<67OM6iKÿFט3"5463232654'.'&546323273#"&#"Þid/K H_bY_^n/  -;JOZTbbR ”º9&=- KGGLs¢ ?<fN(/83+3&Ycÿ>—Ì2"5463232654.'&54>323273#"&#"„NJ)E4MPA &X<X% */:GV=MN;†Â'6' 97AxW1.bG+'!'OXÿ÷ó+'. #"67'.#"'#'>554&/é  +3!’!;9!:ü*#=™   é‘H!ß5!,º? 7ÿ Ó1#"&#"6323273#"&#"#"54>32327 (/</ ;H' (/ 6#$2*$N:W& Ó2-+%:&=Q2-3%„ *68fP;ÿ9:!>"&54?654#"#!>?>54.'&546323263![P#– $ (þå&€.. !I#–# +%€ . Ç?,"7î %0ÀC& F$%4î &0À(- ;ÿµ:Ÿ 3!>54#!>?>72è"$8%€%W_Z-þµ&€( ;˜œ7 &0À8+ š‘ %0À:þÿÿþ­054''&'"#"547.+"&#"&5467>3232#>¼ŒÖ*w þÁ!A" %a J$ ~™F;BNH*Éþëì þ` ™;  ÉŸ>Ð14Ú! åJ6"#"'632&54654654'#"54$54&'"547>7.˜0):M¦%    —g$'Z]4!·! L8$ e5"JIU,g F)B4NÙ .PH-‚+5!ÿöõÍ=%#"547#"&54>7654#"#54>3267>323273õ !W`* #"? &Z5Q$]?2 …+¬'&H+ "%?6j- 4,²!"1<67OM6iK)ÿ áÍ!2%#"&'##54.'&546324.#"32>áwfDh 39>8.+EKN0qpct\ 8&| :%!/ éh‹RA#39D4. 64gu£€‰$IN1Á"IE,!89)ÿö°Í%#"&54632.#"3267°=kb}~hd=;1t - 2=LV†bh‡V( À!+F*!))ÿöLÍ!#"&54632&#"3#327K)b}~h  q¯¯'" †bh‡  ´&4&#ÿÿ Us"(C®Í$…f >4632"&74632"&4!#.+3253#4&+;2673!5265&&-&.ý.-%6%þý"A!&ƱZ(6­!ŽKI$8ý×@#&$$#"##$%àF,— , þ÷dò52ù=G«-Fÿ&à–72654.#"!5>5#"#7!#.+>32#"&54632&M*X8#.">þÜ> 6T949U6*54&'5!#.+"7#7632É!:þè9 7 6Uˆ (“#m6!#>±5!C& z” ÿòy¤!46323273#&#"!!327#"&À>t!  7 h€/þÐ#2D< vi.ŽU•·EœÃ!!⺖,Dh=' e=B»ÿÿ*ÿòë¤6ÿÿ;–,ÿÿ ;+",jÿú½ÿÿ ÿòr–-ÿó´–0;%#!5>5##"&546322676=4&'5!3232654#"´3ST,þú:Ø%E.)< ( ,:;#EBd:# þ¬e`®"µ3K&"?òþñ4suL$#bŒÎ6!7³'60ˆIM“´–3>%#!5>=!!5>54&'5!!54&'5!3232654#"´3ST,þú:þÑ 8þê:::/:;#EBd:# þ¬e`®"µ3K&"?ÒÝ5 "?±66³³6!7³'60ˆIM“¥–.%!5>5#"#7!#.+>32#5>=4#"d">þÜ> 6T949U648"7?%Ð&I*$m7 !@ô.RªªS-ñ1 OGß%"/Ëa""¡s>G0#"&#"3#'.+!5>54&'5!3267>32%#7632Ž$> C1(X ¤‰ :þæ; := 7YI1XþŒ(“#\"P?]C‘' Þ&Ù7#>±5!7½YCY;>j” ¾s+4754&'5!!5>5!5>54&'5!%#'&5432Ñ/:: 8þê:þÑ 8þê:::(š"Ò0'66þD5 "?JþÐ%5 "?±66Ÿaÿô×e/<732>7.'5!654&'53#"&5463#"&'3326—  –&0u™)õ73Ñ+KC(7c|8Q 50,.oc7>$9þì*7 =þgSE#öFW2/(ÿI¾–))0#054'!5>54&'5!!4&'5!¾þê"8$þé::8 /:8 :› ‘6±?" 5þò?" 5þD6 ôÍ 3!5254/!3#5>73„&'þæH 4þë=IÆ!$zôÍýŽ,0w .'5Z©þé'`®%4!#&+32#!5265%4&#"326ˆ%<~¨FHm>' „oþº;&]Sa##&K];:'sþø'6/Th&4.#"326RA<2D 5pPþÅB"#ACf;$ s^G!:)4#*T9,'J[÷1W .7'":;".E¥F,%3.ARþô <þä10þã R*_®4!#.+!5265Œ)9.CY±,8þÎ<&@8$œ5=ýÒ$(: ÿ@Ê®!*4!#";#.+"#5>265#ì):A('#3 noÁEL!% 8V-Ý"á n;8)$/þ&0-ÒlT',1<Òb…¦oþ!$¸þíŽ$…®(4!#.+3253#4&+;2673!5265‡"A!&ƱZ(6­!ŽKI$8ý×@#*F,— , þ÷dò52ù=G«-Fϵ\%3!526="#52>7.#""&5463232754!32>32#"&#"3#.#' þÒ3/") Ÿ±)D40>" -A(0'>G<6 02.7+ (6<,2*@-!>04E)±¬f#!0ïþÖ8W\U\VC%!B_^BÖ/!.×#9DE9#%&@S^S\Y9.  ÿñè¾.4.#"#5332632#"'732>4.+526f8,ˆi1Ro‡!/$Ši‹JEg,= &K4g^!7-¥ÌdO…! $?'Xm‡ a41600!M#®/%265;!532654&+5!#"4&+5!";!5ö/!þ¬ /þÏ(*+, 1OT)*212!2þÎ-.žþ]++(3ß/!PþZ£/$!/þ!.-ÿÿ#y'wöá†#æ¶;"32>76;2#"&#";#'.+;!53254!H+*/E) +Q[&C 5@)T*?B. ³«&7&RþËV225œ%0Ò(BDH98$!<ˆ Y;Z?í7(ïKUã0"ÿùÊ®%72>=4+5!"3!5>5##"54632š#W =3/*8þÎ5/ã®V";D6[^3æP!,þ*'!.!þóþ‚?(+²¯$4&'533"3!5265##5265'=ÒôñÐB""BþËC"þöþõ @ñC!&;7ýó ,Fþ[F--F»ýÀ@þEF+,G#¯+%>=!3!52654!"!54!"3!ÞE!þ®#BþÌA""A4B#R!E6B"#AþÊ*GÇÆF..E¥F,-E´´H*,Fþ[F-%ÿñÞ¾ #"'&5476 2654.#"ÞSNTeŒjiff fgþ¤f{ 1R4@\/xY[¡48gh˜’jjhhþ*¬‘*RYB+=df7²#®"%265!;!53254!#";!5ö,þ²+þÍS03ì 1%TþÍ/,ýé,/Vã.#+)þJI¯"#"'3!5>54!24&#"326I|b=H$CþËB !A%{‘|[B$&4!COîNnÃF-+F¥F,kYHV þïQ)ÿñ·¿"23273#.#"3267#"&546Ÿ3Q1  ‡U%EE2 6WW,M"d¿™ÒÖ¾.ébb.IxMV~@M; ©É”œÔ…®7265#"#7!#.+3!³@#Y9.] ,)]%@þÌ.Eþ)››%/þF-ÿñØ®$72327.#5!#"654+53#"&54ÃA$(ÿ1#$ CÅ’; ÓF)Ç?{(1]-HÏ0%' þ¤R$ )[þCŒ!2'?®(7G4!32#"'3!5265#"&54>34.#"32>%327&#"}0325.0Sz>¡ƒ.*9þÎ:)0 y£+AjD#<@#7P)ýÁ)P725'L." ..LL)o‡1&%2†p!?@0î;V,þb)DF%%FD)ž -Kö®5!"7654#53"3!5254'.'#5>?'.'AEuŒDì%,<3oš# "þÐC\¢Bá%A(³4>2®& ¢ª'B<ˆ×0$ %#"Ä$30×ÙI+%ÿ@®-%;#.#!52654&+5!#";2654+5!#"­%2 nnþ10()1&(!ç!P1/!p5)ÒlT(9Ú-"*6þ(%"íO**ȯ*4!"32754!";!5326=#"&5u213;)2?Af(<321TþÍ+*x]bMM-"('¨3:)ä.)"2þM'3Ï9UN$>®6%3!5254+5!";2654!";2654!"å'2ûæZP 4#!¥!+,4#!¤!+,.+h*,OæU-/þã7%-/þã4(%7$ÿ@>®:.#!5254+5!";2654!";2654!"3,nmüëZP 4#!¥!+,4#!¤!+,.+'2ÀmSOæU-/þã7%-/þã4(%7þ(*,Òή,7>5#"#7!#"32#!%4.#"326“B @', ¥,);[€>4gFþ½À%P9!#)J\,Eÿ2' (:¾$<=#<<%Æ,0þÚX&´®,@4.'5!#"32#!53265%4.#"3264&'5!3!5>5‡ 0T;Jq@) "5[:þ¿)*]":="#&L\ü!G„,50U:\€>3gFþ¾/#]%=9 #&66!F4 FÚ#><#<<%,-Y,> þÚ!Bÿñ–¾"2#".'73267!5!.#"#7332>#ÖÓ‘0X;4 bw’þÓ-ŠlT†  4Q¾ÒþÌÇ%1# †£Œ+€¤ebê.&ÿñ,¾&>"367632#"&'&'#3!5>54!4.#"32>R6*•_`ŒŽÄef„T03•'9þÔ1/00,_)86.6+%(BF'6<-œ&3̓bcÏ”fgZLQcà-,$0â/#þ¤JsF- 0DiAYB )Btʯ$,!#!5>="#"&##5>?&54>3&#"; 7 ?þÕ@ !  þü³0I/›®3d3è)$DW¯-Cþ[F++F½þ¾;:À-ƒ:8"·”W(ÿòãÚ'42327#"'#".54674&#"#"54653276íZ='=3=WL+-~<"+',d”o%$!Ú@Uè0*LTT7+>\0^:%  **5?þƒ¶/,! 1ÿòûÇ!-"&546763273#>32"32654&f}SS,UH5VZ7G< FM*/B5&EEh0K^:.NSœéA'?w_;O 0W8jKLÃNe€oUae‡ÍÐ(4Ȕ+5>574+324&#"32>h +×^`ZuÙ×,ó€# ‰>J(#3 s'$5DM[ƒ'*÷U°|&8¶ $®Ð.+3#52654!™  Š#2ô/ !.ƒT  þÁ8'),&|ÿ„úÐ$4&+"#5>7654&'5!"3'265#è?IÂx 0 . ,JÊU|0L|Ž5,"Z`)((4þõEŽœ!]þÚj ÿòžÛ327#"&54632!7.#"c!G.a$^MXlp^OaþÆÔ5-. =J4kIh„lp‰fT'7@+"¸ÔY7.#"#"&54632;545"32>32#"&#"#'&#"#5>=&#"#56?6ë % (1,$%Ù(#,1' $  6&'$0~e)Ù' e}0$&+ü 2.$ #+=>+q)!$&q+>=+ B QF@°8Œ&")Œ8°@FUÿòÛ%4&#"#7332632#"'732654Ȏ7*^ D'MZ{ŽlRiJ OM.==G0Gh)2€@5Ri>KV =;0)?,Ð+?4.'53#5>=#5>54&'53¢Í Ð%%Ð&Í&Ð&&Ð%‰ï%þÒ%"/Ýï$"/ /"%ÿÿ‡"waï¦öÕ82>32#"&#"#'&#"#5>545"Ë%0/$"$  % 3"{Iå, -å$% +==+  (3&$S"Æ$ŒG$$*'#.gÿò÷Ð#4&'5!"3#5265##"54632325•0­- '&í."¥89@ # /l+$))þü1%'5BöqW8# €Ð#453"3#5>5##5>5b*ž”›š*Iß)«¦ &¯,o('þ¡_(5þúI#$%þ€€þè1#&-Ð*"3545#526=##56545õ"!Ð "Û+#&Û(Ð*ÜI+ܾ,ss* $%þî- #&††'!H("-ÿòûÛ%#"'&546322654&#"ûFGbYDBˆgYDBÙ9FWE2LY÷gOODBc` DEþÂfSd‡Sbd‹Ð4!#5265##565b++#&Û(Ð*ÜIs)"$&þï- #&Uþ«'!Hÿ- Û!14&#"'73632#"'3#5265"32>54&d “FZ'6+FFXC.%1ú2!Æ?6%--LB0&7jj 0V5sGJ+€7&&7÷B¬95)P7Vlÿò«Ú327#"&54632#".#"jXJm"o?\re$;"#$;H]pqWd‹em‹%+%_ÌÐ.+#5265#"#7!· K&%æ-K ˜T þ­*')N ||ÿ,äÐ%232?&'537654'53#"&546X 5,%¡!+Ï  qM.„~(R9)od(gJ$ýÔN *Gþªi]$ÿ-wÍ*2;;#526=#"'&54763254#"'73632#"'27&#""3254u$%è&$+4A0100B1. ˆ,4E]]E2.š+)"`G$('#bv* !/.FFigFG.¨3=þà.Œjl‡. +O,þZ¦,þ±+Ï×ãÐ-37654'53#5254/3#56?'.'Ñ&*0$š4?1N39Í+BU,—,9YO,!Ð CF ]I{R7/i~U„{/%ÿ`åÂ#%#.#!5>54&'5334&'53â90þ­%%Ð&¯%Ð&¯@`% %"/þÆL%"/ü/"úÐ)45"327545#5>=#"&5U&Ô'!/2:'Û*,ç(&B`A)t%%$&S){&$#&þî($)„),?Ð74&'53"3!5>54&'53;26545";265z!#Ú($"ý & +Ü+!]"!×(#Vv',9ÿ)*%"',þì#$ )--þò$ÿ„Ð:%3#&#!5>54&'53;26545";2654&'53"Ê(ý¤& +Ü)!]"!×(#V!#Ú(b/!Ž|*%"%.þì#$ )--þò$$',9Ð("#7!"32+52654&#"326/2#8GU_pÛ,"ÿC, 5D° ! |(/`!*8R&#UþÖ5,¹ 8µÐ%9"32+5265454&#"3264&'53"3#5265 3#9FXC"(PÏ''&(ôZD,!6D²,ç-&&ç&%¾'0`!+2A ,+þ¶5,¹ :*%((þé''ÆÐ)"32+5265454.#"3263#9GU# (PÏ''&(ôY$#!!A8¾'0`!*0 ,+þ¶)¹ @ÿòÛ#5332632#"'7327#53&#"J  L!Ywx[hMDQƒ™™s #Bˆil“h Pж/ÿòðÚ&4"3>32#".'#3#52654&'57"32654&-qw_]ˆFI_4R- q%&ç&&$(ç÷6B%7++MS¾$,oW„hiJL)9H1Š('-!cQGh0Wdf† ÎÐ&7>=##532?&546;#;5&#"ö*(‘t rzSbÔ% $ØT?H7/),iÑ"ª"V/K%3ÿ. V&>·8ÿö¨Ÿ$3267#"&54632%3.#"7#'&5432a010G$nGVeu\LT þÎÌ *.ZÝ(š"?[-09QVygo‡[\ A2La ÿòž± .64632#"&74632#"&327#"&54632!7.#"b&&¬«!G._&`MXkp^OaþÆÓ5,(4}%%þ£=J4kGj„lp‰gS'7@20 ÿ'Ù«92654#"#5>5#5354&#"57673#>32#"&54632UI3,Ø+pp ]ss#D,8AVS)52·;Paa"ñ45©" w"—-'OFþÊjp<Ÿ#.+#5>=4&'57#7632} -v%Ð&&o(“#Â}7!þ´%"/ü/"2” ÿöœÌ%2#"/.#"3#3267#"&546ô?[" =K±¯ S<+>$#(?$SkÌ=*.bM%FT*4 %-&}bn‰ÿÿ3ÿö\ËVÿÿý«LÿÿÿòW"ójàéÿÿÿºÿ&«Mÿ÷ºÂ+97432326=4&'5!"32+5>5##"%3267654'&# # & 0FV iu½&’K1B¤0&+B +o8†/" O -3Q"/:Àxnã (@°Â3A%+5>=##5>=4&'53354&'53"32%3267654'&°iu½&¯%Ð&&Ð%¯&Ò 0FV þø0&+B„3Q"/u‡%"/ü/"%tb/" O ) (@ «24#"#5>5#5354&#"57673#>32#5>5‡K3,Ø+pp D/ss#D,{)Ô+,j"ñ45©" w"—-'ŸÇ4 3ÿÿöž&i/ø¨ÿÿ¤&jwþ¦ÿÿÿ,ä•&wTý±ÿ~åÂ'%4&'53##54'#5>=4&'53T&Ð%%Ç (Ä&&Ð%%:/"%þà%76 ["/ü/"%þ´A÷¯D4&'&'5#"'#"&54>54'5732754&'5!32>Í$Yâ!ª‹€&!9#‹ª!âT)&9`=J&!@)=%$T=`9&4r '  ! 2bE¨Û£6!Û¨F^1!  )w3%IN;&8É9"4¼F&;NI)ÿ÷ŒÍ/43232654&'5#"'##"&546732654&,/...10*AYncOnnMel[%-a-0I86?Ndqfa‚e]ƒƒŽ_d„ @92ÓO>‡€– 2254#'.'5!3#.#72#!5>5"#7, Å®¡16"¯8WEBd:# 1RU.þø6T9Kþü•”÷"&ªM3¨'504J& 3°2Nª­/:7>5#"#7354&#5673#.+32+7#6254&x 4,  w 60GW(P5½¥ ‘K$m)3|_ # Ê|  Â-+(ÚU7*ÿó§¯B%#"&'#3!52>54!"3>323273#.#"!!3>7§+“S¹i#BþÌ%( C4C"j;M_F?s!   0O3k|/þÐ"2C=!"0_.q=A­™³F. ! &§H*,DÅMwB* !!â#4@#˜}.Ch<' 0,ÿ÷ŽÐ;%>32+.#"3#32>7#"&'##56545" ƒL<^=K±¯ Q?),[>YcX'ÜI*Ü&þ`n:-&)"`M%BX UG‚`~*E)!"'w¿²  #35>73/#325426=#3!$Þö"%#è2M+2Kþâ&)L8$‚Jœ!:BýÊD#£v©0..0)­“1ôÂßÏ%(35>7632/#6?4>=#3 € x) Ÿ.' ! ¹ #,i)S&"A1.þá\ Pr\; *zu9i² @C%26=#654/#4&'5!!3!5>?!!5>5%3'$&)L8#øK)2M+ý« 8 0ŒöýW Aþá!7þê8 ÈœR0)­“1bv©0-14  þmýÊ'+"©¬3"#?ÌÂæÐ'3=@45"37632!5>?##565%>54/>=#7'b*Ü&âI x#þ6 (Ó(ÜI# .‚ "-“*(t)!"'Ž·1# þáM% eg*Ei\4 r±zuÐiiÏ–8@%26="#52>7>73'.'5!"33#.#3!!765[20 1S±"8/&8 fF1(8$¢' ‰k±!""±¬ "6,þÒPþéq'2ð ,+OŸ#BEa#iE2% «þÒ.ì2"k²Š0¸ÑAJ&+5!#0"#"#;#'&'##5>='#"#56?636;?>=#½#Ò ,2  '!$0~e(Ù' e}0$&3(!\U À˜' 9N&%;@°6‚)* 8°@Fa~ ö°KS%26="#52>7!!5>54&'5!!'.'5!"33#.#;!!765‚20!1S±)F-O!þƒ!7þê8 8F1(8$¢' ‰k±!""±¬ "V þÒPþéq'2ï ,*OŸ;M‰.ä3"#?Ë4 #ÆiE2% «þÒ.ìTk²Š0¯ÑWg45"!.'5!#"#"#;#'&'##5>=&#"#"'#56?67!#5657>=#Z*Ü&rP7Ò ,2  '!$0~e(Ù' e}0$ þø'ÜIÆBU Àt)!"'w|C 9N&%;@°6‚)* "°@;:ƒ*E7i~ ÿ1è@P26;#".546;2327654&+52654&#"#5332632#"3#"&=332>–S +%EC(OT+I#cRad=9ˆf5Pr‡FWL¹iU/2!+0$-c@-2'/K6'="#(;&ø APC 6&þÔ40qS? 4&#+o  ¹  8/  ²A!'; q'2r>2hn(2  C[]\+Y  þ§™@^?% ;, %ÿ }H&4632#7.=4&#"#54323>54&BÕ ^ au 2d+2ƒJQ3 iþ¬ÖÖh]®_„G9¶€ :ýÆ uE%ŒÿôÊ¡ ,2#"&546"32654&#4&+"#53;2>53tY›bÓÇÄ‘c†„ecˆ‹/’’ ¡QŸfÊǑгþú°²€…²þh!&Á*ÿöÖÌ %#"&54632#3265'"!.Ö_azzcdxZÿl9>6A Gëj‹ˆchƒƒ¶f=ûXDKgÿö—!"&#"#.'5!632å? ßö   µ´]&5)%'ýÏ$" þc»;ÿÿÒá7>32#&#"#3ö "D #R!¶Wƒz*mCJ(i"=6;þÝÙþ¢ÿÿÿöv'® ÐâÿÿÿÔÿÿÒ '®Zÿúã%ÿò5¾ B#"&546322654.#"%2327.#5!#"654+53#"&54ÞV¡cÒË‘Îþ¤hy 1R4@\/{A#)ÿ0'$ AÅ’; ÓF)Ç?{&3Y^£fÊ›•ÒÌþ&¯+RYB+7.# Z…†i[„Œè[@8GRJ??GÏ qM.„ 6(R9)'' ¡) ƒe` ‰Zkšh‡eT^e (ýÔO  !"RM–Gj\1=g+"%ÿÔÞä52#"'.54>7>>32>54&'#"€5gY7=Œa6iY75Wh5(6(hM V\^Zä 5Vƒ˜”w !6VƒMJX8Q-@qG‹£ «yz³ÿÜÖë-2#"'.5467>"'>32>54.'ëQjeC! Me\A! %7 % %(+! ë {Zcz ƒX^rf L4_~(]B+F; A÷S[#"'#".54>54'5732754!32>54.'5%#5!53÷+BqG‚%  4 GqB+!â #$!%:`=J&&;)=%$T=`:% %(â!ýÃP Pƒ*]nU9£ $%9Un]*Eb2 !  *2L.&IN:&8É3'"4¼F&:NI&#=-)   !1^óNnBb)ÿøŒº5=732654&543232654.'5#".'#"&5467#5!53…`///--/10&ZmaQ"0pOcmZ%-tP PæÓP=‡ 86‰=P_m $8!$ƒc^)(‚Ž]fƒ?:?NnBbA÷ãSp4.'5#"'#".54>54'5732754.#5!32>'.+#526=#"#7!Í $" â!+BqG&  9$IqB*!â  %:`=J&*")=%$T=`:%ê K%&æ*!K, ˜.K3)  ! 2bE*]nU9£5 9Un\+F^1!   )0C(&IN:&8É "4¼F&:NIý  @(!#,<)3||)ÿ÷Œ³2O%4&54323254.'5#"&'#"&5467326.+#526=#"#7!C/-..a&YndNA6pNdl[%-`.0Ó K&%æ*!K, ˜ † 96‹?NÎ '6!"‚da?DƒŽ_d„ @92ÓNÖ  @(!#,<)3||ÿgÛ¤+%27!5>=".546323273#&#"ˆze';þ×A ?l*T\E-Ɖ?s!  7 q}"2F=e9*F.!0IzM£¼!!⺧‚KsA) ÿœÞÛ(%#5>=#"&546323273#.#"327š,Ø+0.[xzV!L  !* C3‚QD0"2 ’km~ˆ&5mhÐP )|7'7'77'77''_6]LU6hqU7ZXb5uÏ)@.w8@=¾É/@4w>@C qº#5!53QP PXNnBb#‘¿'>32.#"J»aWœ6 -Y3L'R®-8D9-* ;M ¹¼#53!=98~Q1œ38 ¹¼!5!53#þ„~89Q83œÿ|Y )7ESbr""5462#"432#"&""%462#'&"#"2#"&#""542#"&""54#"&"#"5462#'&#"#"5462%""54632#"&V 0'1" F0 x2 ¢0 #  0þ¹ 0þŠ n   N< &‘!! &B: & :þº  & þ  $$  ¢ &  ‡   $ÿVQ (.6;"5432432#"%432#"2#"&462#"54"542#"5432$"432I221$1551F2112x22¢112#ddþ¹1221þ½f15!1221u421·331#214þº2112þˆ223¹002"d#ÿnw3H%;#'7#53265;!532654&+5!#"4&+5!"$2>32#"&54632²!2z&Yæ0 þ¬0þÏ+''0 1OT%.230þÎF0RifUm.-’'k--Ÿþ],*,.à-#NþX£-&"-«(/(*@@)(/ÿn¨*?7#526=#56545"74#53"&543232>32|Y•&Ð'ÜI-Ü&ÐBÛ(!!)z>c#% % fkk (óò*E(#!)îôD)þî+#’¯:+&#*##*#*=– .32654#"#!5>5#534&'5!3#632Êe`®23ST,þø8AA9;#DD'Bd:# KþüIM“™3K&6|6>!!7 6v'60ªÂ/703267654'&+5>=#534.#53"3#32¢0&+B¸iu½"99Ò770FV Ú (@V3Q&Ð66& #–-327'7654&#"72'#"'!5>54&'5Ê"G+U'U`eN-TS2JO'Z5^'#;þè98OþüU&U!2MI3&J4[6O&Z¶7!!?±6ÿ'æÌ4327'7654&#"4&#"567632'#"&'#5>5ŸE#%e'_C8#CT ?Q@PI^GW'Z-4 + 8ò,Nö,e&_0EWi,# MOx]xJW&Z/' "ÿ!"!5>54&'5!2673þÊ !:þè9 7eU6 p þ6!#>±5!&C##5>=4&'5!2673}Ø%Ð&& - þ´%"/ü/"!7 "– 3#!5>5#5354&'5!#.+"É““!:þè9>> 7 6Uˆ NŽ6þã6!#>6i5!C& Â!#.+3##5>=#5354&'k -vNN%Ð&11&Â}7!{6›%"/‰6=/" ÿ&E–82654.#"!5>54&'5!#.+">32#"&54632~&M*X8#.!:þè9 7 6Uˆ *±5!C& Ñ-"=`r8T›p <ÿ&¸Â3%4#"#5>=4&'5!#.+>32#"&54632326dc %Ð&&k -v'1+0Dj`#;2%,;¿ p%"/ü/"}7!¼0 Kg;s« <$ÿœi%#&#'.+!5>=#"#52>?>7.'&#"#"&=432;54&'5!3267>32#"&#"ø…‰" !9þæ;   ‰¤ XE >$X1I]7 := 7]I1X$> EX*;•Þ".Î9(#>Î+Þ '‘]?P">;YCY½5!7½YCY;>"P?]‘E%ÿ”äÌ]4632;54&'533267>32#"&#"#.+'&+#5>=#"#5>7>7.#"#"&0$0):6ê,:)0$)  ""./"+,s" !*ê6 "sŠ"/.""  )˜&FFt'  ƒFF&+51 :_ {84È  'ŽÈ _: 15+ÿ%ë¤D#7332632632#"'732654&#"'7.'732654.+53254&#"` b*He229AfO (.C:-'% &Q‡+iv/X @002“:.#&#'.+!5>54&'5!3267>32#"&#"ºX*;-…‰  :þæ; := 7YI1X$> C'‘E%•Þ Ù7#>±5!7½YCY;>"P?]#ÿ”íÌ:"&#"#.+'&+#5>54&'533267>32§) %"26"+,}" !*ê66ê,C)0$t+51 9b {84È  ''  ƒHF&"¡œ@353>7>32#"&#"3#'&'#5#!5>54&'5!â"6%8 I1X$> C1(X ¤‰*6" :þæ; :=l‹~L1Y;>"P?]C‘' ÞDp†Ù7#>±5!7êÌ;#"&#"#'#5##5>54&'53353>32Ó) %"26"Šn6,ê66ê6 ('$˜+51 9b °Aq  '' ƒkU:,("¡œC3267>32#"&#"3#'.+!5>5#534&'5!3#â 7YI1X$> C1(X ¤‰ :þæ;KK :=QQlYCY;>"P?]C‘' Þ&Ù7#>|65 66êÌ>#"&#"#'&+#5>=#534&'533#3267>32Ó) %"26"Š}" ,ê6??5êBBC)0$˜+51 9b È  'ê6%  6@HF&#œ?#"#7!3267>32#"&#"3#'.+!5>5þ6T9«;# 7YI1X$> C1(X ¤‰ :þæ;l.Rª!7½YCY;>"P?]C‘' Þ&Ù7#>IÌ;#"&#"#'&+#5>5#"#7!"3267>322) %"26"Š}" ,ê6D- 9 C)0$˜+51 9b È  'K!7} QHF&ÿÆ–/%#.+5>=!!5>54&'5!!54&'5!f:>Qh:þÑ 8þê:::/::€6§H9"?ÃÎ5 "?±66ÂÂ66ÿ”êÂ/!#5>=##5>=4&'53354&'53#.ze&¯%Ð&&Ð%¯&Ð%&+"/u‡%"/ü/"%tb/"%þò/"{84¾–0!5>=!!5>54&'5!!54&'5!#.+"f 8þê:þÑ 8þê:::/: 6Uˆ Nþ5 "?ÃÎ5 "?±66ÂÂ6C& „Â/"#5>=##5>=4&'53354&'5!#.#¼%Ð&¯%Ð&&Ð%¯&k -þË%"/u‡%"/ü/"%tb/"}7!ÿ&â–@26754.#"!5>5!!5>54&'5!>32#"&54632&L*X8#. 8þê:þÑ 8þê::«:*5##5>=4&'5!>32#"&54632326gc %Ð&¯%Ð&&Ó%'1+0Dj`#;2%,;¿ p%"/:þ´%"/ü/"%0 Kg;s« < ÿ¤:K"'32673#"&'.546323273#.#"&5463274&#"32Œ  )R";gF[k€¾™7s 1J/v€ kU@Z% ?'8! … 3 V.©„_¦}›Å!!Ó$37«‹.O2, |‚”NpA_‹ùfe 2 „LÿJÚ0=".#"632#327#".'.54632254&#"n#$?D" ”?=z[!1a$bI%5,%%I‚b-D!`r1*0@"G%+%cHP7¢D:Tg !kLd'J0oUq‡& þ÷^.DN>'ÿ)y¤4327632#"'732654&#"'7.546323273#&#"-LQ.viY¢ (.C:-'% #ޝÀ@p !  7 mRWAev4% '- U·–œÃ!!⺢ÿ)›Ì92#"/.#"3267632#"'732654&#"'7.546ó?[" =KWD+>$#6 (.C:-'% &NbÌ=*.aMVm*4 ")%8% '- Z|]n‰ÿQ–!#5>5#"#7!#.+#.n> 6T949U6:>!@ô.RªªS-þ6§H9ÿ”ÇÂ%#.+5>5#"#7!#.+&+,eD-   -Dc/"{84 L!7}}7!ÿÿ¿–<ÿ<ÝÂ#%#5>='.'53654'53*0ì/h#Ä fc/‹H¸)(´ùN$ ÿ2¿–-33#!5>=#535'.'5!#7654&'äÛ'8+”ee$CþÎD!llƒK3$ .”'–-Bâ 69!Av6Àj2Þâÿ<ÝÂ)3##5>=#53'.'53654'53œrrr0ì/qqh#Ä fc/‹eþâ6)(~6ùN$ ÿ ÿÆ–:!#563654/#5>?'.'5!"7654&'53#.y23_w4 ,é&(CmF=2. U*q()î041’À')>LŒ”APÁ g4 v;Š2 !:¶þî+–H9ÿ”ìÂ6>54'53#.+5>54/3#5>?'.+53ø  (ž3SŽ!+,f[O(‘r^  Ï+.0)*x× {84 Œ{ ¥#Aÿ»–'%!4&'5!#.#!5>5#"#7!#.+d‘ 8::>Qý¡:6T949U6,ý5 "?þb6§H96ÿ.RªªS-ÿ”¶Â'!4&'53#.#!5>5#"#7!#.#%Ð&&+,þF%D-   -þˆL%"/ü/"{84%L!7}}7!ÿÆ–-!#5>=#"&=4&'5!32754&'5!#.h:HSj::S>RL:::>"?°=kU~66=V=Õ66þW6§H9ÿ”ÛÂ/72754&'53#.+5>=#"&=4&'53ñ1#&Ð%&+,e&-G+U&Ð%6Å0j/"%þò/"{84"/c2<9T/"%d$"¾—/536754&'5!!5>=#5.=4&'5!ÑI86@8:: 8þê:8@6dƒ::)9Tš– -Õ66þD5 "?°/ tpjQ~6ÿÿÖÂ40536754&'53#5>=#5#"&=4&'53¥!6&Ð%%Ð&6+U&Ð%qe#D@ j/"%þà%"/c WJ<9T/"¾–)%4&#"!5>54&'5!632!5>5S>RL:þê: 8:HSj:þê:ì=V=Õ66¼5 "?°=kU~66ÖÂ+%4&#"#5>54&'53632#5>=C61#&Ð%%Ð&-G+U&Ð%·$"0j/"% %"/c2<9T/"%dÿó@¤ 3.#".54632>32!327#"&54Ë *K/Vlsa<<6J«zIvB/ýé0NP)zh*›Q’µ¢+E3&zd08'76s1CW=7U|?e;DÁ—"ÿ÷ê"+2!3267#".47.546323>.'"^–þÌMK3G!A“5M(Q.=eo ,&%2Ì·cw72¦*EIN!+;'77(NG—E,"1ÿR@¤BL327327#"&547.547. 54632>32!%.#"'0NP)zh$‹U)&+4< )4>ZF3 <6Jª}IvB/ýé¢ *K/VlKU|?e5D!*$L+!/'.G€S '76o‘1CW= +E3&zdÿ]ê2;2!3267#327#"&547.547.546323>.'"_•þÌMK3G!9:* &,4< ),LUQ.=ef ,&%2Ì·cw722G *$L+!*&x](!+;'77(@U—E,"1ÿÿ;–,ÿÿÏp'wIØ„ÿÿ¸¡'wÅ ¤"ÿ&ŽœF%4&+!5>54&'5!3267>32#"&#"#"&54632327>-ˆ£ :þæ; := 7YI1X$>  ( 3XN.ƒo)52 *^l|Ù7#>±5!7½YCY;>"1BT %;]:š¬<0#dÿ%ÓÌE2654&#"##5>54&'533267>32#"&#"2#"&#"&54632. 0GJ,ê66êC)0$) %N„dV )52¸fsYk  '' ƒHF&+51x[z‚<ÿoÊ®)7232>=4!"3#'7#5>5##"'46E;$02=3/.4y&Xè40ã®Ul(:`Y.ç0  ,þ.#‘'j ."þóþƒ=ÿn÷Ð+7232>=4&'5!"3#'7#5265##"'546&#  0­'&#*z&Y£0 ¥6;>O#6,!¡*%!/þú,*’'k'4CönY5ÿO¾–22325!!5>54&'5!!54&'5!#"&546‹ &þÑ 8þê:::/::XQ+87 B„Î5 "?±66ÂÂ66ýë^g( ÿ&åÂ1265##5>=4&'53354&'53#"&54632$¯%Ð&&Ð%¯&Ð%VS)52¸;P‡%"/ü/"%tb/"%þjp<#ÿn¯/%3#'7#5>=!3!52654!"!54!"°#Az&YíD"þ®#BþÌ@#!B4C"R#C6B"…F-’'k+EÉÆF.1@§F,,D¶Á>'+EÿoÐ-45"3545'7#526=##565b*Ü&Ð$Û(!!)z&X”%Ð'ÜIt)!"'ts'#(þí+"’'j!'‡†*Eÿ¾–-!"#7>=#"&=4&'5!32754&'5!VQ>:HSj::S>RL:: 89H§6¨=kU~66=V=Õ66þD5 ÿ”ÖÂ/32754&'53#"#7>=#"&=4&'53¥61#&Ð%%c,+&-G+U&Ð% $"0j/"%þà%48{"/c2<9T/"%d+ÿn´¯+%3'7#5265##52654&'533"N$Az&YïB#þöþõ @ñA#'=ÒôñÐB"…F- ’'k-D½ýÀ@þEF+-D£:8ýó +Eÿn‚Ð'%>5##5>5453"33'7#¡)«¦"$¯, )ž”›š+Iz&Yš#"'þ€€þè2"#0+$þ¡_)3þùI’'kUšõ,%73UYGzÁk’ÿÿÂe"$wÂÍÿÿ(ÿòã¨&w_žÿÿÂ+"$jÁ½ÿÿ(ÿòãW&jIéžÿÿ_–ˆÿÿ&ÿöx̨ÿÿ Ue"(wŠÍÿÿ ÿòž¨&wF£%ÿò°¤#"&'!654.#"'>32!326°´“‚±2sR{g*žN“=þahYZhÞþØÄ ‚$Q„We&haå¦ÿÿ#9'jõˆÿÿW&j`é¦ÿÿ%ÿñÞ?'jÚÑŒÿÿ-ÿòûf&juø¬"ÿò°¤ "&5463232675."c‡º¸·¹þo^`qp¼n¿š—ÂÁœ—¾@ƒ™™ƒ6ƒ••ƒÿöÖÌ 2"&546;265'.#"ú`|€¼}{ A:7? K65AÌ€bhŒ‡egƒþüKkbT6QaVGÿÿ"ÿò°+'j½UÿÿÿöÖW&jSéVÿÿÿñ–?'j£Ñ›ÿÿÿò_&j7ñ»ÿÿÿñØ 'hÇÇ‘ÿÿÿ,äB&hTé±ÿÿÿñØ9'jÆË‘ÿÿÿ,ä[&jTí±ÿÿÿñØt'|¼Î‘ÿÿÿ,ä£&|8ý±ÿÿÈ:'jÆÌ•ÿÿú[&j`íµÿÿ&´9'jFË™ÿÿµ['jÀÿí¹–#74>354&'5!!"&'"326 #:dBE%98 4þør”T9­Zk µ06'¶6"#=þN6Y‘IOÿÿÿöë«Gj–*4%26=4!"#!"&54>354&'5!''"326*?2/536-Lcþ¾r” #:dBE%976Ÿ9­Zk 3:3©-!%*©MRY\06'¶6"$<þN‘IOÿìc«)64&#56732654'5"&'".5463226754&#"TV=0)2€>6&V/K6O({U54Y%1<*=@U=ýº 7*^ C)K[/A)CE%o+þ‰(ç('/536-Ra!/cQad=9ˆ bQ…!#)0E +$0S©-!%*©OS -K2DJ!GS=4!"26=4!"#"&üã®V;$,6=3/43/536-M\ZRŸåþóþƒ>(:`Y.ç)' ,þ>D+2Q©-!%*©MU?ÿÖtÐ37232>=4&'5!"32654'5#".5##"'4>&#  0­'&<)2€A3I>¥6;> O#6,!¡*%!/þù:7*^ C)K\F.IönY5#ü¯>"26=4!"".57!3!52>54!"!54!B"51/536-EX+6"þ®#BþÌ& #@4C"R#C6œ+Eþd>-/P©-!%*©LQ <*¯ÆF. "§I),D¶Á>'ÿØ›Ð6%".=##56545"354532654'5›>7I>Ï'ÜK")Ü&Ð$Û(!<)2€LZJ1q†*E)!"'ts'#(þò87*^ C ÿóŤ+.#"32654!#"&546323273_2H.v€"5E?T>;ÿ-‘j Ä¾™9p Ñ&27¬‰EmA*RmI. (gCg¶œ™Æ!!Óÿø˜Ì%%2654&'5#"&54632#".#"2==(eSVi€[,B0=KU>(0  Rx{bmŠ% *$,$`NXk¹–*%"&5#"#7!#.+26=4!"#£_F6.6" 4 >>443/536- )(,>^Ì "*)ªª60þ'782Q©-!%*©<;ÿ×àÐ(.+32654'5".'#"#7!· K=)2€>6F=K, ˜T  þ¶87*^ C)K[D/K)3||þJþâÿ7ÿ– (3"&54626"&54632"&54632"&54632"&54632â   Ä S J  þâ s   !  ! † þþÝÿÿ” "&54632'"&54632'53þÿ    ñ þÝ  u  44þ ÿcþâÿ£ "&54632þÄ þ[ÿcÿ!ÿ£ "&54623"&5462þ~ u   þ[þÔÿÿ£ "&54623"&5462"&5462þ~ n O    þtÿ`ÿ<ÿ”53þtÈ 44þCþÃÿ ÿ”53#2#"5463þCÈO !  44;G<Dý_ý²j .4632ý‰  þJþÃÿ.ÿ’ "&5462"&5462"&5462þm A R ®  H G  ¹Tù 7"&546326¹ 4¶3#3444¶qI+i%.'67.'>7+ C$*+$  ($ ¦  % C%'U'% !,ÿûèHS64&547.546;237"&4632#"'./2+".'.##67632>G%?& aX3K,1:18 1$32#@Ã%(/( s %‡3H;%$< "dBGE26 (2(=/M*4H#>*&>/¤(:.= øV"&547;23!7!4&#s((Î0G6#þC#r10º!67=PþÆll.'(V0"&547".5.5##54?>7>54'54&#" 7;   >vx# '± .B   /þø,Z)Ye. w )ÿþâT3!2++'"5465!"&545;$  þç1&T!'þ¢ < –)(8ÿþÑV73!2+#"'"5465!"54#'"#"54654&546324;*  þèZ4 V!Aþ© .—V1þM;$2 0 =V d0ÿV%2+"&554&#"#"&546732326¦1 .!!  3&( þ¬M E5#8 7ÿÿ V2"&547#"&54654&54>7"#"&547á     17t ¤ !Ž'.% ! + ?/W/1*6('&ÿþÒV""&567"&5473!2+#"&5!A-' ;+ þ÷(230-1 Aþ§c —-þÆ7ðVB!654&#""546763632!65654&54>7"&54674&#F^/T='$X  ,B%  þp ++3+P C(¢ KŒ8$)1*’#Y0FB)Fi;7 4g#/J) 40!*9:=Aw"&546732632#4>54&#"v " "# )Þ$6 )%¯4)þ§ð43!2+#"'"&5!"546> E*&  þåV4&&þ8sZ.,# ÁE6åV$"547;2#!7!2654&=4&#eFö%1+=þ’$B3=ºW569'EUJSl,8 1-E.K12!2#"54>='&#%"=7>54&543Ÿ # 1.X  L[L  þÒK7*A"ÌG0T IGUq ¿" ãV!2!>;"!4&#"#!"&4673…!:þ> +  "~þà/(%36>þSN.>D(â(45 çWH%!267!754&#""&=4&5467.5467327>3ã(þ±@u_,H)  %.( H >P'  Hjy[u&7B4 b#B]6‹'"/   /"&@A.T=:þ©ú4"&547+"54654#"z#$U "9 3 ,0!#m9þC%.J 8/V"&547;2#7354&#"$!' 8%+¬7$¼#52 -P „nbSl %ìV3;232>54&#!7&547;2+".=4;&?! +Aþÿ+ö!/[S#1^Q "I:[E?uH?&=4$ . ‹!<6+F` ßXH2>57.54>?#"&547;24&#267>=4&&'&54673ž&Pª© ˆ! !K  '‘ %'%4*Kþ° P "DH' '$N  K4.'U21ƒ1  =  þ­å307"'.5467.547;2#"54654&+"#32632®N)#<Á¨!KAš *: !.¶2(G $C #þ÷婲÷Mç fP &>+ØV77"'.54>?.547;2!7!'.'.+"#32632¯M  #<Á-A"!þ_#Ž1&š *9 ",Ø 23 $B#'7VC,¤dl¢(5$ ):,þ¨Ö4F."##"&574654.5467>7>7.5467» C/(1(9 #-%(= i 0,þ&ÃEð‰ 7 /$]>æ í&,-/ . ÜV>4'!67!4'.54654&+"&54677&546q!)!1(þL0:G:4!$ ¥'*V &!,# À .%2S ## D,#3  N<M¿.3þ©ã4/F%4.+".'&547;2#"5467>"4654&=4632É(0.Î" Â".# *GFOlB4!þƒ"   æ>F$ 2 +;M1 /&#() J&(þœdJ\¥p–#@$ (%+çÿÿÕV"2#"&544&+"&5473P&&  :á-* 3 4$=IZ&82 U7!0<V]"&546764&#65#"&467&#3>54&&'&5467!4&5.54>?Q   * k" !|ï*@&% 4 75þ´* Ç:  /  1+­32?  +%þÔÖb 6 ,Yä‰ ' -8, ÿÿòV9;2#"&54&#"#!+&54632.547"&54Gè8þÚ #&G / V  þ¬S aE&":$2#C5$*K#h?1%9ïV$K2+"&554&#"#"&546732326!2+"&54&#"#"&546732326–0  +$!  ÿ0  ('!   3'1þ¬M E7": ((þ¬N E:#8  !ïV:2#"&554&#"#"&54673"&546732632#7654&#"—1 -"" þô  "!# *3(+1‰lWP E5"9 v%5 *$¯2'Aæw5"&546732632#7654&#"!"&546732632#4654&#"] " "$ )þö " "# (Þ$6 )"²2($6 *$°/2)„ô)×2#"5467>GL @× $fFz$-ôZ×2#"5467>32#"5467>ÅGM @˜GM A× $gF{# $fF|#cÿûõà7"&54767632õ 9#,62"  8<!R7 ,-6ÿíÚ 7"&5472+"54&3mE# : 5FÃ8,…^E.  IIDFE“ÿþ…D!,4632"&54654&#"#.'&#"&4632“C7C5"!'@#.ÅÏ2CF.$ & #>. Q;#?F,þ‚.Uÿ±I%"&#"32>767.54673(1# L›+6' D08£8F6 4u<0 $$5Z9(ÿÿ ÿÒe‰&ªÏÿÿTÿÒò˜"ÝJªÿÿIþ»#Ý‹þÂÅÿÿWþÀõ¼#Ý ü[ªÿÿƒÿ(öâ#Ýôþ”â•ÿÒß¼54'7• *.qUµYÿ¤«~ÿ½A'7%4&'7!"&547„444N Aý287F 4*Æ665ßRF@)S®*7M~ h%% |Š !%#"&'&5467'32654&7'7'7ûHG 6@:<$EA*4#?_777f877lP‚'2 & (s &P. dí7777777{ÿÿ¹"'7'7!"'&54767!4'&'ACCACC»?ýKO  3 )À'vBBCCBBC'P ©);Z>?# -2.!ÿú¸ "'7'?'74.'7!"&547ô@CC¡@CC°ABBWAý777F 3*WBBCCBBC7CCBþ8@N?)R­*7K~c)&zþlâ1*.237#"327#&'&5&546767.#">'7J ÃpY¯ïK6(N6nÅ%Ÿ¡…/-@>‘^3s42 !"5Å5441 >djKP$A=%,.0?; CwHv !þo553zþlâ1*237#"327#&'&5&546767.#">J ÃpY¯ïK6(N6nÅ%Ÿ¡…/-@>‘^3s42 !"51 >djKP$A=%,.0?; CwHv !Wþp¿ *.237#"327#&'&5&546767.#">7'7' ÃpY¯ïK6(N6nÅ%Ÿ¡…/-@>‘^3s42 !"5r,++5 >djKP$A=%,.0?; CwHv !«,,+r«l%.'7+"=7~  5"8Ê7 N$"O )8hCN`&r§D'7.'7+"=7/977„  4!7È6  997þ $!N (7gBM_&ÿÿþŸY÷%76?>54'E €16hSEF$÷EOH ñH 1 dcR&-WÿÿþŸYÆ%76?>54'7'7E €16hSEF$;8;;÷EOH ñH 1 dcR&-WÉ885|ÿÃõ8%254'7#"&'#"+.5473267654'732=7s4(-&% #$:1-?Y!"5>"R CRm?Ž *! k( $JZ$e44$ "-E&!  A/@ e9FH*-MC1H8@D8%|ÿÃô8<@D%254'7#"&'#"+.5473267654'732=7'7''7'7s4(-&% #$:1-?Y!"5>"R CRm?Ž *! k( $/11"/11$/11JZ$e44$ "-E&!  A/@ e9FH*-MC1H8@D8%---:..,“---‚ÿ!´ %.2##"567>54'7764#"232@$&W\–%FS8ÔQkA\-?",x54'77674#"23276'7@$&G]–%FS8ÔQkA\-?",x:1JTPg‡@”100 8'!" B[0±oVNHNT!45GIHix7RƒS000ÿù8G"76547632#!'%4&#"!6¥V? sg&(=ýÿ9%&aM~SE›µ2ƒ @.QO-'8ÿù8G"&76547632#!'%4&#"!6'7¥V? sg&(=ýÿ9%&a].//M~SE›µ2ƒ @.QO-'8A../‚þ]†.&467&'=476;&#"32>73.‚>>W#A8F5D L› b. 7kD#’Iƒioh°²:þõ5”4K*>91*8%Q"CK{HL.A$8‚þ]†8&*467&'=476;&#"32>73.'7‚>>W#A8F5D L› b. 7kD#’Iƒioh°²:Á011þõ5”4K*>91*8%Q"CK{HL.A$8G000€+3$-1%46;2#%.'672326;2=.73274&''7P;,1Výò+""2È1!„!U8M(e$U*/122è;}0/@^B\/K6LN$"0 $ƒ =1`½223‚þüÏ¡2C'7'7+&5&5473!0367654'&#""5476767'#";27254'&'Å777f877ßG_¤Ñ3   `8K_(4!p!) &j7777777þNŒ/8-v `zaFt&I 3 %1;53+l,  yÿÿº5(#%".5473!4&/&'&546?´Çm8QP8*ý´'5#Ob=>= "4[~£öW3<\q›Me M7C@-(MD@¿BA4 $ê‹?0~ (A@ 2[-yþס2"%'72>5&'7#"'"&547¹;::C[N&(:*HP8 ˆiû777ýò'M;œ `G¬NF^/jg\aJ:“Šl#"&'&5467'32654&ûHG 6@:<$EA*4#?lP‚'2 & (s &P. dIþ»þ"746;+5>7654'#&57.#"3232½@5 Dj;l5w=-"c*˜- %gAV ¡Up‡K F5J7)F42fÿÿƒÿ(ö âƒþ|ö +/32&#"32632#".547$7&+"546'7'7Ê!!"]P ?„YuRv<S 4h^..c_†¾ACCßACC  V%vO5#;>"ksb‚S]8AýµBBC"BBC6fùC7>7>¾;—:1;—:& JC J,þ8ïÿ7>?>´;—9.;—9þŸ Jq J6ÀùC7>¾;—:& J3£ÿ¦'#67.546324&#"6Û 2"]G5  3"  '* @$'I   "2)   ,þ8ïþ»7>´;—9þŸ JXÑúl#"'#"&5473326732654'7ú !  $+ #-   25IJa#"546732654's!( 5 )a9"#I"  êe‰23267#"&#">š6 "(/7: 1@9#0W$77E(ÿÿNeìNÝÿÿGþÛåÿÄÝÿùüvrPKG%'7KojjÌ|}z ÿÓNT #".'ÒO- >.TþûÙx¢ÉAdÿä¿l2>7#"'#".'7,! ",K3    92<00ù & &aE~þÈu ÈB^D$eÿïp.32>3232>5>32&'#"'#"&54654&'/#$  M< ' &@p> ' #1x-&_rç!$k%G–|Iÿ걋-2632+#"'.'732>32#&#"a%' 5H0 !A.0 7)D #'Û >kþüÕ£„_C,4,"  .ÿõ°='"&54767'7#"'32>3232>54&‘;(*'h4WP;:<3Ea7  $%D IGcb9€«g Ia<5Ðb¹0Q + 2¶OÿÃÑ2'2>7#"5467.546732#"&#"÷ L9TáC[?VCu4$+ /.C'g $-ù“ .ÚL :2~" B!/„>77#"&54/q>a /"vã[”þç‘Z-‘–E0](8ÿÿ³a  '67:6C$š—&ClˆÎWd¹þGaV  MÿÝ¥l$&547#"&54>32327.#"Ž…3%7.21=/0þé'*!#yß" 4" '5-‚oLx>’"'ÿ¤œk"&5463267O'#%. 8'90+NeìN"&#"32>767.54673Ë   !1e%,$$- " !L$"#:Jrþ®¸B#'7%4.'7!"&547'?'7ü455Ñ Bý,79G 4*Ÿ455‘555®774Ç3C' @(U°+7O}e*&þ˜7749774{þeë2 6'7'7'7237#"327#&'&5&546767.#">¡>??Š>??©>??¸ ÄrZ±òM6'O7rÇ%¢£†0-A?‘a6o63""5X??==??=º==>É!?fkMO#A@&-/2 @=CyIv "ÿÿþŸk+ '7''7'77>7654'k455466455¡ €16h ./C&!ƒ221G220¨221½EOH ñH +7a@65-Wyº“*.#!".5473!654/&'&546?'6´Çm8QP8ý³*3"Ob}= "4[~£TþÐúW3<[q›N22#K4C@-'MD y¥A4 "ksb‚S]8AZÿöºT767&Z && &&&% %& ÿãqé%#"&54>732>?32q¬#   #'+)'" ÒdS   ÿžÿϦî)%2632##"&54?32>?&54632G % *#51&m"% #  #m"& ¾0 !  J :% $ ÿ”ÿÒúè?"54?326765.54?6732>?63226732#"'"&#">. +       3 1  R)8K.)R     !1 "  B ,ÿÙÿÐÓ,%"543>?&54?632>3"'â2- C.; #M>O1 l’ &&  *  ÿÿ˜ã&2%2#"&54676?64+"6?>#67&H,$(o:?DL9$ ( P:  Å"% &ã,'%+*6&H $EH   8ÿóÿ»lç-7232632"54632327>7>54#".546Û+  ) :¸^)  f %ç    $x# 3  6I’ë 726?632#"&54654'4>™' VA, .Ã"- Þ# (:! (y / ÿÞ€Ú+72>;2#"/4>?>54#"#"=4?6*!VEH,   O@I#%9C9 ED  & @2*  ÿýÿ¨‚Ù %2#"543232767&546"3264*@KØ3/)(?3S55 IÙ"%(1‘&! +$)N4( .$ÿÓ†ç&%"+&54>?2#"&'463:;26765&&)" <"!*  +Á «  "oQ e ÿÔÿ}p4745467'&46763#"#"&54>?'&Ó+(K ):  KcK"k0x      7 >   D" ÿºÿŠºû@%2674&/&'4?2?6?2#"'".4>32;2?67&'6325*   ! / 5Wš  7J '!O        9 SJ  /# &ÿýÿ¡˜Ù4D7#"&/463232>?4/&546?632#"/.'"72>54/#"ÞŠ( !  R#5970! ]   *<    IL   S ÿÎÿž¹î$%#"54?2>7>7#&576?>32¬ +mK»"+#/¢© 6#¬@0`) _  ÿÿŽí274672327474/47>72"+"&  ="&.K7  7u'2    +   ÿÿÿ¨ÚáP'"/.=7>75.5>?2376323>3:32"#"/&'#"76?6;2n%! ± , $    h  G K&"F  # *&      ?4  ýã(7'&546?#".'74?2722!36?>32#¡A<  % ª A n%j+   " ?CgÿÖhæ)7>3#&/&'4>7/"hX  +&)6i  NO0E Wš:     $, ÿ}¶í972>72#"&'"2632&.54>7&546â d +  ?ˆJT@ "%:& ,80" #) "Æ4     X0#  - ,ÿuÒø:DP%2#';2?672#"&54>?&/&54676?674#"7>32674#" 6 h!(2L-"vQR@86  " -*$*ç"õ (+  "2/+ "8  S!  ÿ¿ÿȦÝ3747326?6;2#"&54?67"#".'>?2?6765&”/&'1 00 !' '!,v   >[©.& ˆ  1 $@ )5 ÿÔÿ}r @#0#"546?'45467'&46763#"#"&54>?'&r!  Ÿ+(K ):  KcK"k0"#o      7 >   D" #ÿgŠæH74632#"'32?2672#"/&546?>?3232654/".òc   50&6\ :rG :   ! ².  4- 6'  %5"  ÿšN€8C2#"&/"/&54?254&54>7>7"36?45 Zk 9)%!. ,#  +3U‘BUÞ** € /Q 6  $ %;H)4 Õ  ÿýÿ˜_ Qa%4632"&'"&546322"&46#"&/463232>?4/&546?632#"/.'"72>54/#"F !   S ! Š( !  R#5970! ]   ë !@ !!þÚ*<    IL   S ÿçué %%"&546327#"&54>732>?32P  ¬#   #'+)'"   ¸dS   ÿÎÿþ\V %4632"&#"&54?6;2>?32 ! L‘«"!  #&**'" 5  ^dR  ÿºÿŠºm L2#"&5462674&/&'4?2?6?2#"'".4>32;2?67&'6326*   ! / 5Wš  7J '!mþâ        9 SJ  /# &ÿÙÿÐÓT 6"&54632"543>?&54?632>3"'" )â2- C.; #M>O1  !¬’ &&  *   ýb F%"&54632'"&546324632"&'&546?#".'74?2722!36?>32#©   O   t  ! ‡A<  % ª A n%Î !K  9 ! w+   " ?C ÿòýã1%2"&46''&546?#".'74?2722!36?>32#€! ÒA<  % ª A n%3!7+   " ?Cƒ Y+2"&46&'&'46;!>?>?2!.'>£ ! þ¶%Ð$ M+ýü ; /Y!‡ "'  5 *  (ÿýÿ¡˜Ù >N4632"&'#"&/463232>?4/&546?632#"/.'"72>54/#" ! 0Š( !  R#5970! ]   "  :*<    IL   S ÿýÿ¡˜F >N"&54632#"&/463232>?4/&546?632#"/.'"72>54/#"/  rŠ( !  R#5970! ]     þý*<    IL   S ÿ»€Ú 54632#"'2>;2#"/4>?>54#"#"=4?6Á  !—!VEH,   O@I#$ !j9C9 ED  & @2*  ÿÞ€M 5"&546322>;2#"/4>?>54#"#"=4?6>   þÌ!VEH,   O@I#  !ì9C9 ED  & @2*  ÿÿŽv F4632"&'4632"&4672327474/47>72"+"&> !d !  ="&.K7  7u'U ! !þí    +   ÿ¨ŠV #.".46322#"5463232767&546"32654&   @+J1Š&/I3S55 G A"%.1!T&  1$)N4('ÕrÝ*#&=467>7632ÝÖ – \žjÝ„#&5&54>7632463>7632#&5ÝÖ/^1 þÁ †# Öþ 7$7P$”þ|ÅÿF2"54>7>£  |('V$5º    N #% …þBËÿY2#"5467>"&547672}+Ä+>p“ cq JHC §' r"Fþé/J -('¾rºR 46;2#"&'4>7&#"+"#'&'ÞM&6\2I 1=; ! $2a) ,pO@>32"&54>?4#""74632#"#'"'4'4>7674/#".O0&0U#HC% -_&$"&ôG0k6  G% 4 #" 0# ( \ !  ñiÓW272#"/&54?2]'  72 %®# U2¥ 'EP '#On=0#"546?632;263226;2#"57>72%1r:9 s  —' lb w-|–C9$ V  ,9` G UlX;"54?3272?63"32#"&#'.5#"54?>?"Å;,+ 0"63 "“#`"%ò"$    *V!§q»"4632"&5654&#"32?632#"&§½I.=j Q=ƒ 5 E%6ÐE¦/(=M =*z+% $9ÚqÌI 4632#"7";2654Úg8&-l.X#0 >½;Q+$9P 81ÿã«:ƒ'".5232654&5432™888l0[;$" ]21 /5ƒ888 1C> KF"3$/0´ÿ$'Ç888$888t7''ÇSRTSSRTÄSSTªSSTÿÚ…bc367>504=#"#"&'!2#*1#"&=##".'43232>74&#+"&'&'&5432>54#"#"&4632W XBC >Ÿ>ñ@S;K>2mM4 .4) 2$$! *M/9QV3”(Uz U % ¤?? ýÇ:&±;PJaU J5'( $   -, !>o23ÿÚ8bh3>504=*"#"&'!#*1#.5#"&=##".'43232>74&#+".'&5432>54#"#"&4632W ,z% >`>ð>d@S;K>2mM4 .4) 2$$!#  *M/9)Q43”(Uz U(¤?? ýÇ: ÞýÇ:&±;PJaU J5'( $ -, >o23ÿÙÿˆPbB463235#"&'!2+"&#"2632"'.'#".546323267"#"&KIQÐ&9@à [E>g Be++4 &#-8%@#,'0/ hBa|0%E=<”*b1"; +^* FE$./fÿÙÿ‰PWY463235#"&'!.54632#".#"32+"&#"2632"'.'#".546323267"#"&KIQÐ&9O X3)"U5*&3/Ã?è [E>g Be++4 &#-8%@#,'0/ hBa|0%E= _,(549 4",<”*b1"; +]+ FE$./fÿÙ|bH4&#*#!"&'!2#"&+#"&'.'47632326=4&#*+"#"&54;26p þä&9C#=  Ë%)#4BL]¸ 3  ;*32#"&54?654&#"#".'.'43232654'&+"&'&'3ÞCO þæ  F ?þ)%,  $HŠ1 @)%,  E91^D83EC$Y 6 ;)$ +;.ERD 6SIM9#  ÿÙÿÅîbc25!"#"&'!32#!7&5>32"&#"32632#"&54632'"&=#"&5467.#"#"#.546Ž=c9þß =» ?ýϵ U(T $8 =.)V{W.,N,$ A,‡=ï$X"$4<]Ä13³?? ¾% Ms"85< q+.HP  þù; ™G > |  = $ÿÙÿ‚cbk>35!"#"&'!2#*#!;2>32".54>54&#"#"&54654&#"'"'&546323 dIþW <3=þé'0'&7:/ ' 2A'(G,*<=*5Q( AT#*5$'A LŠ7),O!J 7.)R2FY™o.:ÿÿÿÙþçµs#RŸ!ÿÙþçµc?2654'%.=.'!2632#*1##"&5436=##"&'&5432£# þÔO47x >ñ9#>Wò 14/!#:Ê)Î635;B þë=5@  cËþž  Ò#E/7ÿÿÿÚ8p"RAÿýÿÚ8~{2+.5#"&=##".'43232>74&#+"&'&'&5432654#"#"&4632367>504=#"#"&'!'.#"&54323Ý@ ó>d@S;K>2mM4 .4) 2$$! Qp9QV3”(Uz  XBC >\-6]7>Y[6m" b<ýÇ: ÞýÇ:&±;PJaU J5'( $  d" !>o23  % ¤?E0'?7"m9 ÿÚ8š#*+0#.5#"&=##".'43232>74&#+"&'&'&5432>54#"#"&54632367>504=#"#"&'!.'"&#"&'&324&'./.54632328 Q>d@S;K>2mM4 .4) 2$$! *M/9QV3š"Uz  XBC >Y&ŠH 8 \ÃA:16…vY¥=ýÇ: ÞýÇ:&±;PJaU J5'( $   -, !> o23  % ¤?2A5`L([ : ^Y<ÿÙÿÚb;O25#"&'!2#!632#"'.547654&#".546=#"&54>2654&=4&#&ª:/Ú&9ß=þZ&C‡ 4,W?,P)<3325!&/&2654&=4#"33 =E <=ñ@YŠ%6,F8þÚ9<XVF Nòz6I7?>Ë#6+6(ÿÙÿÚÝc443246=4&=.'&#*#"+.'!2632#*1#.5##"&7   7 ;ñ>ù+2,d47 )u ;C ýÇ: ÞjÇNYÿÙÿÚÝc"D.54654'&'!2632#*1#.=#"&54327>=+"32632#"Y/+ ;ñ>BXQ}O(if å #5 (  )3D#ˆ)=) C ýÇ=….}96€ \ »  %ÿÙ+c?C463235!"#"&'!2632#*#!"&#"2632#".'4323267"#"&%'cJGSþÛ<¾>þÍ XG> [FaoR;nG- 9 sEhiD`Ì878{1&E?@ ”+b/;I:TM2)R8?e)777ÿÙÿÚc-:.=#"&547#"&543!:325!#.'!2632#*1#"326=#?H9ñþÿ!2«&<iw<@ Á>@ È>',ÿÙÿiŸbv‡%.54635!"#"&'!32#!#"&54?>74.'#"&54654/&5463:32#"&#&#"32>7632"32>72654&5"&#" &n9-þU=n >þ§ W +\# >     ®It dc:,; #1EP?6& Vi U‰96#*8$+ v9+-*AX$ $;& ÿÙÿÚUb772654&'.'!5!"&'!2#*1#.=##".'432ü"+"$3þ,<%=ñ>Ì](/UbZ `‰3(A)s>? ýÇ< dT&9*OŒU  Z_ÿÙÿ‰ibCX463235#"&'!2#*1#"&="#"'.'#".546323267"#"&26=#"&#"263232KIQÐ&99=ñA>C# *)5 &#-8%@#,'0/ hBaà [E>)I$3Z|0%E=? ýÇ:$¹ != *\- FE$./f ª”*ÿÙÿÚcF2>75!#.'!2632#*1#"&=#"'#"&54322654&#"#"&'&5432G,(þœ-9Â>ñAD0) *{ 3 2A & ($a*0 Ï>@ ýÇ;"­2K!rL' #aI!  6AÿÙœc='4>35#*#"&'&'!2632#*#!#"32>7632#".7Z[/Þ  a ?þÝ -YU58J!,-  l`=oH*ù0E#s  A ³#D,"   "60HOÿÙœc(;'4>325#"#"'&'!2632#*#!#".%4&'"&#32>:tO ñ 1a ?þó[zZ:nJ-¤$" r‹"::W(û63s(A Áp2BY/FQ 6WH$ %6,ÿÙ+´c@463235!"#"&'!2632#*1#"&#"2632#".54323267"#"&cJGSþÛ<w >ê XG> [FaoR3`C3 9 sEhiD`{1&E?B ”+b/;I,AH7 2)R8?eÿÙˆb1<4>;5!"#"&'!2#"&+#"&54632#".2>54'#JWBHþö =N&;  ÕECYJ#8^(X./mQe! ?;'p.> $(C ýÇ: Þâ#7":]3fþâU>!Œè*&ÿÙÿÚµc846;5!"#"&'!2632#*1#.=+"#"&'&4CØþß =x >ñ>… $2 3 8   …I#2Oo?B ýÇ<'&S7  r%[ÿÚÝc8F4327.54632#326=#"&'!30212#*1#.=#".74&#"2326 '943( +€]H,Qt;M%&ñ?-O9mD)¦ #%\*C($-rKAR o=™@4 ýÇ<u';NE¢ )ÿÙsbP463235#"&'!32#*1##*#"&#"&+"32634632#"#"&/4&#"#"#".XZNé':; ?ñ" XW  51&%4 4 9   :iD(V?/Q:@ ”.>. ,62'#I+3MXÿÿÿÚÝcD7"&547&54632"32632#"327>=#"&'!30212#*1#.=õQ}2Z3=-. '  )3D#(if ;M%&ñ>B‹}96L<*(@+! % \ »@4 ýÇ=….ÿÙÿÚµc'46;!5!"#"&'!2632#*1#.=##"& % þß =x >ñ>»%$b6&Ÿ?B ýÇ:(è"_ÿÿÿÙÿÚµc#IÿZÿü8ÿÙÿÚŽb.%"&5<547.'!32#*1#.='26=+"ÿT•'T =ñ?!k8T» »¼ˆ  / @ ýÇ;‘ O9¥YLNÿÙÿÚ;b7E.=#"'.5<547.'!2#!632#"'.54>54'4&#"'26=+"Ž?$C82>' ?þY$B†"0 (/!Û7Uº&;‘ 5*W  / @ l {K[w  4 Gh-  3!8§Y#{ ÿÙÿÚ”b#4=25!"#"'&'!32#*1#.=#"&54632654'&#"327ªTHþû 1Z =ñ>4]˜cMS '%#G &''Å@Ž(? ýÇ=D‰C8JZw;'   %B" ÿÙÿÚÝc34&'"&'235#"&'!30212#*1#"&=##"&546;u(#<aP Ë;M%&ñAË#_4È-?Y$81DÛ@4 ýÇ:&¯8  ]%ÿÙÿÚÝc"&46;5#"&'!2632#*1#"&=##"&735#4< ;ñAó$_­óóÕ?C ýÇ:%¶8]PÕÿÙÿÚÝc(84&+"&'!2632#*1#.=#"&'&56263>26=##• G; ;ñ?2GU˜&'8 5QtØ-V>,ì?C ýÇ<u({Z #0%þðo=™5:>T ÿÙÿÚfb/3267#"&5!32#*#!.'.U0ª%8/ >þØ 1"@DA- "R,D$š jN>> 'JH-(L81,F.NAQÿÿÿÙÿÚfb"I@ÿÙÿÚ:bC4632327>35!"#"&'!2#*1#.=#"&=4654#".?&XF#l:þW < =ñ N$/ ..#ql<80F #o?? ýÇ< D#? #(&+Q:0) o®ÿÙwb)7H>35!#"&'!32#!#"&'#"&54632"32>?4&2>54&#"L R)þƒ%8F ?þ± !odI;u8T@M?&I4\7N!(K, Lä(>#&5(L.F+#A„=? †  \\E^Fd”YF\!,ZA2$>K ñ&/# (*=O7 !ÿÿÿÙÿ±wb#IÿLÿÁCÿÙÿÚ”b#725!"#"'&'!32#*1#.=#"&546"32654.'&ªTHþû 1Z =ñ>4]˜c/<(   C[$Å@Ž(? ýÇ=D‰C8JO 6% A@ÿÙÿÚŽb,%"&5<547.'!32#*1#.=532>7ÿT•'T =ñ?!§ÈÚ"("»¼ˆ  / @ ýÇ;‘ X¾¾<&j ÿÙÿÚc3A267>7#"#"&'!2632#*1#.=#"'#".26=# - )C <Â>ñ?A#Gc -RT WbN3uæ/š%R;@@ ýÇ:%Ò-5za [‚¥&‡ ]0 ÿÙÿ/ˆbK46;5#"#"'&'!32#*+#*+"32632#"&54>7&#"&'.547.m˜3÷ 1N =ó3î '[€;>"%:Tv7Qb-2_¤œU#0%@(@ …9q2'H> 1'E7">,- 7-R«54./.54>7;2;2#"&#"&+"#"&'4'432¤%9  " ~`5BV#4)Eš  > ("1*"&.o7! =57" -j5*>  t@KÿÙÿÚ|c.5"&'!:32;#*1#}>;0  >ð&: Þ?? ÿÙÿÚ~0.5"&'3=4632.#"3:32#"&+}>;U8H3°F* X€>/K£ î&: Þ?¡ 7:2) 0 +),3V !þŒÿÚ|~).5"&'3.'&#"#"&54632;2#"&+}>;S 6<2R ?aJT¤/®@  æ&: Þ?({9* :-b¢n = þ¹ÿMC%'4632#".'&54332654&#"+"&€D4jG-HZa& !)7X5:22' ( 'b82*+Y=(55%5 ' +ÿ:ÿBäX%'4632#".#"32632#"&Æ4).t^D (19M(&21  +&=y #)G`T-@@-&  (  qÿbÿNœC4>32#"32632#"&ž'<8( IdN&5#C]ƒ& , .% * jÿbþÇÇD9467&54>32632#0"#"32>32#"&#"32>72#"&Ž 47@ ' BgY#/ (N#((X&=& +Y4Rv¥ 4*% ! &# , #()+cÿâ«:s".523>54&5432Í0[;$$ ]21.5«1C>!KC 3$/0ÿÙaŽ~#".'"&#"&'2Ž %0@i> <xÖVi(:;->qÿÙaš"#"'&'"&#"&'2.'"#".'&56323 ¡Ž =ašgUB *c¸/e d:8:N< " ®xÿÿÿÙÿÚ|s"RKþÈÿÚ|~(.5"&'3.'+"&56;2;2#"&+}>;S!9S;>U[6m" ´@  æ&: Þ?-9;#?7"m9<þÈÿÚ|›124&'./.543232#*+.5"&'3.'"&#"&54þÐ\ÃA:16 …vY¥= î>;P&ŠH ?)`L([ : ^Y<ýÇ: Þ?2A= ÿÙÿ/ÿð .'"&52 %B*'<Ÿ†Ñ>¤ÿÙkª „'#"&'&'32>=4&5432>32#"'&54>7654#"#".543232654.'&#"#"&54>7654&#"#"&54632{878'N>^¨;3c#&;@ýó0 IV28c<"#$  P#ª878^2_sb 9"1*?þÇ)6$0C@ # -*(  ,67 /50A< #!?+  A (  > 3C<4ÿÙÿÚb;JN25#"&'!2#!632#"'.547654&#".546=#"&54>2654&#"'ª:/Ú&9ß=þZ&C‡ 4,W?,P)<3OS>5#"#"&'!2#*1#.546=#"&54>325!#".2654&=4#"3' . C =>ñ@YŠ%6,F8þÚ>: FS QZGz6I7ýÇ< J„9!0 1g}/xq [‚¥†6+6(878ÿÙÿÚÝc*.432<645.'&#.'!2632#*1#.5##"&'747 ;ñ>ù+2,d878472(v ;C ýÇ: ÞjÇ^Y~878ÿÙÿÚUb6:72654&'.'!5!"&'!2#*1#.5##".'432'ü"+"$3þ,<%=ñ>Ì](/UbZ `ú878‰3(A)s>? ýÇ<dT&9*OŒU  Z_*878ÿÙÿ|´c@D463235!"#"&'!2632#*1#"&#"2632#".54323267"#"&'cJGSþÛ<w >ê XG> [FaoR4bB2 9 sEhiD`Å878{1&E?B ”+b/;I,AH7 2)R8?eþ878ÿÙÿUˆb1@D4>;5!"#"&'!2#"&+#"&54632#".2>54''#JWBHþö =N&;  ÕECYJ#8^(X./mQ54'4&#"'26=+"'Ž?$C8o' ?þY$B†"0 (/!Û7Uº878&;‘ 5^Ì / @ l {K[w  4 Gh-  3!8§Y#{ «878ÿÙÿ,îb25!"#"&'!32#!7&5>32.#"32632#"&1"32>32#".5465.54632&'"&=#"&54>?>7.#"#"&'&54676Ž>c8þß =» ?ýϵ U(- %> Â/ _!:>  8Ä22³?? ¾% Ms" "@  ! &  )95++)90'þù; ™I > c ÿÙþÞcb‡>35!"#"&'!2#*#!;2>32#"'";2676;2#"&54>54'&54>54&#"#"&54654&#"'"'&546323 dIþW <3=þé'0'&7:/ ' 2H! !9 ,7 +)#20"- .' > 7.)R2FY™o.:ÿ2ÿ JC2>32#"&54654#"#"&5474&#""&5463232>32Ì0 )/0C2 !# + #5 >.1(&3TT9 * P=)   %7"T$Efÿ2þ¦.JU"32632#"&=465'&54654#"#"&'4654#"#"&54>3232>322>2& # )- 4L 2"4 *0+>/#''2T0 Ò  + \=)!  &>& U$'*e1:  gÿÚ¶a 2.=54l >=aB ýÒ< ýõÿÚa 2.=5432.=54ú >=Ç >=a?ýÒ< ýB ýÒ< ýÿÿgkÔ 4>32#"&2>54&#""3+G•#3+G”“&: ' 3A)>‘I)>@"1+$!( 'ÿÿÿ.$b+8&'>?67&'.'&54?67.546322654#"ã'&• V$iM =x?60  •$/r-" ,Ò#'   N n5KF`)JK4) ¢%2"00S"3'ÿi¶96#"&'.'&"#"&54632;2>54&'&#"#.54632¶…F,— 6d $ O'>D2)'/1U=p›XgKj7è71¤N+J+ = e+ÿizEC%".'&#"#"&546323654&+"&543:;2>5&+"&54;2z '%9DGD ,"N<)p? s)4 ¡< m4!M¦(CbZfQ2S&= +'@ '>*7 MK:a!174>7.542?632#.>54.53†#"² cFâ  @Ö*R.63oe%S ÷5%° b: ¯ > ¦TP&9q%  GJ ÿúÿ¢ñ`;'46733267#"&'&=4323267>7432+".'#"&F.  ] > &P   > @..À*0b=V(C[-)@@=B}=c9"6AA> kãA©+8<7HÿÿÿiµiM%"&547.54>3:32"&#"32632#"3267654&543#"&'.'"H•%P%>9 ") , oU  !==49*:('G 1 2 '‘I3+ `,&5  G0  = S*%  #B" Bj0 Wÿÿ;a&94323267"&54632#".'4&"32654&5.'& ; +"--)b$RŠJ-I|Z.@?B5(³?6 #R [; R`? $0?G@7¥wm %8_w­fD*,0 FÿÙÿÛÞð-!2#!"&#"32632#"&5467"#"&547654.'¯6 þÚ ? !r9G[( = :t'Oi$$ð5  uŒ(e 54'&/547>322654'"&#"AB3!ºK5&4  $IþÛ J*DrÈ*N78±6e/ÊK54 $L6k$'u[@6' .ªÈ2 4>32#"&2>54&#"ª21=l21=lt.1 . »+:s7+:s76(& þÌ~ÿ» ##"&'72>72'#"&54632E# +T B î!0 ]8"  #%   /ÿÆV #2654&#"'&/5'&4>32#"&sG*$•9!6jfE;Ô))/=7(,C]7-%þÎ-$qT}U+:™#0L)'GTN# #/732?674&#"72654&#""&54>32#"&54632z$ !"%6D+#§31-?3&53;*'IK'Eo7!¨5-#Ý*FU,+.Pÿ)KK531?ÿìÿüf.*2!5!#./.'#"&'32654&##"&54>âQl:þz[)YQ(…M.&!!-1áqXeI22þ<. M¶§ y0"'92! ÿìÿïˆ;4'#&/.##"&'32654&##"&54>32!5!632'4&53#'‰J2 F$]S‹)…M.&&(1Ti:þ <:b`2šHþ$ZK´§ y0"!?2! sVeI28KrZ32ýó4ÿçÿ·J23!./3267.#"#"'67./#5!7654&#"'#".54;2327ð?QƒþÖ%/8 Œ?CQ@Ês<>N5^) ?"/k©&!!8s-7%)WºL3 2 0+j+,.QDD†}'110'4(S" 2  /!4(ÿðÿøZ67'&547"&'4>732654&#"#"&=467'#5!654&##"&'4?32?6323¦%+%3VR8>*() B=:(3 !P %+"u} ~!,R  O* XLfü 0" H(6-ˆK->-gSVJ UL>) 7S#' )%/'2 <2)I12ÿñ>0O23!32?632#".'32>54'#"&=#5!?4&#"#".54633()4#zþÐ "(6dS*F0'#/O0&;  V*&Ýf' 7-A+? ,7¹ 5$2”(.m6Tg -O>c5.B^K5,& #H.#½2 (  !ÿã7L O23!36?67#./&'2654'#"&=!5!2?4&+"+"&54732>7Ra€þé $  YqX9SA5W/[ .L0µ2 ;9#  '%q“426753#/&''./>7'&##"&546J1:)^6þûB&)4262tt!A7]841’ V1š+1R„?2'¬2þô0‰%<2þl/Wñ;F5K+O $!&"6ÒL32654&/.'47#654.'"2#"&546È4HV>2?ZQL,KjkKK% #$2=.N>>D',=12$ !) +Y@C2@.  ?#-<*ÿýï3;'.'&#"#"&547326324'632#"&546›5 5* HW* 9( >&&1&  $%.‡39þ/.ePJ:+7%' l  5  (/"K‘,ÿü?QP'.#.547326324'632#"&5>732654.5>7?4 '(–*4!)CO(:#10N %!1(0;*CHffH!axr ù&1+ þ‘6- $@+P52/-E'h  M5 +8,G+ W$2!=,3 *!>&9ð84632#"&/32654'#"'4632654&#"#"&ŸŠF7E',RA]‘;"!&9 #.-?8. $,#M3'€CUG5@-)?54.5467 +-c/9<+8"W@4]A;%k¤.9%"%%;2R({^85&&IhiI"! # ,D0 -491=8G6RykBEþú.&!$ .6&$$+=YN *F(0B54ÿðF.+%675!5!#2#"&54>32654&+'.'*Ij+A!þèœ|þÆVêBy1#)X0 *vR‘L.(*´s#'22&vU(4'3Jþpkbô‰03#&/./32654'"&54632>7ŒST  7S>S=v9f*%0)&"?H'Z=S2þ *04! g9)E '-*4C#L *_õ ÿîù83#'.'632'>54&#"#.5>32&/&=‡[[2$B*--((6>:I  "Q>[e^# 2ýò-),7*+,!3N&AL )3RgV*1‹ÿóÿþé.)27#"'47#5!#/.+"'767#"&¬26RfA± €=ö]q<B+#*:‹'5 Nlx0:22þ45KD0 =¸>2654##".'32654'"&'5&'7632#"'6ë*<Qw -XB?e:( '4F4 \-J  &W*3I86‘'A> 29*CQEb|[&5/#"&5#5!ÐA-1!"„7EE.‘<>QµP'3þå-E' Ã)3)"G±Bp22ÿóÿ´ç. 7265/&'%&/&/32654&#"&=#5!!7|F)*FQJV;bt'@710,?•(,?F3Háþ™p2$5 ? ! 1I#T:'h& \P5/ ">'Ó22A %5-ÿñd.P47#5!!327#"/&47##"&'"3>32#.5472654&'#"&~HÕsþçN82KT'   ;s 5 %L 'K<8V. eS#H *3F{7J229McrMN z@7.H! #)J&;N³)ÿýð,[%2674'#"&4633254&#7#.''.#"#"&47.#632#"54>72>7!*"!% 2a ]Ÿ*":9$-fM\*•.>N .K `U]#1S/*B'&.!*X78I'20Ò:)iœ1(2oHI.( \8d03p8OG65!?ÿÏJ´:23!3267#"&54632.5#5!754#"""&'>73Ø?QLþµ+m /1>vO!5JJD  F2[ /»G52þ¯$k-#!69B‹M$;20;3   ÿñ*¦_?72>54'#".547>54'#535&/&5473!7>#5.!60 J6*>16$ Ä¥34;%FÐV-7+_J0,N3,¦3“93I6&80-E'(2  NHA"30)[$2ÿö=#.(#"&/5#5!!>7#".52654”R& Ð-þÖ$F[ !N8;_5$ 3R4@RRFÍ22ÂD"3r5H0Dby^$8ea;N+"ÿñI­.!7"'#5!!>7#"&54632¢)/Y¼þÐ1P!%) /9.IOd22þ° W2'$//+K2&Ð2.=&53#'4&#"3'4632#".'&54632R G^6O:> %-3+ WA;)† d} >2þ85c.3)&'1" #CW<$ -ÿóD=.+/2#./264&#"#"&546%!!B/I(F'!&4W95!00H)1_A 1$0HþÙJý¶Ð$2>-DV/?hU>/ O6M2(Wn3$("6-+<^2 ÿûê‹13#&#'232654&##"&54>;25+"`# WTz«O@, %#*=2+O¨'<' N2 :2ýÿÒhV4  %(%8 Nÿñÿüô.'#5!!767'&54?CnCBþq5cLWA#+[m>E22Ó,RApvNNqf@'ÿîÌ4$32?53#'./7"&'4632#"'FeN}6Î! }†T ™T;~.8*10 ‘+H@]T&IB2ýòUO^1( 0 ÿôÿòÒ.2!5!#'.'#"&546¡/]þ«ÞW#*7&#*"4L”bA 22ýöLwB- #(+35?ÿú#p .&#"23#'&''764&#""&5632'5;4 "%!ôDM2#«G+ " 1”?t Ì$ 9 2ýþ-ÿe ª.* i^~“ ÿñr.94&#"'./7.'&/&'#5!!632#"&546323279, -4N+: )#,þ5J{,b Od/% C!)þx(7*S~    22I+gH7X_H(0! "ÿîÿ÷Î.%675!5!#'.'@]dwJþÖ—“þ®à\ #<`9ŠH2q¾k."22ýû&9C/ÿñL'.$(2767#./32654'#"&546'!!ø$BnnV[…- @8C*8NP>,?&Ö6ýÊÌ$8#>:./b2ÿñÿýù. '24.'&/#5!#'.'#"&54>„?U9°-6A  #]U,'0-%$ü+wA9+\» ,:22þ6p,4#$ÿñÿûè. .'#5!#'.+"'>ŸN3 ;[\‹‡*÷W€FD1Gü/D 9"z~W%22ýÿNqT+6ÿñÊ.""&546;2675!5!#'.'@]eCbŒ%%¶tµþ±ÙX (A`4‘Jd1R#$UB!22þ?K3ÿñÿû0.725!5!#'.#.'"&54632+"&54>3246H%þU?b2-".0#7 %(, ;P(" D&+É!%‡22ýÿ1%.++*1 !(,!O@&9 >*ÿÎÿü‡93#'4&#"#"&'#"&'67'&+'32>7'5¸ CZ2C4&, #   L A2m208!'  K 2þ.?` 5'/@#&3($''=$‹u ÿñå.,&'5".'#5!#&/.#'>?67&#"Y&+%&hKÂ; õ"ôY †; D, %2 0-2_z*"ŸB(22þ'&bX(  ÿñÿû.025#6?6&#"/#5!#'5.'"#"/7270 Ø$K]<',e2  '-.)!  )¤<  ?o22ýÿ9Ø! "!!9K# @ ÿìÿ¬Þ.+&/3674&#""&567654'#5!#6~BLeqÇÅ7@k~ *- 7''n*¤Õê/1@0J 0€DÇ$‡.G3!; <%22  1þÄÿeÿ8ÿÜ #"&=4632È %] "* ÿñÿ¬Þ./2&/3674&#""&5467654'#5©21>0nm¬à7@k~ *- 7'!S*Ÿ.".9,+>{D¼/‡.G3!; &82ÿ¯ÿï׈>23222&'3#'4&+Q   .ZX2@D.93ev82ýó4{1-ÿìÿ÷>7'&#"3#'#53'& %?(Xš4 TVeDV „r2Z^,t  "L= A8[)+2ýû/Ö2/þ…ÿûá-&23#'#53.#"2#>54#"&54¼B€_ rr2UUša2fO+; F5 {ET-;xL2ýÿ2Ï2cj*/2  $1(dþØÿN#a6>54'5.#"765656=3.'#"&54>Ò +#8W$#5)'%8 " d  ':* N-% ÿ ÿRK!#"&54632'&#"367?,:!-E  )";‡r5)('0rþáÿÿÞQ./?8 Zc‘)n  \å@:j2QN <%%ýûþNÿ_H#.''&/&/?'?·tn *'  -2b‘ 6‘)n *&îO5N% ;j" j2QN%ÿô:. ;&'467#"&547#5!:*E1%' $ 5"L_eœFý.>oF*> #1”mry2ÿÈ C <23#"&5<14>32#.547#53654/.5473;|)MS<8\/,?1= +A$i‰¿N-@; A µD1 2]=LH#" /.>M6f‚2 &  ,+*ÿôÿï ˆ34&+5732&'3#'&'>7#"&547#5!›@D1 . UU0þŸLg)@3)5"N^fœFž1-293†U72ýó4ÚavDCX")1™td{2ÿÈÿïJ N4&+576;2&'3#'23&#&54632#".'67#53654./&547Å@D1!7UU0ýkiWS ,|& m ("7+1F!  _‰¿ #A/* ž1-295†U32ýó4•0G2<,Et 14>^C‰n2   *,ÿºÿ^£.3#3#66FN›3.2ýã …4 64&#"267>54/&/&'4632#"&'" 65 ###Qg%  } ZG': b/D " ))$,)Á )  þe 4+ ?…A^*" dO-.( $N4%þóÿñè.3#'#53654&+"&54732632‰ hh2RR -k^RcDŸH 2ýõ6Õ2E+!#;ÿñÿŽ". <4632#"&"'5#5!!>3#".'2>54'è%(#0<×1þØ 2(1fL1R8,%0L/.4$S5* "":W»22™  *#g9Yt(>VQX8/NZ>. 6$!DÿñÿŸ³. +4672#"&#"/#5!!3>7#"&54632{  1 îˆA."ZÂþÊ/N $*$2(0#?!kA–X>22þº V1 'H%ÿìÿøê. -4632#"&'.+#'67&/&/&'#5!# ,0<oFÌ#' þ!~FC:Z #:'þbü: 5&"qþV"$GQqU=C  #22ÿ¯o’I26753#'&/&//&''&/?./>7'&##".'4>J1:)^6þûB&F-272rr n *'2>w‘B41’  ^š+1R„?P¬1þô"-‰%<2þl :ñ2;N%+'HjK+O )!6þñLk%#654#"632#"&54>3265654.'5+654.'"2#"&54632654&/.'47+-@@-" 4    #'7(:;. % #$2=04HV>2?ZQL,KjkKeB!4&$ #@   & !$L)$2@.  ?#->D',=12$ !) +Y@4jþêþ·ÿõ#6'#654&#"632#"&54>3265654.'467Ì )+k!A     "'7=JD #N( #$  ! !$K)! (#* ý×þwÿõ#8o#64&#"632#"&546326754.'467%#654&#"632#"&54>3265654.'467þ! +!("!   "%&8(:;.1 )+k!A     "'7=JD-  / $ H  %9L*$+2 #N( #$  ! !$K)! (#* 07¼¸ 4&#"326%4632#".'&~-6Ij8-!$ /A.0G%.- >}"ÿ¯à1!&/265&/.54632†K?qC$ ÇÆ1_G"Ec5 "0?'3?EP5&@¾*ª/(I+ $!" 0Jÿü%Üÿ$%#".'32654&'#"&54632Ü )I.1H@>,“M2`*E4'$3J:9sû/?3$5Sšd{©U54.#"&'>7.54>2Ù)7[( A&)+N!5'-+<,>(Z>6f C*33#H^E4U. Q(+¾ %+9&!* Í K9+6%R:5= G)/7& /& !F æ#074>7.'3.327#"&5467Û-%'/F^-=;&e )(?G112)6už^R¯+G-;"!“K#@'FG 1M+'>j_¸ÿÿ Ï(4#.'32>54'"&/"&4632>p_$@(;e=, #0G*)<  @!$>! B¢Fv!$:*Lgy[ *I=@/ !1')!,1*†""+#žA\Ó!$"36=4/.#&=#"&/46322!N› ±!0”Pk28q1íT-!!(þA  D±G"=gt7þêä' 64&#"2657""&'"54632>72>7!#,) kË  5)e[: 9& 9 & 9C  #ªdB¦   73F€Z8.Kj73'654&#"#"&54>32Jj  <~NVs/" 1(! 3FÁUßGD²ÚBFC"?&3*-!1 c) <>732>73#"&54322332654&"#"&54632#'#"@-"8bC8! !2T‡Q3L>  8/%0'0?!1'F“-DbVe7Z·¦h6FI2!    ')4J5'9 /„'73#"54#632h &(&%‰9TG&7N-S(("+"=4#6232?>323#"=4ÿ">#%F   % $&ŒO_OOî&6HüF&2! Ký 8Sõ©#· 72>74#"'4>32#"&5|+:?!2 0 /(+< Z34SÚ**H(! =V&9 )(=R733&+"467#"54632- '0!%9 Eb  %-6  / þÒ/1 "*4e '-'J'4$ %0! u2Ø0%#"54674&'#"5474&'#53>733##5Î(19"< MV(262U8 e##8˜r2@ÓAJ490g nR#+%:AS,š9€+ U D?3 9þ#Ót6#+#5##"54674&'#"5474&'#53>73;T@<2@˜(19"< MV(262U8 e##8˜rœÝþåþ#ÓAJ490g nR#+%:AS,š9€+ U D?3 9ÿõ’»<5!26;#"/467&'+##5354632#54&"3!##&#":þÖ7%f! l=h?g9#N <@22K12J@!6!<â,)03C7 .f7¦5_þ÷`BW2S*[7Šþ#Ý9.1FH1$%,9ã*.Bÿõ»6<##+#&#"326;#"/467&'#5!354&"#5463235!2@<,)03C7 .f! l=h?g9#N â ¨¨Ff Ú9'$_MQƒ# +û+Aþè>þ†$#'ÚCG:9?€ .BJTrL-Æ<9ÄýY8+*!® 3H0tÿÿæþ#*Í&74632>5!5!##&'#"&7267.#"#_L1~þ@&@B&ˆ3L]E7Zs m#-7È*>gA(q.2D.G9rÝþ#D*J0;`O-9Cu[=+.p‰frK-1wÿó#,!!2#&'#"&54632654&#!5#5!.#"32þN,15L FIW>_YAs9@+#þ° ÀN)PSVÝt@3b7!=D548F.3­9þL!85ÿóö##"&5#463!5!5!3254'!öe_Vl83Eþböþ¡K8…þúÝþõhweD-8¯9þÌ@v¨ ÿô@"*3#!"3!2#"'.547&5463!5!5!4+326%;5#"@2þ--2&,nh<$- :0*þ2@h^-1&4þª3)/-%9Ý•+B2+D F./#0/;\9þ]@€!%€#Ü##5##67#&543235!5!Ü2@Ò@8` Òþ–ÜÝþ#×!“#:\8Í9.0!3267#'#"&5463232654&#"#"/7&'#5!Øþ¦%‰RJP 1C<;8‚ KY.W;70>A%z :z'3>.Ý‹?LEK "J*G <&&0/A%@99õ$#!"3!#3263#"5"&547.5#5!5!õ þ¹)=è¨9Gã7J? >ò`þì&Ýš0 9k9¢>2DM9ša,5ÿôþ'7>3:;5!5!#&# 32>;#". $';0J1( þXþ-+þðg;43# q9'[O4¶. –99ÏU^/#?[,F6ÿô74635#5!#2#"&2654&""BôèB†li‰ò9sk‚kt¢Hx{99{xHLba%G)9KL8*Fÿòü3%.#"3223265#"'5!##"54632654&#"#"54Sj)@qFŒl09b£ƒü22D5hH¸S;=u327&'!5!#.'&#"327#". l>0)6&"þà.Ö 5$+-S;,?€EzTuX?TV²GO3Z99(aG$f$+#5O|Sd #MÿúÔ&23265!5!##"&'6732654&#"#"54…l09þ‚Ô'OhXQzTu?N<)uLFe>;;;h7K=gK>O3)(8-. %5!32'!5!'#5!##5#"&'654”þìTbPêþÑ_ 2@-CIž'¯i(,TáŒ2299þ#\*Z4:][ÿôè%#"&'#546;35!5!#!32>3äj?gk 8(4ôþnèþÌ„B4 ŽAYŠu7,G±99êÆ10 7327!'#5!##5#"&'64jTbP$þÑ$i 2@-CIž'âT?IFAÐ99þ#z*Z4:šÿþ $74675#5!##532654&'3?"&]oê àl^mM #Ir89sJ"Mo„DiEg99gChG@F;57o o65;H73273##5#"&'64'#53jTbP$r2@-CIž'' V.âT?I9þ#z*Z4:š+9ReDÿõê$"&54;5!5!#!">274#"326@u£–ÖþlêþêT=\vR\&V'E<%&; ›Y~v99¯F:>*4715êµÿõ "&546;5!5!#326=#BR§;0äþh 2VûuA*1Î ‹Y2?“99þ©?Rpo5,~ÿþÆ297467&'#5!##"32654&'.'327#"&!>2AS#Ɔ#RBkO20^K'M""N'K^.NnÎþÐ ]00`¤3K8j99j6K5F`9F)&M89N%*E9`<ƒ…ÿþÿúÆ29C7467&'#5!##"32654&'.'327#"&!>2"&462AS#Ɔ#RBkO20^K'M""N'K^.NnÎþÐ ]00`þ'¤3K8j99j6K5F`9F)&M89N%*E9`<ƒ…þš ò##!"3!#3263#".'.546;5!5!ò þ°Fè^J92BmH9QD2þþnòÝš9;79"N791.;a9ÿú%!32#"&4"546?&'#5!##5# þðàŒ 9% H2@à ÝRÐ ,@'T(ŸB99þ#Ó;8-ÿü!3"546?&'#5!##5# þðàþÒ9% H2@à ÝRþð@'T(ŸB99þ#Ó;8-ÿôõ7325!5!##"&'&546;#"a\H~þ}õ2¬FV/,D5484Ò9l199þ½¦%=:<6D9TÂr7#5Ânrrrœ##53|@<œÝþå99*»#54&"3###5354632*@!6!<<@22K12J($%,9þ#Ý9.1FH1ÿ„®»###5354&"#546323®2@<žs1² SZkþx ÿÐ 0#"54632&#"#"5432.þ´- XÁ gmD%F>‚&‡Ì”V@%4".Zþd<ÿ¼ #&+"'3;2D4š_0–8,<@†F=þ7 ÿ¼þ"&5465337632#524&"3#ö]v Ž==\@  @rF9 I)o$"#ÿ4ÿH2ÿè &##"543532SW"H@W¸M -$ÿú'##5#"&'654'#53!535!322"&462@-CIž'' V*rrþòTbPþïÝþ#\*Z4:][+9T]±þ™}53T4 ÿþÿôZ )%5#"32!5!####"'&546;2"&46(†%/+$LþØZ2@€zZ=9B8þ÷a( //+°99þ#Ýþ}f=9L;Fû ÿúÜ"##5##67#&543235!5!2"&46Ü2@Ò@8` Òþ–ÜçÝþ#×!“#:\8Í9þ& Ô/23265!5!##'#"'#'&543232654&#"#"54™$K.@þ„Ô )OIHH2!LD@,(‹3I6&N1]a W/990W0JI1L: $TZ% 2*)")/9ÿõê$."&54;5!5!#!">274#"3262"&46@u£–ÖþlêþêT=\vR\&V'E<%&;þ¥ ›Y~v99¯F:>*471554&#"76ßy–J:Nur'3O‚Lv72…F5‡,d$wbA]–x6*R9EC8Q-F:ÿþ¨74&#"5632#'#"/"&5432654&#"#"#"54632326XS_k;Bdi‡$:Td( Euj?I 8r W4L[%7ƒ!4#EJQ98++?1F&("?)6%¤$.2654&'52+"&547&54632654&"ÒLF9-I]P8aC,Bb8P]I.8>QFhFIbID+29QCN2)CAUW?C)2NDP93* "ˆ,12+&))ÿø 72653#5#"&'654'3Ó2[@@&YMz"B3µ&ýê $91`;HMDVFG:ÿü½@%"&#"3!!"&547.54>7&546323"&#"2#"&#"32632d(.#þÞ:K9#5/.;'x\3r8)A& r"BX:0 †*7¬%!#9B7G @'- >-;5;F5&$ $&1) (*(é &54632#52>7654&#"r jQUqþíÖNn_T M87C "!!LZcO“Å9 /V87FA5 ÿü ".5#463!!;ÞužW$P9W|þ„+JvT.2h‹dX9X9EbW3;ÿüÙ%!3#".5#4633&54632&#"iU@þŽV‰u.\…Q/H7QîWkV 3C=5]4[lE9"9\dDN2HIeKM97þ>ÿeÏ#654&#"#&5462·( 2 &@V@>0 & #((# ÿõä%%26;#"/467&'#5!##&#"5!,! l=h?g9#N â,)03C7 .f~þÖ7%.`BW2S*[7Š99ã*.B ¦5_ÿðDÚ)16323##"&'.'#5!.#"!!>2654'! +Ýl 9'$_MQƒ# äuIGe zþ†$#'ž+Aþè>Äi[9?€ .BJTrL-Æ<92OG:C3H0tþ‡8+*!®ÿøÔÀ+@IQ[#54#"&#"!##"'.'&'#53>32632".54632#"&=%!3>4'#326%4&"26Ô@9uC+20H —1" RBD=1- `D*#Yi)FüÃ*@\;?X`B<"&@þ¼ û!+ñ6n'5þ5B55B5O(c:X595g)7?I5*j_G19OxN0"þs,&6HE9él :Wf·);,cî%•0ü'('(ÿÙŽ «4>32#"&''9.D-%.! BU.%5 - &$:fÿÿå[ %3?M%32654&#"#"&'4>3232654&#"#"&'4>3232654&#"#"&'4>32þ*0" 6!/ç]>BS'8/BSýk*0" 6!/ç]>BS'8/BS*0" 6!/ç]>BS'8/BS‘':A2+;DTf:$5 M>':A2+;DTf:$5 M':A2+;DTf:$5 Mÿ3b:8CP3273#"5# &5463!654'&'#"54>3234>32654'"3:327!!#(0Gö¨þÂÓ' NzL4 ;)}$0*I`L6ì)ý)*!+-5ÙKlWá)ýØ:ü`&&+(*$8!3O\FZÜ ‡.'0I%8ýø)= °ÿ/:^iv5463!654'&'#"54>3234>7632#".5463232>54&#"3273#"=# &32654'"3:327!' NzL4 ;)}$0*I`L6ì)2EJ\4`œ\&SQ5?7UB?VG25"++! XGö¨þÂÓ()*!+-5ÙKlWá)ýØÈ%/<%ácB#>(*$8!3O\FZÜ ý‘dD/eZ:"@)(%  %1 .S3?/&&gY‹el4.'0I%8ýø)= °ÿB9nyƒŒ254'"7#"546;2#"&'#"5467&54>32273#"54.#"632654.'.'3232654&'&#">‘Y45Að !E1–gO%&JN:%&)7"2QP).|/lk³K;9$G_”ZR„V@!>   C>n{LJuJ6,{VS$@(=ä4HNB8;›Q‚A@Me.}EV}aFcBs§TQ,@2_Z-/Hk/HxLIY 0F(6P(5}Bt$uZ:3SJQ9%.D@R9"þ;,,"2 _Ý]ƒE'8VG^.¿nk::A"UWC,ýZ&N $A>$1‰ZF,$M94€<,ƒÅX'Q4>7"#"#"&%4>7"#"#"&#"547!"#32632#"547!32632M( "þi#85&G8 › !2)Gþ¸! !/%  )2!›IYœW 0 'þr&(MYœ+.þr&)ÿÿFW 72654'"7#"54>;2!#!"54>7654&'˜!745?í D1”%D+%Dj;' =;/J[»þ!AIdƒ.6^<<m#'F(9.QN((€ .&,>L73M7"!/=4>KIu(ÿÿp] Xd‘4#"32674&#"632#".54>3263!+"32>?#"5463#"32>7#"5%4'"326#!"54>764&'#"54>;2(R)23/(#€=;*C' %[5G\I(<  %6\9p-K4e &EUK %EýH43A %3€ ú÷A-NWf&6]=9/J[*Y+"H5É2&&2$BE:KY#0<(8G:(621þ÷# %-R 7ð# )(RÉF(9.!("þ¥8+?”t'J8<€ .&,=L83N6!!ÿûÔX8E4>3!+"3267#"&5463#"632#".32>54#"-BqEŸ V +!1 Þ1O, 'd &bJ,E$T7)% VHLcR9þv1! -<3<.=S3S#;%bn/@O5558(.r.ÿmÔW8E%#".54>3!+"#"54>545467#"63232>54#"_`H-G%-BqEŸV .>9ON Þ1O, 'd &þõ7)% VHÏ`p.@P5LbR9*þ0/J+  2Bã.=S3S#;758(.r.þ‹FZ |4&#"3267#"&54632632!"&#"32>323254.547232#"'#"'&54327>54&#"32>3#"=4&#"632ø(*+014'!JcBGTmuO)‘2K+ þr3c «%6/5H  2%Š '(`rk?VY=?ÈÚ›!-8&R?,I $DGP*C' $\5G)'0+!G654'4'.#632#"&54>7632"#".547372#"#"&54632326545767.54632Å3: 2"/(1* " 1 R,¦}fYO3*pBSmF\q+SY#'OÒG-C7 4 19,JE&6-=@, F8`u -UDP!7_s\P1( #*>)74 ,"%13Ka3Q U6hOTE ;p„g6ngP6;j¡>^.%,! $<6.A   /)$0#^MM7632"#".547372#".54>32#32>545767.546322>54L/;4‡3: 2"/(1*}9e¤^/LCC2 *pBSmF\q+SY#'OÒG-C7 4 19,JE&6J}c{4S. 1: *8 / 5,"?2!7_s\P ""3 ª (0ó1( #*>)74!.g^=%8`=OTE ;p„g6ngP6;j¡>^.%,! $<6.A  RNQ'/# 2@2%  ! /#:# hN[x  ,"%22ÿÿÿýþ’²Y'FÚ!þù4X =73276=!"%547#"".54;547!"#32#"54?>74&+ThMP;þô)TÏ .@b8# |8 › ‡eQÞPCBEATa¿=K2Eo-_•+•þ ):4•W 0 '•WMº  =4GH‚¬C[N7#"547!"#>3232654>7#!"54;>54&#""#"547#32?2¡.,G8÷ › D-+3#M+Ü)>þ)#$¨5G7) #-%'²!fMYœW 0 '­>4#I0Um° þ>,eA6H ,0&$&+*þr&ÚX 073276=!"%547#"!+#".54;547!"+ThMP;þô)TÏ ¹ï@b8# |8 › ¿=K2Eo-_•+•0‚¬):4•W 2 '•þFZy…43232654.#"#".54327>54&#"32>?3#"=4&#"632#"&54>32632!"&#"3267632#"&4&#"326Òt'$H0-S.8MC5T1! ÈÙ›"EFT>0+ &DGP*C' $\8D]HJQ "4^;uO)‘2K+ þr3c «%6//M(@§6O(%I3QfÚ(*+014'!ÿ;- (9 Pb1+!1A9Ñ,m`Zx ) Ô# 6*RÍ'E'2#BE:H\uP5I;*^\ /C;!þ› –1K%?N|352/OF'0+!G6ÿÿþÍ,Xhu%.#"3267#"&5463#"632#".54>3!+"632#"'&'45476322>%32>54#"ÚJ/"+!1 Þ1O, 'd &bJ,E$-BqEŸ V ;3 .%þÚïÔ“¯pF(8J5{sdž^>ý`7)% VHvQDy1! -<3<.=S3S#;%bn/@O5LcR9ß2&D,Ùÿ˜ÐЈ  dÄE}UJ%D2Mg^v58(.r.Ã\%#!"&54>73à ýÙ=))2//5¶ þ ÿýùXw„•732>54.#"%#".54>3263263!+"32762#"5463#*#"#".5467&#"#".5467&#">327"32654'&%"32654.Y /% )!, aO+E%V®p_lWnWjATŸV HR Ï :Ž (C)2K#=3NXT"hT,F&>8HI;WE7[5 &Ö"GG8)@n ƒK 7&.> &¼ '- (/.'#ao-?L6Yœe11,+- þv1( wlo¿5A6$=[LD‹4%Y¼q‰->M6J…0' !5dB:#;à™CF…]xŒA›@=K3fO8Z5# þ»CX J73276=!"%547#4.+#".54;547!"#32#!"#"5463!2>ThMP;þô)TÏ E/aï@b8# |8 › ‡\iU@ªþ¤  /Hn;W+¿=K2Eo-_•++•ë6B-‚¬):4•W 0 '•yYw_H(-Co=;*DCþÈŸXG7262#"547!"+>32#!"#"5463!2654&#"#"547#¤, G8÷ › B-*4$?}Vþô  /Hov3* #-%*²A( +/YœW 2 'þÎ?2"J10WS1(-Co=;Qh8F-X($Ó+*þr&ÿý_Y Xh732654#"".5467&#">32#".5463263!+"32762#"5463#*#"74.#"326X7&)#V++ä3K%99>HFo>* [5 &cI-F&ͧUd@SŸ V HR Ï 9Žu.'4'E4%)D¼77G(q0â7VP$1Ÿ9,>N7:#;%`p->M5Í)(þv1( wlXÈn†ë73!2654>7))>þ¤=))D )j>,/5¶ þ ° ò\%265#"#432#!"&54>73&7M RO |lcþX=))2Svþ‚r´ƒyž¾/5¶ þ #\'%#!"&'#&54>73274>73!2654>7#)>þ¤4,;Xh)AB))D )j>,"%Gc¶ þKeI þ ° ÿmX/72>32#"547!+"#"54>54>3#"i 4(GBÑV /=6-7- ÞA AYœS, þ1/J+  "$7â1þs'þÁ`=42325432632+"#"5&546;2654#"#"54#"#".5Ÿa$&O¦-UeCä  /HØy_\*2&(QLF!, k(0h…42ªþÆKi8(-C"- =;sk“>;þ…43yvuþ¦[.*ÿÿÿþX<J%#".54>3232=4./632#"=4#">324&#"32>f$99:V%=ds=4D! tW $*G=·¬w7W0 [5 &O+/E7&% Î;V,Ws:VˆN'@G6Ç­¤$3& aq{þõö‡¥,.377(/ØXIX%262#"5463#"3262#"54#">32#".54>32>3!+"%4#"326Z.,G ˜_!.,Gq]¤ [5*,#998N! 2L^W$v"22sVýßZ+ /)#B(LYvþ¸&(LZZrŽu:!C.;V,BaGFvK6J&$, þn5kr" '- Gþ” \P%265#".5!"&54>73!432+;2+"#".5463232>>5S¤R-"þç=))  ƒe+HTV@MO Z"5"/5`?0L+ ! L?7J$&2œHvþ‚ž /0/5¶ þ r´‹‡Nj6X/' !2:2!'0# &2 6G#683z[AM4.#">32#".54>32!2654>7#!"54>4#"326*V91F:/G01U#99-F$/J\Z(;]6$ -(7 ))>þ¥@080úY'0 :7)"0KU: %:jD7,KV;V,/@P3BsM8#5HC#8dG-° þ>, )3p;r)'$\Fþ¿$X z‡%4#"326">54&+#"'676?!"54>54.#">32#".547632!767.54>32'3254.Y'0 :7)"L'8 O7 - A‹E6ƒd 0 0D*6,þÔA -, *V91F:/G01U"77.G%?m«;]7# V0)'WS!.8)-G'<M>§! b; ¬r)'$\F¦#3)Bd -&)=Mþ0'3ð"&€j):`:KU: %:jD7,KV;V,/@O5eV™#5HC#e•&*81#uA,F'*3% &< =2#1::  (\J\2#"=4#"#"54.#">32#".54>3263232=4./64&#"32>§I8·¬I $-- ,'6V0! [5 &aQ:V%,BqFt65_[@tX%$ýŸ+/&  /% \le{þõö‡£%M2þÂ03G.G#-=O3:#;%`pWs;LcR8„„azÇ­¤BI þR2> '- (/þ³$V w%4#"3264>54.#">32#".54>323265432632#!"#"5463!2>54#"#"54#"#!"Z'0 :7)#` -, *V91F:/H0 &cJ7P#/U…N;]7# U1ñŸ`%$Q¦.UeBüç  /H @W.\*2&(QL-;þëA«q)'$\Gt):`:KU: %:jD7,#;%]sCaI6ugB#5HC#g’'h…42ªþÆLi8)-Co== ?L3“>;þ…43yvuþ¦+(X+62#"547!+"3262#"5463#"32 ,!GBÑV# ,!H Þ!j*.YœS+þ`'(*.Yœ1þr&ýø ‹)#"#&54676323?62#"54.Õ2M, 7i.0.H‚Bx&M".,G*;6T#/)</8.D#7$"FÅþ-&#LYØGl=' ÿÄt•« %323254&#"&54632#"&54õ&@A-j@XxW6Nš¶4;6D*N;*3 T([!Z@1l*8;1(þî Ób354'#"&=4'!263!2#¶ÎÏ 6% þ§ yG_L³% +ô.1•( 2c•_ÿ ÿ–¹ö9?'23267654'&#"32+"&=!26;!2#"&5<5467354'#4 ':nHS©-2FTja„ÖG'²6$þâ ù#R~J.`¼{ˆÖ°Î³l"01"]LUÁSdtXc•!/0Æ27Uwn=sÄ{~In³% ÿþEv J%2654&#"4.#".54632#"&'&5463232>?2#"5©)-!-,&3IYE%JR?)">†$*[A 96 4eGb9,¼ØMjU< 2#DJF832#"&5467.5462654&#"ó4#,-!0V 96 |g¡È4Ojc2tY!56F^* cŸ54.#"%#".54>32632#"54>54&#"#".5467&#">324&#"326Y /% )!, iC-G%V®p\hHbBi?)VK.7.…_-:gT7P#9:HF;WE7[5 &V[%"GG828¼ '- (/.'#jf->N4Yœe.-#5GA!S¢=+;qBgƒY¼q‰@^I2—8% !5dB:#;]†™CF…rÿÿÿþžv':‹?ÿÿÿþÿÿÀw&@þ:­ÿÿÿþzv'4¢?ܯŠ".54632X!, > * %$Ü&#/(%$ * ØYGV%262#"54#">32#".547632>3!+"3262#"563#"'4#"3265.,Es]¤ [5*,#99-F$?m«u#22sV ".,G˜_ýZ+ /)#B(KYZrŽu:!C.;V,.?O4eW™K&$+þn5(KX±wþ¸&kr" '- GKÿñ\ 2#"&5462654&#"ÔI?H=;QK;2B;1?65S5CWY@>Ké7,2;E+((\ÿíâ$ )7"546324632#""3274&3254&#"¥H#'#c,"!HC.)B,.–K%'!(`(", ,%2,Ò,(!Hÿñ¿?73254#"32#"5437&5432#".54632#"54732654#"w/+.üÇ …"H(,%O96P%/-'$? ŸTV9-Ö)&%M *C>0 9=%-A55>'#B "‚?QG(&ZÿðÚ(.6A%#"&54632#"=32654'53"&54632'654#"'"32654´§gh1/#"?8<.M<ภ!!"+$!/+ª‘hPg6E'$; 3 )5  :*,#%%/(*R 'Vÿ³’,=H%#"&54>54'#".54632>54#"+"'&"#"&54632632%3267&#" Q$5 C/V0 B8  r-!3)_,þþ1$%E [6 "&  #!0;I25!  #%22pS'&-/'ÿöÙËMU^g%#"&547##".'#53>74.5432676323223&54632#"'654#"24#"'4&#"#32>Ù)"$-ªXB(5&SRP7"!&AN@#0El")")5[R95 ÅI4$5 øó =,.!N$+1$ BM >+8P 58L1 P4#,%((& $ kN&u4D,!(1'Lÿó¶”T%254#"7".#"3:;!32?3254&#"&54632#"'#"&54>7&4632f)*W9 !;! þÄ+#, !X  4$%N:-?,M&B* m!a# $v&3$+%B" $#[.::9@D(5+ 4& BTÿÙ¨zQ[d~%#"&47##"'#"&5467&5432632&5432#".#"!&5462#"54654"254&#"'3254&#"254&##"&47#32?1%-%$" ,‚:.B2-5N= T 9)+G£%>& d31ë+)&X !$È,$3 è%"(5/H-4E;!I3Ge$&.) 1!#!3)"-' (Ó.05!{B# $"4#*#)-$YÿíB6k%2654.543232654&'&543232654'&5432#"&'#"&'#"'#"&54>54+"&5463232>7H$'# D-.0.:)/D*2-0c !)@5(77&%7D4 ,#0,5,5 '. #'*3*5 $")5,? RW -)4D4@ _O&'1Ce"L5BR-&&*+#N7:&*!-! $'%!)#-3(6)ÿöe532654&'263#"&54654"&#"#"54632>32¾T&43 o#/W† I#  0+ N0# &,€P@3I//"A#©' #Ÿ*dm L#1W#0)Wÿî‰j",723254.'&5432#"'#"&546254&#"Ÿ&%I23" 9F+,8 6!-(&48"˜&,&^9N(C36032&23254.'&5432#"'#"&546254&#"o))/-0&%I23" Fr+,8 6!-(&48"C*8*#- w&,&^9N(„k"32654L4& 4&+-%0.'#, $=*!*   .&,  ‹;#!F[-/**0%$/,! ;A/0    / -: §20[ÿñº;=%32673254'432#".'#"&54>54#"&54>70;0<*& +'< .%'  %62;251' î-&+(26$,1&.  .%"0(-( 4  [ÿñº¥D"&5473.5432232673254'432#".'#"&54>54Å1'E  +%2<2<*& +'< .%& $%62;2( 3@*) , *!1'+(27#,1&.  .%"0(- ÿñ]È^&#"32"&'47##32673254'432#".'#"&54>54#"&547#53654'"#"&#"4323!2H%;7=D1§&,2<2<*& +'< .%. B%62;251'+0†#U? Ý)6 0+$,%-!1'+(27#,1&.) O.%"0(-( 4/' *+%#Tÿñe3*%#".543232654.54632#".#"eJ>(;   D8,.AA.6-+H & YGTG\0;-# 4"  ("!0 +Yÿ¦Æ49BL2#"'#"547#"&4632654&##"&5463232654.546&#"3262654&"jD(/ 32+$)D",+,,{0%&cA3 -*O/10!4V[-/#!2'D :0)/*,# '"z;22A,5 ?ÂWÿí1#2#"&4>54.#"#"&54>ïIX8  6%-R9 6@1dM.c  8 %-I5=Fd/5>*Zÿ¤t3 J7"3254&7232654&'&54632#"&'#"'#"547#"&54323254&'"546©5q(P)3+/<'%PH,)-M3  !! )I ! ! [B*}$*«nO$'->:E  hOME1!G,>!Q!/"I V;K Zÿë¾3E"&5463237332>73254'432#"547#"&54>7654Æ1'.)!-4VÂI!4  .=  O T&11"' 2$&$ ^^"' # .--1#L  O4&!,Sÿî´902#"'#"&547.5463232>33254.54Nac5 #2"$ X&&=%! 1H!//!9lU‡><%0 '!,-.1,V3F Tÿ¤µ962#"'#"547#"&547.5463232>33254.54Nab2-#2"$ X&&=# 1H!//!9jU†1:,&?);%0 '!+"1+U2E Yÿô»<P%2#"'#"&54>7654#"&54323254.'&5432#"&'32>73254'4 4$I$6- *:(Y#)7C  /"7 L,5   H> x1%.Y 7$  . 5I& !-,!#0)"( S/ ÿìÿ¤832#"'"547#"&54323254&'6323264&'&546 $=34 4 .54'#"&54632>54#"#4#"#"&546326323533#C/H0]Bb1  K)-BG.S K; =') =0\I!^ÌC0(-*  #1'!$ <I7L  $(52r"-UÿóÇ‹>G%2654.5432#"'#"&5467.5432#"&5472>32'254#"e$) & $A7A080:>5 $$ V& O--./(4->gH:W>32#".2654&#"7#"&5432] @+FTPE#8!2QD3:EDa'’.:'VEJ]'/%[9B2@F4/DŒ(\ÿïÁ/1:%432#"&'#"&54632#".#"32>23254'#"7254#"7FB?,7 06/kXp  9,GV&!&$IV7<<%'%{=U5?4U2QfLZD!*&%L>4$\ÿ¥Á/I%254#"'432#"&'&54747#".54632#".#"3276323254'#"&s%'%,FC& 3 -%1kXq 9,GV!&A IV7%[$"32#"&54632>54#"&#"3"532>32#"&5464&=&54632254&#!.#[, &4'0 U")CL mq %'54'*51b"ç+!‡,O7#"&'4632.'7#"&5465).” '%@@S"6%  /"$JX]EG^2¢! '!; )A+! "%* gGCYSD/,^ÿ¦©1 :7"&546324&#"32>32326%4632#"'"547#"&#.ü‡G<*5$D!:)!þÏaOGT?(/,$),Ÿ  ?M <*]$#E+VmjOF32326^aOGT?(3*),1 7%+5$D";(!lXmlOG<87BT-. =)^$$F+^ÿ¦©1.%4&#"32>32326%4632#"'"547#"&#.G<*5$D!:)!þÏaOGT?(/,$),?M <*]$#E+VmjOF54#"&5463232>32E"&# $+/$7;"0+5+6!&.J*1*2""(2.A  i:";2>@:%)!.!#(F)#*#1-XÿŸ¦7G2#"&'#"5467#"54>54&#"&5463232>323254'&5476õ)@& ]  'N)2) &+ #'(1(9($8Eu27*:7u00+ 6O , # ((-.1'Qœ ]ÿï174>32#".2654&#"] @+FTPE#8!2QD3:ED’.:'VEJ]'/%[9B2@F4/DSÿö£-*5%#"&54632#"&54732654&'"5432'4#"326£"77H[<1F$ +0,9X%#  ³+«3L%bI9Q@$I#2 :C(4 7&Mÿõ H2#"&54>2654&#"÷2H!#@(Ee#@2@B0/CBH*=1 %2)`J $2)þéD.1A@20B8Þ¬'2"&42"&4672654&"2654&#"iD11D1S<1D11"" ¬/H//HÏ(+$//H/ þLÿöÀGUh74632632632#".54>7&#"#4.#"#"&547&#".2654'2654+53264&'Lt`F+4Gv.3[`B?QB&8 &1!'N;6T .(B20(J0C"042 i<;RLÿ`©ÀYgz74632632632#"'732654.'#".54>7&#"#4.#"#"&547&#".2654'2654+53264&'Lt`F+4Gv.3[{?ZWŽkD4$&`|1%QB&8 &1!'N;6T .(B20(J0C"042 i<;RLÿ`Â9E3"3!!"&5463!2654&#"#54&#"632#"&54632632#%2654&#"¾!:\ý¤2>>2uEPN>'0TH56Y$:0?D2>2uEPN>'0TH56Y$:0?D26@4CTmYD] $:0?D2=I…jGi5þ“!# !QjJKACd'II-A1 6hWOc( ‹h<3SA  \z-*I:%,7dLViA28HnMZG^t.KL}1%"/-#'0OÿK¢À/;FU2#".547&54632#"'32>5#"&5462654.#"%3254&#"2654.#"BPxx?zS2\b;xxQA4@?3?&{9SI&)>4>?A!!þº#=#€Äy,GE#%HF+ÀgMŒ)^1. ?-`+ŒMgE59I>\A !@/>J84FÑ0$ !%."WT#1W".;þ90* *0Rÿö¿+5?2#".5467&"#4&#"#"&5463262654'!2654'Žf‹UD)< :0`AS1&10: <(BW‹f]>D·'6Ug6þH(7gU4¿šqQm.C5:r$.%þÂ5H&p:6C.lRqšGGþuI8nHQl3GF4lQIm7JNÿ>îÂ6>2'654&#"33#".5#5654&#"&54632354626=#ókš2ygT\nS?4(< òH:+0@1<\KHb${‹"-¯ŒÜmg¿xš¯ˆ1#þu5G&>> -O/9F9G.[M]YJ:*0§Éýº' =7MNÿ@ð¾OW%#"/32654&+532654&#"33#"&5#5654&#"&54632354>3226=#”'5K< #2)&UE"DA(S?3@PòH:+0@1<\KHb${"5GC"?`.þ‹",† R>Jb?=-Â6V^g2'654&#"33#".5#5654&#"&546323546!2'654&#"632#"&54626=#%264&"j’›2zjRZpS?4(< òH9+2>0<]JHb${‹ü¤a‚y1W^J)A% ,=2C?4AN…ª"-üq&'@()°‹ÝlfÀ{—®‰1#þu7E&>> -O.:G8F.[M]YJ:*0§É„n“HAxYp"/>*HQ@9GmTy“ýº' =7M³-H1.H0NÿõJÂ1=2#"/32654&+532654.#"632#"&54>2654&#"f]|EPP<# % '/(((!<9É,?1BB6;IsT<_9$þm.%#0-$-(NÿôÖ R^2#".'332654&#"#546!2#"/32654&+532654.#"632#"&54>2654&#"'O`^N*@ 2'3C:1'4 Vþ~]|EPP<# % '/(((!<9É,?1BB6;IsT<_9$þm.%#0-$-(NÿôåÂ:lx4632632#"&=332654&#"#54&#"#&5465%2#"/32654&+532654.#"632#"&54>2654&#"]FN/6LH681cCQo!+)7O`I:",T1 ) þÙ]|EPP<# % '/(((!<9É,?1BB6;IsT<_9$þm.%#0-$-(KÿöÀ)08C2#"/32654&+#"'#"&546;4632#4&#"325#32=#"H?C1&!'2ETER'!A:IRU%N?%:E8,+44*fã?"bÿT57I/3'4&f€PPV:H1Vk#.=#:PM=I=Rµ? %`UMÿõÃ$02!3!5654&#"632#"&5462654&#"7^‰VSþIebI)A$ ,=2CB6>K !)' *&ÃzdkX—þGJtPi"/>)HS<:HeS~˜þl.%#0-$'.Mÿô±À+2'>54&#"#"&547326=46N_ =-$3 J6%<ZCUe|42I<%8a¿u_9KC6I2#"/3254.+532654&#"#4&#"632#"&54>3262654&#"zGbBJ_G) 8U--'$.717/ASS,¥-?1AD9=CQ7ëSýrÓ+7$)#* + 9(R>I-—þG"?/"80! $. Hÿ÷ÃÀ1>%4632#"&547&#"!532654&"#&546323&2654&'udbECR@8Jo$Mf_ý¼Ë"-(D- +H;AQ2¸<'1%fße|QL`ZrXF„ZmWx;">-*3.%=IY=D,TB@F>TTc!1 KÿôÀÁLYb2+"32$32#"&547'#"&546;2654&#"#54&#"632#"&5463262654&#"324#"3>+,W;ñ,8!>2,86-#< ?¸`/8fSÞ9L5'(0R@0=$(&'*5.lS\:!“þ1**Á ?*.-&t3H,-!Z3&5AC5+57,Vg#0& 9E;$BR56þf ÿfLÿôÝÀKW"'#"&=4.#"#".5467&#"&546326323265332654.'2654'X*9 kª9.RB_:-(lUD)< 9/-M^^!kwb?4.MJX<)"?S2):N 3#ýD)5We(À@D3c„MLaLa :2ZzRl.B6;n% nW~?Mjƒ`M]LD,#Dþì4>iM-94þK6oIPo #,MÿõRÂ=GQ2'654&#"#"&5467&#"#4&#"632#"&54>3263262654'264&#"Xo‹{1WkY mSB?P9/"6CSS,¥->2B>6@N1QR+RE9\7.8P+3Wf6þ >&' *ÀiŒHBv\{ [|RjdS54&+"&54>32&#"36HT%=> ‚D=o6-.5a:J(O7‚D5i?L) ?5*= G9 ''F4/.G80)"MÿöÀ 2"&5462>54&#"'d‡‡¾€yQ1<*bGHa"IÀhd{afˆþn!H0Id`G3>+MÿôØÂ@#"'#"&=74&#".5463232653327654&'W)8 "/:)S92YHa5!(0 6.*; qK7\G-50S(.5*.G)À@D08X1 MLePSG>%M2I2#"'#"&=4&#".54632326533265#"&5462654&#";Hxa]D3XIa4"8Mo*; jS//E+6.S!0';`+)1@E=")' &$ÂmWr™PNiVEKAkO…8BG2`ƒ'M5HSH;Aþè$5 cr%#R;7KÞ.")1/J1LÿõKÂ>J74>32632632'654&#"#4&#"#4&#"632#"&2654&#"L$8\:i0/Xj/*SN:A 3)+hK;'3S@2&6SS,¥-> !*E4>Lw,(*&°%HJ8#OMHJ=Df3U6 A‹Rf-$þÂ3B)þ¾,)5ÉG =*:Hj0,#'0-$'.Lÿö Ã-72'654&#"#"&5467&#"&5463262654' t5'1VqSnSB@P9/&0H#^!k‚X:84M*5We2Öf,<=Cpa~]zTheR;n%0G=~?Nl„ þrH8oIPo4EMÜ 2!33546"!54& \uýqT¥ps@P#RÂycæ¹þiâWg3YFιSaMÿñäÁ*2#"/32654&+532654&#"&54623K"KOgL%-1;G4+*4==2M](Á .% @K;P 7)"'2,)"$/yfO` rL{’MÿôáÀ.#"'#"'&54>732>5332654.'a&,nQV98PJ9; <*#*0B9(,S2*9M0"À 6R0g‚MM@Dc4F?o54.#"#4.#"632#"&5463262654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4þ´$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþn.#%1.H1MÿõóÂC%2#"/32654.5463232654.#"&54>32#"&#"326+8PWDM /  "7 /^AIf }BLo9#3( +'Mÿ "2!546!54&#4&#"6!7>.þNk³ % 9 "ÿBUFI &e« $8dA¶ž‡¢,/6  jm36 4Ý…{OÿöÀ!/@%2654'7#"'#"&54632632'>54&#"%327.54&#"!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ "2R31D1#&1"x]nBN{n“ •sSoVV*=4M4:)@UTÄŒt]pWGƒ[x]o@J”g‹þp>H=UTc:8LÿöÀ2'654&#".546/]t"4-bXADY0#*.À~f3V6)2vK\]M(82 5P/iƒMÈÁ2!!3!546"!54&^uþ²ÔSý…sv@U(PÁ‡j/—þGÐl…0UC6%N[JÿM.Á=G"3!!"&46;2>54춮&#"632#"&54632#'2654&"·!:wþ‰1<>/± . =$)7QBRl$:/@B78LtAQ7II$4+Ñ"$4 !)I6V@#5/$*4L98G98J\Cg} ?+=+B$3 1#$/-H2MÿøÃ&12#"'73254'"&5473&546>54&#"o$9 PK ?4c%F>]xK%#G9+O"==/%#*Á$, 7\+3F6<mMT6#+=@W?PMDþâL-)75+KLÿöÌÁ233!5654&#".546)\{SÌSþvkZBFT+ )7zÁyÊ\—þGNcL_bJ'51!AD/d†Mÿ÷Ã-72#"&547&#"#"&54>7326=463254&'iPA8Px(*2I[HRb >+'5!/' $:i[?MlÔtVnWG„`"_HIOe~_7HC:@,2J!BJCZiþã:8{(lWKÿö™À.4>%>73!5654&#"&5463235".54>3273"54“S‡ýpH8.1A4D`MJc%À/9( 6&B2·e5·þ¿' ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>LÿöÔÃ8#"&=4&#"#4&#"&5463263232654.'H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7KÿöÒ¿22'654&#"!5>54&#"&546323&546õa|"6,aZHF\L8þ@(!7,0=5D\KIa&æM„¿~h5V4)2qKa\LH^ E-6=.G!2[FVSE7.Ejl‚Mÿô‘ 2#".5332654&#"#546âO`^N*@ 2'4B;0'4 R†cbƒ'9/'=jNIa10  EbÿÙÿY2#4&#"#>q=QT1'&2"VYI=þ-¾,70'AN*Y!2#4&#"#"&5462654&#”BTS4' #,$%1Q*"YI=þ-¾3B' $-2'4C®#&9,ÿ  À"7#"&547654'72654.#"« #>20A]6r’R) " '' 4"2EK4gvN’$D ­Zþ¢. !",#",(ÿü¥#"&547654'7'&#"32'3265#"ÀZ>Y2k‰6[5(- $d%%%çE2`rE‰#@! XŠj/U+- !+)"Jÿ }´(2>54.'&5473#"&54632264&";']Q#*8aG5V@5(5(?)'@(#Ô ?3&/[Ú!&4 >8E223 -B.-"8LÿõÂ(2'654&#"632#"&546264&"9a‚y1W^J)A% ,=2C?4AN… &'@()„n“HAxYp"/>*HQ@9GmTy“þm-H1.H0LÿöÞÁ#,62"&547&#"327&54632#"&5462654'>54&#"4Hb3R6* DQRC+:)&3aGj€~¼ =**2ÁD6'0.%/%m¨q-(1-&6Bec‚°742ê*1-Lÿõ8Â(HQ2'654&#"632#"&546264&"2'654&#"632#"&546264&"Ua‚y1W^J)A% ,=2C?4AN… &'@()þva‚y1W^J)A% ,=2C?4AN… &'@()„n“HAxYp"/>*HQ@:FmTy“þm-H1.H0“„n“HAxYp"/>*HQ@9GmTy“þm-H1.H0PÿËh>(BFkw2#!".54632>=4&#!"34632"=332654#"##53%2'654&#"632#"&5462654&#"Õ>U$5+ý+5$V=È +$W;ýb=U$5*ñ2AŒ…z/$I'#%VVþ®/A4%t.UZB%=" *8/ ;1=G{ #$'0>U=þ±*? ?*O=Uýº6!÷@SU>÷*? 4DC³½xHE‹(:P)°'F,gU?^AZ&1!:(# /9RD\þ½.(#$!PÿË>)EIpx‚2#!".54632>54&#!"34632"=33254#"##532#".54>32#"&547&#"327&54674'324.#"6}+4$$5*ýf+5$V=v+5$U>ý·=U$5*‹:9Œ…zSJ %WWÀ&RC2H& 6: BSE3ii .L."(".> >*þ±*? ?*O=Uý® ?*>UU>þý*? @L;´½{ Œ‹ O($+5":="4J&4+H $,š -&l1 )/‚+' Lÿô¥Â64632632#"&=332654&#"#54&#"#&=6M_CQ-6LH681cCSm!+)7O`H;0T2 ) QjJKADc(JH,C/ iVMe!'‹h;4 @, ÿѶèX2654'3#"&5473k$0*Q=;NM.î-$  =ID8 )Lÿô¥Â64632632#"&=332654&#"#54&#"#&=6M_CQ-6LH681cCSm!+)7O`H;0T2 ) QjJKADc(JH,C/ iVMe!'‹h;4 @, Oþò¢À/:FTu73265#"&54632#".547&54632#"%2654&#"%3254&#"2654&#"72'654&#"#54#"&546326xr|†0<2>A1AO‚‚6\`65b]7ƒƒP@1A=3>{%3!þ¶$B"" èa~d&II,‚¡$0?) '%+"2 80('÷fTWoQR@;NtX¡0j0E##E0k5ŸWuM D,<"!MÿnðÁ<IS"&547632632#72654.'#"&5467&#"#4&#"%2>54'%2654'æAXEDh[C@fGz@Vo[@U ,&PA/9JE$c*NS1&. 194Í  9?-þ1(7gU4 nPjPQPRVNuQ_w;aN0BYwH5=e l-!þÂ5H&o;(7-<-$ GI*(&F4lQIm6KI¤j7>3!#%"32654'3#"&IS>È2þ(24&'2!> X@73546"!54&Ê[vþ¯¯-8& Mtr@T(UÁuWö (7)(øF]8M;Û²MdMÿö£À23!5654.#".5464WuSöþŸk>*IVm>J}À~_e\"Nc65!YJuD(t@kƒNÿö¦À%23#5654&#"#4&#"&546326¶@TH¤æJ:*'!@%/D[gU@NÀƒaiQ"WlLi2þÂ;4eKnUj|_…HHOÿù¢#2#"&5".5463532654&#|¥kRDYBx'T AYi9T0;iV1Âl[~J7gJ:0SzEfˆÊý±S;Qcþý#NÿA»NG2#654.#"3254퀆&#".54632#"&546ElA* C5hGv‘‰s–Ijˆ8)Ib#)‰d1<);U 1W9…Ÿ®N8Wsk5 1)?s;qpD¿œ†³ž;&1g(lPRO*I;b† 4#\s5;+ÑŸ²ëPÿC½Å52#"/32>54#"#4#"#4#"&543263261)9 =FiP4.I$?;#[?:C&TH"Y„5&EC#Å0[kGqbr9E†[Å.þ¼]'þ¼"W¯~KY“éD@7;MÿC²Ã$12#"/32654'&#"632#"&5462>54&#"~‚²“pP6 /QTnJJeYk4GB[);0Nj°( ;"@:ë€ÆD—tfFGjLCQ<*? vWo–þg(&.(*!+<PÿC¤Á$233#"/3265!654&#"&5461]tT¢Tp*Y ==mPþôjU?E[k‚Á€]~F•þChM";2H7–F``FpHEše‡Pÿó©h*22#"&=#"#4.#"&54632>3534&#32ú2H% 5$-7"+G"! f_ h\IA':4k.=)BÁ1QQ*#CC(aGîþ¨4' ·zAP–d„F)§þSfhþûOÁ3r 64>32#"&Á 1'<h¼ 2#"&546"2654&ãHd10FGe`L %.EfJE¼aGF24cHEd- 4"3JI51F2Ò #/7#"/4632'"32654&'"&54632'"32654&ÒD* 7(,=i&- ).-?4),@5<$.!)4•5.H(;9 (")++d6.);:,(:¯*" +, #(ÿ {l9HX2>7#"/27#"'5#"&5463224/"#"&543327&#%4&5747326Nl G7(7'$@&8[„­¨† :Y(qP  "D[¦.' 0lU90=+ G'9 þÛ*"(Õ Öƒctƒ&HOþŠQu† kUI&,<$"$ÿ»cs2#".#"37>54&'.'5;23267>54&'&/"32?"&54632#"'&54676323#".546232654&#"@+%   &= K|AXc 4e!.eH/R2LB&h-$5NC9?K†D'*°QFiG=XE1„e!+ &7/*A 0P &56.!9#  !9&'   )T)Hr  3% e5  J98CI@Gb1°W{!,=hA"€ 1*$6 ,% F4B 6'-6.ÿþj Eamx4632#"&74&#"2672322#'"'.54>76?>74&'#":32>767'4632#"&74&#"26[+ #/. 0 *õaAQ  d"%D0až:IM,B!$8XQr(FQ ‘qbx VG3V +CH$(2$'#/. 0 *÷ ..# .0‹3d 1\ vX:l!@C5=`;8#5-O (ýýTb6!+ ;g.#/>ñ1.# .0þ¸ ZC%#"'.547>7632326374&/"#"&/4;2#' 32654'71HyJFN‚ oH8Ly ( - -&*-l -8C/Ôþô™yâPT aJ`P8/Õ¢B PD*’  Ki2*A+# ‹´Q}*$ ),7;?ð#3,7? ‡°NÈÌxp< A3 !¬T@, €x8I$"®$6 &Q;# ÿÿ: s4&#"3274.#"'>32#"'#"&5463232654&'#"&4632#"&54654&#"32>532>×$$$A\tU"ŸeMrUÄü .N1z"?(bp^b#'Z?JO%" 2+>=+?igHPr+);*?27J 9)&<& Ý("(\O3;+öÎ'YjS9n&µ~w$ :($2<6 %21N3U<;IIA: #-J/"/D" /&@$#‘Yd32654&#";>2+"/3264'&#*#"2#"/#"'&#"#"'>7674&#"#"&5'4632>yz4=µU‡DE-23®—Ó##,' \HNMo 261JY@AH5V. I"H*  6q] % "=#_K9=2.MÿuV;?k’w, Iˆ¤x<\4* uàTS$3$G9GuQr%I‡+y˜G"^/  54&">32#"&54>323237>7>&g%4(+ )%r% 6²?Ÿeuy&~#3E7Y@K+50d¬i5$A5'MU 1X7j… "+Akf.*3!7`B! ;<;Aë4^G^ŽM/ @A'7T'1OQC/$;*'=‰c9N?-pf*?5  ZE (?¤\[%+'.'&54632&#";2>5&'&'4>32#"/7;7267654&'&#"672e†k -0," ~A@Rh…8RE 45(I".AN9q™]*8M!  #. ::V!4Jb,,¹Lf -6Dƒ§ p\7T* 'K  *5U2" ¤v4?…$  =l^x" XH !@:q4&#"2>7>'"2654&4>75.'4&'.#"#"'6;2#"'#"&5467#"&5463#"32?673274APO ![ á*O?6²?$s2uy&†<3u( -/hkJ5mPp'+!R>-45A32#".54>7#"&5434&#"#"&5467#"32>54.#"=MrUWœK=SxE.\eL1(3(J(*%91¿Gd@]PX‰I/ $8MJO5ŸÞ+4g¯r/ebN0'=eA'"  #66 •:&-E"*9D) L~S?# ÿÿg% '„#32767&#"7654&#"303232'467 54&'#"&'#4>767654632632#*#"&546?632;4.'"+"&54632"&#"m" 0  :4!2+ '/  þj#:acFi#G+@ F+=|$k€0G<KbT²èN<"6 4  bX2ATPCGgµ#  #* " "%œ(9"y::F7*(9 85."'>?>2.IHsE(ª~=P #:(N6'B K" n2654&#2654&'&+46?6?632632#"&54732#"&546?632;&'"+"&54632+"'#"n5!£°¯@A<{=0 :D, ))E6B .( *%! A;T#30Ý£²èN<"6 4 ObX2X. 5/ Gg#:acæ!, þ¬@T,I>\~! !1*0 -""D;vœª~=P K :(H4B:(9"ÿ0ÂaˆŸ"&5467#".547>3632.'&#"#"&5&#"2#"&5#"'&#'>74&#"#"&54632>32672&#"#"67232726532654.#"632440+-'-9”wE:rw8 ->,.*Y !Q•VkY#"VQ76&(eC-.?-|n,1  _D*6 Dzb#F9=`_† /GA^0ƒrB= )"/+#%>üp-S>31HQf)!@w( HÐ=N6k=m6/ ,+<'(F"7>7>"&5467#".547>32.'&#"#"'&#"#"232#"'&5476322654&#"4632632&#">767IE H,  ; ë40''%)9”wC2ˆ®2:,.*Y 0^HŒF9­t~YZ28W+6$Bý-A&N4<  ýF=I6k=o7)! ,+<* sR6#dZ\{p[e,.!))-? W3,z± $#E.  -1&a,(   ( ,(*:6'>32#".54>32&#"!2654&#"MMrUJ€WG* %=OrD>OK?&(>'b"/;1H# ¡»éžŸÞ+$8GD@&&QaXU=% &3N.#6(,/.”{ŒÏ*LW!"&'#"&/467"32>5;2>=&'#".547./3267&'(+='6WUq‡w?g1R,0:(4@_ 4H'*= " +R]F  2J¡H6<I€ 0DM„a*iˆCX)T1"F/(-Lr!$X?##3(2: *Yc–QP$/6#2E[>:W%4>74.#"'>32#"&'#"&5467#5!4&#"#"&54632'"3232732>ÃA\sV"ŸeMrU\¡{H !4Z:9``:Uq",HF3+L B/-B#Õ"+ Z>ƒ*(3M%ôI6\O2;+=&'#".547./#".'#"&546?#"543!4.73267&'MA#ÿÿô2my¡­¸4&#"632#"&57#"./.'#"&'>?&54654632%67:32632#"&5732654&=4./"2654&#"%2327>54.'.54632#'.'4&#"3267&#"þ:D '/ $-1F=,-D6?BZ%?;(3  [‚aD83Cþá)]p<" 'eP2$D;(*=058%"' &%­&$6&23ý"KOs4L"#! þ£ O<'5&%,A17#8&#$"?7WPjY&> ;'!B1+;$?G?  ,7#4õ7"0&(!1s % F8&5 " ¦/?$'!2 0'+: #$ %!&$÷JD !R[m4&#"#"&54>32>322+"/3267654&#"2#"&/&''>?64.#"2326& $&+4(* #HA%,9RB .z*!e|ä& 1")B& & #.+>lCWi*;?0.ˆ¤6 *B+:K=+(*2* >›3I Ê.E!+£1EU%ÿüð'/;".547'&'#"&547>32&#"32654&''327.'%9 0 V `«»¡Ä.,E9SZ@ag-‹´Q}*$ ),7;?ð#3,7? ‡°NÈÌxo42"p`!7 €x8I$"®$6 &Q;#ÿ0M_C"&5467#".54>32.#"#"&5672&#"326767¹40+/2(ngH>EkYA>/ D3Y !.C6)e 6QF2„q*A V7)% >Ð=N"9W.6R3 !<'/ <&* (I-Wj>$ ,( :E4.#"'>32#"'#".54>3"326732>Ù;Wo^)ŸeMrU\¡{H-[=i7 5 0K) *#1$"4(+V@BW"K<3I%œWŠR6;+5'&#"#"/46;>72"'7;>74&#*#"#";267>54&'1D6' •KGRq329." ++!-rF  *zZ0eaF"' N - 7©‰ I C6)#  (!CD(32B>¼ .R4 &;ODV X…99%2#/-:q%91 2X9J*Ka( 0 Ib‚¢%)-*'  5*<@ÿFlU"#".'>322654&".5467#"&'.54632&'"2327327¹} )@*QN>' .RCD)7-+ 4r$L>¼GU;4C;I=*qZ9F :#+2'0C.D KR! 0> Düí))S,hd“µ"G.  )D*M}# )$4- :iJU!"&546?632;4.'"+"&54632+"'#"2654&'&+'46;24&#"?27º²èN<"6 4  bX2AT5/ Gg#:acF°¯@A<{gI '/c݃L&0Zd`, ª~=P #:(N6'B:(9"@T,I 2i 4-#~vœû/D5%ÿüð'GS".547./#"&54>724/"#"&/4632&#""3:32654&''327.'%9 0 V `«»—Î0eH% > PD*’  Ki2*A+# ‹´Q}*$ ),7;?ð#3,7? ‡°NÈÌ”t#>@*A3 !¬T@, €x8I$"®$6 &Q;# ; ]7"32654&%4.#"'>32#"54732654&#"4632#"&'&5>32#"'36Ç"*%+÷"6JIN8ŸeCrO:`S\@* "2X6Ð!3_Z%B@% 7'+?<*%.6"2B;c”} d#ͤ'4)&)øDsM;";%"E\X UlX<“ +"-! 3$A&?9*);#EQ@d;&v]{$#s^I4632#"'72654&/"#".547#"547!4&#"&54632"32>54’_‚ou&F"#D[`W!Dd%jN|'>32#".54>3232654'#"&'4632#"&54674&#"32654.#"è&!K)")þUMrUWŸ~K6`“U#DFN;'%,! ;0]BUhG15%5 74:>+ .T6J5 #»u½!5GIM<ŸÚ!+F ,*+8k«jA‡oG6FkA6Z5%3"?02NA>)F2&:C#D+#/&>5$J$(Q6Kn„jCqM=$ÿÿ: Ž4&#"3264.#"'>32#".54>54&#"#"&54>3232654&'"&54632#"&54654&#"32654&54>3232>æ#< ")óA\sV"ŸeMrU\¡{H 1R4 (+(*/'$4,dn%W>3 I68U 4L3L)1OdEF[JB /9+ 49* q#1G)ø(D#&@\O2;+73267454&+4>32#"#.'#"#".4&#"32>,u]&-# -6Ebad   ,>*NAd;–,A:=P2{a7k 7"6A3"Ò7Dm"‚'@  j$sF@V /2@CR:X-D!72$i:t|^)-&8_!0a ÿýýi'B2#'&/&'4>76?>?2324&'#"3267>5Æ &7a;‰² a8FHiH.?-O (3d 1åVf,0l' +D0ÿbùTY2#"&'&547'"'672#'254.#"327>54&'7#'.'.5>7>ˆ´{¸04Læx$0&Ž%L[BHa%  U„ƒ?  $ 5 #1R,&!Oo6ID0MtTRy} &   $[0? JC7f*H0,p= DPF'4$7 4:JuU4'@4<&*ÿ:B'>32#".54>374&#"#"5467#"32>54.#"=MrUKsR/6^•V.X]E,&O6zJ( ,91¿Gç2W_8MyI07W\ŸÞ+Cdšb>pG*?kD 3%#6% •l+= +:8BrnL/ÿÿmXe%67&#2632'2674.#"2+&/&546?632&#"32?4&#"4>32.#".54>#5 *,%/  !2[;Wb ,$ /S5W'%b_J1*B@/5< >r^–&+/7rG‡”08 &($ -48(<56*  § (,=1#8@1 )7. V…m‰   54&#"3263232%""&547>32#"2;>54'#"&546;7&+"'4632#".54634t<Ú#1**ù!iG/d )ÜF@H.×° !T+iO?O.Çào¢bŒj`""#¸!&D#[9 ME š!2 9(L,$$!1!!9PbD@ \)|“5{^ZmW/BhQb32654&+"'46322#"&/#"&5467#&547!4#""&547>32#";265%654&#"3263232º"F0QaN=T+iOAR @{bEOTAcz&1I =e]93GhÂ,V%Q8CI3G/32&+"#"&54632&+32654&#"#&546?2"/63232>74.#"6$"#2‘[oŠ~C.Q  X/c(  . ¼`M ;y"$¢Nl‡^y67D *# +Z8*¼,&4&He„i @0P o$' !8c tDQ5&) _Š ±y$…h3 <&?zVÿ0f[o%#"'&546?632/"32>54'432#'".'54'32654.547632"#"&'76323324 !8Db%+kjšu’ŒW`cr !0&-Ke 2\; r0LbP7”z 0/  é$ 95P({R94632>32+'#"'526754&##4&#"327"&(j…=`D`w%g)6+Vn b74&'eO,:0">YJ?(,†¬$¯{6B±ˆN+NO ]YUu ,\=v +L.<\,¦ýéþ—#,".'54654&#"#"'&5463232632'3254#"ýÐ (5&[ !)/ñ þòB€ W7 (+%.687P]+"'4632#".'53267654'4&i# L6 +6-  ,L#4 1*#0 =33M@)>¥*6!)% 52¯<'?Sÿ~š&54367!37#.54?67 #„ 29T \(ci)W&/{  ~èX;J* s]HE‘49ÿÊ–0#"&'.5467#57+*#"&'4?732?232Ê| B?)9332þ}$!& 8g5&6#![2RQ)' 6):#76W8 &.#$…XE#/.$.B % "+N' üíþúÿž(2;7!"&463/";26þbg€"ý½/?J7 (9M&€§7¾HýÒQhA % -&1/=üãÿÿ™#"#"&54632&#"326327.þž(Ú?]_2( "H@.9­; c' ¬Ã5G;$: #)3I ¥Býò , ÿþoZ#474>32674&#"'>32'&#".763267& &7-/HI:#B W/9O%!),9*/¸!0:'7’5P':G_$$.7[W/SˆD%' NÂ+#*#"Rs!!in5A#.54632#"&'&547632'&#"32654&'&#'"32654&Õ"/ J,B3)qSR’fW}# $#3;)$2<[(6@7=N*$M>f‰gP3A…^`  RTjUkWG>?X?1 /5*/E'!19B‚M†bb<   #%5>aE O*a€ZV;e<)F  U,305z7gUþ…mTF@  þ³**0  :LFË;-7%#!5354>54&#""&546;2326534&"26Ë&þä9'%"#&4&F1BHGZþã$$R"0é&<% %)0 "00"5GL/ 02 ë(åx((((F:8B4>3263232653#!5354>54&#"#4&#""74&"26F& ($.@KZ&þâ7!'!#&4B$$D4 *)F3 02 ë(åþ"0é.H#/#  !)0 "0R((((Fÿ7'134.54632#4&#"4>32#"'4&"26ž {]d}ZKDHV 0"*#(P$$Hn7S0Wp}kþ±2c†W@3,33 !.ÿC((((F 73=4632632#4&#"#4&#"54>32#"'#4.%4&"26FQ<:#C;AZ$%,<  0!)#(U"ÿ$$nYp66gUþ…™?1')Y.2+03 !.ÿFl7T((((FC:@JT4>326323#.'#"&546754>54&#"#4&#""74&"2632=F& ($.>-bZZ '>'P848/!'!#&4B$$ "# D4 *)F3 02 =:ÂýÉ"4@+ rXL+,C .H#/#  !)0 "0R((((þÅ45YF¨74632#7#"74&"26ë&./:UþóüB$$ÁD260þ/tþÜAR((((Fë7",2#54&'+"&5463254.#"'>4&"26 ^€Z+*$&,%F:,+oBrU$$7hTþ…e².  30"%0G0,@ ^>Hþø((((Fl7+1;2#"=#5#"&4632>754&#"'>254'%4&"26$a€/848P'>' U&&./:c,PFvEz&FFþ©$$7gUŠ C,+LXr +@4"ï0D260¦9<zEU_ :Lþ4LY¾((((FË\+5@%#!5354>54&#""&546;26=3%4&"2654'326Ë&þä7!'!'%"#&4&F1;E&Z13dþã$$Ã&GIR"0é.H#/)0 "00"5G;*`C> €ˆ((((þ§åc!W0ë(F\6CM4>326326=3#!5354>54&#"#4&#""54'3264&"26F& ($-9'Z13d&þâ7!'! #&4H&Kþú$$D4 *)<(cC> æ"0é.H#/#!!)0 "0þåæa)0 ë(((((FÿöÒ7:@J23#4.'#"&546754&#"632#"&=467.'>2=4&"26a€K.ZY 2"P848/PFf?*I&&./:,305zŠFFY$$7gU‡/€ýÉ;;, rXL+,C |EUB Ã0D260Î*0  :Lþ945Yr((((FþÛÓ72JT^232653+4&#"632#"&=467.'>2654'3#"&54632#"'74&"26%4&"26a€RZ&îV;f?*I  &&./:,305zX(1JRT>I.+&&$$þå$$7gUþ(åþ"0mTFB  Ã0D260Î*0  :LüÀVH e{Q2'60D0"r((((õ((((Fÿ 27=GR2#&'#"&546326534&#"#"&546325467.'>4&"26&#"326Qa€Z&5 E'6FA<87-V;f?_(?2'#& 0 z_$$º43$-:$77gUý’D+&,2! 7-6ñTFB@ à3D5"0¡%1  :Lþ((((«#(Fÿ 27BLW2#'#4'#"&5463265374&#"#"&546325467.'>4&"26&#"326Qa€P7.( 8,951,/'-V;f?_(?2'#&1 z_$$**$/+7gUý’80#(2! 7#'3% eeÿTFB@ à3D5"0¡$0 :Lþ((((­#(Fþƒì3-R\fp22673#"&#"632#4'"&5463254#">4632#'#&'"&54632775#"4&"264&"26&#"32ò k  ,bL>5_JZG &4&-$45‹<,aB%,*-?3)%+#%( .2*$$l$$™ .1 -!BPLþïì4"00"'/0 eMkýD251ÓBB6$$( ! JEzÙ((((þ((((‰F}<@J%632#4&#"#4>54&#"#4&#""&4>32632'4&"26CMP@%8W)(#"Z##&4&& ($-2>“$$|ª8"þ½(e ‚w~.H#/"!)0 "00D4 *)D5/\0¼((((FÕ7FPV2#.546326323#4.'#"&546754&#"#&#">7.5464&"262= '!&/&\%%V/@"C:<K.ZY 2"P848/$;+11 '%#E$$+FF‚9I@^.L{g5hl66dT‡/€ýÉ;;, rXL+,C ¨@0'BPA+NV1 /"4S((((«45YFÿö47;AK2673#"=#4&#"632#"&=467.'>254'4&"26a€.KU/848P"2 YV;f?*I  &&./:,305zóFFþ>$$7gUÄ/Cþº C,+LXr ,;;mTFB  Ã0D260Î*0  :Lþ4LY'((((Fþ7(23.54632#4&#"67.546324&"26‘|[d}ZMB8[1 + %#) (&/&O$$?k32632#4&#"#&#"7.5464&"26 (&/&\%%.)@"C;AZ$;+11 8%#E$$–1!PFc.L{g56W/66gUþ…™?1'BPA+NVc/"4S((((Fÿöÿ7(22#4&#"632#"&=467.'>4&"26a€ZV;f?*I  &&./:,305z1$$7gUþ…mTFB  Ã0D260Î*0  :Lþ((((F<<)%632#4&#"##"&4632'4&"26MP@%8W))"!U&&./:U$$|ª8"þ½(e‡t£0D260((((Få3",22673#"&#"632#!53>54&+326ë k  ,bL:8To&þî&a©8<P.1 -!BHS¿"0iMkþ$Ì71þ’(Fk7!+54632>73#"&=##"254.'4&"26F&./:],Z/848&/&;' T»" þª$$ÁD260þ¥:<Cþº C,+L-+r +@4"£þ«4Y5§((((F!7"463232653#!53#"74&"26F&./:œZ&þ–7B$$ÁD260þG(åþ"0‹R((((F!""463232653#!53#"74&"26F&./:œZ&þ–7B$$ÁD260þG(Ðý0"0‹R((((F72#"'3#'#464&"26¯.&&‹’ZZ’ƒ]:k$$73!"0þ–ùöýÉõõÑ06T((((F#2#"'3#'#464&"26¯.&&‹’ZZ’ƒ]:k$$73!"0þ—ùáüÝõõÑ06T((((FY746323# ##"74&"26F&./:~~Zest_B$$ÁD260þåþåýɰþP£R((((FY#46323# ##"74&"26F&./:~~Zest_B$$ÁD260þåþÑüݰþP£R((((Fÿõ27*42#4&#"#"&5463254>7.'>4&"26Qa€ZV;f?_(:/.&&%# z_$$7gUþ…mTFB@ ò063!"0¡#  :Lþ((((F 8 *446323#.'#"&54675#"74&"2632=F&./:-aZY '>'P848/B$$E"# ÂD260ß<:ÁýÉ"4@+ rXL+,C ³R((((þž45YFÿöÒ9,62653"&=4675.=4632#"'74&"26!(! "!?Z>Zr¢r?%:0;0/&&Q$$‡$  8;0*;;*Äþ<4II43=?  :"(;>3D0@((((Fÿõå3)322673#"&#"632#"&5463254#">4&"26ë k  ,bK:8hB:/.&&Œ=*a$$.1 -!B LN¶063!"0•fMkþ((((Fÿÿ7(22#4&#"632#"&=467.'>4&"26a€ZV;f?*I  &&./:,305z1$$7gUý“_TFB  Ã0D260Î*0  :Lþ((((Fÿ÷ë7(22#5.#"632#"&=463254.#"'>4&"26 ^€Z H/4!&&./:PHb1,+oBr8$$7hTþ…ê4FC?W0D260ŠIXS8,@ ^>Hþ((((Fÿ 27(22#4&#"#"&54632547.'>4&"26Qa€ZV;f?_(:/.&&P z_$$7gUý’`TFB@ ò063!"0¡J :Lþ((((Fÿõé7&4.#"'>32#"&=46324&"26‘-+oBr:\€:/.&'$$m,A^>HbWþá063!!.C((((FV!4>34.54632673#4'#"'3267&#"4>4&"26ž {]Y?[)Z!*(&1 ]HV 0W$$Hn7S0Wp6#2N84Eþ©25)!.ÿ–!_W@3,3S((((Fw72<F4632326=#.54632#"'3273673#!53#"4&"26'4&"26F&./:œ ?H.+&&)Z6T&þ–74$$ò$$ÁD260þG(…Q2'40D0!Cÿ3KuC«"0‹.((((”((((Fÿ÷ U-4>$#"&=463267.#"'>32673#5.#"632754'4&"26#&./:PH", E'oBr:Z>[&Z H/4!”!m$$mD260ŠIX ! *^>H/2I6$cþ±ê4FC?W˜-! þí((((F=>%/9%>7&5462#4&#"##"&463274&"26%4&"26(3&.@. X!,F2[&&./:ñ$$þº$$_‡‚. &%55%. )þ¯,)­À¤0D260((((((((F¿ &0:46326=3# ##"&4632#"&57";54&4&"26œ'.*9&@7-est_&&./:~~+6?# þÃ$$·"2.)+=0SýްþP£0D260þåþ 1%>#4#C%þñ((((Fÿöë7&02"&=4632#"'26=4.#"'>4&"26 ^€r¢r:/.&&?Z>,+oBr7$$7hTþø4II4ª063!"0|*;;*ú,@ ^>Hþø((((Fÿöëd*4>4632653"&=4632#"'26=4'#"7"327&4&"26FzLDB;22r¢r:/.&&?Z>W†V´L3"D7).$$ÆY&'+A-2Iþø4II4•063!"0g*;;*ú;&*g "#ñ((((F´<(2".=4632#"'3274>32#4&#"'4&"26½#3 .+&&= #-W  -$$],# (60D0M ##5%þŒ:'#+ ˆ((((Fÿÿž6+5?#"&54632#"'3267#"&54632#"'32674&"264&"26žxX>I.+&&,0FJxX>I.+&&,0F$$$$6_Q2'60D0!]fþ©_Q2'60D0!]f((((þ½((((ÿg|¿\#"&54632#"'32674&"26¿xX>I.+&&,0F$$\_Q2'60D0!]fR((((By7 !#4&#"'632yZ$,=<Xd/L˜33X †GVÿ³y"&462#4&#"'6324&"2M-@--@YZ$,=<Xd/Lþ´$$ïD//D/üâ˜33X †GV &&þI[ÿ¨4"#"54632&.#"32632þ²0_D2J%sXN>(4vª%S!-?* O 7S%&þ[[ÿºo"#"5463253&.#"32632þÄ0_D6,?sXN>(4vª%SPŽ/IO 7S%&þI[ÿ¨n+"#"5463254632&64&"2.#"32632þ²0_D"!"$/sI N>(4vª%S""'3b O~7S%&þ[[ÿºo "#"54675353&.#"32632þÆ1\C>?w\N>(4vª$S;B PŽ/IO 7S%&þÿþ²ÿ§ÿ¼ 4632#5#"74&"26þÿ%,*-@B$$ºD251¤vR((((þþ«ÿ§ÿ¼$463226=3+"&=#"74&"26þ%,*-@!N!B$$ºD251rѸ 22 +R((((ÿVÿLÿÅÿ» "&5462;%&$ .!~!"ÿuQ"*29@%+#5!5>54&'5!53'4'>"#"4'&'6&#Q1^? Bÿ>"">BÜ+§ˆv$'¸ e‹Í*°#6)‹‹"7¼7 ƒ„™ 1#¯oý 0Xæ¹dþç øFÿö7 $#"&536324&"26&./:U$$lD260ÛþSR((((Fÿö7 #-$#"&53632#"&536324&"26'4&"26&./:U×&./:U $$ý$$lD260ÛþS0D260ÛþSR((((((((ÿ ÿöP%*42632#"&54#"463232673#"&#"64&"26>hB&&./:Œ=*s@%(   ,^Z:2$$LNý‡0D260´fJn  -!B ü­((((ÿ·ÿöP'1;$#"&54&#"&54632#"&546326324&"264&"26P&./:=%$2%&$!+JY>?[Ñ$$ß$$lD260-BA.#"10"#/Y5>YY>ý ¦((((ý((((ÿ‹ÿöP!+>32632#"&54&#"&54324&"26D,%9&&./:`›$$j[R9$üÐ0D260=(!?[:ü:((((ÿŽÿÅ7 #4&#"'632ÅZ$,=<Xd/Lñ‰33X †GVVÿ Ç<2<4632>32#7>54&#"#.#"632#".4&"26V>/%' 22 3W3 ('0$&&( y$$´9?OO?9Þ )0B#&0D0DC5((((þ]|ÿÏÒ5?4>3232657632327.54632#".#".%4&"26þ] C0=,.6PSE 2 %$% <0   :@$$**'41&'!-? ,!$/(%1CN$((((ÿZ›ÿ¤Ž#"&'\Ž’a]–þ»šÿâ]%232>73#"'567#"&44&"26ÿ*%&;7aABS]$6* C/%B:"#'6  þ#šÿ¶]0:4>3263232>73#"'5654&#"#4&#""&74&"26þ#%%   %';hc8 *Tá#0"!** C/Nu >!&''  ÿ ›ÿ§: ##5#53533Y7-::-7Ö;;*::þóšÿïz 4632326?"#"&74&"26þó5>  !&-9&!"'oß'< )& -'+ ÿ |ÿ§"&4624&"2Y-@--@ $$ïD//D/d&&þº}ÿ§µ#4>32&#"&"327#"&4632&÷ %9& ($ 1"11"2{   ? &-!07N74G}6$4&"26"&4624&"2"&462ÑAZAAZí¦ê¦¦ê‰”Ò””Ò%SvSSvîZAAZAãꦦê¦þ|Ò””Ò”8vSSvS<ÿöüž"&4624&"26üƒºƒƒº3SzSSzS"°||°|ÖNkkNMll<ÿôüž+52#"&54632'654.#"3267#"&5464&"26$-V.Ccƒ]\„M<G#+ 7Y1%&  &*>$$9*6tˆLX|ƒX9†5z/L* pIOj/(0!"2S((((ÿó*…=G%"&54632>32#".=4'7326=4&#"#.#"63274&"26 '6F6/ .=eIY?;D.VVaI' + &" $$z^154&#"#.#"327.546274&"26÷*6-gD< 'O.[IE'$/*  -1*# &4&R:$$ -K.Y{UTi[?uFIR$4  p;1J% -"00"8?w((((=ÿÿv‡3=74>=73263&5432#"'&#"#"&%4&"26=<`tt`<9ci{&$bOE B\&& HL'f#‡(Rd©$$£?[3(%-P7GQ74>7&5462>=7#3263&5432#"'&#"#"&4&"64&"26<%C/R(2F2DX;UFgMBbOE B\&& HL'f#‡(Sei 1B$$¡$<&' .#22#XA :W+ -'E(2H&Rh0D0#$ %$\w$î((((ÿåÿöÇ„-774632#"'3264&#"'654&'7632#".74&"26<2!&&2C6DD6!O,F/LX:=TvvT-H) }$$œ*32 "0Gjžj#%.Dz ‰M(|°|(1$((((<ÿñÃŽNX'>54&#"#.#"327.5462#".54632632>54'.'4&"26˜;`<. :}U'$/*  -1*# &4&R/*6-gD< 'O.[&$BC ec.$$Ž*3D:C%OŠauFIR$4  p;1J% -"00"8? -K.Y{UTi[+l$†U33umýü((((<ÿÿgƒ=G27#"&#"&5432327#"&4632#".#".5>324&"26Úr 3"&‘'–'<UY!&&$5) ([H$2H"mO!£X$$V";/\V5%€>9>>0D086#4 .-%/@7Uh,Ã((((<ÿû=ƒ=G2657#"&#"#.5.#"&5462#".546326324&"26à ! :"y4P&!-1G&4&9,*D' gD< 56’$$c€#6$CB(3]½#)4G16:)p;M]%"00"./"132#'54&#"#".=4632#"'74&"26cVþ¸%#1V  7#3 .+&& $$7mþΘ7±%56%-,þõ—:'#+ ,# (60D0_(((($ÿô±>þ(/7?GPW`gp67&546267&546267&546267&546327&54267&5476;#""&547'"547.'"&547&'"&547&'"&547.'"&547.'"&547&'#".54>32#"&54632#"'32>54.#"32>7&546324"6'4#"64'32'4#"6654/'"6544'32'4#"6654'54#"64'24+"64'24'32Y& -% &   .  óø    (   "&&#2& "&¡m5D7&,CD":;"/)-?0 "*)''26?=(1MH!:bD.,&$ 7  S š \ µ v ã  Ž üµ þÑ! ¹ €  È,MF?,01$; $!L'.  +( 1? $  "("  0(  $ #" $""  ,;<"+  11 : ,4  -6)j34LB¡ *?mEJu@!(T<9T(09*= 8!.&J23I%=lDNt:9`jZ6,fQA13 *"7Ny©c=Sz(J/ThM1a?;G3d32632#"&'&/.#"54&#"26„BIwGrP>!"G28;1AD`E_*[((P]‰=$`%MH1 #B/3#1g'*11255DB.. 33! i8D(!H3]”… <…% N Û¬)%"&54>332654&#"#"&54632Xl 4$9*(<3#$4?"_QZko ]N"*‘"&&"á"'%$/)/BO[gþâUmM Ô­<%"&54>3326=4&+5326=4&#"#"&54632Vk:) 9(';11$5"#2(]LÃ`b \ aI20  “ '%"òt *%#1 '!BP–je/<M Ï®-:2#"&=4>=4&#"3"5463254&#"32Ÿ5%7>*VkNs2GF2),+©aHI`0;&A9'a)#&=(a>ýûÁ#%#%Á$%M ¿­"0%#654&'"#"&546326324&#"326¿FG12$:lUSmgZFLB8!3&þ¯>"&;=#':ÍXj,4Þ!*3)þ®Pnh\*Nf11"C-þlÞ1*!þ#.)M έ'732#".54>32#7>54&#"­ )9)R84M(“8-%7˜ET)387"#9<þÙÅ+à *&"MЫ-2#".54>3326=4&+5;2=4¸a#>mR6R):*8$"B00 &9%«’b 9&…@Z)<320(3ï1x!(N M§R%.'&#"#572.54326326327>=4&#"#54&#"#54&#"M@1P'f%@U| =F3.¨9/<3<00;©F2 ( ,H,)S''+>&JóD+ #9'& +-H,//00=< x3#%``/%#``1/Z3% BD!MM έ#1%#"&463254.#"#"&546354&#"326Î%T9MrqP6* *%8'wGPp`02&87+&8Ë7F0qžrÁ "6) ((9^oPþ–G6*‘'99L ί%3#"&'"632#".5432324&#"3265Î ,+a 0/*:= %S=%<+ ÀC2E5,)6<%(6¯/ò "O<(>C%&M4R‘þ‘"&#%Á'!1)M ¿­.%#654&##54&#"632#.54632632¿N?17!$0I;%&; 4@pQX-4P5:(ÍTm&8á-$$ÂÂ1*!þM3(wG2Bn$$)H+M έ;%#".54632326=4&+532=4.'&5467Î)P<:A-%;%*8110 =$'W*<+`Ë*@8!@()() Á+$< (  7 $M Ϋ)2673#"54633265+5326=*N0(='Á;=8$50">':S? J6+þ)!«&O/x )4ßG5- L Á¬=%#6=4&#"#54&"#"&'&546?67>32632ÁBP25!$1I:L:('$1 Ixù-. *J4‘X9 Q:V)+W4H"ÉZd0.Á-#%‘‘!',"‹>#%T†w.b'!?100$/&&&?< Я$#".55763232654.543ƒÁ,8)1U";(!RbV-5"'J1À 5ýï!%/')!6fD 0­BO%#"&54672>=4./326=4632#"&547.54632'54&#"3260$5V4p‹c,%]4@9+&0 -"+AO)&=,j#sXÁ0û>B2!Œ^lˆ%lÁ1B8$Ç0*/  6*P './1d#,kÉ1/1#M 0®92#"&546732654&#"#54&#"#"&5432#"'26326›CRÁSn9@ ;%':.Ha%g&®PBþ¯ÁVS(Nz)%#â%$I``) I+ LG @­;I#"&546326=4&+532=4&#"#"54>3263254&#"326@bb'T;Ul@:9N;010$  $O—7B%<$$BLGþÜ"  tV_ ;?%[K%S‘"&&"ñ0H%, &Ž7F$$=œ!L ̰1%#"&546332654&#"2#"&54632557673Ì'Q8Rm=:%'.33% 8"g@3.010’*.9>?TR%&6ª M …®F%.'ȳ.=463263:32#6=4&"#54&#"…BJvFrP>, cAI/1BOTFL1+:,U+  $0 27T.# 'A/1!:!h9E11Bc3I-…""ll# T! 0#dMÏ­*%#".4>3265#"&54>3326=3Ͻ7S):* 9N9/GO\ 3%4'-8aÍ¿);3&20  "&&"7X1.208ÁM ÿ®-;%#"&5463254&#"#54#""&463263254&#"326ÿ)O7WjlU4-,H*+NN=",#"BR`>#&;8- =Å$>8 ZfWjò"II085X4?FþBÁ/+ ¿!'&M ϯ!-%#>=4&#"#46326324&#"2>ÏeC 1:VaSV>SÙ"S,A(‘( 3..œ726=4&+532654.5472t#*#T(/X?Õ6( CjB$$$!; %‡1 :!$>&4PB#é•.9J21+þp8WV9w2..'6 L ί'%#".5463254&'4543254&#"326ÎqQ*8/!qO2/7*Hxa7,&77*'8ÌNs )H,NrÂ'8 sOþ—+66*‘(99M -­-6#>=4&#"#54&#"632+463263254'"2-  "I 078 :7!”aIH;$$7*6%¾U-.ÁL` 1yyIØ$G1qfBB$$*þa`E þÇM Å­7B4632'4#"#"&#.'326327672#"/#5#".5&#"32MS7, ' !*0-"1.TV .`&66Á%7.G<’& &! ,*É: lR :çÇ7  k б)%#"&557632637354.#"326ÐpPOq0\*7/00‘` *%:+&8ÊNpqP¾ þõah'Ü’ "9'‘ #9Mÿ{/®-%"'#674/#'763273#*#"7/0(xr6 0%Á~7 7.T‹`##s£*#0Ír V; @*W'$$ +ÇñÇþ‹ N Ï®M37632#"&5463232>=4&+532654&+532654&#"5467ã '0'. U/2)R8Om$% a HH%HH'5R’& 6><65 CH.H x,$(%$7K Ì­DM#"&5463232=4.+532654&+532654&5467>54#"g % %)''N)%&T;WeG8*0F3gZ !!!: ¼3( ' "$5:M03MOEQp;1<‹»„„= $&($ OþâdGK0IR 3­$4%#"'#"5432327&54632326'4&">3-HD26,”/#;&}\CE[W/<+q,8,!SIG+  GVh*OG2þ—*a™20þj'/MÔ®.2+>54&/4?"#".547232>¾iD1Noo$@\<%Q9 A9.#5,L+£ %ß:C3];# (BR%#F­ '5" &M Õ­E2#"5463;2>=4+532>=4.54632".'"Ð%2A '?(Â@9;&** +5+A("D %2;2Ë.43 U&!•I+j  È#&+/*-! 8M έ!,5##"&54634.#*#"546323#3'54&#"'"32ÎIJU@YW¼YCEWIII©"6CD4<=„5OICY;%"“DJCA…`x© ($$`&"þǨ.`H! ¥î(#".5432326=4'&54>7Ù.4.[i32654&#"26¯36"VP$-"+ ! +'K "6%>zέ<*! J60$-Œ+HH/‹ <)3G6"<"¤!  )/A(`d: <#f!/0Ø„ <„% !þð¢*#".5>73>54&##"&54632¢½6N&8)7,&86!$.*^JÂOÁ$5!/1 '&!Ü5#$/*AOÀ!þ>#"&'54>7";>=4&+532>=4&'#"#"&54632£gWVk 2#D$:112$ 1%'YO^cb+9RRmYP!))‡)(ïs"&#$0"&AOIGn :-! £­0A%#"&=47>=4'#""'5463254&#"32>£[fUlq9)D,$¨bG58$80'6(`:%&<@ š:VKEaR2, m8"I  lF= 7$(*5!‘Á&% Á#% ! (77432>732#>=4&'#"#"%5.'#"26!Ç#3 -/!/` GI ,%/ 0„Ç) .'&7=F?׸ 67#4Vh & %.%G`aÂ#&Â.0! ¢Œ(2#7>=4&##".546á)9/!'1?#$;$3 oŒ)J/3L$)À0*/-D6Zl!þ,#"&'&5467326=4&+532=4&'52£lQ?i@8 9&(90;%4*c[a(9SZe.&"+2Iz!%#$î1x!%HGQ2=þðŒQ.'.'5632.5432>326732#2>=4&'#"#54&#"#54&'#"D‘zgÏy-;+.¨=> @/<ŸFI &"CH,S )/.U<6þðD_*$ 7S6/5[ x,H``/ !``100b# 2G`! ¢ª!/%"&5463254&#"#"&5467254&'"26¢oQQpqP6*7)5 +mQ]e`5+*66*)7ÊNqrNPqÁ&9C "'@LqMþ–-38(‘'8;! ¤®(7227#"&'"6732+".546354&#"326É0S:?"#i%:06(d_ ("(OI‰5,)64+)5¬ :/ò )E,nV'?'RDKý¿Á"&#%Á"%$! –87"&54747632>3#6=4&'#"#54&+632Ž1<2a$A$QY`100$ 1I=#'7" fVI[$Q> Nq00À*%$/$$’!  ¬;#"&'54732326=4&+532=4.54£ I>¬$6. B,.4&O-T  )(!Á+$<$)!þðŸŒ*73265#+5326=32653"&546˜;%$<&:, S< `.b/%M5a^: 0y '-ÜG( Mþ##='j>#R! •«>26=4&'#"#54&#"32+.=46?67>3267÷IU F.35" 1I=#&:<*9]b’E}!XI‘DN&:])!h‹Ma)\L?Á,$$‘‘/+#‹(3:-»Rg(<C[N06+ &$! Ô®'%#".55763232654.5463Ô!:@&+9)1U !;(!T&&:2$„#2 'J2À 5ýï!%0&>P$(95&=!.!þðÿ‹FT#"&54632>=4.'32=4;#"&547.=4732'54&"326ÿ7`;t{M: ?8$7%* M18NkaBqW¾(!#OJ1‘^j %5¿f7%Ä$6  /$!55*P (%ZW K oÃ00ÿÿþñâŽ@2632#".54673254&#"#54&#"#"&54632#"'32>º')2@H&K3>>(>:<([G X!   )-‹PBþ³)9&#A)4FEy"$GÛ%#,__*E  $$!þðHU%##"&54>3326=4&'&5463>=4&'""&5467263254&#"26   aoSLu/ 9&(92. DEIM?WA#BGMþÝ6!þ% &D^WfaK " ˆ!%#$î #!H@N?QFG$(C˜4!!þð¡¯525572>73#"&'54>332654'"#"5467Î.E01 0TmgU 7' D &0T6 0HR<Žñ$ýe[Z@ "-$&x'%#Þ3$# -f,E!þñR‹D%>=4&"#54&#"&'&'563.=46;6732¿ &+8,T+ 0C/! 6%MUŸð :'"\F#,"/C>]Gl.ƒ""kk" S* (/D)r.X9"f7F/3370Q!þí£Œ(#"&'4>3265#"&5463326=3£_^Ot9( 9N9/GTWD4<#,5aT\c]L22  ‘ '&"6S=8Y18Á É­1D743254&'"#54&'".'546;672#"&'&%4.+"3265FÂ4-$H4$M8%)2”^c4s #+&  4-@ÇÄò/II1*)4 …þœLm6:&‹#  ¿ '*! £®","#4632>726=4&74&#"26ç(-aPY?RÙ164$WRI2( 61_tþÒûL]D6<;)`"…L!þñÄŽ54632"&=4>72=4&+532654.!&(#)#3,0Yubs7'/wv###"O% ."?IAoue’.8I0138þu‹Šx6(-)! £®$%#"&'5463254&'5254&'#"326£qQNqqO2/7*Osa6+&75*'8ËNsqPNrÂ'8qQþ—(86*‘(8:þðå®),#'>=."#54&#"!#'467326;2#åDG$("H )-´Ë>+P&$6‹†ÐbL); .. xx! Òý{,2&8&$þ«þG!þñš¬KX$"/#"5767;>=4.'5#"&'5463254&#".5727632/&#";6š  0%/`C ÄsB*0"9ME8# I ')"bS0  TT³™ <„ 0$g>H#h!;d"#-‰!` L*3EË *  Vû< lS› k! Ó®&%"&557>32637354&'"26ÓrNSo00*7/00_7)+68)*6ËQorO¾  þôah&Ý’&89'‘(8:þñFŠ6%"&/#52654ȷ'&#"&5467267#7327F;.L=4&'"â;C=03A,E2 &TIFZ…12¸%#(+RH$    ITH'QE4H^? 00x-(x+!þô€Œ-2>32#>54.'67"#".5432±$WA hD0Cet4'+N,#Q)8DG/#0/ !Ý=4.+5326=4.546;2œ " 07WB'K2!;@&;>,!') **-,4,>'%*E(^;"c):* "G3&M3z #ä  +6%6 - ) ! ¢¬)3##"&'54635#"'54623#3'54&'#"'"326¢ISI@Wes¼Y†YIII©6CD4<#„?DJFGB`‘DJI;…`x©*$$`&"þǨ.`H+Eÿÿì173267654.5476?2#"&54654.54>?632ª#&52**+3P^-?Z&  ' !(^4j~D'!5 ‹?GS1U&6», þÕEÿÿëE%#"&5""#"&574654.5463232>54.546?6322>72ë2)9:  27>32#".#"##Â!ƒH"+ 8(y+ R @M@ (  C% ;)8# 5 6PÑ /!V  &P"N0*&…Œ#  *"ÖX87"547#"&546547632327654'4&5456?632+Â!ƒH"+H!y :7  gg  06PÑ .!U a %^<  (2ÉÄ,ÿúàY=L747+".54654&547>32327>54&547>3232#"&74#"'326¢¥#$ K K3 8 O -l*56m. ØF 3KÔ# U  +J%|% *+j¼+N )+,  ÿö<aA3232>54654&54'&54632#".5465#"54>54&547>323œ!4g!;8! [&¦7>54&'&5476726.#">j#$*N /;-?T" "! ))%/   U X$  %D'((:'5&-#%U    :"þô()PRy)!!  G" %011!\.7467'.=4?2632+".'+"1ˆJ 5 '*.,W)%GO S cmñ* M*3u\z2 Jk£E8¨Q& 2Á\@7467.54>122672#"&'+".'.'+"2R '  52/*h$)'89+T 2K Y`rè!@   %F1[: 2 1-ŒS  Wp†# o%* 1ÿÖü\C7467.54>123>467632#"'"+"/.'.'+"&1ƒQ '  !' !#;.1H#=  2g Jckí @  <$2$3%Z'O(  *!2 2~t1´`* &8#\1+"&54>767&546?2632+".'?9\ H 2(9 6  ?##V—l7 42#B+- P4?+;ø7  ˆÁ)2Ò\0=7467.5476?232"#"+".'&'+"%4&+32652‚Q '  *.P&fVM1E"( 2pI9(/ &bnê!@  P0VË.% Ë/Äc! ^Q-ÿòMU8D7467&54632+"&'.'&#">32#"&732654&#"- RDJ 0%+ W $  KTE(3'%,$ /,d$#Hvú!W 1 .)P0)iC- -ކ3Ft1 8%'  >4*, 1uUO[74>7.546?632>7>7>32#"#&".547+".'.'+""32654&1@b0& 7  ! ” 7 ! '3u0?(@E#"/qI˜!!cI¤z?  097&[ % ¾@  ¿+ !Éa! M ( !9ÿv\Z7"&54>7&546?263232>72632#"&5#"&54654&5467.'.'#T 4K>9 6  F !  c 0-8'§%71%.e„c )4a@'P"L1tA  1 6)00 /  Dà8EU.JS74>3654.547>322+"&5>54.#+"5467"+"&5Rwd" O WqP6,.3  M)+G7)EpBd1˜ "š&T8I  7#8  ?j$ ;Ü )S72$ -Jk74>36=4.547>322267>32#"&5+"54654.#+"54?"+"&5Rwd" O M[O\1/ )(;c I4M8 M) BQ7EpBd1˜  "š3   1 5+ $ D  &G0C ?j$ ;£B%S9 +  -ÿÖJf+"54>37>=4.547>323263>32#"'#"&+"54654&'+"&546gG_-H#5GAB"  O 2? D. 3,GH @o_ E3,A=&%U.M1& ,+\  ¬š U " 2 3&T DO@h% $ÞI`7+".5467>3>54'.547>37632+"&5>7'.#+"/&5467ƒ, <1){4   "F‹e +:I5 @  7'6#´ ,6=m  ¤(P1W C/"2 b  ])¸JT`74>36=4.547>3222++"54654.#+"5467"+"&5%232654&Rwd" O [kLRd^KE4M8 M)BQ7 Eå) pBd1˜  "š'M2*# + (E/C @h% ;ß%S9+ -ME"’b4.'632>322+"&5>54.#+"5467"+"&=4>3>54#"#'6 -'"* 1'WqP6,.3  M)+G7)ERwd"O")6F     = •&T8I  7#8  ?j$ ;ß)S7# -0Bd1Œ IZ74>3>54'.547>376322+"#"5474'&'"+"&547+"&58O_G  "_oN & (  B:S+ , p5W2" ;n !— @) 7 9 %@#'9)/(ÿtÂIqŽ7+".5467>3>54'.547>376322>32#"&5"#'#"54654&#+"/&5467#"&54654&54767272632ƒ, <1){4   "\qONB )(9 $}] @  7'6#29,&U57  ´ ,6=m  ¤'Q5C   0 6+%QEU b  ])à 'K69\]¥Kbt%".#"0&#"#"&54>323276323632363632#"5+"&54?>54'&#"&#"326326?64+"6323>k U(0&DsB '  $%.  ?>,i) = 6 <$ - % ,^ P9 .  (1a3(LQ; *7Q/!  m1&f3."',@&#2ªM1¬ {:\O¥Vm%0.#"0&#"#"&5467632326323632326327>323#"'#'&+"54?4654#"&#"326326?63232654&+"k U(0W*HR1B6$.  0 E.9I, BJ;.@, )/# s?$ - % ,^ à )=1a2&5m248" / 40B %#€) *Ñ"',@&#2ªáv2º.ÿÖ(`Meo4&#"##"54>?6363233263767>323#"'+"547""+"&5464.#"#3:>467632?,  >PxmŒHÍDfZ ‰' C$NH N"[$) B'$ E9$&" " ýfNJ/]I /¨\9X) 93þ®12. 3JMÂ'Z  W) <>(Ð#E.—d>ak%467"#".'&54654'&#"###"54>?3263232+"4&+"##3:3263263:32676;?¦4#Ll%$ ';PxmŒHÍà $‰A!Š  *$  )  ýfNJ/]IJ&œD  %c ©)\9X) *.4þ°2'þ! Y >H(Ð#E+ÛdIlz‹%>7"#".'&54654'&#"###"54>?32632322+"#"&+"54&+"##3:3263263:326763023?"326=4'"&#¤?Ll%$ ';PxmŒHÍà $1> Nq&6,   1‰  *$  )  ýf  NJ/]IŠ %"5[-¦"  %c ©)\9X) ,.0‚†##*  A½! Y >H Ð#EþÍ+ );‘dFXe3"5467>7&547>32$32#".=4&'"+"#"+"4&#"#326=26=Jƒ ½311546 ?toR$E<  %  'R&  1 Ý%355"þJR* 6 #… ^81  V?6G ) !^ /JN&O0'Ú/1376323#".=4.5+"&4&#"#326=%346.+7N."š| 0û$VC¸x Ò1/7$37263232632327>321+"&5##"&'&54654&5467&4&#"#326327:32676;2?¦[$)  '$: ˜(I?PzY$5l   ‰^W /*;[Tj9,(fƒ Šf $&& ýeNM[~HPÂ+Y! ¥8 9#2K&2'3þ®/7  * 4-&I 2 Î'W*CL$ÚO>UÐd#"'#"&'.54654&54;26323232637>7>54&5467>4&54;232654.5476;2632(T7674&5467>54&54;26323254&5476;232632ò*(:9   6k)H4G 5M L 5  + 'hC5m   · 7+ 6- #2   !Ÿ0!  *   L( 7U ‡ =H .*ÿ×L9ˆ%4>7"'&#"#+#"&54654&56;232>765<147654&'454;263234674.5476;2326363>32#".#"+"#"#"&+"Ö%`>  {&$, ;& ' IV  A t  "G+/2$  .  $M0pb -$U  _ !  ) , (7]#7"þ¯65!- ²9[%467".1"##"&54654&56;232>76?>54&54326323>74.54;2+"&Ö6*"  WŒ$, KF  IV Kt BT0¸ -$U  _ A" &904 þ¦7! !CEDo}%467"'&#"###"#"&54654&5476;2;2634676474>54&5476;23>54'&43021;232+"#"&+"7.#&#326= )  +II#+ , # / % 3ž @ ] XcDO%  1"Ó#- V+ž?1#V a %>  &:439 4/þÿ54'4;23654&5476;232654'&54;2#".#"#"#"/&#"+"vw>)Š ,"!=< gL%02b<$X>, "Ñá4  #'[  n5D >1' 27.+"&5465454&56;232632726?654&5476;23274&5456;2632#"'+"`:kH%"+=" 3  0 ot 3   -aAZ8ED8 7b–1#^  !N' U.)2 f; 0;(`\cÿvG8‡%467"&#"#+#"&54654&56;232>7>54&5454;23>74&5476;237>32#"&5+"#"&'&54654'&5467&×57>372327>32½I5#MdvDX. G $9DE9$0(915(  * , B7^T/>E2  -M71.0A%+5   RP&?7467"&54>=46;232>2#"&5#"+"&Ä9TGTG > /BB/7L765‘ 0 '9.9 r0;Ž* 0L0y!4O$@9K k  #@-, IS% 2!+ $#,3'F6%) GM0ÿðÄ'P%#"&5#"&54>76=46;2632327>;>32Ä()::$  f<;\B_aJ -  7MPN7+#!) Oyi 5," & '5=6W>;P0 -J5/< %)$/'=" 11Ž+?K%2##"'#.54>74>?263232>7&547>3>32654&#"3%6%B@N778!?\]F 8 ;9NL(/,!$<Hy+$ð4(0  2#3V@?V2  ,J8)2=M"= #/ i*,!-ÿÿ'H%"'#".5&54&5>7272632;2#"&5"32>7>73½I0J1*,sd:/ X 1+A)5"H3 1@( * , 2$& 2 ƒ– +3Fš• $ "#  -ÿÿ~IHV%"'#".5&54&5>727263232632#"&#"#".47+3263>732654.#"½I0J1*,nh1 *"E%73<9"-  >MU)G@( *! $ , 2$$ 4 ‚• 5(&9 )'„r–Q'"#  ( #0ÿñß{r".54>5"&#"#"&54654.54632;>;23>32#"&+327>;>32#"&5Á/.FdcF6. (= . AHF* ) +6,#32KWK2a!) Oy'):* U / ;Y;=\=   -$  )4 #  6[9:.A$_'=" 45,) %-ÿûHK4674'4&546?26322##"&=>54&#"#"=4&-sO C  ¶ 9G)45! 3& KZ0    1 ~"à  J¿ 71'M5 & CQ C -ÿûHm4674'4&546?26323;2632#"&5#"#"5465>54&#"#"=4&-sO C  šHa 1*9] ;E-D] 3& KZ0    1 t6 2 6,  ?; j¢8/_M % >J C ,ÿÛHb4674'4&546?26322327>26467>;23#"'#"'&565>54&#"#"=.,vM C  gO  @" : @Kr< F+B` 2 ' J\0    1 FB%Ó + 4^«!80aM% ) BK C>v,ÿûHN4674'4&546?26322##.5<5>54&#"#".'.,f] C  ¶ (A//;) 3 %7b0    1 ~"à n¦-6!I2)7(4-ÿûÏHTb4674'4&546?263222+"#"&5465>54&#"#&=4&4&+;26-sO C  ¶ Ñ&6,1 F, "0' 4% ;"1 'K[0    1 }“M j¤80$A)Z\@Ÿ±! 0 -ÿûGL467./&'&543763263:32#"5465>54&#"+"=4&-h= 6& V°YE*Bb 2 & GZ  = aà# v~580`N% ) BK A £-ÿûHS4>74'4&546?26323#"54654&#"#"&=474&-CS, C  IR  9 @/19'  %8  "1N& 0    1 ?7c/ˆ+6!E.; $+ 9: ;3.ÿt Gm467&54763:3726322332632#"&5''#"'&54654'&547>34654&#"##".'4&.€BC · ‹ ((:;8T2%(¬)E+19'  7  $CbG  6{5½/- 1 8) 11.  Dì80"F\A  >ÿûpj2>7>;2#".#"632#"=4&5>54&#"#"&/&546?6=##"'>54'46?6‚@ ?;N!C* $F%* 1$=2;09&.5$ Z 6E(,P1 !X3 # 0 ]5*Õ" ( +Ë6)#G/‚# +E;;2M Z! # ÿû „2>7>;2#".#"2632632#"&5"#*#"#"54&54654&#"#"&/&546?6=##"'>54'46?6‚@ ?;N!C* $F%* 1 M;?o (+7 )  T9&.5$ Z 6E(,P1 !X3 # 0 ]=) -, 2 8(u 0#Î1*#G/‚# +E;;2M Z! # ÿÜ0{2>7>;2#".#"63232?>76323+"'#"&54654&#"3#"&/&54676=##"'>54'46?6‚@ ?;N!C* $F%* 10- = Q  4 P W1! <#-5$ Z XK,P1 !X3 # 0 ] /@³;* 1 3 Þ0*"F.ƒ5 +E;;FM Z! # ÿûpd2>7>;2#".#"2632#"54&54654&#"#.'&54>75##"'>54'46?6‚@ ?;N!C* $F%* 1ž X9+:h 4 2F:,P1 !X3 # 0 ^p-¶* 0,Ê&.\CK'P (D&d! # ÿûÝy‰26726;67323#".'&#"322+"#"'&546=4&#"2#".'&54675##"'>54&'6;234&+;265Ô8C9^ /0# 7FR Ð%6,_ 8) "+#Z  mGBO1  &.! ¤"/ '& 8  /  ]52~M 25Ä$, $=&\1   ‘M_ e"#þ73 $ÿûŠ{4'6;23263>76;23#".#3263#"=4654&#"2'#"&=4&=4>7&/##"'>[5 Y8(!#!5$#'  4MY9&>Y <  );5; 1 "l ! !  -  0 2<#¾ 0.¬+4(^Kˆ (( d%A'ZA#ÿûpu2>7>;2#".#"2632#"'&54&54654&#"##".'&54>76=##"'>54'46?6‚@ ?;N!C* $F%* 1 =] R8& ",$  R  6-!,P1 !X3 # 0 ]3;\ . e#,":$'…   %;' Z! # (ÿ†‰¡4>75#"#"'"54654&546323:32>72723>32##"&+2632;2632#"&5+"''##"'&54654'&54763:32;&546=4&#"2#".J2G:,%-  '08   " HC1 *  ))"5Ÿ#$V +(9. 9U9,+?<>=&G[7)E'c   ! 5A $ Rp¶:  1 7+8C*  6©( .)h8GA4@ÿý{G@Q]"5054>7#"&=4>?4654.5476372632###3263>7%4&#">-  '0R7L[P  _ &J@-YQ *|K !"L9!!))GP +;  M 2L-# $‰(>Y%1+& –"@ÿýŽGUfr"&5>7#"&=4>?4654.5476372632#>7272>323#"'""33263>7%4&#">+'0R7L[P  _ &J@-YQ ) 6)+3J .  Z‚K !"L9!!)$i +;  M 2L-# $\,41 (>Y%1+& –"@ÿã€GN_k"54>7#"&=4>?4654.5476372632#3:367>32#"'&#"#3263>7%4&#">,  '0R7L[P  _ &J@-YQ# C- ;*5CO’K !"L9!!)5 K4 +;  M 2L-# $– !,!* (>Y%1+& –"ÿï´GJ[c4>3>54.5476372632##"&54654&4763232;267>7"5473272765654.'w>]K _/X$/35$3Rj8)3   A -U:)x% !0 âm",+> -3 38*8))> 0 %) 6}* >&@ÿý{G8IUc"54>7#"&=4>?4654.5476372632#2+3263>7%4&#">4&+;265,  '0R7L[P  _ &J@-YQÑ@>4´K !"L9!!)!, *4 J5 +;  M 2L-# $;L% (>Y%1+& –"ÓJ?ÿý{‘Oam4&'632632632####"=4>7#"&54654>?4654&##"'>3263>7%4&#">®B34 %- &J@-YQ *  ,1N6LZQ  ") K   L9!!)X 5J-# $‰)GP +:  T þÍ&>Y!2+& –"Aˆ3CP\m%"&=470"&'.54>765654&54>32632#654&#"32?4&#""2>7>5N84 FTI>"F.**?+0"I^ 5:>K   .#7 &k( % ù-4  2< F / .&, ,(= ( $ 7 nS$.Y MY$U  @ÿýGWht€"=47#"&=4>?4654.5476372632#32326;2632+"#".547#3263>7%4&#">32654&#".!'0R7L[P  _ &J@-YQB )+Q )52; %F(W QK !"L9!!).#$)“ +;  M 2L-# $&6(%7! I(>Y%1+& –"µ*")!@ÿýñGy‰“"5054>7#"546547:3274654.54763726;22>54.5476;232632#"&5"&+"54?####32?%4&#">.  8+~å   _ 0b 8 A R 4'8/$  Oÿ¾zGoz‰7"&547467>7>54.54763722#;2+"&54654#"#"&#"#"#"&'&54654&476723>7&547732767"267654.'ØLNtM (   _ w^$$WT 4 .   8 '&9 % # ^ 4{JzI Ó%:F 7/6?8 7& ,  T$4  4   HÒ j 1zL2€* ÿlzGSkv„$467#"&54>7>54.54763722#32"'"&"#"&54654&547>7'263767>57">5&'4&+;265 !WB2IH7  ^ w]2XO-1:(.|u  ^;,&%yG[  -'ôL.M="'$ +<j"!0D? 16@8#!>M 1 ï 7=>,!“ œ ).S þÅ:@ÿý¶Gp"5054>7#"&=4>?4654.54763726323:3274654&5476;2>32#"&547####3263>7%4&#">-  '0R7L[P  _ ?Q /   D '+*4/˜Y%1+& –"ÿýªŽju}4'6323263:32>'>3232#"'6;2"#"54?65"#"54654>?#"&#>32637%&#">L'/ ! !l#%.  @" 5+JA' Â!0BX T!6Š6R?@! V1"kA&Mb L:- 3] ` #   <5 @.<%7 ‡! "é-— ,K¥,ÿýªŽˆ“›4'6323263:32>'>3232#"'632"27272>323#"'"#"#"565"#"54654>?#"&#>32637%&#">L'/ ! !l#%.  @" 5+JA"Nf '/7 % 6)+3JE   W 6Š6R?@! V1"kA&Mb L:- 3] 3+     ,4 4Ÿ<%7 ‡! "é-— ,K¥,ÿ㪎u€ˆ4'6323263:32>'>3232#"'6;2";67>32#"'&#"##"5465"#"54654>?#"&#>32637%&#">L'/ ! !l#%.  @" 5+JA' Âb‡  # C- ;*5CN 6Š6R?@! V1"kA&Mb L:- 3] ` ** ']  !,!* 0–<%7 ‡! "é-— ,K¥,ÿïåŽgpz4'6323263:32>'>3232#"'632##"&54654&4763233265#"547:326=#"&#>2>54&#2635‡)- ! !l#%.  @" 5+J`e6 :S5"-Xj8)3   !GCe21„Ò @" V1"D %.;Ž ?/'- 3 b%3" !4,)> 0 @L 8x_! "ð-1¬–41ÿýªŽdow‡4'6323263:32>'>3232#"'632#"2+#"5465"#"54654>?#"&#>32637%&#">4&+;265L'/ ! !l#%.  @" 5+JA"Fq9D4Ù@>.D! 6Š6R?@! V1"kA&Mb L:!-% *- 3] .4"  "K& 4Œ<%7 ‡! "é-— ,K¥,Ç1 $ÿý¶¥|‰’%"&=4>?#"&547"&+"54654&54632;2326;26?>7632#".#""7632632####"547"'32637>5.# T:6U8: n) )&8C!  - -')"   )9"'(G !<;# YU  +" +'@ Ì&$(;5Ò %6 ; 5" 3#  9   (  ‚ 1¦I.—!<"-Aˆ¸Xo|ˆ™4'6322>32"632+"&=47"&'.54>765654.5467&'#"'26%4&54;2632#"&546654&#"32?4&#""2>7>°-'"*& *5H3& 0"I^ 5:>K   XN84 FTI &&-5#V <  8'#t.#7 &k( % ù-4  2< l! " 9* '!( $ 7 F / 7 (#   !2 #ëS$.Y MY$U  ÿýŽ˜ ¬4'6323263:32>'>3232#"'632"32326;2632+"#".547##"54?65"#"54654>?#"&#>32637%&#">32654&#"L'/ ! !l#%.  @" 5+JA( 9=$1v( G (!R 18O (_8* !6Š6R?@! V1"kA&Mb L:-#$- 3] ( %  "$;! 9  5 @.<%7 ‡! "é-— ,K¥,©*")!ÿýñŽ ©¶4'6323263:32>'>3232#"'6322>54.5476;232632#"&5"&+"54?#"#"54?65"#"&=4>?#"&#>;7%4&+">M)- ! !l#%.  @" 5+JA!'>3232#"'632";2632+"&54?'"#"&""#"&5>7654&54;263&5465#'.54676?#"&#>;67>=4&#L'/ ! !l#%.  @" 5+JA( 3?."HT 5 0 < 7  F'`  6P /.FB@! V1"iH,É$,=<- 3H %    *D)    >: "  –35j! "ä1|8- ."9+ÿOªŽŒ™£³4'6323263:32>'>3232#"'632"#"32+"'#"&54654&54>7&5465#'.54676?#"&#>;67>=4&#4&+;265L'/ ! !l#%.  @" 5+JA#>?&"CL  f]%7* -# ^;+%%/r, 6P /.FB@! V1"iH,É$,=N 1  œ35j! "ä1|8- ."9+þ§1 ÿý¶Ž”Ÿ§4'6323263:32>'>3232#"'2>323:3274654&5476;2>32#"&547#"#"54?65"#"54654>?#"&#>32637%&#">L'/ ! !l#%.  @" 5+JA *J>/   D '+*4/˜ê T!6Š6R?@! V1!kA&Mb L:- 3] 1& E V  2 BK  <5 @.<%7 ‡! !é-— ,K¥,ÿüé4D74&54632""#"&=465>54654.#"#&546 ªvOd ,--;`  %aÈg|I<4á5" . $³3&4dt ' À=ÿü×4V%"'"2#"&5465>=4&#"#"=4&54>3267>32wK 0 >0/1 0 ' 2EV=Nc* G)# <í3*d4! - - "½5 4?+W;þ÷@>Á5S- F:h"/ ÿÚæ4O"'0"&546?54.#"#"54&'46763232?>323†Iœ' 00 2 & 2HRQ)LA <G.B&4")#ÙE / -X=)[i ;E‡G>`#)?24é8 !- ÿüé4B4>32""#"5474654654.#"#&54654&2GV<Od ,&' AW  P $ Z4R. I<4á5H, à / oQf '  ?Pÿü«4DT232#"#"&=46?4654&#"#"54&54>4&+;26,:;%l]"4&"W@1%1  0 ' 0DT=0"3! '4 7&-¯, #";­%E+>(R7'{vA?¼6T/ þ$ 1  ÿüá4N"&54&'#"&54654&547>726?>32#"=4654'&#"9 `B$% ® K]H*K?   ( !E// @!*3²% 3A 3 4L"@1*þó(D 0ì4.;+X;þä ÿüé414>32"&=4654&#"#"&=4&1DT<+LA E.D.+5$ 4% Q7U/ @2(& #% 0='R8þë  !"*±ÿtÃ4e#"'&54654'&5476727&5465465.#"#"=4&54>3232632#"&5'&#"#$8-)x3!5)@V  F) 1FU=*L>"z ((:<A 8 &I,  #6ç7++oR59)  A W4R- @14å6 ' 1 6*ÿÚÿü7È'l226372>7632#"'##"ʎ&'64&54632""#"&=465>54654.#"#&546EDŠ6  :+4H$$ S26. ªvOd ,--;`  %©2    )"3  " /ý¸Èg|I<4á5" . $³3&4dt ' À=ÿÚÿü×È'~226372>7632#"'##"ʎ&'6"'"2#"&=465>=4&#"#"=4&54>3267>32EDŠ6  :+4H$$ S26.WK 0 >0/1 0 ' 2EV=Nc* G)# <©2    )"3  " /þD3*d4! $ - "½5 4?+W;þ÷@>Á5S- F:h"/ ÿÚÿÚæÈ'v226372>7632#"'##"ʎ&'6"'"&546?54.#"#"54&'46763232?>323EDŠ6  :+4H$$ S26.fIœ' 00 2 & 2HRQ)LA <G.B©2    )"3  " /ý14")#ÙE / -X=)[i ;E‡G>`#)?24é8 !- ÿÚÿü7È'j226372>7632#"'##"ʎ&'64>32""#"5474654654.#"#&54654&EDŠ6  :+4H$$ S26.2GV<Od ,&' AW  P $ ©2    )"3  " /þ±4R. I<4á5H, à / oQf '  ?PÿÚÿü«È'jz226372>7632#"'##"ʎ&'6232#"#"&=46?54&#"#"54&54>4&+;26EDŠ6  :+4H$$ S26. :;%l]"4&"W95 %1  0 ' 0DT=0"3! '©2    )"3  " /u 7&-¯, $ "ÛE'E(R7'{vA?¼6T/ þ$ 1  ÿü/È'v226372>7632#"'##"ʎ&'6"&54&'#"&54654&547>726?>32#"=4654'&#"=DŠ6  :+4H$$ S26.! `B$% ® K]H*K?   ( !E// @©2    )"3  " /ýS!*3²% 3A 3 4L"@1*þó(D 0ì4.;+X;þä ÿÚÿü7È'Y226372>7632#"'##"ʎ&'64>32"&=4654&#"#"&=4&EDŠ6  :+4H$$ S26.1DT<+LA E.D.+5$ 4% ©2    )"3  " /þ¨7U/ @2(& #% 0='R8þë  !"*±ÿÚÿtáÈ'Ž226372>7632#"'##"ʎ&'6#"'&54654'&5476727&5465465.#"#"=4&54>3232?632#"&5'&#"#EDŠ6  :+4H$$ S26.8-)x3!5)@V  F) "9@E0Oc69, *':!8C 8 ©2    )"3  " /ý:&I,  #6ç7++oR59)  A]+G-!I<4æ6 1 6+%ÿý´GV%467#"&54654&54>7265>54.547>3227>32#"&5##"#" i3%&).Z* RU= :  1*9#:' V. ý- 01 2  *7  d 1 7*þ×%ÿý´Gu%467#"&54654&54>7265>54.547>32267632#"&5#>?67632#"'"##" i3%&).Z* Rj2&  1*9&> !Q!)5K  &,ð5 01 2  *7  ` 1 7*Ï-. 3  %ÿã´Gn"54#"&54654&54>7265>54.547>32267632#"&5#327263>32#".##- &i3%&).Z* Rh7!  1*9%>  C- +5& 1! 01 2  *7  d 1 7*  Ç *#ÿåüG_4>74654.546322632#"&5#"##"&54654&543232>7>5#"&54654&˜2Š5X A˜ +(87 $5Up$ 2 #N7I&A% )Vr !#V, 7* a-6+,  . 06'< $3  3 %ÿý´GWh%47#"&54654&54>7265>54.547>32267632#"&5#2+#"7";26564'4# !i3%&).Z* R`9  1*9%5ÒA> . ~ $'H4 $ 01 2  *7  b 1 7*(‹L% *'%ÿý´‘o>54.5+"#"54654&54632;2>7>32#"&5#"'###"547#"&54654'&54672>38  <  #041 # w :  1);+3   3$l +,/Z-5 v W" 6V  3 8)H É .   #( 1 ÿø—3Zg"&54>7#"&54654&54>7265654654.54>32#>67672#"&5+654&#"0 cG& &)\, (;37J .'& )-4(8e  PV.#7 E:$CJ<95 #4 8,!2 , !  8)z/! wS$.Y 'ÿn´G…%4#"&54654&5467265>54.547>32267632#"&5#263632#".5&#""'#"&54654'&547673>3& &iA$(S– Rh:"  2*92 "‡3%0 # 4W& g <1  4A 2  *7  b 2 7*1Û  3 *' ., ;ÿþÖzx26;>7>323#".#"#>7632#"&5"'3##"&547#"&54654'&547>;>?##"'2654'>323&o& :C6;*8% H x8! "+8d  Hf$ &J L [ t !1"" !$,#3h !9(  þÖ +  !2  *   A$!;ÿþÖz•26;>7>323#".#"#>7632#"&5"'67272>32#".#"2##"&54?>7#"&54654'&547>;>?##"'2654'>323&o& :C6;*8% H x8! "+8d& 5)!  ;'% < E f$ &J L [ t !1"" !$,#3h !9( Ó 1 5  C'š'  !2  *   A$ ;ÿÙÇz2703263>323#"'.#">7632#"&5"'32?2>3#"&'#"#"&545#"&54654'&547>;>?#"'>54'46½@ §6 C6   :;+x8! "+8d <4$$ 8%0 $ f$ &J L Qv  :S3% 2 " 3h !9(  /U  /  '  !2  *   A#1ÿåz˜63237>323#"#"&'>7632#"&'#"'##"&54654'&5432332676?#"&54654&54732632674654654&#+#"'7>54'4632¾  YC6." $. 7  u=  /(74)Vz9(2A 3[b2%(nR  Ou :D $- s # 7*dV%0.: .  %?e  21 4  ;A :ÿþÖnw‹63276?6323#"'>7>72#"&5#"'32+#"&545#"&54654&546;>?"#""ਫ਼'46324&#"#326;265ø° W H:02Fa d ,+'(;G.Ep&6,#"&f$ &D(L "! ;,!:B' .! '. '"3 —   06) Ê#) &  "4 1 Œ#!þ6Xý…74654&547673>?#"&5467"&+"54654&54632;2>;7>323#".'32>3>32#"&5#"'+"545#"&u  dL : o) (:3 K 5#:@"-R 8 l 8( )*:H @Ee3%'ì7 ˜7 (7,   0' S     $  ?2 c¾ 2  878³á“¢>54'5>323:;&54654&54763:;2#"'>72#"&5+"5467#0#"&54654&5476327654.54>7'&#"#"4.#"32>ƒ$ %#)   Q    ?0$+W-_B9 (,9A   O0 L  -%&4>U  08 =0C#' #   *  (+71J 8 >4" _'Š  '/  9   (,( A T%,,;ÿnÖz¦26;>7>323#".#"#>7632#"&5"'32632#"&'#"'""'#"&'&54654'&54>7&547#"&54654'&547>;>?##"'2654'>323&o& :C6;*8% H x8! "+8d‚ &,7*  0V% )-x( f$ &J L [ t !1"" !$,#3h !9( þ×   400 #3  1  #  !2  *   A$!,CX43232632632654&54;2;2+"&546754'#"/&#"#"&="#"&54654'4&5U!g  7 A:E7   ‡++'»C  % S %Ü *Ó  *84  ÷Ct4;2326326326=4&1476;2;232672#"&5#"+"&54654'#"&#"#"&="#"&54654'&4J ! d  3  :,?0 (*9-    E: -  ‡$ '», 'L#C 1 7+ 8> *Ý!  "1 , ÿÖÿCx4;2326326326=4&1476;23:;232?267632+"'"#""&+"54?464'#"&#"#"&="#"&54654'&4J ! d  3  (":& \ 0" M -0 -  ‡$ '», 'L .Ô0 0 . 3?Â6  "1 , ÿÛ%C_4&546?632654&54;23:32##"&54654'&546;232>54&'.+"5465#"&'&546LN}) 7 ? 2@n;$1 J-WX6 3 R*% *‘  C  % S w-+?!7$1 ,   A-f!  $5  9ÐC[h43232632632654&54;2;22++"&546754'#"/&#"#"&="#"&54654'4&326=4U!g  7 @'ÌCB#@8   ‡++'É .(&8»C  % S %žL% ,Ú   *84  þ× ( 7DU"5465"#*+"&546762725654&547632;2;2+"&546754'#"/&#"I0Z 0 ’V  5  A:E7  ‹!=8  I`  %N %Ü *Ó 0Nfr47#"&54654&547>727>32633>72632#"&#"#"&5473273632+"&54654&#"+"%2654&#"(DG+5i1 h-#?<,/5 . #,),+N*   = X* @!"=,$=8 1  &,-C $$ !E0=>z  ª-&‘Cz…43263:32654&54;2;23263232632#"&#"#"&547#*#"+"&546754'#"/&#"#"&="#"&54654'&2654&#"5W.U  7 BA! ( 8*56- / 3'47 -  E7   l2%&•2  ºC  % S ) 6'(67&! ­ ,Ô  00/ û!!'–C 4307263:326=4&1476;23:;23:324654.5476323:;232632#"&5#"5467#"&#"+"&54654'#"&#"#"&="#"&54654'&5W.< 3  (!4   ' .0i 2'<œ     E: -  l15&º, 'L ,1 4 n 7, 1C#0 *Ý!  "P2 ÿ TC‹4307263:326=4&1476;2;23:;2#"&+"&54654+"'#"&54654&54>7&54654'#"&#"#"&="#"'&54654'&5W.< 3  ;1; 7   4 '!& ¹<-$…¾ <  1 l15,º, 'L 8³ %.  T  ,T2´   "P1 ÿƒ³Cx†43263:32654&54;2;22"#"#"&+"'"'&54654'.547>7&54654'#"&#"#"&="#"&54654'&4&+"32655W.U  7 ?oW"5$ $ o2J"/x@ ;  2 l2%&) $)&ºC  % S ' e-  872     00/ þÜ6 >C43263:32654&54;2;23>54&547632;2>32#"&547+"&546754'#"/&#"#"&="#"&54654'&5W.U  7 B9   7 E 130  G8   l2%&ºC  % S !+ VZ 1 A 2t,(*Õ   00/ 0ÿþZB<;2#*#"#"&5454&+'&'4654&#&54636BAe ‡_! 8B$m /á    … kÿþAT%"&5#*#""&=454&#"#"54654&54;632263232632Ñ*7, & I ‡' & C") i *š6, %RF    ! k  k M ! lÿìÜAC"'##"&547654.'&"#"54654&54;6326327>3}J;F u ' & COI,":3  ! k  k þÞ "- ?)I#"&'32632632+"54654&#""+#"54>7267263213(7"*:3(  l' <8 3 ?*O2 5 \» 6) a:@D  ) ‹ R'5," /]¢AAO%++"54765&#"#"54?4654.54763:36327226=4&#;¢(:-#91w0 #G,J^«(!+ ! V! % " @ ! i  ]8)W @ 2ÿþ'O4&#"#"&54654&54>?632;2#"'4?>54'&#*+"54?66 -2#&3N=n  P9*m  G  t N  ó   56 3   4 Z# ?ª ¶D!?fT`"&54732>7276;632+"'4654#""+"54>726332>32#"&#"72654&#"u",),+ ) ?.( C@$3@/#7.?> ' ; .>!"y'! !E0=>’ ( • $Q+F( - ! -&%ÿtk)g46727&4654&#"#"54>7>32632#"&'3263263237>32#"&5##"&54654&;2R4! Y+E)X<« 2(5"*:3(  l) d ((<=Uj<0#  S5A0( 2 6) a:@?d    4, 1E0 IÿþÁzu4'46323>7232>56;23#".'"#"#"#32637632+#"&5454&##"&54?654#"+#"'>; b &[..&  " & z#ˆ$s !" /.  F ÿ   NA#Hÿþàzˆ2>7232>5672#".'&"#"#3263232632#"&5#*#"##"&54>76545.'"54654#"#"&##"'2654'46?6µA 2&B &NE%  #   0% i  **7(Y  <D&E1z "S3 +/ _   5 ! 6, ® +‰V% j@$" HÿÙÅzƒ2>7232>5672#".'&"#"#32?26323272>73#"'+"#"&54>?>545.'"54654#"#"&##"'2654'46?6µA 2&B &NE%  # &$F 5 /*$:+3N Q 5 OE1z "S3 +/ _  D•5  )"3   !§ % j@$" 3›—‰2>7>32#".'*3267263632#".'"&#"32632632+"&54654&#"##"54>7>26&67#+"'>54'6E9cN !*  8"$ !$/) ( #H4E& n( +  ; @&# 4 O1 o2  . :  *+V?>=˜ ” Q6$ " !$+¥‰i|2>?672326763232#"'326372632++".'4>?65.#"&54654'"&#>54'56"32632>5654&#&šD ( % 8  Q 6+GI'*¦(:.#9 b H;-"0A-$a32 / 4k  O9 @! #Î  i #!þ,]  6ÿýv”‰&5467#"#"'"54654/&54322326;:3267>32##"&+"2;2#*#"#&546?674+"54?654&'"#"&54654&47>3,*   5)GV. >'&  .)!4) Q1¯ 6s(!J! ,3&&vÜ%   6( ",     ] " ë #  6 8  55 2  3Ηˆ”4'632723263>32#"&'237:32;2632#"&#"#"&547.#"3263:32732632+"#"&54654&###"546747#+"'>2654&#"i 2B §  , N"  3+ 4E -: 4&!/# 6 *%<4D& L)  ! B @w: 4 Q0»$$ 2$ / >) &)"$ X@;A ’   TF[E"$²+6ÿtˆžÅ7"54>76567#"+&54654&5432;2;26;23267>32##"#*#"&+"2632#".'"&#"+"#"'3272>373263237>32#"&5##"&54654&546727&4654&#"+›?:DA2 ,' 5)F3 0  ?'   !*  T( # % ',% d ((<=Uj<0$2R4! ? íP5J! !5( "-   & 4+ (/$<$”   4, 1E 0   /8O7467#".'&54;2322+".'.#"#"&+"#"&5/gvXL)7  $,;,  H 47L ;  $GËk: u ' 4.U% $O-&?! /Ç8[7467#".'&54;232232672#"&5#+".'.#"#"&+"#"&5/gvXL)8+rT *?01*94+B  63N ;  $GËk: u )5J 2 5+#t "V1"¢=! /ÿ×*8d7467#".'&54;2322272>7632#"'"&+".'.#"1#"&+"&5/gvXL)8+, 6#)5K:  M , 2 ; $GËk: u )' Z/9  ) 1  $A$   &s7!/8O7467#"&'&54;2322+".'.'"&#"&#"5#"&+*1"5&5/‚VTL)8;'3B. $#A   +# %  B•L”,)^ u(  |{ "R0 32  /Û8Zf7467#".'&54;2322632++"#".'.#*#"#"&+"#"&5%4&+23265/gvXL)8+ˆ+ aT&7/A  , : ;  E#$4 %$GËk: u )-L. "T.  _V Ei(Ll4'>32#"'>4>7#*+"54?>32;263:;2+".'.'"&#"#"&+"#"š)!hN-3rbe +1   2  ' !/7-  4    [ 72# þ5?œd  -     5.d, #S0  sO% / 8L7467#".'&54;2322+*#".'.#"+"&5/fwXL)7  $'@-    2   :5HL !HÌl: u '  #"  *"&Ÿ>  ÿߎ}4'632326;>7>;2#"&'322+".'.#"#"&+"#"&5467#"#"'&'&#""#"'#"8#! 1'B(+B$    9&/07  $,;,  H 47L ;  gvK    ( }# 1 L/ ' 4.U% $O-&?! GËk ` @#BÿümX7467#"'&54?65454&#&5463637632632#"=46=4.#"#".'4&B: % $'OQ33 #& )# 4Q#)   ÝLb S!   *k/ 5$ þõ B.¹+(vŠž   nAÿüÑmf7467#"54?65454&#&546?632632672#"&5#"&54654&#"#"5'.A; %  $'OR%B7•'*99  &  7'7P .& áJ` S!   *k/=0?   6* )# !(ä-8w‰œF,UBÿÛômj7467#"'&54?65454&#&5463637632632327>6467>32+"'#"54654654&##".'4&B: % $'MR>b C#!  1 M ~) ;%5O$)   ÝLb S!   *k/;Cè#  ,3D ¸91y‚   nJÿümO47"#"'&5654'.'&5463637632632#"=46=4&#"#"&JG% $GX14#(7'8J H ]= Ž   c( 6&5®7C Ç ,5qX!& 0Aÿü«mSa7467#"'&54?65454&#&54636376326322#"&546=4&#"#&5'.26=4&#3A; % $'OQ%B8 eXÎ%@7S  $ Ã''1áJ` S!   *k/32u=B   $'XE43 + )7,29! %   \† F7 |)o( 5#0²8?>Ò/5 [6"*P0  BÿýmT7467#"'&54?65454&#&5463637632632##"&54654.#"1#"&5'&B;% $'OR22  %")&6R (  ÞLa S!   *k/ 4#b  %r&0 sƒ© ""0Q>±Ct€4&54;032#*+"546"&547#+"&'&54654.#"+"54&5'&54>32:32;26;232632#"&#"7"32654&L  0 1r)5]7 .#7M9  "1V5Jq * /  ( 2 +54+ 5 .9"!#  7S Lþw5'yY +E92;22€B$¤ 6F9'SH6(&7•!! >ÞC†4&54;032#*+"54647#+"&'&54654.#"+"54&5'&54>232>763:;23:;2632#"&5#+"&L  0 1*i7  )7M9  "2VjQ(f P9 [ 0.8.G  7S Lþþ &Uf +E92; $*A$¤ 6F:(&8.', Y  2 7* Qÿ´oCt4&54;032#*+"546232?674654654&+"+"&54>3232+"&54674'"&#"#"&'&54654&547632_  0 1i@XO ) 8 *L0Wx9  6  ˆ=$(    7S LþC kOK8QC ;PA.s]Æ  1  / :22Qÿ³×Ct}4&54;2#"&+"546##"&#"&#"#"&54654'&54323267654&546=4654&##*+"&54654>32324&+326_<  3xYi (/:#2$E`A2-0 8 )U8Wy!.:(f%5  V Lþ“.  *.,  $ %&IYœ7    M[?t^ l>hCz4&54;2#"&+"546"&5"#+"&'&54654&#"+"&5.5>76323:;254654.'&54;22632L<  3×(8™ 7 5*'.! 7 =08F4[ N% T* V Lò9) 33PY  1?J,+(L*W9º  ¹Cn &-)  6  <,3  ÿüµ—„63237>322#".'&#"#632#"=46=4.#"#".'4&5467#"'&54?465454#&##"+"'2654'5632À} gD) 00& 1OQ33 #& )# 4Q#)   : %. $_&#/*=#. n/ 5$ þõ =.¸+(vŠž   nLb V  .%  ÿü€—›63237>322#".'&#"#632672#"&5##"&54654&#"#"5'.5467#"'&54?465454#&##"+"'2654'5632À} gD) 00& 1OR%B7•'*99     7'7P .& ; %. $_&#/*=#. n/=0?   6* R ) # !(ä-8w‰œF,UJ` V  .%  ÿÛ£›’4'5632>?>32632#"'632327>6467>32+"'#"54654654&##".'4&5467#"'&54?465454#&##"+"'26?#/*-? v%   7)I:MR>b C#!  1 M ~) ;%5O$)   : %. $_&$%  . 4x/;Cè#  ,3D ¸91y‚   nLb V  . ÿüµ—x63237>322#".'&#"#632#"=46=4&#"#"&547"#"'&54654#"##"+"'2654'5632À} gD) 00& 1GX14#(7'8J H G%. $_&#/*=#. 'J( 6&5®7C Ç ,5qX!& 0E]=r  .%  ÿüZ—63237>322#".'&#"#6322#"&546=4&#"#&5'.5467#"'&54?465454#&##"+"'2654'563226=4&#3À} gD) 00& 1OQ%B8 eXÎ%@7S  $ ; %. $_&#/*÷''1=#. n/322#".'&#"#632##"54654&#">32#"&5&547#"'&547#"'&54?654'&##"+"'2654'5632À} gD) 00& 1XE43 + )6,29! %  =B. $_&#/*=#. L ( 5#0²8?>Ò/5 [6"*P0    \† F7J%  .%  ÿýµ—€63237>322#".'&#"#632##"&54654.#"1#"&5'&5467#"'&54?465454#&##"+"'2654'5632À} gD) 00& 1OR22  %")&6R (  ;%. $_&#/*=#. n/ 4#b  %r&0 sƒ© ""0QLa V  .%  ÿü6—§´63237>322#".'&#"#63222636322632#"&#"#"&547#*#"#"=654&#"#".'4&5467#"'&54?465454#&##"+"'2654'56322>4.#"À} gD) 00& 1OQ32V+  /0 )55+2 0 )4: / ):%5Q$)   : %. $_&#/*Ë#=#. n/ 6% 6$)77'¨@Õ:2vŠ   nLb V  .% þD " ÿüe—Ç2>72326;>32#".'&#"#"63232>763:;23:;232632#"&5#+"&546547###"&=4654654&#"#"&'&54>7"#"5>54#"#"&#+"'>54'6323È ?. [ C1 ##' &\G21] P8 a -)9.L^  >"4S .  "6  2O-  7 >%.  V. 6%((* T   7+ † $! Â7/x…,FV6V" v ! # ÿÜÿ´Ç—«2672326;>;2#".'&#"#63232+"&54674.5##"&'&54654'&5432323?674754654'.#"#*+"&547>7#"54654'&"##"&#+"'2654'56323š:A [ D*5"&% 1+8Zw9   6 Ig8+& :X1(4 , 2#)$  #O-'#3! > #. _#s]#£  0  / 1;*   @8@('{;2   !)w b! #ÿÜÿ´/—¬µ2672326;>;2#".'&#"#63232##"&#"&#"#"&'&?654&5476;326765<=4&546=4654&#"#+"&567#"54654'&"##"&#+"'2654'563234&+326š:A [ D*5"&% 1.3W}!.:(Yi /+ 8%(  "  ]C)$14H)$  #O-'#3! 0%5 > #. _#q[  .  &/   $ =\wi·- b! #þUl ÿü —ª63237>322#".'&#"#6323265654'&54;:322632#"&5###"54654&#"#"5'.5467#"'&54?465454#&##"+"'2654'5632À} gD) 00& 1OR8]) M P2*8 £  ( %<#5Q G' ; %. $_&#/*=#. n/30-  <  2 6+3¾5I.¼25/v‡ž F,UJ` V  .% @YÄÚ4BQ2>3232632;#"+"#"&+"##"#"&5467>&#"326%4&#"327>@ 1  XZ""-a+  *   NT!s4; … 3, !/:& = "Î7>;23#".'"##"&5"+"#"&#"#"54676327>7654#&#"%4&#"327>.7! hf//.  A& 9 :%( A=   -K•&$@$R<2 %:¸:& = "Ð ;UAv /  h(„$@þï;ð  /6.{A2 c7ÿìƒ3J\2672632#"&543232654&#"3263>32#"'+".5>7#"&54>32>7"&#"('4-@T %?', ?(# @HC.3,FU04)134 £"M&,&7ÿþƒ3EW"547#"&54>37263>67>32#"543232654&#""32>7"&#"!!?J4L=1  2=VX3A  =& -  ) )" $7" ß =2/DM9#$,0 <@*9XþÁ g"M&,&Kÿþv4GT`"54?67#"&54673263>2>762"#"5463>74&#"2#"32>7"2654'4&+:=Hwk  "P=5 G  )<!    "=<$=9!DŒ+  :SÙ#"*# !%{: ;2BY!1))-$#SABx< %  g" "I&Yþ’ L @YÄÙP]p26;03030327>32#".#""#"#*#"+"#"&#"##"#"&5467>&#"326%4&#"327>A %pYG C- -3! !%<(!  <!PR#s2< … 3, !08& ->"ÎHE  #  6K',90p%1þ¸§:#º?5Þa4’)4?K7"5054>?67"&54>7326;2#*#"+32674&+2326D/A+'n_ /S6 'Wi_9%  !G_1 5 9G3$Ý*3 3# %!#) :$"/'P?>T -::$ è;6 !=58&”A2Nÿïý4".54767632632+"73>76=4654.'!*;|   .0P8J" s *2A)(SAM8{A[  EP2Žh' še /.(:8%2ENÿîüý3K"&54>76326322672#".5+"73>76=4654.'/ +?9#  -&-)‚  2&0 R4MR*2A)(TwxAb;&  6$7 0 *( †p ›(= /.(:8%2F<ÿÖãWNd4.547#*#"&+"&54632326327>3#"'"&+".'4654?6%32632>54&#"È  –4@›z¤(?  E]H,"2%T:  B  <þÝ" 1+4Nb( :,L^v'M# œ   "- 2   †@‹!,S./K<0W1G%"5474?654.547#*#"&+"&54632;2#32632>54&#"…# R  –4@›z¤(F g  þÚ" 1+4Nb"¹ :,L^v'M Ü §!,S./K;™NASb4&5465+"#"&5467632;23+"#"&+"&546?>'2654&#"3724&'"&"3256È#!‚95&?OY#C * #ŠA?  8 6 š?4L#*"+   K1H <(1=#F-P  @$  }$!::?$6 .& #1þöQ% AÿóÌ0/D7467&/.5&54;2"2"#"&73267654654.'A@Z @  (Z :,n #8g: E1+Ÿot, #95%$:$$+ #OX{^4 -; >R@C+N*77"&54>767&=47>32+"+2654#"t!C.Mr>YO H1A{ §F4u 8E@N)($,Q63?+‚S +EJ~x ]"ÿþÞN7>54.5472172632#"&=67###"5454'.547>32¸ ¾ ($ . 80¿   % &/ B*³H K )#þ¸$"" å!¼#BJ$"ÿþ¥e7>54'.54763632>72#"&5#"&547###"5454'.547>32¸ ¾ !#g. *(;=  $#¿   % &/ B*³H K$ !"¥0 5+M.(*Þ!¼#BJ$"ÿغj7>54.546763232?267>32#0"1"'&'�"#"&=4?###"&5454'.547>32¸ ¾ '% .$  C% *18e ¿   %/ B*³H K"#!þ¬(  "" "&F¤!¼#%J$"ÿþÞM7>54.5472172632#"&=67"#"#"5654.547636372¸Ç ($ . 80$  K(. 9À d K )#þ¸$"" åD  ?æ $"ÿþŽQe7>54'.547>322#"#"&547###"5454'.547>3226=4654&+"3¸ ¾ = Ô"4&!E$¿   % &/ B*"+"!+  ³H K$ & %‘BK   ò!¼#BJ$þ(% ÿýªc2>74654'.54763632#"&=467##"54?654&+"#"&54654&546326ó÷B& *  O###!þª&æ Ú #BC¸A "% %6  1"ÿþÞM7>54.545>32'"#"547###"5454'.547>32¸ ¶  D). ) (¶   % &/ B*³H<1 >ð9&g!¼#BJ$"ÿtµ€7>5<54'.54763263232>?232#"&5"#"'#"'#"&54654&547>2727&54?"#"#"5654.547636372¸Ç  B+/ ;; " )*9 0  : W -)e&  $  K(. 9À d LB"þ¸$ 17) !) 2 ?°D  ?æ $&ÿý¡5p707>?2632#"&'6#&=467#"#"54?654&#"#"&=4654'4&54>76;2ƒÀ =' s1.&8&! , *#$   #   ! '  <+&:S*3##M%.+ 2 5' 4þÛ( A Í ë#D F·A $# ?2632#"&'>2#"&5"#"&=467#"#"54?654&#"#"&=4654'4&54>76;2ƒÀ =' s1.&8  7f* *(;/ $#    #   ! '  <+&:S*3##M%.+ 2 5'%&H$0 5+˜$!"Ö ë#D F·A $# ?2632#"&'327>467>32#".#"#"=4>7#"#"54?654&#"#"&=4654'4&54>76;2ƒÀ =' s1%&84!   9+ ,6$ _(  #   ! '  <+&:S*3##M%.+ 3 5'"3ãF  " B ~P ë#D F·A $# ?2632#"&'6#&=467#&'4&5>54&#"+"&54654&547>763:ù.\C† =' s1.&8&! , *#$ œ  I   & +}÷*@ M%.+ 2 5' 4þÛ( A Í  * /;]&!  &9  2 &ÿþ¡5qƒ707>?2632#"&'2+"##"5467#"#"54?654&#"#"&=4654'4&54>76;226=4654&+"3ƒÀ =' s1.&84Ó%5- #)  #   ! '  <+&:S*3##+"!+  #M%.+ 2 5'"0;n?M AÎ  ë#D F·A $# 7635#"#"'"54654&54323:;2326;23267>32#*##"&+#67267>?2>72#".'#"54&5467"#"#"5454#"¡(4S ,'+  4'>, - #  A'3 %(!6 #]KD, @2(#,1 0 %# '!)f   ^%.-$ 3   A   !+# "-#  8 ,! "'3 &  -&% þê @ Ö$  !@!6=< &9 &ÿþ¡4z2672>?>7>32#"&'#"&5467#"#"54?654&#"#"&=4654'4&54>76;2ƒŽ *r0 3&9" (!'¶#   ! '  <+&:S*3## )' 1 5'  2¨kë#D F·A $# ?2632#"&'32632#"&5"#'"#"'#"&'&54654'&547>;263&=467#&'4&5>54&#"+"&54654&547>763:ù.\C† =' s1.&8.# " } +(: '  . I& & A6 !œ  I   & +}÷*@ M%.+ 2 5'$Å  8 6*#3 0  Ü   * /;]&!  &9  2 0ÿÿ¾(-;##"&+"&=4.54>;2'">74¾£} %  '! #:eB;2#327272632">74¥)9   - 15qQ65'4F-! ## e *œ'3"7Q%i5,` 9d"6)!;<$$(@$     1 © E/'5).0†(Yg%"&5<5#+"&=4.54>;2#254.47632;232632#"&5">74U C )7sQ @3£} &B  7) i1*:¿'3"7Q%z B &T1#!::"'Mf# ; 7+˜ E/'5).%ÿÞOD+=723267.54632#"&"#"ʎ'56">54&!E 4"ˆo–¡€] 7  BTC6*K!4)8- g ^W-`v\Mgº  5."Ç ,7&!:%&0L(IZg%"&#"+"&547&'+"&=4.54!32#3326322632">54&"32654. = ( #<"  4 <1¦y$ T 0. !'%þù )!.G'"ƒX ' L ' T /&¾'Ne&   '&º">( #+ þ· 4ÿñiDQ]7232327.54632#;254.54763:;2+"'#'&#""&54654'&5463:"654&m6.,Šn•¤z !)@  + 7>)F#- 5(*  (; »| %ž4Xu]Mf&9& O8 !&  #> 2 ²+@2$†%0š(GU"&5"#"&##+"&=4.54>;2>32%">74X*9< $-Y5% +8oM<-+JŒ 2þº'3"7Q%8)"] 'S'8*::$&5.  ü E/'5).%26DP72327.5<547632#32632#"&5'#"&54654'4&5&54">54&VA(B’ AGEŸu ; U .':4:)1%,D3?+%› _F$–+ "-Lg\ 2 6, 0< 3 …Uh"B++ÿþGDx‡2327&54>32#326?63232632#"&5#*#"#"#"54654&##".#"#"&54654&5476%2>54&#"W"B6*DE$©%+)( ,3i )):6H l  ;#3 .6'(./ ; 86+>Z* #  6, )D% # ¼  +2 1.7")<,7+ÿÙ/D}Œ2327&54>32#26372632326372>32#".'&#"##"&54?64&+#".#"#"&54654&5476%2>54&#"W"B6*DE$©%+)(   ($ H =3& 4&' ( ,  L  ;#3 .6'(./ ; 86+>Z*   ´ -  &v  +2 1.7")<,7+ÿþ`D`o22327&54>32#32637632#*#"#"&54?674#"#".#"#"&54654&5476%2>54&#"V*< 0*DE$©%+)( #("  43  0n  <(1 .6'(./ : 86+>Z*   Œ   (  (8 8 /7")<,7%ÿû£6GS]72327.5<547632#332>32#"&#"#"&547'#"&54654'4&5&54">54&"264&VA(B’ AGEŸu ; " ,'C;(! 2 ) (¦5:)1%,D3?+%š,› _F$–+ "-Lg\ >%!))" 0< 3 …Uh"B+þc"*%Å6_k72327.5<=4>3232672#"&5#"'"#32632#"&5'#"&54654'4&5&54">54&VA(A 0eIHF,1B. *+7A  $)T4 ; U /':4:)1%,D3?+%› ]C#?A'"-41 2 7*\ 3 6, 0< 3 …Uh"B+QïEAQ7467&54>3232632#"&5"/.#+"&">54&QmbA .T5A`:WD?:, B" 0,:: =K *c/?)<(/I…AL$3*)04L% * 5. }D XD #!( '+ÿtD‹š2327&54>32327>36323:32632#"&5#"&#"##"&'&54654&5467263&54?654#""#"'&#"#"&54654&5476%2>54&#"W"B6*DE$¨$5C4"H0€  )):B6 3 15(1T6 ;o$  9&1 .6'(./ ; 86+>[$7   ½1 6+#Q 2     +(5 1.7")<,7%ÿ‡l.T]46;2+"&5232>7'&54632#7>32#"./.##"&54654&54"654&1 @  D Ú#>!aQ97!‹i1s7 )( Ã" 031 %D/  E  þC dF1Tp +FS–' 2  'F 3“‹:h#0ÿŠï=Ž4632;2#*+"&5<52327.54632#3263263232672#"&5#"2#"547>54+#"&'4654&5476">54&  1  1Ó-;-)+v_«”k &:51B. *(9 . Q7 %81# , &.. %.)&%  7 þ‘ s'BQZFS'  2 8*0Œ %®  )  2=<-0/)ÿfÙ=…—4632;2#*+"&5<54654&54763223>7.54632#3263?2632676323+"'"#"#"54?654.#*#"#"&"7>54&  0  1þ =#%&-xb¥1M5"## % %.+  T 1 NN9 =w!<(1D &'(%  9 þ#3 w'CR\*= ? >0 .3 »  )9· 3"6 %&ÿŠ=gv4632;2#*+"&5<52327.54632#326376322#"547>54+#"&'4654&5476">54&  1  1Ó-;-)+v_«”k '"#; Q7 %81# , &.. %.)&%  7 þ‘ s'BQZFS>·" %®  )  2=<-0/)%ÿS£.T^h46;2+"&5232>7'&54632#32>32#"&#"#"&547'#"&54654&54"654&"264&1 .  >Ú#>!aQ97!‹i' E<(! . & ',Â031 %'/•* <  þB dF1Tp +FSv *>&!))6( F 3  “TM$h#0þ0,%ÿ‡þ.kt46;2+"&5045232>7.54>3232632#"&5##7>32#"./.##"&54654&54"654&1 B  @ Ú#>!&J3£ 0U()8De1s7 )( Ä" 031 %D/  G þB XK#??(] 5,>R–' 2  (F 3  “‹:h#04ÿŒÒ=Xg4632;2#*+"&5<5467.54632#32632#"&5"/&#"#"&+"&">54&N  1  1þæhh!!zb£“k2d2 G ,'7831Y  &b.. %.)&%  7 ýÏJz!`#EO[ES*  3 9* tR  <-0/)ÿX¶v“£46;2#*+"&5<52127275.54632#326323023262#"&5#"#"'&54654'&547>3&4?654#"#"&54654'&54?>54&#"326 0  0Í)8*&-yc£’l%A66 -ƒ +'9y$C2%'›.+.+& 9+1Ô8Y%'5 _ 8 þ‘ v'DQ\DS? ˆ2 6+  000   $k$    < 3x B4(559%ÿ‡±‡@‡2>7>;26?2>762#"'"+*#"5467""&#>54'>232>7'&54632#7>32#"./.##"&54654&5&54"654&§B 1 8 < $8L 7  B 5'Z! 37#>!aQ97!‹i1s7 )( Ä" 031%D/_3   03 *) 1)#" ýº dF1Tp +FS–' 2  (F 3  “‹:h#0ÿŠï•/’¡2?0327>;2#"'+"&5467##"'>54'62327.54632#3263263232672#"&5#"2#"547>54+#"&'4654&5476">54&ŠBI'wD* ;+4IS 8 4P2  -;-)+v_«”k &:51B. *(9 . Q7 %81# , &.. %.)&n3 # ,!3L 1! $þ s'BQZFS'  2 8*0Œ %®  )  2=<-0/)ÿfÙ•Bª¼2>32>;2".'&#"#*+"&547&#"'>54'6323264654&54763223>7.54632#3263?2632676323+"'"#"#"54?654.#*#"#"&"7>54&D-=D*$ 8:& +  7 '  S!  3"# 2&þå =#%&-xb¥1M5"## % %.-  T  1 NN9 =w!<(1D &'(K#/ D 7 # ýÆ3 w'CR\*= ? >0 .3 »  )9· 3"6 %&ÿŠ”•/z‰2?0327>;2#"'+"&5467##"'>54'62327.54632#326376322#"547>54+#"&'4654&5476">54&ŠBI'wD* ;+4IS 8 4P2  -;-)+v_«”k '"#; Q7 %81# , &.. %.)&n3 # ,!3L 1! $þ s'BQZFS>·" %®  )  2=<-0/)%ÿS±‡M’œ¦2>7>;2636?2>76322+"'"#*+*#"'&5467""&#>54'>232>7'&54632#2637632#"&#"#"&547'#"&54654&54"654&"264&§B 1 )     $. L 7  9  5'Z! 37#>!aQ97!‹i'  E<(! . & ',Â031 %D/•*_3   03 71)#" ýº dF1Tp +FSv *>&!))6( F 3  “‹$h#0þ0,%ÿ‡þ‡M¬¶2>7>;2636?2>76322+"'"#*+*#"'&5467""&#>54'>232>7.54>3232632#"&5##7>32#"./&/&/"&##"&54654&54"654&§B 1 )     $. L 7  9  5'Z! 37#>!&J3£ 0U()8De1s7 )( .%7 " 031 %D/_3   03 71)#" ýº XK#??(] 5,>R–' 2    F 3 “‹$h#04ÿŒÒ•/kz2?0327>;2#"'+"&5467##"'>54'6467.54632#32632#"&5"/&#"#"&+"&">54&ÄBI'wD* ;+4IS 8 4P2  Vhh!!zb£“k2d2 G ,'7831Y  &b.. %.)&n3 # ,!3L 1! $ýNJz!`#EO[ES*  3 9* tR  <-0/) ÿX¶À?¸È4'632323?26;>7>32".#"#*+"&5<=#"'>2327275.54632#326323023262#"&5#"#"'&54654'&547>3&4?654#"#"&54654'&54?>54&#"326E)-"  -B" B&   (6%  ? 86 V0 "(8*&-yc£’l%A66 -ƒ +'9y$C2%'›.+.+& 9+1Ó8Y%'5 M 1  : 2"#þ‚ v'DQ\DS? ˆ2 6+  000   $k$    < 3x B4(559#ÿþ°54%45.'""&54654&54673>3"#"G4$9+')?'61LH  (3d$: -J0  K0þ’ #ÿþ‚5I"54765.'"#"&54654&547263>72#".'"(& 44$B#'{T&0MF]$ 3 #3   6B $: 5D4 K0˜ 1 * ¤  #ÿÙ5=%45.'""&54654&5467376323267>323#".#"H4$:+%+=-,.TH 6E4:+4& §)3l $: .J0  G8þ“  % '%ÿÄB2I4.#"#"&'&5467654&54>7632##"&54654&547>;2>54&5Ú" H& *j%$+$M )8^iO;+,g1Ke6¬ 0  >: , :0Y:Q;$*P 4 "CO6!!#ÿýE58F2#"##"54?654&##"&=4654&546732634&+;26¯2rX#6%! *& )7% ;,%+<W#0M/!/ '´ ó.:.Øb @:G4  J2þ¢?'ÿý$53>&54?6765.##"&#"#"&5463226322654&"˜# -4'!6-3'bM!#j,OG 2%ó&"2 >ë#<'*4 *;HE7þŠ ›)3ÿýêPG4#"#"&546=4&547672765<=4.47>322"&54?>‚i  +'X+ EJJ > U) ˜. %+2   + & H&Fù"  Tà )#ÿþ@5Ub%45.'"#"&54654&547673>3;267232632#"&#"#"&547#""#""32654&G4$B#'U)71LU & 9 *47- - 0 )3e *  ( +!3d$: 5D2  I6Z  6R38% × 6###ÿý<5k$4?4&'"#"&54654&547263;2464.547632;222632#"&5"&+"5467###&$%5$2%&{T&5H A  ) ,6P-*9;# B/  M#»º'9 332Q+.&22p 1 7, 5+Î ô5]4'"&##"&54654&5473263232+"#"&=4654'&+"#"&'4654&54>?>II G(^y0G76?>?67654&#""#"&54654&54673>;22#"74.'"3256¿1GD2&$ 2&,  ^7$!"& %(?=U 5KLG_&7/<  (FY  88 4     =é 4 %5  2 H& Ë*! M=% #ÿýå5a$4?4&'"#"&54654&5472633:326746=4&5476;2632#"&5+"+##&$%5$2%&{T&5H 8  C U3,7 !W/  M#»º'9 332Q+.&H ,= 1 9/+Î ÿöÿþTÈ0e4'56323?267>;23#".'"#"45.'""&54654&54673>3"#"-),/˜,  D' ;$' ä>+7G4$9+')?'61LH  (^!   -  þd$: -J 0  K0þ’ ÿöÿþ¼È-v4'56323?267>32#".'"#""54765.'"#"&54654&547263>72#".'"-),/˜,  D' ;$' ä>+75& 44$B#'{T&0MF]$ 3 #3   ^!   -  ýÑ6B $: 5D4 K0 š 1 * ¤  ÿöÿÙÉÈ0n4'56323?267>;23#".'"#"45.'""&54654&5467376323267>323#".#"-),/˜,  D' ;$' ä<,7H4$:+%+=-,.TH 6E4:+4& §)^!   -  þl $: .J0  G8þ“  % '%ÿÄŽÈ1y22672>7>32#".'##"#"ʎ'56"##"&'&54654'&54632632##"&54654&547>7654&=4&ž!) ´  D% *1'  ZQ$+6) $ ' I*^!2R2a{`;+, i|ƒ8©  "    2!¡!2 *  ?H CX; *P 4 .00Z <4ÿöÿþ€È0cq4'56323?267>;23#".'"#"45.'"#"&54654&54726322+"#"74&+;265-),/˜,  D' ;$' ä>+7H4$ +&z\-Q2m^%8,#)#&Þ#1 +^!   -  þc $:  %* 1 H6þù -!`9ÿ÷ÿýTÈ.`l226726&67632#".##"">54'56#&56?.#"##"&#"#"&546322>322654&#"d@ ´! :*6 $  ZQ8, *¢ 2%$04'!6+5 'cK&:;5LHþÏ©2    )" "ý 7Lé#<")6 )":G Q*þ»6*)ÿèÿýFŽg267>77>;2+".#2"&54?>54#"#"&546=4&5463267654&=+"'>54'6U@ ( - 8A1 *4#  &JJ > U) i B$&R &6 Q0 !p3%#[&Fù"  Tà ).5D3   >"#?ÿý¬p463>32632###.=4&'&#"#"&5465?#"=46567>d &259g ".F)  C 2# =)›‰  =/&“ +    *r]3   "®   Gê#&'$!    >V-O^?ÿýó¬‘463>32632767323#".'"#"#"##&=4&54.'&#"#"&5465?#"=46567>d &44(8/$A ^)6%    #&$ ,:  C 2# =)›‰  %E,7  D" . 4PX' & ­   Gê#&'$!    >V-O^?ÿÖ÷ª463>3263232?>76;2#".#""#&=4.'&#"##"&5465?#"=46567>d &):6a    <&& 52% -7  F 2# =)›‰  6..Ï    1 ;3Z`(þì  Gê#&'$!    >V-O^>ÿþñY4>7467232#*##"'454&'#"##"54?67"#*#"#"54&>8ab96WpL (*9_R' ! ) :E3 5'49R*92‰   ,]-6 Ö  5 -e#"F.  5?ÿýתk}263232+##".=4'.#"#"&5465?#"=46567>3463>4&+;265¾ -67c#3E/&8)) $B)! F 2# =)›W µ"0' (£7/)x # ¿$( þì  Gê#&'$!    >V-O^ þº  1ÆF465"#*+"=>32#*+"=.'32+"&54?#"&62?+ 0·‹BcO: 3 +0)) 9 ( Ua/ E0 (Ij(M2  "4 ;R ßK :ww?ÿëþÜU"=4674326;232623##"54654'"##"5467"e&Ÿ†;  BQH $,°  % ( %5,#  <¶Õ  2'a 9lc  1Ÿ 9Ê '>sK/?ÿWõ‘“463>32>323267263#"&5"#'"#"'#"&'&54654&547>;263&=<54&'&#"6##"#"&5456567#*##&546d %6a [1 3(:*  . ;34& <-#)/    ( Zb -¥l   :/+¤', 7)Q 0 # 0 JR n  P] ‚C n‡?ÿý)Àmx„263232+#"#&=4.'&#"32+#"54654672+#"#&5467>34632>4&+32546%4&+325464&#"#326ø ;M+K1 SO!0& 8%4H; XM!0& Z) V‰^P!0& 8%"™z ã%2 #?ý4%#?P'#$¢,*$+m/! 9-JZ3 4 €. 0 (é"lU-! =H[$1TþÄl+ -?+ l?ÿýaÀ„›¦263263:;2672#"&5#32+#"#&=4.'&#"32+#"54654672+#"#&5467>34632>4&+32546%4&+325464&#"#326ø =J9k KD'-)9jSO!0& 8%4H; XM!0& Z) V‰^P!0& 8%"™z ã%2 #?ý4%#?P'#$¢,6* 2 6,2r/! 9-JZ3 4 €. 0 (é"lU-! =H[$1TþÄl+ -?+ l?ÿŸkÀo{†2632;2632#"&5"&#"#"&=4.'&#"32+#"54654672+#"#&5467>34632>4&+325464&#"#326ø =JM‚[ *(: - !* 3I": XM!0& Z) V‰^P!0& 8%"™z é%#?P'#$¢,\Y8o,  1 8*,_e 3#. 0 (é"lU-! =H[$1TþÄ-?+ l*ÿýáet€Š>34637632232632322+#.5?=4#:32;#+"&5467#2##"&546574#"326546!4&+232654&+326514Q…X&$ Ñ$UL87J  -ì  !.VF**$ _o=QVFZ»> &_'(B"& "&N//  }Ø /% ;b'L "*  º4 *#") + /- lØl?ÿýúÀ‰• ¬·26323:;>3>32+"#"&5#32+#"#&=4.'&#"32+#"54654672+#"#&5467>34632>"32654&4&+32546%4&+325464&#"#326ø =K|I ;# B'53<O "9JSO!0& 8%4H; XM!0& Z) V‰^P!0& 8%"™z [! "!%2 #?ý4%#?P'#$¢,m 7)#8.5Q>(#"ý.)"w& )S0=Wj8&-0³Û 7I /") ;b45 F. 7 À' I[E/% ;Î '!&Fu 0  + ?ÿQi£†š¦463:376326323262#"&5#"'"#"'#"&'&54654&547673>7&=4'.#"32#+#"5465"2###"&=464&#"&#"&546;265%4.#"#326ž ,  9NMƒ Œ( )(<*  , <9+ ) b %R.BUJMO#& ‹O^J <)#?¥3) #!B)l ,^Y?h+ 0 5+*D 0&µ%(- 8.1 $ ã o/ }‡Ïp lF6^Wd7467.54>765<=46;22#"&#"#".5.'4&+"+"2654&#"FY698*11 8 8ZM`NP  >F ..Ò\B%/ 67@…A('4  +  991*>$*)   D v6 2=$(%'# $3Gç^fs7467.54>765<=46;2232672#"&5+"&6'.'4.+"+"2654&#"GW798*11 8 8ZM`‹%&m .-9C  413F  4 ,Ñ\B%/ 65B„A('4  +  991*>$  1 7(J! %F u: 2=$(%'# $3Fÿ×%^hu7467.54>765<=46;223272>7632#"'"#""&+".5.'4&+"+"2654&#"FY698*11 8 8ZM`nP  )5K%   ?L #,/Ò\B%/ 67@…A('4  +  991*>$%G" - 1  R mA 2=$(%'# $386^bo74>7.547265<=46;22+"&6'.'4&+"&5<5+".72654&#"8#2) (7… 0 z304¦  3&I  ,*  ;êM;!(*5–4 <)]. % W /  6?   %G - «6*#- + #5FÛ^Xes7467.54>765<=46;2232+"#"&#*+./.'4&+"+"&2654&#"4&#"#3265FY698*11 8 8ZM`RQoW^(   $MF <Ò\B%/ 6s' $5B…A('4  +  991*>$- * "N w5 =$(%'# $3Ö,+Fÿÿæ^s€7467.54>765<=46;2;2632#"&5#*#"2#"&#"#".5.'4&+"+"2654&#"FY698*11 8 +0; \ 1*9: ŠNP  >F ..Ò\B%/ 67@…A('4  +  9 +1 5+/4*)   D v6 2=$(%'# $3F^JW7467.54>765<=46;22#*+"&'4&54&+"+"&2654&#"FY698*11 8 8ZM`ZY -/OE <Ò\B%/ 65B…A('4  +  991*>$% /  x5 =$(%'# $38ÿv^š74>7.547265<=46;2237>32#"&'"/##"&'&54654'&54>7267&=4&'4&+"&5<5+".72654&#"8#2) (7… 0 z304zV"N)&6,< I$ &  DZ%N  ,*  ;êM;!(*5–4 <)]. % W / 'D00 8&  "2 2   P - «6*#- + #5F6 HU7467.54>322#"&#"#".5.'4&+"+"2654&#"FY698'??" >?&,/INO  >F ..Ò\B%/ 67@…B($5 1!2 *)   D v6 2=$(%'# $3Gç Wd7467.54>32232672#"&5+"&6'.'4.+"+"2654&#"GW798'??" >?&,/IŒ$&m .-9C  413F  4 ,Ñ\B%/ 65B„B($5 1!2  1 7(J! %F u: 2=$(%'# $3Fÿ×% Yf7467.54>3223272>7632#"'"#""&+".5.'4&+"+"2654&#"FY698'??" >?&,/InP  )5K%   ?L #,/Ò\B%/ 67@…B($5 1!2%G" - 1  R mA 2=$(%'# $386 7E74>7.546322+".'.+"&5+".72654&#"8#2) *4[jXl214¦ 3&H  ,*;êM;! "5–4 >(1NA8 0  ¾ $RC -  «6*#-%#5FÛ IVd7467.54>32232+"#"&#*+./.'4&+"+"&2654&#"4&#"#3265FY698'??" >?&,/IRQoW^(   $MF <Ò\B%/ 6s' $5B…B($5 1!2- * "N w5 =$(%'# $3Ö,+Fÿÿæ ^k7467.54>32;2632#"&5#*#"2#"&#"#".5.'4&+"+"2654&#"FY67:'??"Xk; \ 1*9: ŠNP  >F ..Ò\B%/ 67@…B($5 ?41 5+/4*)   D v6 2=$(%'# $3F ;H7467.54>322#*+"&'4&54&+"+"&2654&#"FY698'??" >?&,/IZY -/OE <Ò\B%/ 65B…B($5 1!2% /  x5 =$(%'# $38ÿv uƒ74>7.54632237>32#"&'"/##"&'&54654'&54>7267&=4&'4&+"&5<5+".72654&#"8#2) *4[jXl214zV"N)&6,< I$ &  DZ%N  ,*  ;êM;! "5–4 >(1NA8 0 'D00 8&  "2 2   P - «6*#-%#5Zÿíè4G74&547632632+*#"#"#".7>?26=4.'32676=]‘( /L'+( Š% o] # #   ^%£—9Ò:@J7Š|(7=E« "!!+!bÁ/)=& %#[ÿîí2FV%#"&5+"#"'.54>326322672%>?26=4.'37>765í)(9A+:$K .?85EDuýß] #  ! ªK=+(D %» 6+U +UeCj@)I="` /[ "*7 ) 3G -@f""ÿáA&6JV7"&54>7>7"&54>726327>3#"'#"&#4.#">7263:32765ä 7j„!G/*AT FXH-!"2,J(   ¦ ¾I0 "  )!z8-(2'[0 >¢:-  !, 3 ¿  ;,%M&"°&':G7"54?>7"&54>72632+4.">7263:32765à& >h† H2()@ ,4NX( w ¾+2 #!./Ž7-'3'"2) 3X€? ¿!$;' O! "&)=IV74>7".546726322+"+"&544.#">7263:32765"232654&Í %LM0YM(?W\Lr%6+  E  ¦ ¾I0 " *"s B) +2W Y- $Ð#*  —  ;,%M&þê#<  Aÿõ¾00AK2"2#"'.54767&'46;2654&'.'>2=! (Z .-@$/ >)% @ $   VPª:0#95%&A#2 (@4‡9% { þÍ A *E2à…T'/ @7C+N*197"&54>767&=47>32+"+.#">=t!C.Mr>YO H1A{ tN#7¨ 8E@N)($,Q63?+‚S ß(sšM6-ZÿéÈIBDR%#".+*+#"&4>54.'&54?632>26;2>763%32654&#""Ž*6 '7³75IA\\A $9 '!;;J!6T" ($ ]! þ7D2;+' 6…+a?j]GEW0A)G:.8-"! 7Q)#203!GIGXj7"'054?>7#"&54>54./&476376326;27>32#"'2+;2>7654'æ  !=/9(88( #*KB !.P-" *2J S:  Q5F  ,  $  C +$";+)5  949 <0  ", s + %  ÿæŸIAU263236;265463:;2+"##"&54>54.'&476?6.#"#""3265—'7pS6$,)$9( @ E(#9_,:NA\\A 9 T 2    7(7$I?5XZC"0*#97  ?W $B54^GFX0  þ,,'"*(%!/IŠHcw%"&'4&5>7"#"&54>54&/&54763726>;2332672#"&5"&#*#"+"7>54+1 EB9*==* H %5_ +!&  R 2*9 )  ž  ~-$<)(2 2*>=    D 1 6, ` E, " #ÿ¯9IP^k"&547"&#"#"&#"#"&4>54.'&54?632632632;26323263#"&#"%32654&#"2654.#"A-+ #'' .6';MA\\A $9 '>^A:1E.  !$-A,2;;þ29#;"%5* $)QA Aj]HEW0>)B@L4#7!*!2J8 ³+$#63(¶  #1Š't%"54?>7"#"&=4>7632;2632#"&547#"2>54.54;2;2632#"&5#"+ >R8/RN:F7   4)AH„*: ++E*6 Hd  ();`  ?%,O)-7Q0  -(85*K! #?1 7+ G# *ÿø«JT^m%#".+"##"&5&54>7263232632#"&#"#".5476326;2>322654&"32654&#"+1$ +%-K).I(9Q3267'>7"#"&54>54&/&54763726>2;2>72632#"&5*#"3263632#".5"+"&#"#"&546"7>54+A'&(GEB9*==* H %5_ $0  8X1*9 (c 3%0 = 9@$2£  %   ^-$<)(2 2*>=   ?  / 6+ [  1 *' 3C0|, " #&ÿýÒdB%45#"&54654&54>?>323>;2#"&5#"*R1%,(D-FB2 W(): Y !EÔ 25 3    2 5, þ] &ÿüÒdY%4?#"&54654&54>?>323>;2#"&5767323#".#"#"&+R1%,(D-FB2 W(): ; ]:*0!) *J L"ÛÛ 25 3    2 5, Òi6  '%j & #&ÿÖÒdZ%4>7#"&54654&54>?>323>;2#"&532636723#"'#"&#"#"#"&+R1%,(D-FB2 W():$5 m  :$JG  8IOÙ– 25 3    2 5, þB:= 1 3 ÿÑ Y[47""#"&'467654&54726323>32#"&5##"&54654&54763:;6367>5p;& %m]w& ro 2+8€ ¯d:$%  Wp=Xƒ>#4  (2 7( y)\8J[2, #?K?&ÿýÒdCR%45#"&54654&54>?>323>;2#"&52#"574&+;265+R1%,(D-FB2 W(): k]<&")F"Ì+ (I¿ 25 3    2 5, -¡†:.B) CÿþïeY67#"&54654&547>7>37>323>32632#"&532#*#".547#"Iz2$&Ã( & U‹  -*:*V(* 2 9%™k  01 2   2 5,’ &Å50 <ÿý(d["&54>7674'#"&54674&546;2?>?>323>;2#"&5##E;]dc ƒ2%*GF& X‰():O7Z_f$ 716V5292  11 ,    2 5,3,32;&545#"&54654&54>?>323>;2#"&532632#"&5#@#/ 7R1%,(D-FB2 W():%` *(<B9 3 Ù 25 3    2 5, þ]  36,1­qd2>7>;2>7264676322+"'3267654&47>32#"&54>7>5"#"&#>54'56 A 1 )' ! 1 N63td/!‘ L  32#+"&+6363>3:32321#"&+"&'&5467"*#".'.54654'4.#"#"&#"##"#".%4#"#"#326363>2637.ä®*>" !/8  :' HE(%  *)"4 &  ‹  .  :4s$ 4^N%7 e$D"ý—@I7Q3ZI[A    5  &7 #  >9,þÐ-! /‡ ^ )˜ +"`5 X 3;˜Î 5# 1ÿæ«qhw2>7>;2?264676322#"'6326;265463:;2+"#"&54>5#"&#>54'56"32654&#"¤< 0 ) : ! :;&F2/6e'EG- 9( ? F(>\-:N,BLB,7 T2!,?!7(="2)I3   '"3 ,T4W (5( 97 =X #B6*O;C;O)"%þ|<((%&;+(0™¸ý-4376320""#"=4>3>72#"=0Q   > ;  i Ü >   ?Ö  E C¦™ý4J[43763032"#"="5<=46?632#"4>72##"=74>72#"=¦ S ? õ A =û3  L è 65 i Þ > ?W> >  3  A 3A:X\D-@2#"54>764672"#"=43762#&=H )_* Ä¥ X  ; PA D    ¨  2  AÔ ??:2]…+I^2"#"54?62#"&5<=43764>732##"5"5467632D)˜#¼" .  Lm2M :" ’< (_+… …> ?  ï 7 ›    ;iÒ-)B>32"+"5<=42"#"546>32+"=4Ïd -  ø  -þí Ç3d $   / @ ­ ‡ /@ 0™Ñý-D437632"#"=4&#"#"54?>724672"#"=4&0L , ¡?L*™)þ_!X  : Þ > @ x |  2 A0(¸n*B2#"=4632632##"=46"=4676;2##"§  M  L L >  >n  5   Câ A  A þ¨? ?  0(Šn5Nf}‘©2#"=<5467632#"&5<1=4376!2#"&5<=437632##"5<=<546764672"#"=4&4>72"#"54376;2"#"=‘  L { .  Lá .  LÜ [ Hþ­!X  : Ó 68  : é L    W n 5 Ab> ?  > ?  qA  @  ‘ 2A   2 " =   ?2ÿt|ˆ'Nb‰"&'#"&54654'&5432632++"&5467>54&/&546;22>54&+"3:3"&5"&5467654&5476326329(8 Ê% *g‚í  3VhU /81-S(  ;3",4%Â"+ 4 l   *8Ô +8$R…æ *ý3. #3  3 ' þÓ>O6Da '" )$$4—-2)>Ž&®6+ #(%' 1 #ÿt2–(U_†#"&5#"&54654'&54323>2#"';2654&+"5476;2+"&'.54>32"254&#"&5#"&54654&547>;263221,8BO13&v j…#!, Hœ,M#)!1/FecQ32"&5+"&57>3:;2632632"&5#"&54654&5476;2632M1(<·9.+b _~)$ a*9p B  D x[ & ):š9-, YiÇ** 5+ 'K 1   0í7+þî %  *þg6+ 'K 0' 0 LÿtM—)=Ms#"&5#"&54654'&5476323>324>3#".7"32654&'&"&5#"&54654&5476;2632M1(<·9.+b _~)$ þ2J>7E.u]4Q- Öo !5,A  ):š9-, YiÇ** 5+ 'K 1   0þô3M&'O532#"'#"&54>54632;232632#"&5#*#"323763>323"&5#"&54654'&5476;263231)<·9-&b _~)$ B&0A'77'  5/T1*95 X'f I-*8š9-% YiÆ*) 4, (J/  þA ,%>- ;./=" / 1 7+ E7% #'$-Ò6+ (K1 ' 1 ÿ`2‹&fyŸ#"&5#"&54654&5476;26324&'6322726322#+".'4&547>7654'+#"&#>4&#";2564#"&5#"&54654&54763263220,9\ZH. WjË þ#3  n LD_YiB 3 % M/#F, Qž',9\Z% %O|×  6(  ;8 /' 0¡ . *"-  6U !#Î) %è 6(  "3 3' 2Oÿ`‹-Š®2632#"&'#"&5467654&547>34&#"#"&'&5467654&547>32632263>3232726&676;2#".'"#"+"#"=4?654#"&5#"&54654&5432632iÈ)-7\Z$ )DŽ ? 2%( J[ ,(‘ !#  ;)8&  \/ } Ð0-8Z]++&^}Ú d' 3 6(  "2   Î   32 % 6è     *"9Òþ 6(  *81' 1QÿZ‘'¦>32#"&5#"&54654&5476;2"&54654'&54>7#"&54654'&54326;2632#".'2632#"&5##"&5#"&54654&54763232632V}t  *(<{A$, L¿'(k3PA&)vM1K”* #R0ˆ .*8TW_3¨,,8|?'% > ( h‰  u  36+D: 3 ýx 0  * 0C . + +þÖ 16* 01T 9( *C3  'OÿtO—)Xf#"&5#"&54654&547672632326322>?>54.54>32#"&54654&54?63232>7"&'#"&5467654&54>32632O2)9š9-* I AÌ þ“ ƒ N0-=\3@X$) 5) ¡)8™ +%  '&.CÒ ,) 5+ (J 3 ( 247I9CQG0X ¡ þì&#%=N)#Zü2. #( '2 2ÿ`2‹&Kq#"&5#"&54654&5476;2632>54.54763732+"&'4&#"&5#"&54654&54763263220,9\ZH% WjË þ 9 ; &5 #1`',9\Z% %O|×  6(  ;8 .' 0þs è 6 æ   ã 6(  "3 3' 2%ÿd—”%ˆ¯2632#"&5#"&54654&54324>54'#"&54654&54;2$76;2#"&52#*+"&'4+"+"&5"&5#"&54654&54;2>32e¯ ));™G&Xv,,`2%&j (*#  1+9a 5C+ 7 d T  Aw+9j09-%M \{B 1r")5, :73þ5+,;!  112  6+  */*%Ald'#ü6+ (I2  fÿd¥”$hŽ"&5"&54654&54323263246;2#*+*#"&'&54654&#"#"&546323265"&'#"&54654&5476;2632^)9™ *8&X^»*þÕ]H XR * ,"65Ccg8 !%à*8f37,2 Hx«  0 6+  "'3" 1 æFT6Iu $t36H)#2J$ZGTm #F/(aP@þŽ3. 'J2 !1 Hÿf’ˆ)‚¬"&5#"&54654&54&5476;2632"5&54?67&'#"&546545&54;232635465.54;2>54&54;2+#"&5#"&54654'&5476;2632A.7™2$, N#f³  )P  .?;dJ*$ 5  :  5 HDJC>)(;f3& % O#c·ÿ6) .. 1  !2 þW #3  ,G  B #V  # : U! Ü ¨ 5* "1 /  ! 26ÿfüˆ)p™#"&5#"&54654&54;26323>32467#"&54654&5476;232?632>54.5476;+"&#"&5#"&54654&54;263232632ü&-7|++%IoÛ% †3'" 8 !#$C IDÛ0-8|H&KQ£ 7(  )72&þ;† 2F Q   a   ) þì  ˜ 6)  :72! 1CÿdÒ”+o±×#"&5#"&54654&5476323>32"5467#"&54654'&5476326;2632#"&5"#"##*#"&54654'.5467>3>;22>32632#"&5+"#"&5#"&54654&54;2632v *(<™$ * HTp&$þÌ]% *'=N1g” .,6;   é%5\ N  7  o 3(:2J% k9¯1);f32$+ Jk¨ ƒ 36+  "1  2  þ¹ Q  !2  0 1 :'8 þË5  Z9s$ 6+&Il 5,// 3 ! (1ÿd…”.r­>32#"&5#"&'454654&54;2"'#".54>3763232632#"&#"#".547"32>7>32"32654."&5#"&54654'&54763:;2632éSo%$/';™$ &M  ÝK2F2:0(7K79 C !19 :#- TST2" /  :* "):f3$ % I kª 2r  5 6+ !2  3 ýÕ, 6)Lp9$ ($9 '%nŒQ  '%"$ýÇ6+ "2 0  ! 2 %ÿfbˆ*‰±#"&5#"&54654&54763232632"54?>7#"&54654&54323?326;>72#".'#"+"&5467##"&5#"&54654&54763232632Ì ),9¨ *+ Zs® þU0 ^2$'c)N8&~ KKA-- $      E4/   `)-8¨2$(Zp² x1 7(  "( 2!ýÅ/Gu4 123  1 )Ej' û6¿Ÿ 6)  ./ 0! 22ÿd#”,a€¬#"&5#"&'454654&547632326324&547>32#"&+"54654&#"#"&546"&'4?>32;2#"&5#"&54654&54&5476;2632#-(<*`% & C!^¤þI€;43 "3#*   =,'Òc  3Q 1*:f3 ++ He®  & 6+"3 0 " 4­  3 B  *R 0þÎ š  (}  ‘ 5, "' 2  !ÿd#”*Sa‹"&5#"&54654'&547632326322##*+"&54654.546">54&#"&5#"&54654'4&54;2632â+81Z ** E ]¥ -¢¤.TM2   1W| 'MR…1)7&5474632!+"654&!"654&"'#"&54654'&546323>32.c/)9A„ ** R­ ð  /^wYDþþ!Ä6`tœþÿ" ,þÔ(D ‚)D [Y šH9-%0;q“.#  -} 5 5, "' 0   ý¿9  &<.AG5%}?0 # >BZ| 6 €6>$Z&57 ['ýÔa (I/    ÜÐ!#5654&'##5>762/ÜÄ.—/‹ €[A#ÄA@EI!A2(õx$¤¤ ™Â$5%+5232654&'532'4&#"264.+2>™m@á"&½!:<$d3Go>;C$* &4)x;=&.& 1#K 9¢7#”,­ ¡ # ËÂ%+5232654&'5324#"326Ë“o¾ $µw”X´&!dUßls#.$psÅþªZšÂ,%!5>54&'5!#.+"32673#.+3:3:3267šþŒ$$n'2ZY()Y/64rr$.#b-•'(¢6 ÿ÷Â#"546323254&'53(E=M 'Ô²&û>H2-;% Â9!#5323254.'#5>54&'532>54#*#53323 íHI&Ñ(&Ò'L/1"²'$z¦  UF‘%)'$%ŒC,9 x² šÂ%!5>54&'533:3:3267šþŒ$$Ì$165rr$.##þ¿6YÂ%!#5>5##5>54&'533YÏ(©œž,'šŠ˜”$$(1þ~sþð#/%þ¨X#þÒ$ £Â#.#"+#5>5#"#7!£ $/,'×*$8' N3#þ¦&*S7t ÿ÷ð #"&=4&'5332=4&'53ð+NQTv&Ð%:Az* ³#.²Sb[QÕ%$æ@8’².%ÿòÝÂ"&'&'&'53>54'53Ý €ZB#Ä.a8+/‹³!þ¿2(øu$ð‹tÿò¶Â>#"&'#"'.'537.'53>54.'53¶ Š \ p ‡  ´.*:[ &Ë $!(# {³ þ¦*ï(ð',V  uŽÇ5+ []T[RY ¢Â%!5#"#7!3267¢þ‡ Š/[þóŠE-‡‡•&2vþk(E ‡Â(#"'3#5>54&'5324.#"32‡$>A&&Í'$Â"<:"P/* qG&7 |%('$ 4%( ­ÿë«2A#"&5462326='5##"&5463254&#"567327'54&#"326ë/!0""z*WY]vY91 V=—?(,;B1=˜!., !¹+=@ƒ]\š+œýÉ",æ(54&#"567>54#*#53"67ù-!0" Á C[  ê  h3Œ.Ì/]C&™(+ ˜!., !˜[vµ  â$þ` 3D"Â3 ÿ«+#"&5462326=#5>54&#"567>7-!0" Ó+" b= ˜!., !˜)Ý%ý«  ÿæÌB#"&5462326=#5>=4#"#5>54#"567>327æ-!0" ¸(M(;" Ô&# K?;&3 ˜!., !˜&+Ña9þç!(ÿ9O">9&eU  ÿßÂM#"&5462326=#52>54&'3#5>?'.#"#53">54'5367ß-!0" °  T V(‘r^  Ï+< 9(ž4S5/; ˜!., !˜ † ¥  \ U *xWJL ÿÿÿ¢#yÂý$ÿÿ%ÿºÌ#yIýDÿÿQ!#xг%ÿÿÿöÔ9#xDËEÿÿÿuQ–#xŠýj%ÿÿÿkÔ«#xDý`EÿÿÿŒQ–#qŠýi%ÿÿÿˆÔ«#qEýeEÿÿÿ)y#v~Û‰ÿÿÿ)œ•"vï©ÿÿ­!#x·³'ÿÿÿöë«"x>ÞGÿÿÿu­–#x·ýj'ÿÿÿkë«#x\ý`Gÿÿÿ’­–#q¸ýo'ÿÿÿ‰ë«#q\ýfGÿÿÿ)­–#zÂ'ÿÿÿë«"zföGÿÿÿ%­–#e¸ý*'ÿÿÿë«#e\ý Gÿÿ U#C®ZÔÿÿÿö¨,#C^†Õÿÿ U#vdZÔÿÿÿö¨,#v†Õÿÿ ÿ%U–#eŠý*(ÿÿÿ¨Ì#e:ý Hÿÿ ÿ`U–#{ŠýX(ÿÿÿV¨Ì#{:ýNHÿÿ ÿ)U[#wŠÃáÿÿÿ)¨‘"w:ùâÿÿ "!#xp³)ÿÿ9#x"ËIÿÿ ÿòÅ #q̳*ÿÿÿ&Ö6"qRÝJÿÿ¾!#xÁ³+ÿÿ ç9#xPËKÿÿÿu¾–#xÁýj+ÿÿ ÿuç«#xPýjKÿÿ¾!#j³+ÿÿ ç9#jQËKÿÿÿ)¾–#zÌ+ÿÿ ÿ)ç«"z\Kÿÿÿ;¾–#wÂý@+ÿÿ ÿ;ç«#wRý@Kÿÿÿ^K–#{ýV,ÿÿÿáÿ^+«#{ÿàýVLÿÿMä#v>‘ÿÿA#vÿ¿›±ÿÿ"Ói#v®Ã.ÿÿù#v3ÛNÿÿ"ÿuÓ–#xÓýj.ÿÿÿuù«#xXýjNÿÿ"ÿ’Ó–#qÔýo.ÿÿÿ‡ù«#qZýdNÿÿ ÿuV–#xŠýj/ÿÿÿu«#xÿâýjOÿÿ ÿuV #qа >ÿÿÿïÿu& #qÿä³ ?ÿÿ ÿV–#qŠým/ÿÿÿïÿ‘&«#qÿäýnOÿÿ ÿ%V–#eŠý*/ÿÿÿïÿ%&«#eÿäý*Oÿÿ _i#vèÃ0ÿÿ•#v¾ÿïPÿÿ _!#x³0ÿÿM#xäÿßPÿÿ ÿu_–#xýj0ÿÿÿuÌ#xäýjPÿÿ ÿõÃ!#xÀ³1ÿÿå]"xSïQÿÿ ÿjÖ#xÀý_1ÿÿÿuåÌ#xSýjQÿÿ ÿ…Ö#qÁýb1ÿÿÿåÌ#qTýjQÿÿ ÿÖ#eÁý1ÿÿÿ%åÌ#eTý*Qÿÿ"ÿò°%#vœ—ÿÿÿöÖQ#v,«·ÿÿ"ÿò°Ý#jÂo—ÿÿÿöÖ #jR›·ÿÿ"ÿò°#CæZÿÿÿöÖ,#Cw†ÿÿ"ÿò°#vœZÿÿÿöÖ,#v,†ÿÿi#vJÃ3ÿÿÿ'Ö•"v ïSÿÿ!#xp³3ÿÿÿ'ÖM"xFßSÿÿ“!#xª³5ÿÿOM"xßUÿÿÿu“–#xªýj5ÿÿÿuOÌ#xýjUÿÿÿu“#q¬¸ bÿÿÿuO>"qå cÿÿÿ“–#q¬ýj5ÿÿÿŒOÌ#qýiUÿÿ*ÿòë9#xcË6ÿÿ3ÿö\M"x ßVÿÿ*ÿgë¤#xcý\6ÿÿ3ÿk\Ë#x ý`Vÿÿ*ÿòëƒ#xÿÿ3ÿönë"x}ÿÿ*ÿòë¹#xnK"ÿÿ'ÿö^9#xË#ÿÿ*ÿgë9#xcË jÿÿ3ÿk\M"x ß kÿÿQ!#xг7ÿÿ ÿöÎ"xê`WÿÿÿuQ–#xŠýj7ÿÿ ÿkC#xÿêý`WÿÿÿŽQ–#qŠýk7ÿÿÿ÷ÿŠ.C#qÿìýgWÿÿÿ%Q–#eŠý*7ÿÿÿ÷ÿ.C#eÿìý WÿÿÿgÁ–#jÀý\8ÿÿ ÿkßÂ#jMý`XÿÿÿKÁ–#{ÂýC8ÿÿ ÿXßÂ#{NýPXÿÿÿÁ–#eÁý8ÿÿ ÿßÂ#eNý XÿÿÿòÁ#vš`*ÿÿ ÿößQ#v'«+ÿÿÿòÁ¸#jÀJ,ÿÿ ÿößä"jMv-ÿÿÿõ¹&#{¾´9ÿÿÿòÝU"{RãYÿÿÿj¹–#x½ý_9ÿÿÿgÝÂ#xPý\Yÿÿÿõ¤i#CRÃ:ÿÿÿò¶•#CãÿïZÿÿÿõ¤i#vÃ:ÿÿÿò¶•#v˜ÿïZÿÿÿõ¤!#j.³:ÿÿÿò¶M#j¾ÿßZÿÿÿõ¤!#x-³:ÿÿÿò¶M#x¾ÿßZÿÿÿj¤–#x-ý_:ÿÿÿg¶Â#x¾ý\Zÿÿ À!#x¾³;ÿÿßM"xPß[ÿÿ À!#j¾³;ÿÿßM"jQß[ÿÿ¿!#xó<ÿÿÿ&ÛM"xMß\ÿÿ Ue#eˆÃ=ÿÿ¢‘"e8ï]ÿÿ ÿuU–#xˆýj=ÿÿÿu¢Â#x7ýj]ÿÿ ÿŠU–#qˆýg=ÿÿÿ†¢Â#q8ýc]ÿÿ ÿ¢ç«#qRýKÿÿÿýÿö'Î"jë`Wÿÿÿò¶±#y¿ÿêZÿÿÿ&Û±"yNê\ÿÿ%ÿöºÆ"]6Dÿÿ9#x"ËAÿÿÿu¢#xÁýj$ÿÿ%ÿkºÌ#xHý`Dÿÿ‚#¨Ò$ÿÿ%ÿöº®#¨†ÿþDÿÿÍŸ#vù„ÿÿ%ÿö#vÅx¤ÿÿÂ¥#Cÿîÿ„ÿÿÿ¾ÿöº!"C«{¤ÿÿÂy#¨É„ÿÿ%ÿöõ¢#¨Rÿò¤ÿÿÂü#{Š„ÿÿ%ÿöº4#{J¤ÿÿÿuÂ}#eÂÛ ¤ÿÿ%ÿkº‘"eIï ¥ÿÿÂ#vÐiÄÿÿ%ÿöº8#vF’ÅÿÿÂþ#C¶XÄÿÿ%ÿöºP#C6ªÅÿÿÂú#¨JÄÿÿ%ÿöº0#¨†€ÅÿÿÂò#{€Äÿÿ%ÿöº#{J¬ÅÿÿÿuÂs#wÂÛ ¤ÿÿ%ÿkº "wI ¥ÿÿ ÿuU–#x‰ýj(ÿÿÿk¨Ì#x9ý`Hÿÿ U‚#¨ÚÒ(ÿÿÿö¨®#¨ÿþHÿÿ U#{Šª(ÿÿÿö¨`"{:îHÿÿ ³x#vvÒŒÿÿÿö#vÇy¬ÿÿÿµU}#Cÿ¢×Œÿÿÿºÿö¨""C§|¬ÿÿ c‚#¨ÀÒŒÿÿÿöû®#¨Xÿþ¬ÿÿ Uü#{ŠŠŒÿÿÿö¨4#{:¬ÿÿ ÿuUe#eŠÃ ¼ÿÿÿk¨‘"e:ï ½ÿÿ;y#¨HÉ,ÿÿý¥#¨0ÿõóÿÿÿu;–#xÿÿýj,ÿÿÿuý«#xÿßýjLÿÿ"ÿg°¤#xÂý\2ÿÿÿkÖÌ#xRý`Rÿÿ"ÿò°†#¨Ö2ÿÿÿöÖ¬#¨ÿüRÿÿ"ÿò̤#vþ–ÿÿÿö# #væz¶ÿÿÿò°#Cÿï÷–ÿÿÿ×ÿöÖ"CÄy¶ÿÿ"ÿò°†#¨àÖ–ÿÿÿöÐ#¨_ ¶ÿÿ"ÿò°ü#{Ê–ÿÿÿöÖ4#{T¶ÿÿ"ÿg°}#eÂÛ ÐÿÿÿkÖ‘"eSï Ñÿÿ"ÿòÄ#iäÙbÿÿÿö§#i‚cÿÿ"ÿòĈ#jÑâbÿÿÿö¥"j_ÿcÿÿ"ÿòĆ#¨Öbÿÿÿö¬#¨ÿücÿÿ"ÿòÄM#{ÐÛbÿÿÿö^"{]ìcÿÿ"ÿSÄ#x¼ýHbÿÿÿW(#xPýLcÿÿÿgÁ–#xÀý\8ÿÿ ÿkßÂ#xLý`XÿÿÿòÁ‚#¨ Ò8ÿÿ ÿöß®#¨ÿþXÿÿÿò:’#iëìqÿÿ ÿö¬"iKrÿÿÿò:Œ#jüæqÿÿ ÿö¦"jirÿÿÿò:‚#¨ Òqÿÿ ÿö®#¨ÿþrÿÿÿò:P#{ÔÇqÿÿ ÿö|"{JrÿÿÿS:P#x¼ýHqÿÿ ÿW|#xýLrÿÿ¿i#CèÃ<ÿÿÿ&Û•"Crï\ÿÿÿu¿–#xÃýj<ÿÿÿ&ÛÂ#x³ý^\ÿÿ¿‚#¨Ò<ÿÿÿ&Û®#¨žÿþ\ÿÿ¿#{Ī<ÿÿÿ&Ûa"{Nï\ÿÿ)ÿö."< ®ÿÿ)ÿö."< æÿÿ)ÿö.ð"< »ÿÿ)ÿö.ð"< Èÿÿ)ÿö.ð"< ¼ÿÿ)ÿö.ð"< Éÿÿ)ÿö.L"< ½ÿÿ)ÿö.L"< Êÿÿÿï­"[«Ìÿÿÿÿ®" æÿZÿªÿÿ0®"n »‹¾ÿÿÿí0®"n Ȉ¾ÿÿ 0®"n ¼–¾ÿÿÿú0®"n É–¾ÿÿÿí&®"d ½ÿÿbÿÿÿä&®"d Êÿ‡ÿbÿÿ)ÿö"@ ®èÿÿ)ÿö"@ æèÿÿ)ÿöð"@ »èÿÿ)ÿöð"@ Èèÿÿ)ÿöð"@ ¼èÿÿ)ÿöð"@ Éèÿÿ;–#!æ[Í´ÿÿ+E–#!ð 憒ÿÿ•–#!@ »£¦ÿÿŸ–#!J È ¦ÿÿ•–#!@ ¼¤¦ÿÿÿþŸ–#!J Éš¦ÿÿÿ Û"B ®ÿÿÿ Û"B æÿÿÿ Ûð"B »ÿÿÿ Ûð"B Èÿÿÿ Ûð"B ¼ÿÿÿ Ûð"B Éÿÿÿ ÛL"B ½ÿÿÿ ÛL"B ÊÿÿÿÜh–##ª[˜´ÿÿÿâ^–##  æÿ=ÿ’ÿÿÿîÌ–## »ÿxÿ¦ÿÿÿÐÌ–## Èÿkÿ¦ÿÿÿä–## ¼ÿoÿ¦ÿÿÿÉÌ–## Éÿeÿ¦ÿÿÿÄÔ–## ½ÿgÿJÿÿÿ½Ì–## Êÿ`ÿJÿÿ!ÿö "D ®ÿ|ÿÿ!ÿö "D æÿ|ÿÿÿòÿö ð"D »ÿ|ÿÿÿáÿö ð"D Èÿ|ÿÿÿñÿö ð"D ¼ÿ|ÿÿÿàÿöð"D Éÿ|ÿÿÿÙÿöL"D ½ÿ|ÿÿÿÙÿöL"D Êÿ|ÿÿ –#%Ò[¿´ÿÿ –#%Ò æÿnÿ’ÿÿ3–#%T »½¦ÿÿ•–#%Z ȶ¦ÿÿ=™–#%^ ¼È¦ÿÿ™–#%^ É´¦ÿÿ–#%T ½ÿ¤ÿJÿÿ–#%T Êÿ¥ÿJÿÿÿöÖ"J ®ÿÿÿöÖ"J æÿÿÿöÖð"J »ÿÿÿöÖð"J ÈÿÿÿöÖð"J ¼ÿÿÿöÖð"J ÉÿÿÿëÿòZ­#+ª[§ÌÿÿÿûÿòZ®#+ª æÿVÿªÿÿÿÕÿò–®#+æ »ÿ_ÿ¾ÿÿÿéÿòÈ®#+ È„¾ÿÿÿÕÿò–®#+æ ¼ÿ`ÿ¾ÿÿÿìÿòÒ®#+" Ɉ¾ÿÿÿöÐ"P ®ÿÿÿöÐ"P æÿÿÿöÐð"P »ÿÿÿöÐð"P ÈÿÿÿöÐð"P ¼ÿÿÿöÐð"P ÉÿÿÿöÐL"P ½ÿÿÿöÐL"P Êÿÿ Y­#0´ æÿeÿ©ÿÿÑ¡#0, È ±ÿÿÛ #06B É¡«@5@ÿÿÿûѪ#0, Êÿžÿ^ÿÿ)ÿöŒ"T ®gÿÿ)ÿöŒ"T ægÿÿ)ÿöŒð"T »gÿÿ)ÿöŒð"T Ègÿÿ)ÿöŒð"T ¼gÿÿ)ÿöŒð"T Égÿÿ)ÿöŒL"T ½gÿÿ)ÿöŒL"T Êgÿÿÿþ‡­#4¾[ºÌÿÿ‡®#4¾ æÿiÿªÿÿÿü×®#4 »†¾ÿÿÿÞ×®#4 Èÿyÿ¾ÿÿÿü×®#4 ¼‡¾ÿÿÿ××®#4 Éÿsÿ¾ÿÿÿÊ×®#4 ½ÿmÿbÿÿÿË×®#4 Êÿnÿbÿÿ)ÿö.ð"< Úÿÿ)ÿö.ð"< åÿÿ)ÿöð"@ Úèÿÿ)ÿöð"@ åèÿÿÿ Ûð"B Úÿÿÿ Ûð"B åÿÿ;ÿö ð"D Úÿ|ÿÿ;ÿö ð"D åÿ|ÿÿÿöÖð"J ÚÿÿÿöÖð"J åÿÿÿöÐð"P ÚÿÿÿöÐð"P åÿÿ)ÿöŒð"T Úgÿÿ)ÿöŒð"T ågÿÿ)ÿ." £ ®ÿÿ)ÿ." £ æÿÿ)ÿ.ð" £ »ÿÿ)ÿ.ð" £ Èÿÿ)ÿ.ð" £ ¼ÿÿ)ÿ.ð" £ Éÿÿ)ÿ.L" £ ½ÿÿ)ÿ.L" £ Êÿÿÿï‘­"  ­iýÿÿÿÿ‘®"  ­iýÿÿÿíë®" ì ­ÃýÿÿÿÏë®" â ­Ãýÿÿÿ÷ë®" ì ­Ãýÿÿÿæë®" ì ­Ãýÿÿÿãë®" ö ­ÃýÿÿÿÚë®" ö ­ÃýÿÿÿÛ" ² ®ÿÿÿÛ" ² æÿÿÿÛð" ² »ÿÿÿÛð" ² ÈÿÿÿÛð" ² ¼ÿÿÿÛð" ² ÉÿÿÿÛL" ² ½ÿÿÿÛL" ² ÊÿÿÿÜi–# ­Aý "ÿÿÿâ_–# ­7ý #ÿÿÿîÍ–# ­¥ý $ÿÿÿÐÍ–# ­¥ý %ÿÿÿäÖ# ­›ý &ÿÿÿÉÍ–# ­¥ý 'ÿÿÿÄÕ–# ­­ý (ÿÿÿ½Í–# ­¥ý )ÿÿ)ÿŒ" Ü ®gÿÿ)ÿŒ" Ü ægÿÿ)ÿŒð" Ü »gÿÿ)ÿŒð" Ü Ègÿÿ)ÿŒð" Ü ¼gÿÿ)ÿŒð" Ü Égÿÿ)ÿŒL" Ü ½gÿÿ)ÿŒL" Ü Êgÿÿÿþˆ­# ­`ý Zÿÿˆ®# ­`ý [ÿÿÿüØ®# ­°ý \ÿÿÿÞØ®# ­°ý ]ÿÿÿüØ®# ­°ý ^ÿÿÿר®# ­°ý _ÿÿÿÊØ®# ­°ý `ÿÿÿËØ®# ­°ý aÿÿ)ÿö. &wj<ÿÿ)ÿö.ƒ&h\*<ÿÿ)ÿ.ð" £ Ú)ÿ.Í"1B%#".'##"&546323733265#"=332654.#"32>.9 d:Zks\AJ  T#+]JL<-$2 9,.<ku#!8H‹\^’cG {r<BþðXOc.NŽ,UF0LD"+OAOZÿÿ)ÿ.ð" £ åÿÿ)ÿö.¶"< ¯ÿÿ)ÿ.¶" £ ¯ÿÿÂs"wÂÛÿÿ "q³ÿÿ¤# Úÿ_ÿ´ÿÿ¤# åÿ`ÿ´ÿÿ›¢# ­sýÿÿÿœkEB[ÿXaÿÿÿ(ÿµ¥-N#"'732654#"#"54632N;*& $%'/ 4<•*> $-*;]U™¶#"&#"#>323267™6'V%6*T¶)8+++6+l-¨"#"&#"#>323267"&462"&462¨6'V%6*V((¢(()8+++6+¤((((ÿÿÿÛð" ² ÚÿÛÍ#2#4#"#4.#"#4323>32#"=33265ÛT>U*[$ F='4 º]JLà&cþ´@gd",,D`27%þ6XOc.NÿÿÿÛð" ² åÿÿÿ Û¶"B ¯ÿÿÿÛ¶" ² ¯ÿÿÿÍä# Úÿ ÿ´!nÿÿÿÌä# åÿ ÿ´!nÿÿ^¤# ÚÿCÿ´# ÿÿ^¤# åÿDÿ´# ÿÿ¿–# ­—ý#v-ð #.54632#7254&+"&5432" evO *(--505 7c7 #8u-€ð #7>2#7254&+"&5432€S(ŒwP*(-Õš Rc7 #8]-šL*#"&#"#>323267#"'732654#"#"54632š5(T% 6*V>0 %(/L*7+++6+Ï 0 !.ÿÿÿðÿö  &wÖDÿÿÿÑÿö z&hÆ!Dÿíÿöð/"&462#.5462"&462#"&5332>=3((R".((Ø/97/Tq((`505  V((ýâ;>;9Yþ… #ÿèÿö ð-"&462'#7>2"&462#"&5332>=3 (()S(~((Ý/97/Tq((Hš q((ýâ;>;9Yþ… #ÿÿÿÙÿö¶"D ¯ÿ|ÿÿÿèÿö$"D °ÿ|ÿÿ;["%wÃÿÿ Bô"%q›ÿÿÛ–#%  ÚÿVÿ¦ÿÿÑ–#%– åÿMÿ¦e-Žð $#.5462#"&54632#"&#"327Ž"g &99.+"! -505  Ž 9&.6')d-”ð $#7>32#"&54632#"&#"327”"' •&99/,#! Õ 505š© 9&.6')]-™L*#"&#"#>323267#"&54632#"&#"327™6'T%6*TD!/.) L)8+++6+þë /!(."ÿÿÿöЦ&woPÿÿÿöÐz&hX!PÿöÐðA"&462#.5462"&462#"&54654#"#463232654&54632Ÿ((R".((ÂHP#0(610$2=F=?q((`505  V((þ¤þÅXI$‘$9\:FO4|6@g@(Ž$”ÿöÐð?"&462'#7>2"&462#"&54654#"#463232654&54632š(()K'~((ÂHP#0(610$2=F=?q((H‚š q((þ¤þÅXI$‘$9\:FO4|6@g@(Ž$”ÿÿ,ÿ#á"L ®ÿÿ,ÿ#á"L æÿÿÿöж"P ¯ÿÿÿöÐ"P °ÿÿ)¥s"0wÀÛÿÿ)¥ "0qÀ³ÿÿ0E®#0  Úÿmÿ¾ÿÿ/E®#0  åÿnÿ¾ÿÿæ–#-È æÿbÿ’|-Ÿð"&462#.5462"&462Ÿ((R".((q((`505  V((w-šð"&462'#7>2"&462š(()K'~((q((H‚š q((Ã-4ð #.546324" -505 ÿÿ)ÿŒð" Ü Úg)ÿŒÍ@O%#"&'##"&546732>54&543232>=4.'5#"=33265Œ`R9>>9R`j]*  #",/.+1!+ &]j¸]JLäW—I;;I—W_ˆ#9(  8&(023S(Õš ¥-N#"&54632#"&#"327N%*<=4/'%": >*4;*-$'Éú73#'ööú1ÿÿ'Éú ñÿÿÉôú ôÉôú5!!ôþ ú1Éèú5!!èüú1ÿÿÉèú õÿ)ôÿµ!5!5!5!ôþ ôþ ô×2(2s±þ¤07632#"&5467¨  !".>2 R 3&-T82O±Ú¤0#"&54632'654¥   !".>2 R< 3&-T82OÿsÚf0#"&54632'654¥   !".>2 R 3&-T82s²þ¥"&#".54>32À&, R $&9; Z/)+±ž¤(07632#"&546737632#"&5467`  !".>2 Rö  !".>2 R 3&-T82 3&-T82±‘¤(0#"&54632'6543#"&54632'654t !".>2 RÚ !".>2 R< 3&-T82 3&-T82-ÿs f(0#"&54632'6543#"&54632'654ƒ  !".>2 RÚ  !".>2 R 3&-T82 3&-T82+²ž¥-"&#".54>323"&#".54>32x&, R $&Ð&, R $&9; Z/); Z/);ÿk»¤."&'#54&'6=#"5463254&5462>32•\&*(*)S , ]$$$%-O”Ž+h¯{{EŸ3+„ +" 2f i="&:ÿgº¤P>32#"&'>32#"&'#"&5465#"&463254'6=#"546324&54632)$&\ \%(%\  [&$$&[ [%())S , [&$vg?"& w0LI"?f g?"& %6r +">f (Ä6Ò 2#"&546®:NP78ONÒO:6OO98N(´6ã7(´/˜oÿõxd #72#"&546!2#"&546!2#"&546¦!" !c!" !c!" !d" "" "" "ÿíâÂ*6BN[232673##"'#"&54632654.2#"&546"32654&%2#"&546"32654&È"0 ,5C,þR/Š5(#)`F2DtK '95O '@.2d@3FuT0Q 3S#D.2d?4FuS&? 3S"¤Bý,’ O”O:U€~A'‚VþÔ=8[P:Pƒ™H(O&2=8[P;P‚]d(O'1ÿíL 1?N\kyˆ #'#"'#".54632326732654.'2#".546"32>54&%2#".546"32>54&%2#".546"32>54&7þR/ƒ 4%+_G $rN#2",7?þC 5M  2 É.3e>%)wQ3*B#C.3e>%)wQ3*B#C.3e>%)wQ3*B#Âý,‡Q–:&E…#>þê-†C  =H7632œq O4A W (Là I-;Q ' 9^0! 747'&5432#"1€K6  7( AfD *¢]A 6";XDÿæb3 )3''7'77"&5462"&5462$"&5462"&5462=ÜÜ%ÝÝ%ÜÜ%ÝÝÊ&$ .!%&$ .!þì&$ .!¹&$ .!çÝÝ%ÞÞ%ÝÝ%ÞÞH!"þ!"Ñ!"!"ÿÿ‚ÿ÷:¤#MDÿøž¤,8#'.54327>54&#"#"54632"&54632ž-/)#46 86!<&2g<-3'±" "þ"?7:V2x$®TR Ž X3L% ,?EK#=ýÔ ÿÿ#ôUB 5þíŠÿí732>7#"&5EJxI &P9O<>Z-=}`€Ù "6 #8# )Z))‚5„Š„>32.+"5EÙ€Œï<%MN@O-#)4[J_.u‚s (=$ "C0ÿ÷ÿò¤7#3#‹PDåCrrDäò²þ¦þ¨Eÿ«^±M›é#"&54>7'.54>3254&5432>32#".'#"&54654#"&54>7'.54>3254&5432>32#".'#"&54654%#"&54>7'.54>3254&5432>32#".'#"&54654Ë&0*C =) 4(%8& $F!Y,$2Ý&0*C =) 4(%8& $F!Y,$2¬&0*C =) 4(%8& $F!Y,$2Õ.  7 -L' X9%'6 :N U þ¥.  7 -L' X9%'6 :N U .  7 -L' X9%'6 :N U +–!*#5!ö*””ÿXÿòK¤ #Kþ>1ŤýN²XÿKý¨74675.=463"&5X$77$OV3(#22#(3VOy:9  9:£S8 96·22 22·69 8TƒÿK(¨%#5>=4&'>=4&'52(OV3(#22#(3VO$77$y¢T8 96·22 22·69 8S£:9  9ÿÿDÿøZ¤#"¼"ÿÿDÿ÷©¤#¼"ÿÿ‚ÿ÷ë¤#"MÿøÁ #"'7!ò€Ù)+ ;r€3“þFÿêÿf– ###5>54&'5!2>54&:š:š9:ncd^@68þÐ?"üæ!5S6Wbm\lþ§T_[?ÿû1¥4>32#".7"32654&21GTYB21›P+%"$!Ø:U+s^\u,Yí¶ZZbR]Y9ø¥ 2#"&4657#5>=4#"’Ev"¿ .¥&&¾&× ‚2£ ##5#53#527F´Ë/F‡¡9ZZ1 þþ³³ ²##"546232654&'&#"54657327+ nZS4 429> K˜‡df EU2',*6“B%Jÿþ0©"&54>7632'"32654&œGW &=kF£'@JPQ,,&!+aP9@0%|G<@Nê&*?@3,5;ÿý(£ ##"'7(ŽG† £ þx[_*¦!-#"&5467.54632'3254'>54&#"¶G-RL;M35N=:L*S'&( E> ,#'(ï'6&09:-&%))+83&*^&-%,<&$"(ÿÿÿþ 0¯ %.µÀ2}úE ##5#5353úK2KK2ú2KK2KK2Èúú#5úÈú222–ú,#57#5úÈÈÈÈ22d22ÿó@"*5>7>32#5>=4&#"#5>=4&# H"&$0› +ï02(ze! xÿÿÿûÿ-1Ï !þ*ÿÿ9ÿ8øÎ{þ*ÿÿÿ8(Îtþ*ÿÿÿ0#Îuþ*ÿÿÿ82Í #þ*ÿÿÿ0 Ü $þ*ÿÿÿþÿ00Ó %þ*ÿÿÿýÿ8(Í &þ*ÿÿÿ-*Ð 'þ*ÿÿÿþÿ60Ù (þ*ÿÿ2ÿúe )þ ÿÿ2ÿèú *þ ÿÿ2ÿ¶úL +þ 7„³H";54&'5!#.+"32673#./32673!5>=#"&546323273#.$23^F#i'8\ i++i#A>þ‘#^ˆ‰^$RM—+W;ff~% a- —'ž)© %4s &•tul™8Eÿuy.4=327#"'#7&'#7&54>3273733273#&'&'õÂ$.zh?o?&#.$1 9$?Œ:`yA)$*%/$2& f¼c'IJ-6³YýÓe!3&„Œ¢³\ÇQ†T.vy ‡!ádB ýæC@W|Oþÿòy¤J"6=4.#"5673>32#"&#"327#"'#5.54>323273#.y<@0J? NF"7' 2zh?o?81-Td:`yA5x& p|+BoGiŠ ú Y3(#:á-e!3&%yQ†T.!!áSf "–-.+3267#.+!5>54&'5!#.+"3267¨ +0zz0,),:z$7þè8#4 9Tˆ z;+Z hÇþ®/7!$>±8B' – + ÿøê¤ Q72654&#"%#"'#"&54632654'#53.'#5354632#"&54#"3#3#32>2N!&/­cG7W&(3* uohdoT=4.#"3##54&#"#52>=4.#"567>32Ÿ9C010vÛ) )' ¡&Do %,G""Þ HD&$6B–ª‘²Î-Ó&u¯"rNS452 þæ! ýK ÿõÖ159=A#535#535.#53354&'533#3####5>57'#7'#5#35mVVVV$ «¼Å'9ë RRQQÝÝ&8ë;&ä8€[YŸ 7%B.F.¢$ìYQ+2+Y.F.þíuL2.N£FFtootFF.SS\–&,+"'!5>5#5354&'5!23'&#"#32ð$$:þè;MM7FoM>« ´åå —Á¡¶6"%<I.:5 !M9..‚ `.vÿÿÿö÷–#V›5ÿõ¤–GLPSWZ.'5337'.'5!"37654.'533#3##&'##&'#53.'#5&'#%#3#%7##’!&##õ$ 5µ!#* M 'µ%Æ$ 9}Ž §·1+Tpd&;µ¥Œç -“^;þì‘J9ªV_! ‹-R<& ec*œ. &.‡Œ6Ýþís . 0 .t!%FFF.N|FF.K"ÿòä.%#"&'#73&547#73>32&#"!!!!327Ã(šM…¬K1F9³~K—'l‚(?3. žþqqþ¨xf{gq;D{. .uD;i,V9.  .c|eÿ1  &Th#"&'#6?>324.#"32>%#"&#"&#"'>32>7>7#"&54>324&#"326 ¥q.#@e1*h-A L)1K&*0K&þ”þþÅ?-£ F,"5 %3!@†` 3d•Ž;|ºjzl) QYmW(†­"r»é_o³}Š"4-%-@_W! .?\U‡Ââ*'&6KP/,J*6*9pB+B@b3Ÿ”p£#/J4J o+Õ*ÿ©"×%/323273#.#232>7#5$4670" M!    *,$)/[F"þú…*; &=×?!!â'+1ý® &>=JIAž¹ýŠK.O`Be8þŠÿÛvÇ 2 &5464&#"326¬ÉÊþ¦ÈÏø¿‘›·¹˜–»ÇÖ £ÓÔ¢ ÖþŠš·¿’•¼ºþ‰ÿÝr  2#"&5464.#">326˜ÙÓ •áßç7Q`Lt]Ó$(zþ)TΈ:oÂÔ“šäé—”Ñþ™EtG2Hþ00bÇ×djŠÕ/ÿòy¤ %%".54>323273#.#"327y?o~sb::`yA5x& pX947BzhþyPq!3&'O‰ZQ†T.!!áSfýße$ÝP£šÿÿÿò¥¤#&,rØÿÿN¤#),rØÿ1ã¹(6#"54632326767#"&54>3274&#"32>ã & ‹\N +]*9D#52W‹A=  2e:2g<ª)¨‚;`‹@  u6=„!==$F7@šm=.I&r0-u‘!ÿêØÍqz326?6323>3232676;2#"&54?#"#"&54632#"'32767+"?6?#"&54654#"+"54632%"67654#!'\&™ä€jÃaG14®tIc9#U( <^$:9L@<.yAÃP9K0#!$ ?4d–+H±J VÒJ3.)%4$ i'!&j3–bÜP0@73%•þÕ©@6FI?fE3K8 FD60TkY¨[ˆ)& @"×>YiyW963 kU™…pD+-ÿbp«D%&#"'>32654.#"''7654.54>7327#".'67p+BD< FA+! !<4Dv+U4'GF5hJ$ lK,+,)2O6>9BL0J=l8c{ÂP3nQ/S;+EO; V:!';45E%*J-@:/g4HN::1"–+9)5>=!!5>54&'5!!54&'5!%4&'>"þê<þÑ9þ†<<z9/999ý­   &<ÃÎ3#!8¼9!5ÂÂ7!5þD3#e±%#!'þD&"'ÿ÷Þ«23267#"&54?654&#"#654&#"+567632ÀQ  ( -?&7 Z'!K‡ LQx‡^%v þñ 2 A1KÏ R;.XsV  þ@Ó%ÿ÷Þ«:%#"5454&#"#'7654+5677>3232>7Þ;-R ^ Ksa y!&PM.¤ ¼='@H Q i$&(.2 d)/]m¶#!+y ©:!Cä7K/ þä :ÿï¸Í J>74632"'326?&547>7632>54'46;2#"&ÿK(DO4Fws"<þy/#!$( v?ž=^5&xm£5LtG)(Gr  I9-/;Ý\:N!y:UE##E1TxÝ?":{VWAL6G, 0ieK[ yG*>b\‚( ÿËBä@4632#"/&#"'763232>54/&54?&#".9ˆl-“H_ƒ UC  +W Œ" "(WG„SD[+&6!,<#Vs.(lð&8D( V5K )))*)U?G;9(  %A ÿï ÍCLT"327>3232676;2#"'+"546;26?#"&54>32"327&"67654TO¨`O7\gZ#,-ΰd=dnG1x" M|3TxfR„IQEWP:V c€Yƒ:!þP11^:H@Æ&çÁU/¦‘H16Lrm:)$]°ŒU=B/KD22&1:Rz@=5sK ý£$ -mþ¿%xC.3ÿõ°¥%0327#"&54>7'7>324&#">°-S7**F?[8/5\ o%(?%$/=#+#+H%X$LI*‚\&v=W54&'5!34&'53&'>' þH&8þ±>##>'9ëýªƒ2+ýò$þzL2#6¼7 þNQ+ýý¹9þD< 3ÿñ›2>I!5!4&'535<5467632#"&#"##"&546323265%2#"&5463254&#"t$ý%;ªû 3#,6 þÌ4L'(8 _@QXA?RU ,%G-$ '22L/þJÍAO$+@þþÅ|b#6PøK;?UO<@Ok=QW9H(&ÿòÒ¤83254&##"&6324&#"326'+#5>=4&'532l+E(=Å‘ÇÇ‘Ž¦wy¨©xu¨|D0? $¢$ %±0Cõ¨V))þàÈÈ Êþ¦{µµ{z´µÆ-0c  ñ .-<ÿ-=N]4>7.54>7>7>32#"&5463232>54#"#"&2654.'<) !6(=  ;,# RG!1y(8V/Nu>6A &&4f=Cƒè $ 8Fp'/O8"=?%H8<%,46N& Z aH%2KX-voLA2&@oœDgþç:H?)%; G'&+F;! (*6*=‚–"0#"'!5>54&'5!24#"324&'>‚=>–$$:þ„<<lq•m¾ «þ³  âN9;¶6" 9¼:Z\‘ þüб&" (þD( %"ÿN½¤',#"/.546324&#"326½!îh/'JI-Â…?s]83PX+9Uo~W1,,1[zþ¢L±z7 .L{L¢¸,T‡SNO. : C韗ýÇš_óQ©¨ÿþÿïwÍ „‰>54'324632#"'326?4>7&#"3267>=472#"&54>763263232676;2#"&54?65##"&#6‘Hjnpý/#!# >3;Ž=[K•I<{rä;7 F%?&mA7-&:*vW~q…J- $ "0>+ "K_/ ¦"!NQ4""J>ÌU;Pe$cz='U¶þÓ<" wU€`›5,~SO4 15 K:,«&")/%^z-A/ %E/(+0i( HC…2#qHnX€':ÿñ÷Þ[46327632327.'.+'7'&#"'&"'7>32>54&#"'>54.u`0)"ƒ ¡¶),!n((  ÁQ?&h&&FN+AW%7 _0 $ %55%\p._ Œ5gJ XSW-†K )qv^`2)X =7>ˆmœ•)" 0 1' 4  ">÷–!-;!#!5>54&'5!24#"2>4&'>÷¡î8 :þ‡<<x)KV4$=Î$3ݬ'$,K,#þ°  4Å4# 9¼: !K6&< ý-Öˆö:þ¸±&# (þD(! &ÿò“–)5!#'#7'!5>54&'5!2734#"2>“¡5-)š8 :þë:6)KV4$=T,&[$3ݬ'$,K,#DR{ÇÅ4#%<±6 !K6&< gLrp-Öˆö:ÿ£“:'+09#'##7#5>54&'5!27'5'654'&#"27¯t$=Î$3¡ÄI0K-:64-¿ô 8ÍHe@*B'6‚)r&< ý-ýÝ ]]%<±6 B?,Qþ=׿Ûf6=öøcŸ%U#5>5#3#5>=4&'533%#"&+"#5332654/.546323273#&#"cº$™Œ(#‹|‰…  ý¾R0F    ,,/445A=7 L!#&b&%$þ¥Nõ *ù!þÊ6þñ ]6> /#&8-+C {n%):/½–;#5>5#"#5!#.#>=##5>=&'533#î &«% 1 Y í% š — ƒ 0yš g  %ª‚þÊ$$6%XX%þ” %ìþÈ6ß$$ù0þË5ÿ$ÿ£¹:%%#.'5!'5654.'53#-L-`š'% .)J¿ô›4“Í$"ÞŠç WB% [¥?,Qþ,to9 "9ýÏ Í–%!5#"#7!!2>7#3ÍýTµÝ3B! †þP/?$ DAþ`=°°a.!"«ýŸ/#$Àý¶ÿÿ!ɤ4!ÿöÉš-%#".54635#"#5!32654&'5!#.+2É323254."'67&'732654&#"&54632B­w6K$9%'54&Ž1B4 6/ "3<:KOCs N:jKaFXgPs$44$%.'87'Ä!2H/"% 2* 9[>RlVAK\(Y;B^uÿÿ"Ó–.ÿÿ“‡"ÿò Är}‡"&54>327632#"&54>32#"32>54'#"'#"&54632"'3267>7&#"32>=472%>54'632"327&5,žßb†I4  5@K8[…: / +J.'A% =,oL%D5F?ÍU;N/"!$( B6;=IR™L?yoã96 +:uA W{²(SM€'+  $/ 5#V§b*!  ,9(i3">9~Q$ $/( !) /Xz.,%bY‚'%<" yVgm¤8'xQL5(ny J~Bao2(O® 2ÿüV«8%#".54>327327#"''654&547."3267V\[‹D%G/!1 KI*(=K&<"hY ^(&:) 1`CIy´X`iY+ejF,"^/#Y ")¨+RM)(Ÿ.0?.$-J)?qlA3:#ÿöóÌ%#"&4632!3267%!.#"ð~Ob‰‰bT€þ‡%54&#"#"5>32#".54>7&54>7632#"&546324#"3xF-#S6F+X<%8!?%3R.@K1Y6 -4'N _1MBR6KC7P)(9G6!B-K>MBr&$X+ Å6(n O ]+,>TP JND';.@:#^6 =n6$,V&,..T9."17+"5467>763267>32#"'"547#"&4>3232#"&#"32654&5463#"&>5&#")0#!$ ”+bV:@z ¦R):`D?&% $'#C!t 7(/ûgF`Ù~¼TBÄ? CÃ@G…W5A\{ p#4é-;@"@;_K&%!=Dif)A5"[ 537!.n¶(˜>aM'M4MU!5{>"Gz#E !ÿÿ "–).–ÀÿÜ¿Ïj7;>7676332>7>?6332676;2#"&547>7#"=>7#"&5463632#"'B: *Y:s IV<kþŒMH*© v-“/G-o  Gl'+-?IwEþô-47…B@Ca"Z7'&54>7>7"#"54>7&#"&/#57654&( Z  ¿!O +7$D2 3 VÁ 5 ¯:Õ" l!, 2'ò410R!- " Vu/"=  4,3cá%S/5% l[¹$%!7!26=&#!"&546573!2[*ýì*¾ Gþà5& ,)R% ˜˜˜ /<)% 0  (+ þË #¹&%#&#"#73254&/.#"&54657;2# Á$­ #5& +!3N‚ ¡LL!,% .  L"ô¹##!"&546573!2ô   & þÉ5& ,)b '&t|nI")% 0  {«!5>=4&'52"&544(þ™42V==X;ºþ§((Ó(=X;;-+ÿÿÿòÓ¤#u°þ÷ ƒÿÿÿûÿòʤ#u§þ÷"tú  ÿÿÿò¸¤# 2˜È ƒÿÿÿñÿð¾¤"tð# $žþê  ÿÿÿî´¤"uø# $”þè  ÿÿÿûÿ쪤" #ú# $Šþæ  ÿÿÿð»¤# %‹þê ƒÿÿÿè¼²" $# %Œþâ  ÿÿÿòФ# '¦þô ƒÿÿÿûÿòá¤"uí# '·þô  ÿÿÿòá²" $# '·þô  ÿÿ$ÿòâ¤#  " &' '¸þôÿÿÿòX¤"{æ  ÿÿ;–,d–!)5>54&'5!!2654&#"dý®?"!@R?#$>þ×>#"?>$% 8¼7 7þD7!!9¼9!"8þD7#– !/%2654&#"!!5>54&'!>54&;>#"?>$%ì{?#$>ü…?"!@R?#$>?"!!9¼9!"8þD7#ƒ 7þD7! 8¼7 7þD7! 8¼7ÿõâ–,"!5>54&'5!#654&'53#.;=%$>þ×?"!@1.)—“ )Í%Þö'ƒ#7þD7! 8¼7[þ®o0 ;ýÏ%B'ÿÿÿõ¹–9ÿõá–,"#.'5!#654&'5!!5>54&¹%Þö %% .)—“ )õ?#$>þ×?""ƒ>ýÏ%C%[þ®o0 7þD7! 8¼9!ÿõ – 932654&"%!!5>54&#"#.'5!#654&'$=<%"|$þm?#$>ý¯?"">%Þö %% .)—“ ))þD7#"8¼9!#6 7þD7! 8¼9!>ýÏ%C%[þ®o0ÿõ4–,:H)5>54&#"#.'5!#654&'5!!2654&#"#2654&#"4ü…?""?$ Þö'& .)—“ )H?#$>þ×>#"?>$%ì>#"?>$% 8¼9!!<ýÏ%B%[þ®o0 7þD7!!9¼9!"8þD7#!9¼9!"8þD7#é–C"326?'.%!"7654&'53!563654/!5>54&'=?%#:#)BmJ<þ¤["U*q()î15/’À '(þ×23_w4 ,ýö?"!@‚"7þD6$!QÁ i3 v;Š2 !:¶þî+LŒ”A 8¼7ÿÿ À–; à–C%2654&#"!563654/#5>?'.'5!"7654&'5!¾7#)8.7/’À +Dý·23_w4 ,é'*@mF=2."U*q()?#$>#7¼6$#;¶þî,LŒ”A OÁ g4 v;Š2  7þD7!  – Q%2654&#"#2654&#"!563654/#5>?'.'5!"7654&'5!à=$%<;''ç6$&;.60’À +müŽ23_w4 ,é'*@mF=2."U*q()??#$>"8¼8"#7þD7##7¼7#"<¶þî,LŒ”A OÁ g4 v;Š2  7þD7!ÿÿ V–/ÿÿÿòy¤&ÿÿ­–'ÿÿ _–0ÿÿý«Lÿÿ«#LLÿÿ)«#L,#LLÿÿÿòó«#YLÿÿÿòÝÂYÿÿÿòñ«#LôYÿÿÿò«#L #LôYÿÿÿò«#L #L #LôYÿÿõ«#[LÿÿßÂ[ÿÿñ«#Lô[ÿÿ«#L #Lô[ÿÿ«OÿÿÿöœÌFÿÿÿöë«GÿÿÌP>4†Î%!'7!†ý$wÄÄwÜå!ÌÎ!ÿÿ ÿÿºG‡ ¤ÿì…À@ÿÿ>4†Î ¤ÄÀÿÿ-ÿêÇ2‡ ¤ûÿ¬@À>4†Î '7!'7!'7†Ävý‘wÄÄwovÎ ‘!ÌÎ!"-ÿSƯ %'7'7'7ÆÌÍ!’’!ÌÍ ““ÄÄy‡xÄÄxýyy>ÿ]†¥#!†"ý-¿"é¿->ÿ]†¥#'''5!†-ý"鿇¿ý"é-ÿÿ>ÿ]†¥ ªÄÀÿÿ>ÿ]†¥ «ÄÀ>4†Î%!#7!'7!73!†þo-2-þçwÄÄw(*2*‚妦!ÌÎ!››>4†Î'7!#7!5!73!'7†ÄwþÛ-2-þ{”*2*wÎ!¦¦8››!;4ñÎ#73232>32.#"#".+;Äw2jc*$E:;'7³Äw*cj2-Q=:D$5')XU-Q<:E$*cj2wÎ!’99/BB/&,Ub/BB/88!>4†Î%!'#'737!†ýìwªvwÄÄwx¨wå!±!ÌÎ!±!.ÿ]È¥'75'7''ß!±!ÌÎ!±!£wªvwÄÄwx¨wýìÿÿ>4†Î ²ÄÀÿÿ.ÿ]È¥ ³öÀ>4ýÎ%'!'7!7ýªývwÄÄwŒ¨wU!±!ÌÎ!±!8ÿÿH4Î ¶EÀ>4ÞÎ %#5!'7!53Þ8ýwÄÄwü84±!ÌÎ!±ÿÿ-ÿ1Çч ¸ÿùÀ@ÿÿ>4ÞÎ ¸Àÿÿ-ÿ1ÇÑ ¹ôÀÿVõ¯!5!''7'7'7õþ ô.ÌÍ!’’!ÌÍ ““ª2ÒÄÄyDxÄÄxý¼y>4†Ô052#0!'7!264&xwý›wÄÄwd"#œ8wx"ÍÍ ‘"4†Ô"3!'7'7!"5430¶#"dwÄÄwý›wxœ!<"‘ ÍÍ"xw>4†Ô!##5!'7!54>324"32† 5,8þwÄÄwí,1G9~??] .qq"ÍÍ ‘ +1F1??@>4†Ô!'7!#5".54632!'754"3†Äwþ8,5 G1,íwþ3~?Î!qq. 1F1+ !±@??@ 4_Î.'7#"#".'#".+'7322>3232>;'7_Äwcx::9:@CbwÄÄwb"F6:A3'+ 6D"cwÎ!iT` `T45!ÌÎ!/.dc>K>./!>4†Î'7!#7!'7!73!'7†ÄvþÜ-2-þçwÄÄw(*2*vÎ ‘¦¦!ÌÎ!››">¤Ë !##'73¤8ÂwÄÄwúâ!ÌÎ!>¤Ë '7##3'7¤ÄwÂ8úwýÌ!þ!>¤Ë #'73¤úwÄÄwÂËýæ!ÎÌ!â>¤Ë %'7#33'7¤Äwú8ÂwÎÎ!þ! ‡X5!3'31TpoT!7þ[¦¦nÿðZu3!'7!#7þ[¦¦nuýÏTpoT #³!#.#"7'7>32#AÙ™v¿(†!ÎË Œ(è“´ÿ™ÙˆloÎÎs‰°ÿ #³%'7.#"#4327#ËÏ!‡(¿w™ÙAÿ´“è)‹ÎÎÎolˆÙ™´ÿ°‰sl?É &54732654&''?ÓþÔÔj"[·‚¸4(">éfii–ÓÓ–q"a}‚··8Šfè>"ql?É &547'7&' 654'7?ÓþÔÔjfé? \··\#ii–ÓÓ–q">è@&`··‚}a"o>å†Î%!7!†ü¸ÝxÄåé!>4†%!'!†ýå†Î%!5!'7†ü¸Äxå8!>4†'7!5†Ýxý<é!8Ýÿ^Ʀ%37Æé8;ÝHýÿІx'7!5!'7!'7!†Äwý$ÜwÄý$wÄÄwܬÎ!8!ýÃ!ÌÎ!-ÿ^¦'#'%7'7ùÎ!8!=!ÌÎ!¦Äwý$ÜwÄý$wÄÄwÜ>ÿІx!'7!'7!5!'7†ý$wÄÄwÜÄwý$Üw!ÌÎ!þ‘Î!8!>ÿІx%!'7'7!!!†ý$wÄ££ÄwÜý$uuÜ;!Ì«©Î!8ŽŽ-ÿ^¦'#'#'77!8ŽŽ8!Ì«©âwý$Üuuý$ÜwÄ££>ÿІx%'7!5!'7!5!'7†Äwý$Üwwý$ÜwÄ£XÎ!8Œ8!Ì«-ÿ^¦%''73737Ì«©Î!8Œ8"Ä££ÄwÜý$wwÜý$w>ÿφ4 !7!'7!5†ü¸ÝxÄÝxý<Ké!Ëé!8>ÿφ4 !5!'7!'!†ü¸ÄxÝý†þ%!#7#'7373!!!%!3†þT2©LññLî2gþŠ'þXþò=<è€ii]ûý]]]8““JI>þ'7##7#'73733'7'#!%!3ñLõ2©LññLî2°Lœ=î'þßþò=<èû]ii]ûý]]]]ýJ““JI>†þ'7##7!5!7!5!733'7'#!†ñLë2þ–y'þ`¯2¦Lœ=ä' û]ii8“8]]]ýJ“>†þ %!'7!!!†ýyLññL‡ýJ=<·]üý]8JIÿ]¥ '#'#'7]8JI8]û´Lýy¶=<ýI‡Lñ>†þ '7!5!7'!5!'7†ñLýy·<=ýJ‡Lü]8IJ8]ÿ]¥ %'73737ûý]8JI8]NññL‡ýJ=<·ýyL>þ '7!'7!'7'!!ñLþ0LññLÐLœ=ýÒ=<0ü^]ûþ^]ýJJJÿS¯ %'7'7'7'ûý__ýû__“KLLDññNÞNññNþ"Nz6>?ýÌ?>ÿÙ° %Ù(ý0^ Ð'ýQ )\x3'Ð _ý0(¯x]( >ÿÙ° /'/'/Ù) ýQ'Ï ^ý0(¯x\LxýQ(Ð_ ý0'¯ (>ÿÙ° %?7?77Ù þ¤xýQ(Ð^ ý1'¯ {þ¢) ®(ý/ `Ð'ýRw>ÿÙ° %ÙýQxþ¤) ¯'ý0 ^ÐùýR )^w®'ý0` Ñ>ÿÀ†A%! !!!!!†ý½MþÊ5MCýŽhÚý'hq;]A@]8r8r>ÿÁ†B '7!5!7!5!'!5!'7†þËMý½rhý&ÙhýCMþÀ]8r8r8] 4$Î273232>32>323".#"#".'#".+ ÄwcA5=D9<;9>A7#( ,)29=<:?A\wÌ!/.ccPb cO458">I>Pb cN45! 4$Î2'7#"#".'#".#"#52>32>3232>;'7$Äw\A?:<=92), (#7A>9;<9D=5AcwÎ!54Nc bP>I>"854Oc bPcc./!>4†Î%#53#53#'73†¤¤þࣣþáwÄÄwå8888!ÎÌ!ÿÿ>4†Î ïÄÀÿò2– #33#2þõþ*hµhw—K–ý\¤þçþ¿Ëlÿu`]%#"&54632#.#"3267` €nh’’hn€ H ZOJghIN[ opŠ“gôh’‰qPbhJþ IhbOÿöÎñ*74>32654&#"'632#"&%&#"32>(R6&A0TH5?)M6ošDa8PmT72>V0)%;¹DP7&C(uˆ 3DZƒ4=qÑ7|Y>G1HSC,–)5!2=!5!54&#!5!þ p!þÄ<þ¦é%2ñ%Ü%,ÿz )#7#53#53!5!73354&+5#32þÁ#4$‹O…Gþß+%0%Žb E{…N²!††%#%%„„þ×ÜþüþêñþÝÿóÌ¡#"&'7&546327#" 32654z„°E¯Rþ£JKSË’z_=<\ÉŽ‡gþQUz®y«tT¯EýÖJKaŽÆS=7#53.#"5632ž—{5!''9.%ÐÒlR"4,l†p¢( %E-7Ep+ ÿ›#ï3!5265!3!52654#5!"Â/2þÎ1/þš/2þÍ2/_^uýŽ1  1µýK1  1rcÿ›#ï%3!5254!"!4!"Â^üû_/232/f/122/ccr1  1ýKµ1  1ÿ…·ð.#!!2673!!^!;1þô¼ÉHVC6ýòéW K%'# þŽþ %=Ò˜Ó¥Ü75!øÜBBÿÿz& \ÿÿ¨'yrÿÿCÿò6¤ ëCÿò6¤3#C.Å1¤ýN>?™Â;74>7.546324&54632>2#"&'"&465"&>1U U; k  p0UU1 k  o³`ce^  _ce\>G³» #"&546324&#"32³mMOllOMm0R8:QQ:9NllNMmm†rQQ9:P>G³» #"&54632³mMOllOMmNllNMmmÿþÿ¿œ'7pû_£º{8A/3Oþ‡ ÿÿÿþÿ¿Æ#u`" ÿÿÿþÿ¿Å# #`" >a¸*:&#"327#".'#"&54632>32.#"32a!ZE!(++0/ -6@>RF@J$05-þü .,50Mš0x =#/)$*).fCK…GF#1Í ! I17n4>!¸#/#"'#"&546326324&#"326%.#"326!dOoa'w6GOfO;q#taGM9B7&f ++936þ¥i-47A7&gP€6XaHQT9‹`v;jO(94%D>8rE5;jO>¿)3!¿þ(Yþ¨>¿$)3!¿þO2þÊ6$þ>¿$ )33#&'¿þO2Ð)0u¡DO$þ«Y2T.‚>¿é-'4'6¿þ~ }€’”èè3K2r0J³1(XY)Pÿòx¤3P(²ýNÿòÛ¤ #'737(,J(-kþ‡Q,J%ý-Pÿòð¤333P(P(²ýN²ýNÿëÿòT¤73##5#7373ð Dd(P(!De(P(¿!hþz\Sþ÷ß"iŒþžS>P,!# #3P9ÏÑ9Èþ8,>P, #3Pÿþÿ9ÑÏ,ýÔ,þ8È>P=!#4&#"#462P3}YW3žØœ9RyXþÇ5nš™o>P="&5332653PœØž3WY}3o™šn5þÇXyR97ÿ8*„%"&54623254632"&5467&#"¦,C"'acQ,C"'acÈ.'Ï‚\‰.'Ïý~\‰7ÿ8w„+V"&546232>54632"&5467&#"!"&546232>54632"&5467&#"¦,C"'%]N,C"'%],B"'$]N,C"'%]È.'!?B-‚[Š.'!?B-ý~\‰.'&!?A.‚[Š.'!?B-ý~\‰7ÿ8Ä„*V"&5467&#"#"&546232>54632"&546232>54632"&5467&#"%#"&546232>54632"&5467&#""'#ZM,C"'$YM,CU"'#ZM#L"'#Z´\J,C"(#YM,C"(#/ A?/ý~\‰.'& @@/‚[Š.ûâ/& @?0‚\‰9 A?/ý~\‰åa„.'& @@/‚[Š.' A?/Vÿ8z„3:A%.546754632"&5467&#"#"&54623257>54&'#>nz†bdQ,B"'aLm/‡adP,C"(`TbmyVTbmnaP \h˜2\‰.'Ï2 Zo:g˜3\‰.'&ÏLT]Š‘ST7ÿ8w„gkry2"&5467&#"!54632"&5467&#"#"&546232>=!#"&546232>=.5467546!!>54&'©,C"'% ]N,C"'%RmmR]N,B"'$þô]N,C"'%RmnQ]  þôù_GG_XH^^H„.'!?B-//[Š.'!?B-<¸Ž=\‰.'&!?A.00\‰.'!?B-=Z\<[ŠüâñùQÕ‚þÆ‚PR€ÿÿù'yÿØÿ:'ybÿ:y›Ãÿÿÿûô'ye¾'yžÿ4yÿؼÿÿFÿùµô'yÿ2y¾ÿÿ;ÿ÷7ô'yÿ4'y‚¾'yÿõÿ0yÿõ¼ÿÿÜâ'y¬ ÿÿØí'y"ÿO'y#· ÿÿí'yÿØ·'yÿØÿM'y`ÿM'ya· 8 Eâ %"&5462"&5462%632327#".#"u$&%!. $&%!. þÃ&w&TP T‚)TL O'©"!þ"!b„77m –76Y8ŸE@7632327#".#"8&w&TP T‚)TL O'¼„77m –76Y8ŸE@%&#"#"'732>32E'O LT)‚T PT&w¼ Y67– m776ÿüÒ3&54>54'7Ò65j ’!'!U€‰)\V"Y"Ž$I3AU*(80EÒ#"'#7&#"'63273327E‚.6A6N6&N(&w+5A6N=$TG–$¥Ä)X„$¥Ã+l>>·5!#".#"'632327>þþ%uB0<O~ B.;M&9³…"*"m —")"Yÿÿ>>· ,|6À8ÿÌE6 &#"!!#7#537#"'732>?332E'O JþæG6G®Å6:0‚T:B;63w3 Y»8´³8ˆ)– m 1 “€ÿÿ49A' (ÿüÛ &Á4ÿÏA(%632327#".#"!#7#537!5!733#4&w&TP T‚)TL O'ôþìFTF»Yþì?TeY¤„77m –76YþàBjjB†BB†>ÿÌ>6,%!#7#537#537.#"'63273327#"'3#!>þÌ,6,–¬.Úð$ <1M&%u,456?P~Úð.;oo8r8[/X„&…ž l –E8r8KE·$#".#"'632327#".#"'632327E!C/<O&&v&TP S)TL O&&w&TP S­—")"Y…77mÔ—76Y…77m8ÿÌE6.#"'327#"'#7&#"'6327.#"'63273327E&)NS9JJ6V$O&&w&)#0O&&v3KJ6U$S­—h0m —<»ØY…gY…:¹Öm>;>û$(#".#"'632327#".#"'632327!5!>~(QKL'%uB/=Q~(RKM&%u%SNPþñ–66X„")"l³–66X„76lþë8>>û$6#".#"'63232?#".#"'632327#".#"'632327>~(RKM&%u%SNP~(QKL'%uB/=Q~(RKM&%u%SNPG–66X„76l¡–66X„")"lþ£–66X„76l3<IÆ)#".'7327& '4>32I!(2C%&B3'! [¢¤Z[þºZ 01N+%C3'!½# # ggþ ff ') $ >;>Ç#4&"#53>23#"&'#532653>µ):(À•>Ç#4&"#53>23!5!>´):(Á–>…BBÈBBÚ††ÿÌ6%!#7#537#5!733#þêF6F¬Æ5ûF6F¬Ç5½B¯¯B†B±±B†B:é !5!5!5:þøþøþéBBÈBBÈBB>ÿÌ>6%!#7#537#537!5!733#3#!>þÌ,6,–¬.Úð.þâ4,6,–¬.Úð.;oo8r8r8oo8r8r>ÿæ> !5!5!5!!5!!5!>þþþþ:8r8þt8â8>ÿÆ>> -5% !5!>þþ` þHðò8Ãú5>ÿÆ>> 5-5!5!>þ þ`þ9ò8ÃÃ9ñþy5>ÿ„>~ -5% !5!!5!>þþ` þþˆðò8Ãä5Í5>ÿ„>~ 5-5!5!!5!>þ þ`þþyò8ÃÃ9ñþ5Í5>ÿR>~-5% %#7#537!5!733#!>þþ` þ¿0D0{­aþò@0D0|®aˆðò8ÃÃþÄ324d4324d>ÿR>~5-5%#7#537!5!733#!>þ þ`þ¿0D0{­aþò@0D0|®ayò8ÃÃ9ñý÷324d4324d4bü -5% %5% býûþ\¤þ×ýûþ\¤òñ8ÃÄ8òñ8ÃÄ4bü %5-5 5-5býû¤þ\þ×ýû¤þ\÷ò8ÄÃ8ñò8ÄÃ8ñ>ÿV\ž!)&''67.547&'7>74'6\7A#2 4,,4 2#A7u1 "''" 1uIFFFF k¥E-  ))  -E¥k»y)&&)y¼ŸqqŸÄpp3ÿÌI63%&+#7'>?.'7;7367IZ¤ U6StG (*?$$?1%  Z£ U6TtG!*7)I0-F eÕÑP "&M" fÖÒQ  M'#>ÿš>h-#'5%737>þë_6g½U6IŸºHü¤p‚îY‡Ö·K8W¶yM5>ÿš>h%#75?%573'>þáU6IŸºHþþ_6g½`p4÷‡Ö·K8W¶y8‚îþüY 5‚>ÿ^>¤%#7#537'5%737'!>þž*6*h|WÓ?M6AšRìÿONÜĆ:ih4Ûc—Á¢<8IÏn9yÅ£[?>ÿ^>¤%#7#5375?%573!'>þž*6*h|C¿Ú>þè+a6i§ÿON`Z):ih4§Z8gœƒ9óþ÷NxÆH*h>ÿ>>%-5% #".#"'>3232>5>þþ` C0%@'94?:$!@*;0 Hðò8ÃÃZ A,")"K .""*"!+>ÿ>>%5-5#".#"'>3232>5>þ þ`C0%@'94?:$!@*;0 9ò8ÃÃ9ñþÙ A,")"K .""*"!+>ÿ^>¤/2".'#7'>?'5%737'32>5§(@;<6?"4 >*AÓ?M6AšRìÿ<@< 0 ÿ^>¤/2".'#7'>?5?%57332>5'§(@;<6?"4 >*-¿Ú>þè+a6i§ÿ<@< 0 <Z)p&5 –ž-$ 8'qZ8gœƒ9óþ÷Nx˜ 5(!+ 4'!³*h>ÿ¯>S -5% 5-5>þþqþþqͺ¸2‘—º3‘2¸>ÿ¯>S 5-5%5% >þþqþþq‡º3‘2¸þº¸2‘>ÿ^>¤!%#75?'57'5%737''>þ­960n†CÉÚ÷S960n…CÈÚöÄË—‡—3i{y(31§I2OGZzy(20¨I3OFY]I7ç6>ÿ^>¤!%#7'5?5%7%5737'>þÂN6U“Î&ô "þÓ>N6U“Í&óþõ!,q3”E4QsÄÖ5J^X3aTl2rÃÔ5K^W2`Tm¯+ì>ÿó> .'5>5>NhÀtt¿kI>KII€N9 I>ECCB$M5.433.>ÿó> %5>7./5>t¿kIT”ZZ–MNhÀtôCCB$M DBD<MI>E>ÿÆ>N%.'5>5!5!>NhÀtt¿kI)N–ZZ–N)þ5I>ECBB$L)>CD>)»5>ÿÆ>N54>7.=!5!>t¿kI)N–ZZ–N)NhÀtþ5CBB$L)>CD>)LI>Eþx5>ÿ>N7%.'5>5#".#"'>3232>5>NhÀtt¿kI)N–ZZ–N)C0%@'94?:$!@*;0 5I>ECBB$L)>CD>)[ A,")"K .""*"!+>ÿ>N754>7.=#".#"'>3232>5>t¿kI)N–ZZ–N)NhÀtC0%@'94?:$!@*;0 5CBB$L)>CD>)LI>EþØ A,")"K .""*"!+>ÿš>h %.'#&'5673>?%>9nGo6v^n•qn6b1O% 2W4 Nyþî+*: ÿš>h#%#75>?./53&'6>•rm6aY^lC P="&5332653#'73PœØž3WY}3›•Y““Y•o™šn5þÇXyR9ÿl™›l>P= 2#"&546"&5332653H+;<)*;:2œØž3WY}3°;+);;+);¨o™šn5þÇXyR9>P= ##5#53533"&5332653à3€3€pœØž3WY}33vv3‚‚^o™šn5þÇXyR94Hú%!!!!Hýìþâò2þt4Hú%!5!!5!Hýìâþ4Œ24ÿÆH< %!!!!5!HýìþâýíLñ2þvº54ÿÆH< %5!!5!!5!HýìâþýíL4Š3ýŠ5>P#!#!#!P3þT3ðþ#>P#)3!3Pýî3¬3#þðÿÔk. "&462.''3'>5#k±ø±±øƒ„],]„èé\…þóé„~ú°°ú°þê]ƒèè„\.鄌é]„ÿÔk. "&462."%326k±ø±±øƒ “Æ”þþ“dc“~ú°°ú°þêb‡‡b.bˆ‡ÿÔk. "&462&#"4'/'32k±ø±±ø(I[]G¤<¤¤ä¤<<h¤¤G][~ú°°ú°i<<¤}ºG¤¤¤¤GºG ¤¤<ÿÔk."&462&#"%4'326k±ø±±ø(I[j–<Ä<þ˜G]i—~ú°°ú°i<–j]G¤]Gþ˜<–ÿÔk."&4624&#"32"&5462k±ø±±ø„—ij––ji2$&% .!~ú°°ú°þiÔ––Ô–!"ÿÔk.#"&4624&#"32"&46324&"2k±ø±±ø„—ij––ji.X|YX>=Z->X==X~ú°°ú°þjÒ—–Ô–=XW|WYgV=7.546324&54632>32#"&'"&465"&k±ø±±ø„—ij––jiþé0V V; k  p 0UV2 k  o~ú°°ú°þiÔ––Ô–²_ce^ _ce\ÿÔk. %!5!6"&4624&#"32!5!óþ–jx±ø±±ø„—ij––jiLþ–j®.¢ú°°ú°þiÔ––Ô–%.ÿÔk."&4624&#"327!5!k±ø±±ø„—ij––ji[þxˆ~ú°°ú°þiÔ––Ô–é.=? )!5##5#5##5#?ýþ8­8­’­8­å­­­­å­­­­=? )!5!5!?ýþ8þn’þnå­­å­­=? )!!#''?ýþ`þ¾¡É¡P¡j¡¡8¡ÉB¡¡þ¾(¡¡=?)!!$#"&5462?ýþ8þn""!0þ6’þnà0!!">%!#3!þ`88 åååÿÿ> †TÀ>Š&!#!5!Šþö8þöLîþî8>Š&)5!3!Šý´ 8 8îþ>”%!#3!”þâ88ååå>” %!#3!!!”þâ88þ 8“> %!#3!#3þâ88þh88åååþã>ˆ %!#3!#3#3ˆþâ88þh88z88åååþãýþ> %!#3!!!#3þâ88þâþh88€€8“¸ÿÓ”%##5#733733#”ÔJ8*Ak82©Cªªþêåbƒ88såãã8 ÿÓ”%!#5#733733#3'#”þâ8*Ak8~]C^^ˆnöÊT€€88s}}8““qÿÓ%!#5#5#7373733þî 8B8 Kk8B8ÑMÜÜå ÙŸD[!!o“þ§DÛÙãÿÓ%!#5#5#73733733#!'#þâ8B8 Kk8B8XyMyy¯oü"€€ŸD[!!o“þ§D}}8r!“$>>ü-5%>þ2þ’ññþYX¬>>ü%%>þ`þ’÷ñöñ ¬þ¨>ÿÆ>> -5%!5!'>þþ2þ’Hðòýˆ5œW«>ÿÆ>> !5!%>þþ`þ’9ò÷ñþy5H«þ©>YÒ¨#"&'!#"&4632!>324&"2ÒbF?] þ ^>FbbF>] ú ]>FüìEbEEbFŒaP<YÒ¨#"&'!#"&4632!>324&"2ÒbF?] þ ^>FbbF>] ú ]>F0EbEEbFŒaP<Yˆ¨ #"&'!5!>324&"2ˆbF?] þý ]>F0EbEEbFŒaP<8P½ #3!5!Pþÿÿ9ÏÑ9ýî½ýÕ+þ9ÇýC4>P½ !5!# #3Pýî9ÏÑ9‰4ýCÇþ9+>P½ !5!#3Pýîÿþÿ9Ñω4’ýÕ+þ9ÇÊœ!# #3Ê9þãþã9M8ýɛʜ #3 Êþ²þ³9œýd›ýÉ8ÿÿ=ÿο· ¡ü…À=ÿο·%#"&5332653¿_”LvÍ3´[cª3èH„N­mÏþ-V’QÓ*"Öà'7'ÖÖÖÖ™™™™ßßßߢ¢¢ÿÿEÍ´<yÿ@m–² 373'7@‚))‚j(ii(6||L}MM}9ÿã>$ %"&5462"&5462'773#''7#5L" (!" (tÀ%ÝÝ%ÀÁÁÀ%ÝÝ%À»Áþ Á%ÞÞ%Á8Á%ÞÞ%Á8?/‘}7#"&54632 632#"'%7a   þùäþâå4 & þû ýÚ ÆÅââþ;ã4ÿÞü¦! ' 7ü"þ¾þ¾"Bþ¾""Bþ¾"BB"4ÿÞü¦! 'ü"þ¾þ¾"¦"þ¾"Bþ¾"¦"þ¾>>·732>32&#"#"!5!>O<0Bu%&M;.B ~æþþ­ m"*"…Y")"—92K#.'3>7K5]>' 9sELDggD~›Ž>W¾È#1ÒddÒ12K%#.'#>73KMDggDLEs9 '>]1ÒddÒ1#ȾW>Ž›~4Hú!%!"&5463!!"3!!"&463!!"3!Hþð5IJ4þï+-þâggþÞQouK"„J32K2,>,®”Ê”2vQRu4Hú!#!5!2654&#!5!2#!5!264&#!5!2Hgþâ"KuoQþÞg J4þð+-þï5IfÊ”2uRQv2ù2K2,>*4J>P=!!#4&#"#462#4&"#4632P3WY}3œØžu2:P:2W<=X9XyRþÇ5o™šnþË,)7:&þÔ*>WW>>P=!#"&532653"&5332653ÛW<=X2:P:2uœØž3WY}3>WW>*þÔ)7;%,þËo™šn5þÇXyR9>PÜ!#4&'##46753P3kO8Ok3Šb8dŠ9Kz ýø uPþÇ5g” ¡  •g>ÿò>¤%3##5##5#535#533333#5#ް°(P(°°°°(P(°°(P·88“8"þÞ"þÞ8“““>>ü #"&5462%5% ø,eþþ` ,þÏòñ8ÃÄ>>ü%5-5$#"&5462>þ þ`þ°,÷ò8ÄÃ8ñ ,4‹ý -5% %5% %5% ‹ýûþ\¤þ×ýûþ\¤þ×ýûþ\¤òñ8ÃÄ8òñ8ÃÄ8òñ8ÃÄ4‹ý %5-5 5-5 5-5‹ýû¤þ\þ×ýû¤þ\þ×ýû¤þ\øò8ÄÃ8ñò8ÄÃ8ñò8ÄÃ8ñ>ÿ*>Ø %5% !5!5-5>þþqþþþqRº¸2‘ž4þɺ3‘2¸>ÿ*>Ø 5-5!5!%5% >þþqþþþq º3‘2¸þÇ4þº¸2‘>ÿº>H 5%%5% >þþþ` ò8òýrñò8ÃÃ>ÿº>H %55-5>þþ þ`ð9ñ¬ñ8ÃÃ9ñ>ÿª>X &5>54.'5>?>HiÁwq½lKIk¿tt¿kI )N–ZZ–N)  ??C2EII)ýR$BBCCD?L)?DC=)>ÿª>X(.=54>7.=>wÁiH &0Vd’Rt¿kI)N–ZZ–N)NhÀtC?>!M/-;0- šCBB$L)=CD?)LI>E>ÿš>h05.'#7&'57&'56?3>5.'> .9g<\6cRgqYa…©J6ÿš>h/4%#754>?54>?.=7367'&'6>¢€R6BGQ[@&Ln6f=Cp: :zNV6\Oc~e&w’™ ¾?Í¥._M%K b#WL/;9<2!L$;I×ç%^/\4ÿ^H¤%#7#537#!733#!!!!3Hþ”*6*q…!§l*6*r†#þÉ!X¼þÚ‰:ih4Qðih2þv4Qþu4ÿ^H¤%!!!#7#537#53!5!733#HþÉ!Wþ•*6*r†!§»þ¨l*6*r2TLQ4ih4Q4Š2ihþDŠþv4ÿ”H<%!!!733!#7#5Hýìþâþí.D.Ïþÿ.D.ÎLñ2þv…2252254ÿ”H<%5!!5!733!#7#5Hýìâþþí.D.Îÿ.D.ÏL4Š3ý¿225225>ÿ>>)-5% #"'#7&#"'>327332>5>þþ` C056#DB,&4?:$16$DA-(0 Hðò8ÃÃZ A,+'F#K ."+'F$!+>ÿ>>)5-5#"'#7&#"'>327332>5>þ þ`C056#DB,&4?:$16$DA-(0 9ò8ÃÃ9ñþÙ A,+'F#K ."+'F$!+>ÿ>N;%.'5>5#"'#7&#"'>327332>5>NhÀtt¿kI)N–ZZ–N)C056#DB,&4?:$16$DA-(0 5I>ECBB$L)>CD>)[ A,+'F#K ."+'F$!+>ÿ>N;54>7.=#"'#7&#"'>327332>5>t¿kI)N–ZZ–N)NhÀtC056#DB,&4?:$16$DA-(0 5CBB$L)>CD>)LI>EþØ A,+'F#K ."+'F$!+>ÿš>h -#'5%7377>þë_6g½U6IŸ2ˆH¤p‚îY‡Ö·KþYX@¶—M5>ÿš>h %#773'7'7>þáU6IŸ_6g½`p4Ј÷‡Ö·Kö‚îþüY 5‚—bþ¨@>ÿ^>¤%#7#537'5%737'!'7>þž*6*h|WÓ?M6AÿON2hRĆ:ih4Ûc—Á¢<þ yÅœW1ϰ[?>ÿ^>¤%#7#53773!'/7>þž*6*h|C¿+a6i§ÿON`Z)æ¨:ih4§Z÷óþ÷NxÆH*h}lþ©OE©þ #2#"&5462#"&5462#"&546wþþ³þ³tÒr6 ##"&54632#"&54632#"&54632rþ³þ³trþ ##"&54632#"&54632#"&54632rþ³þ³ÌþŸþŸtrþ #4632#"&4632#"&4632#"&tMMÌþÈþÈ5ÿ«ÒI *5"&632762#"'#"&54?&542>54'ƒ.I) ,5íCcX@• •8‹aW@•  •7ë.J) ,þí5½!/:*D7,E7•  •CUb‰7•  •DTaþÜ!/:*D7þî,#ÿŸ—¶$%32#"&/4737!"&547632!2 1•  IpþÕ ¦  —+n § ©Ò N þÏ>Oœ­!#!œþÞ<^qþÞ^>Oœ­#!5!œ<þÞ^O"<>œ^)3!œþ¢<"^þÞ>œ^)5!3œþ¢"<<"l‚7#!!`BøþJlBHÜ”44'&#"3276632#"'&54##"&547546232³TVwxUUªxvWTýö_ŠˆÂaaˆ‰`aål   l JxTVUWvxªUTbaˆŠ_a`a‰ˆœ ª ª  Lÿ8Ë "#4>32#"&547&TJkS3GW?"7(!êþîÕþ5`šó‡X'.&#ÿÿ ÿ9Ÿ! ÖëYÀ>œT<%&#"'07>2TZ¤£Z 01NVM11¦ ff **>œT<#".'7327T!'3C%&B3'! Z£¤Z3 $ # ffÿ:2ê2ÚÚ3ææÑþAþAØØÿ:.ê'7.æ3ÚÚ3þ(¿¿7ÿbÐ’#%#&'!!673!2#!!"&5463!2 (bHý¸b(!EéþEÔý q Sj6þ˜Þþ˜6jV=(=þ¹  üø 7ÿbÐ’#&'3!!#67!"43!"&5463!2eE!(bý¸Hb(!EþAý q =Vj6hý"h6jV=(þT  üø 7ÿbÐ’$567&'!!!&5!"&5463!2p=Uo75qW; ý¸ Lý q E!+lk,!EýŠÞý";  üø 7ÿbÐ’$%&'547!!!6!"&5463!2*q57oU= þäHþä ;éý q G,kl+!Evý"ÞýŠEÄ  üø 7ÿbÐ’463!2#!"&5#&/#!7 q ý }ôH~ üø óõõý"Þ(ÿ8´! #57>7´þÆRT"JT=.Àý×öó²GiF%(ÿ8z 3#(RR ü(ÿ8´ .'&53z: .=TJ"TR+ý×À %FiG²òÿÿÿÌÿ8X  ã€XÀÿÿÿ8X  âÞÿÿÿÌÿ8X! á€YÀXÿ8M–#3#"¤Lõ|È^Xÿ8« #0«S üèXÿÂM ;#¤|õ üç^7ÿ8,–4&+53à|õÈü¢Ùÿ8, #0,S üè7ÿÂ, 3#53265àLõ| ü¢Éÿ8· #4>7R #1J0O4ȼ#/>*0O&Žÿ8 74&'5>=3#ÉZabYR $*%%*$ R´R~"~Q~q$=/%  %/=$þ‘Éÿ8· .5 4O0J1#  ýDJTO0*>/#¼Éÿ8 3ÉRÈèüÿÿÿ8ÿ  ïÈXÀ­ÿ8º %#4>7.=3ÿR $*%%*$ RYbaZ´þ„o$=/%  %/=$q~Q~"~ÿÿÿ8ÿ  íÈXÀLÿ8Ÿ #0ŸS üè-Ê  73!2=3!5F  4þc Z1V  #ÿóòÂ/;!5326=4&+567'2 &5464.#"326½$þý# Fl-‘ÑÓþÖÒÕÙ5L]H–bT¿ˆ‡¿LþŒ$!!(î  ?vÕ’•ÓÓ—•Ðþ™JwF.l\|‰ÀÀ#ÿóòÂ)5E326=3!&54>4&#"#"&54632'2#"&5464.#"326*/GJA Ä!!þ¯.AA."# P=LZš‘ÑÒ•–ÒÕÙ5L]H–bT¿ˆ‡¿Ò+>!"*³ )I87FL/  +8FµÕ’•ÓÓ—•Ðþ˜JxE/l]{‰ÁÀ#ÿóòÂ>JY%32654&#"532654&#""&546323#"&546322#"&5464.#" 6F):5- ,:'&TCELS #.nUCYJ‘ÑÒ•–ÒÕÙ5L]H–bT¾¿Ú E0+3$5-")  '171K 2!AT;-ÒÕ’•ÓÓ—”Ñþ™JwF.l\|‰À¿#ÿòòÁ#3%;#5326=#533#32#"&5464.#"326Ë ñ/ÁÕBooV‡‡‘ÑÒ•–ÒÕÙ5L]H–bT¿ˆ‡¿Â!!'AþÐ-ÿÒ¥Õ’•ÓÓ—•Ðþ™JwF.l\|‰À¿#ÿóòÂ1=M%32654&#"'67327#*#"'632#"&546322#"&5464.#"3269 (8-#*')s*I5)"! &- .DEZrUAVW‘ÑÒ•–ÒÕÙ5L]H–bT¿ˆ‡¿Û  D1-;2˜l( y$O=BY8*ÕÕ’•ÓÓ—”Ñþ™JwF.l\|‰À¿#ÿóòÂ%1<K4654&#"632#".547632#"&"32654&2 &5464.#" 6Å 3S;NfN8Q)D.W@S4)72('1-&‘ÑÓþÖÒÕÙ5L]H–bT¾¿ê ]5)KL:G]/KJ%wN64(o?/0>=/3=WÕ’•ÓÓ—•Ðþ™JwF.l\|‰À¿#ÿóòÂ)8%"&54>?##5!2#"&5464.#" 6 "4# 8H¶ d] "‘ÑÒ•–ÒÕÙ5L]H–bT¾¿ð0  $I-Ie ""§š4J´Õ’•ÓÓ—”Ñþ™JwF.l]{‰À¿#ÿóòÂ"-9H#"&5467.54632'654&#"'326542#"&5464.#" 6Ê:2eNJY,8&R@8H t*2) (S:D7)(6O‘ÑÒ•–ÒÕÙ5L]H–bT¾¿A-BUE9*: ,!6E6*, /&#$•!(E*71%3©Õ’•ÓÓ—”Ñþ™JwF.l\|‰À¿#ÿóòÂ#/;K%327>54'#"&54632#"&54632"32654&'2#"&5464.#"326P 1U;NgNXln[@T9&2-&)73!‘ÑÒ•–ÒÕÙ5L]H–bT¿ˆ‡¿Ø^4KL:G]€ioŒ4(J=/3=@.0>Õ’•ÓÓ—”Ñþ™JwF.l\|‰À¿#ÿóòÂ&2B;#53265.+567"54632"3254'2#"&5464.#"326>Æ  3b"ÝJF—MF434 ‘ÑÒ•–ÒÕÙ5L]H–bT¿ˆ‡¿Mþ{##  9þ"òu}û~kÃÏÐÏÐÕ’•ÓÓ—”Ñþ™JwF.l\|‰À¿yD!!yü‡D0üy\!!yü‡\`°ÿ8à!3#°00!ü˜ÿ8ø!3#˜``!ü°ÿ8yD!!#°Éþg0D0þ$°ÿ8y\!!#°Éþg0\`þ<˜ÿ8yD!!#˜áþ`D0þ$˜ÿ8y\!!#˜áþ`\`þ<ÿ8àD#!5à0þPDýôÜ0ÿ8à\#!5à0þP\ýÜÄ`ÿ8øD#!5ø`þhDýôÜ0ÿ8ø\#!5ø`þh\ýÜÄ`°y!3!°0™ þ#0°üy!%3!°0™ü%þ;`˜y!3!˜` þ#0˜üy!%3!˜`ü%þ;`à!!5!3àþ °00Ýüà!%!5!3àþ °0ü`Åø!!5!3øþ˜`0Ýüø!%!5!3øþ˜`ü`Űÿ8y!3!!°0™þgÈéþ#0þ$°ÿ8y!!!#3à™þg00\`þ<é˜ÿ8y! #3!!#°`þg0 þ#0þ$˜ÿ8y! 3!!#°0™þ`DÝþ#0þ$ ˜ÿ8y!!!#3øþ``D0þ$é˜ÿ8y! %#3!!#°`þg0ü%þ;`þ<˜ÿ8y! 3!!#°0™þ`\Åþ;`þ<$˜ÿ8y!3!!˜`þÈéþ;`þ<ÿ8à!#!5!à0þP°!üÜ0Ýÿ8à!#!5!à0þP°!üÄ`Åÿ8ø! !3##!˜`0þPDÝýóþ$Üÿ8ø! 3#!5!3à`þh°0DýôÜ0Ýÿ8ø!#!5!ø`þh˜!üÜ0Ýÿ8ø! %!5!3##°þP˜`0ü`ÅýÛþ<ÿ8ø! 33#!5°0`þh\Åþ;ýÜÄ`ÿ8ø!#!5!ø`þh˜!ü(`aÿ8yD!!#!yþg0þPD0þ$Üÿ8y\ #!5!!à0þPà™þ$Ä`0ÿ8y\ 5!!#!5°Éþg0þPD`þ<Ü0ÿ8y\%!5!!#°þPyþg0ü``þ<ÿ8yD#!5!ø`þhyþ$Ü00ÿ8y\ #!5!!ø`þhøþ$Ä`0ÿ8y\ !5!5!!#˜þh˜áþ`0`þ<ÿ8y\!!#!yþ`þh\`þ<Äy!!5!3!yü‡°0™0Ýþ#üy! !!!5!3à™þgþ °0D0`Åüy! !!5!5!à™þ7þP°!þ;`0Ýüy!!!5!3à™ü‡°0\``Åy!3!!5˜`ü‡DÝþ#00üy! !!!5!3øþþ˜`D0`Åüy! !5!3!!˜þh˜`þ0Ýþ;`üy!%!5!3!yü‡˜`ü`Åþ;ÿ8y! !5!3!!#°þP°0™þg00Ýþ#0þ$ÿ8y! #!5!3!à0þP°0™þ$Ä`Åþ#0ÿ8y! !!#!5!3à™þg0þP°0\`þ<Ü0Ýÿ8y! !!#!5!3à™þg0þP°0\`þ<Ä`Åÿ8y! 3!!#!5˜`þg0þPDÝþ#0þ$Ü0ÿ8y! #!5!3!ø`þh°0™þ$Ü0Ýþ#0ÿ8y! !5!3!!#˜þh˜`þ`0Ýþ#0þ$ÿ8y! ##!5!3!ø0þP˜`þ<Ä`Åþ#0ÿ8y! %#5!5!3!!#°þh˜`þg0ü0Ýþ;`þ<ÿ8y! 3!!#!5!3àþ`þh°0\0þ$Ä`Åÿ8y! 533!!#!5˜0™þ`þhDÅþ;`þ<Ü0ÿ8y! %!5!3!!#°þP˜`þg0ü`Åþ;`þ<ÿ8y! 3!!#!5°0™þ`þh\Åþ;`þ<Ä`ÿ8y! #!5!3!ø`þh˜`þ$Ä`Åþ#0ÿ8y! !5!3!!#˜þh˜`þ`0Ýþ;`þ<ÿ8y! %!5!3!!#˜þh˜`þ`ü`Åþ;`þ<ÌyŒ5!!5!!yü‡yü‡ü0À0hÿ8(!3#3#h0000!üéü°ÿ8yŒ !!!!#°Éþg™þg0Œ0`0þlhÿ8yD !!###hþ¯0`0D0þ$Üþ$hÿ8yŒ %263!+!!ø+çoþ¯0`0þû0þlT0ÿ8àŒ #!5!5!5à0þP°þPŒý¬”0`0ÿ8(D ###!5(0`0þ˜DýôÜþ$Ü0ÿ8(Œ %#!=!#˜0þ˜(0ûþ=”0`0ý¬$°Ìy! %3!!!°0™þg™ÌUþk0`0hy! 333!h0`0Q þ#Ýþ#0hÌy! %!373!yýï0`0Qü0UýÚaÅþk0Ìà! %!5!5!5!3àþ °þP°0Ì0`0•(! !5!333(ýØh0`00Ýþ#ÝÌ(! 3!5'!5!3ø0ýØø`þhh0!ý«0a0•°ÿ8y! 3!!!!°0™þg™þgÈéþk0`0þlhÿ8y! 3!!+3ø0Qþ¯0`00!þ#0þ$éhÿ8y! 33!!!#h0`0Qþþ¯0Èéüéþk0`0þlÄÿ8à! #!5!5!5!à0þP°þP°!ü”0`0•ÿ8(! 3+!5!3ø00`0þ˜h0!üÜ0Ýÿ8(! 35!3#!5!ø0ýØh00þ˜˜Èéü$0•þ;ýÜ”0ÿ8yŒ !!!#!5yü‡yþg0þPŒ0`0þl”0ÿ8yD !!###!yþ¯0`0þ˜D0þ$Üþ$Üÿ8yŒ !!!##!5!yü‡yþ¯0`0þ˜˜Œ0`0þlÄþ<”0Ìy! %!5!%5!3!yü‡yü‡°0™Ì0`0•þk0y! !5!333!yü‡h0`0Q0Ýþ#Ýþ#Ìy! %!5!3!)5!3yü‡yþ0Qþþh0Ì0%þk00•þ;ÿ8y!!5!3!!!!#!5!°þP°0™þg™þg0þP°\0•þk0`0þl”0ÿ8y!##!5!333!!#ø`0þ˜h0`0Qþ¯0þ$Ü0Ýþ#Ýþ#0þ$ÿ8y! #!5!3!!!#%5!3˜0þ˜˜`0Qþþ¯0þh0È”0%þk0`0þlÄ`0•þ;°y¨!#5467à0øÑ«îºç0×Èù¼%!!ùýùÈôÿ8ùÿµ!5!ùýùÈ}ÿ8ù2!5!ùýùÈúÿ8ù¯!!ùýùÈwÿ8ù,!!ùýùÈôÿ8ù©!!ùýùÈqÿ8ù&!!ùýùÈîÿ8ù£!!ùýùÈkÿ8ù !!ùýùÈèÿ8š !!šýfšÈèÿ8; !!;ýÅ;Èèÿ8Ü !!Üþ$ÜÈèÿ8} !!}þƒ}Èèÿ8 !!þâÈèÿ8¿ #3¿¿¿Èèÿ8` #3```Èè|ÿ8ù !!ùþƒ}Èè£ù !5!ùýù£}™ÿ8ù #3ù``Èè#Ö³)!ÖýM³³#Ö³)!!ÖýM³ ý³ýmsý#ZÂ)ZüÉœÂ#ZÂ% ! þµþ³èüÉœ(5ýË(Â^ÿÆ ü^Â:6þd#ÿòZ³ Zþeþd³ý?Á#ÿéZ« %!sKMý7þdƒýË5(ý>^ÿÆ ü ý>üüÊœ#ÿòòÁ ‹þ˜hghgþ™$ÿóòÁ% ‹*þÖþÕ+þ™gg0*-þÓþ™ggþ™Òä 33' Ñ¿Ä?½Å¢¤ykþ’þŠ:<5þÎ#ÿòõÄ "32654&'2#"&546‘‹ÃÀ‰ˆÁÀƒ‘ÒÔ•–ÓÖ¤¾ˆŠÂÁˆ‡Â Õ”•ÔÕ—•Ñ›r )4=GQ.'7'&#"'632'654'>7'>7&47#"'7327%.'n?"+ È ! + Ki  ?+þÊ A*=MM;##"& !þñ-#ß+"; HHï!" # ù +*À   ++þÌ #@#  þóIn <#ÿòõÄ 2#"&546’‘ÒÔ•–ÓÖÄÕ”•ÔÕ—•Ñ#ÿòõÄ2654&'2#"&546‡¾Á‚‘ÒÔ•–ÓÖ¤ýnÁˆ‡Â Õ”•ÔÕ—•Ñ#ÿòõÄ"32#"&546ˆ„Á¾‡™ÖÓ–•ÔҤ‡ˆÁ²Ñ•—ÕÔ•”Õ#ÿòõÄ!4&#"4632#"&C’Áˆ‡Â Õ”•ÔÕ—•Ñ_‡¾Á‚‘ÒÔ•–ÓÖ#ÿòõÄ32654632#"&C‡ˆÁýNÑ•—ÕÔ•”ÕW„Á¾‡™ÖÓ–•ÔÒ#ÿòõÄ 2#"&5463265!’‘ÒÔ•–ÓÖ“‰ÀÀ‰…Äþ·ÄÕ”•ÔÕ—•Ñ ¾†ŠÂ¿Ž#ÿòõÄ!"4632#"&CI‡Â Õ”•ÔÕ—•Ñ_EÁ‚‘ÒÔ•–ÓÖ#ÿò“Á &'.5463“VA`yÔ‘Áý1)¸j’ÕÿòÿÁ 32 ‘Ôy`AVÁÕ’j¸)#Ö³!ÖýM³ýM#Ö³)ÖýM³#Ö³3!#³³#Ö³!#³³ýM#Ö³ )!!ÖýM³ þƳýmsW«>ö=#Ö³)!!ÖýM³þ§þƳýmsý#Ö³7!!!Cs ýM³ sým³#Ö³!!!¶ý“ýM³“ý ³#ÿÒ4ã "32654&'2#"&546±”Ú×’‘×ÖŒŸãë¦ãêÃÓ’•ר‘Ø éŸ é䨥à#ÿóà !''!™U çYçæZêÃþò®þ쪪®#Ï ''%77'7'žbÏFìæ<ÑgHì°0¶¸>¦ÜÏò¸þó—— ¸›¼Ôz|Ò”7¥n*732654.#"4>327632"'&`*5% Hg$A)If)%4@/N;ë ë2°A?×*B$hG &3+gH3Q- 2ë  ë=MY~??7ÿ”§q2=2>54&#"".546327&54632#"'4&#"32#/I(sPQrsP8Y1 ‹aPBV;Ša8X2 EEbR?W;ECùuOPstOQD!/:*QrsPQr((9F2b‰2²CYaŠ(9F2`GE3²CYaEE¢ stOQr"Š­609EOZ%+!"'"'>7654'#"'67>32#"'.''627&#""32654&%#"&'32%#"&'32Aþx !$ (A¯ZY¯@(ü<<E):8)(99 =$2%,þ/ ,1!7È=^U  C!!D  h))N8()99(':   ÿÿ#Ö³ ~#Ö³#)!!74632327>763#"&'.ÖýM³ ýT3  7z&#IJÂ5 ³ýmsýç/]­" Oþòc $Wÿÿ#Ö³+‚v*= ~ÿÿyö:M#z8*;"54>326#"'&547.547&5467'"%632#"'32654‰f™ÝZ2¥, (5'M4:h64 l• #1*$ $(B.[=+.U 6 '!_qPO]SK®#z8*;"&##"&'&'.54>7>32%327#"&546327l 46h:4M'5( ,¥2ZÝ™üðR($ $*1# !' 6 U.+=[.B_®KS]OPq#…ˆ/+/Ycv…“%0##"&547&547&547"&546326323275'#5#3"32?32?#32?>75"&32?&#"".'32654&#"2654&'.#"'32654&/Ð(,6X "‹i¢£$+(| Èi S#6F?6þÜ#G$; +'2% C6 O. ,€þ0e€G?üE$] !   ` lg J# 8¡2 $!. L" þ¦ 1Cþð@G  15*# ÆR=R¨  *! ˆ 1 "*$  ÿ¨É *.[dw†“47&5463263263246323!'753.5!4/&#"''5.'&'#346"6544>7&#"32654&'3267>54&#"74&#"32?;2 # / K" þ¦0Cþñ?H  04+ #.  ÆR<R¨ * " ˆ 1 #) # `-6X "‹j¢£&*)|Çh S#6Fþä>6$"H"< ,(2$ B6 !  R,  ,€Ñe$HTüþº$ 2[!"   b lf J"8#…ˆ/*.[i}¤%".'#'732632632##"'33275.'.'#'7327'732654/&#"%327654'.#"#"'&#"327>4"327>54&"32654&Û4F6#S iÈ|)*%£¢i‹" X6,þˆ 6! .O 6C %2'+ ;$G#(4G¯''„= !. ]N  (7  ' #J ¡1 Z "L .!$ 2Cþð"Æ  #*51  G!DR  ~% !* A&   Q $ ÿ¨É ,0]j}¤4>7#5'7!##"&5#"'#"'#"&547&!#3>7>757732?654'&'.327>54&'&54?4&#"324'&/.#"3264'./&'&#"326;0Z "L / # 2Cþñ"Æ # +40  H"DR  ~$" * A&  R  # T4F5#T hÈ |)*&¢¢i‹" X6-i7!-Q 6B $2(, <"H"%4þïH$³#'…< !/ ![1N   '7   "J Þ»"_go€#"/.5462#"/7326767632#"'#"'&'#"'"54>767&'#"547&54323254#"3254#"3273254.3  ?ZˆY !  !  !$ C"W0 !'O?R, ?2<6.  "?I2+*%&%&…&%$' {290?HI>&E0(--¾#5  ' ) 75"13 $%  6 +.&)+.&N  VÌI"46462#"&#&'27#"'òn1×Y¥%2$$$ØD\×1a6nEXVKG¹7Z‘ê$%##*$‘U;ª¸,(ÿû¯q&Kn|ˆ•4>3"&#"&'4>7&%4&'2654.#"'654>2654'7323272657#"'#"'4632&#""&6=63&'2.54¨,5**< <* #/K?R$:, IL?*D( NO$4)K-# )< þ¶?Q#  #D?-D"A/SB9Rn8,‡H.:4 /(0(¡ZD1 à Y2A·*D( %1'&2$) HV@("&:T*$CCN,6*%"i=5*!#*> D )#/'þHW;!  !'1R ! $!GDZ/ ) þùm =\µ`$V<#̳7'75#535#53533#3#7#ÏH"j¬¬\\Q\\¬¬I"kQe!H1¶PPPPPPPP!H2Š#̳3##5#535#53533 ¬¬Q¬¬\\Q\ÍæP——PæP––PHÝš"32?#"&54632373'7ïz¨TXSs6V=ÀÂŽh^aaONNm¨xwTX#!‹ŒÁCä\\8]99]ÿînúlu4'6.54675#7.5467&'7#>54&'&'"&547&'"5475"&547>77>54' V+!ª dH15$,H$J-AG5 ZZ 5GA-Jfr>(Ge |3Z&l&Z4|ö!+V ô5?Z'< Eþ«3IGS#Lx$!,-J*# ,&X4=Y .. Z=6V,`[;x#zK-gRQ`J   08v$**$v80   L° <'Z?5+HÜ”(#"'&54763'6'7654.'Âaaˆ‰`aa_Š¿«`ˆ«TW-]Q3HÆîG3Q\-”ˆŠ_a`a‰ˆaaýܨðî¬BD)FoAnQÉÉPoBoE)þèCÝš ,832654'&#"632#"&546324&#"3262#"&546YCBY\[€Jt@* ‡AZÈþÉoÀÁŒÀÁRD\]C|\Z5J^@œXD_‹ŒÁ‹ŒÁ2&ô 35!%5!%5!2ôþ ôþ ôddÈddÈdd2&ô 53%#55!%5!^ÈþÔÈôþ ôdddddþ ddÈdd2&ô 35!'53%#=!2ôÈÈþÔÈôddÈdddddddd2&ô 53%#553%#55!^ÈþÔÈ,ÈþÔÈôdddddþÔdddddþÔdd2&ô 7#553!5!5úÈ,Èþ ôþ ddddddôddÈdd2&ô 53%#553%#=!^ÈþÔÈ,ÈþÔÈôdddddþ dddddddd2&ô %3+5373+53'!!^ÈÈdÈÈdÈÈdÈÈÈôþ dddÈddÈd2&ô 53%#553%#553%#5^ÈþÔÈ,ÈþÔÈ,ÈþÔÈdddddþÔdddddþÔddddd CÝšYp…š¯¹Îãø %&'#"54323&'#"543247#"543267&542&5432#"'632#"'2632#"547"54&'&'&'26326326323#"'#"'#"'676767&547&547&5475&547&547&5472654&"7263263263&'67#"'#"'#"67&'&'&'676767&'ƒbF"!  A !! F !"GaBaG!"! F !! A !"!FbB-         + )/  0( $&{       9 /)  (0 @@  !"Ga!"ZN!"! @ !! @ !"!NZ"!aG"!  @ !!: )/ > /) +         {6 0(K )/ -    °   HÜ”)2;4'&#"3276632#"'&54&#"'>32'"&4622"&4632³TVwxUUªxvWTýö_ŠˆÂaaˆ‰`a®*:9,A('AÛ"Ê"JxTVUWvxªUTbaˆŠ_a`a‰ˆþÖ''%--%Ì" ""HÜ”(1:#"'&54763654'&#"32'#"&'726"&4632#"&462Âaaˆ‰`aa_ŠÍTTVwxUUªxv E()E1zQ"±"”ˆŠ_a`a‰ˆaaýéTyxTVUWvxªÊ%++%%ò"" "HÜ”"*632#"'&54327'#"'264&":64&"©_ŠˆÂaaˆ‰`aâ/SQ11675"×""3aˆŠ_a`a‰ˆðBBÆ$"""ÿìË V"32654&'763232+"/"&=&'"&4?&'#"&46;67'&5462675462’PloMNno9G7U T.x x.T U5I  H7U U/w w/U U8G  mONnoMNnŸw/U U7H  I5U T.x x.T U7G  G8U  U/w 8ÿ«ÐI#%#"567>4&'&'432>54.'ÐÔž&GPPG&žÔþ³BUC/0EW?jCDk=*9™¨™7ÿ«ÏI#.464632#"&…BUC/0EW?jCDk=*9™¨™í–¹ 4°4 »7ÿ)æÝH32654&#".5467.54632326546232+"&=#"&46;`*5% HghGIf›^fG68E  fIHg  E86GrQ‚ ‚  ƒ ƒB*B$hGHggþâ ‚J@li@ IffI @il?Uy„  ‚ ‚  7ÿ)æ032654&#".546232+"&=#"&46;`*5% HghGIf›^f€°rQ‚ ‚  ƒ ƒB*B$hGHggþâ ‚JY~XUy„  ‚ ‚  7æð5732654&#"#"'&54675#"&46;546232+`*5% HghGIf†%3@.XA?sQƒ ƒ  ‚ ‚Kx×*B$hGHggH3P- ??YUzƒ  ƒ ƒ  ƒv7¥n4732654.#"4>327#"&46;2"&="'&`*5% Hg$A)If)%4@/N;É’   É2°A?×*B$hG &3+gH3Q- 2É   ‘È=MY~??3ˆ«3>32356732+"=#"&54>54&#"#"3W29=!)ªÄ Ä(Ï 33($ &(=FG:,t[,ÌÉ  ÍÍ eŒ=*3- 0ÿ>«<"&5#"&5467356323+>32;2+"5454&M/B  I I H K!V#Un]Bj^Uš.B4È   H F ¿4&ŽY1ÿF  K%(Js7ÿŒæ|4>732654&#"#"'&54675#"&54?632"/2#"&54`*5% HghGIf†%3@.XA?sQY  { { XKx×  c*B$hGHggH3P- ??YUzýX  {{ XývF  ÿþÿK© m%"264&".54675.="&54?632#"/5#"&54?632"'>=#"&54?62#"' &3+gghG3Q- rRSq 7 7  YB 7 7 BY  87 qRLw??Ò$A)IfhŽhþy%4@/UyŽzT 88 Ccµ 88 µcC 88 TzŽuZXA?7«,%2#!"&546;2#4.#2>ü þO 4@gAM,-LAdB2ˆ9AbT<32#"5654&#"¦  `N8PgHEffEHgO8S[´þU «^‰M5-FdUDDUcF.5MŠtÿñ{Ê9%2>54&#"2#".5467.54322654&54x2O, }VW}~>VEAR+322654&"23267#"&5462#"'&546ÛT;;T;C/54&#""6264&"#O8#R.ÂS“_$33$8N7  NpO6A6¨tu¨6A6NpN77N7\pOƒm9t=zM0bSQ]+'77' 8NN8:}\w4`||`4w\}:8N(7N77N#ÿ>ˆ¹NZ4>7&54&""&54&""&54&#"&4632>32>32>32#"'#"&7654&#"u)]+KjL  KjL  L5 0PP0/PO02S[:Jnœ‰  !% Ò„•U;?_® ,(3ú5KK5þ ú5KK5þ ú5K  0((00((05,+9bI²þÃl   D ‡f-ª7LN7þ$$\ù 17!2#!"&462!2#!&=654&#"!"&463!5468 ûð l’  þß}YZ{þÞ  ’(   Ñ™t  db  t™ÿ‘€¶K#"&54&""&54&""&54&#"&4632>32>32327#"&46;2"&5Xah>OKjL  KjL  L5 0PP0/PO0Fb<0OR: o  L?:ú5KK5þ ú5KK5þ ú5K  0((00((0bFþ%->  o *•k*7#"&546;2"&=#"/#"&4?'&562×y‘   þ†Š ŠŠ  ŠŠ Éy   ‘þ†Š ŠŠ ŠŠ!ÿõ ¶+<"&463!2632#"'.547"&4767>7326754&#"5 µ "Z^z#',„¸ˆ\%&Zg†a v¥+›oþÊ'7C2Km t79Ž   &N0‡pay ™^742i 2Od)þ‡;\4" _H [v;"ÿñ]¾B„%".+".#"#"54632;>?232654'54732".+".#"#"&54632;>?232654'54732¸(C,'0(!#1 8*+9 3KcC(B+(/(!#1 %D.F'2LbC(C,'02$<# &D.F'3K cC(B+(0(!#1 &D.F'3KbÞ#12# +*!#12#I5 ,E`#12#+*!5?5I4+E`í#21#.605@5I5 E`#21#++ 5@5I4,E`!þ·4##"&547>4&'&546323>7632#"'.åya \mm\ ayåya [mm[ ayGj°+  )¨È¨)  +°kk°+  (¨ed¨)  +°a¿’0;GWdo2#"'.54>32474675'53733>>54#"7"3>54&.'6326"3265."32>54C $-ÈÇ!#-% 11)%  %)% 9•)+²1h·*3!YI /+B EegCþ¡$51(}gŒ`+8EÑ 4"*"*O6CCFZ 2$#4 ' %$&&$+, €+;;+VeQ4+(2ö&.22(H Qeþ¤   5ê†"(0“¥«´Ú%3232=4&#"32>&#"62&544  "32544&5462654&5463265'&54632#"&=4654&'&'&5462654.54626%"3254'"324!"324"3254&.'&'63267&547.y,_ {45z;AÂOSWK <À< þºF£;!. 6 !A!"."K‘IQˆA ".!.!@".!6D  œ  þ¨› 63 R‡ˆQ44á-  h@{":!!9#1`r:!!! *%:C*"!)(Œ \ ::HŠ*)!!$,A,($+ !!9s[S @222@ @7?73/b F0&0//‚HW2 .?-’ˆK#';35'575'57335733573%!5%!'#'5#!75'##'5äþ¦fXZnZXfþ@°þ²BpBœA8 D D 8A„±±þ|EgÈM[[MÈgEO''c@@o8778JÿéО&6Baž"'632&547"2654"3:325432>7.5#53533#23254&'.""326326732632.'.'632327&54654.5467&4632F'OO/1(Ž/$(uw,oBI-:!q>""$""p>2)@,@;)B.1An›G6*41! &_}YL=  !17)7Gs"'' u   j  þh Q^.) .^µ,'++',ð" !¸ <" ?5  0? "? 8"?i: !h?8Z¯OMv72#"547"54632'267&!654'&+.';2673232767>3272!>7#"&'#"'>54'32636¢ ]&0 05J'< '9 i,Q' 8H;)þ]!&#'7  0x61 ìz $¼ þó,[N.Î{$@ )È  #D#(B G æ=[a/%.H&9!1( <&ý%3"/ $¸eL.L!4.54>54/&546=4&#"&5467.547&5462j**e % /±@E D3F3E!EA (N6-G' .  $ ""þè "We#2C"+,!D 1$dW! `¿!1Bm|"#"54.#"327327>54&>32#"4#"326323254675'53733632#"'.'&546322#"'.546?-5&%6,)0=%'WX'&;0§$ 'A>b“(6noä&)% " $(#/24I'%ÊÈ'I341 %-=?'­'J/1L%,'[  W',·$:"P   \(&$%%$#0&D3)6 8^DD3O5)2E<!C, P1ÿÿç…"*2›¥¶%"3263673233254'"3247"324!"324"3254&#"&54654&'4/&'&54632654.54632654&5462654&54632654'4632"3254&4#"32?3222¦A$l †þ¾  k' inÈ\}G .!"@!!7!.6!!  @!!. 0½  ª´µ-ANˆ ‚2?22 2?2 þƒA(@W 217* !#-A)-%*  !&8s^2$; !8$2^r9" ! &,)A-!!(?k 7Æ þz !šG#3'575'57335733573%35'35­eNG&o&HNeþ¨ãããGdÇMYYMÇdGÕ""´""IÿâÑš R^g%"3254#'2654+"4.54>7&4632372.'.'>3327&5467535#5##3"3254\3-7d31?%3n'(L&4/ '(1d<G4-;#"B+: !8 l4:E= # 0   *!#9j.&++&.aºM3=U2654#">54'63263632!>7#"5#'.7"265454'&#&#""32ë2%}x)= 9H<)þZ"'$&8  /éSH; .5.d' $¤%þ&("/(=[œa.%,G(:2) =  %£hZ 1E|N,·dL!&5467.547&5462ÒE E@þUAE E4F2ÆB3#dW# #Vf"2 C!,,!"OÁ,%!5>7#"&54>7#"I! þ !4R5K,FJHGKF-K5Rî5&!  !&5PJ5-J=BkCBjB>J.5J#ÿò“À7.'.5463267632">54&#"#".'&\Qm<+U>U22F=W6EžÄ1='57I. DJF.84?/ 9K‰ŽOY/?VK,6"8T;8pWÃ/F4%KFI_N&/hX[c/398 /!*J"ÿò0Á &'67>7.(¸8F¡!J¼ÁE;——;8-“Á0ù>PÜ<„äé6jµ¶j1°?0É#åÁ5!5>7#"&54632&5462>32#"’ ".F-þ-F/! O&@\S;""']‚]'+;S\@n%%9%./$:#,"(_CA\ 82?ZZ?28 \AC_#ÿò“À>32.'.54632\Y6=W5QTMQm<+U>w0JFT;6phi†BK‰ŽOY/?V"ÿò0Á &'6(¸8F¡!J¼ÁÁ0ù>PÜ<„äé7¶ %#"&46323B,-BB-3"S%..J.-7ò¶"&46323#54'&BZBB-6 ‰T‰&÷þ\%..J.-7mC”88m7™¿#"&4632#"&4632"F0/FF/:#F/0EE0:"kþs&--L-¬“þ'&--L-b7™¿5%#"&46325%#"&4632€þ¢wF/0EE0:"þ¢F0/FF/:#­==þ'&--L-Úþû&--L-¬BÿëpÚ#"577>324&#"326p;W_&( -FNW%'30;b,C|R0Ç þÊ VO=#"#&'57654.'5673;54&'567332>7332673#.+#.#"#&'#'L*J  ! XI" &'N U 0 Q$N#  %- T$Ð  *Q&M/! WQ*  )Ð%S   0 ]¬Ý $(48<'#&'675#&'6735'6737'5#5#'5#5##3355#5#¬`l=3573"o` ""Xu?53<.=k] à7 &‚@@@Ø&7ª0:<ôY'('2ô?;,/8;‚V ,* \~<5®&&û66NNÀÀ66þ¤&&#G«i2>J%632'#'"#"&546323267&'.54632'"32654&"32654&÷&K* $ _kþ^`\eb14(-D2#TE8‘091#.F_":"48%3!%0¾ 0(=7nr &2@*"2#_ ;&"0B*)Œ!1 0þœ!/$*#QŸc3<H32%632 #"'%"&5463267&#"&4632&"3264"32654&ô&_&8<)&þ‡z'8-9þË;Y '. %?.&")%'vŽ(r #(65)/;%A9X76$:*&:þÞ-#'!$#E«g5AM3727#"'%#"&54>7>7.#"#"&54632"32654&"32654&ð1ee\`¢m]"þ÷'I)F."1'55(YER#2D-(44":! 5> 2%#0%  ro6=&/ )*B0"!2 F##2"*@0þ®0!/!f/!*# #±³  *5Ax˜ ·72"&546"32654&2"&46"3264&2#"&547"32654&'26327632 #"/#"&#"#"&547>4.'&546324&546327&#"+"3267327-4654&#";27&#"#"¶$44J55+&%#"$44J44*%%""ó&/  ™8!¢cJ*@%þ»B5[CI¿03R?BQ@#{NS€#9QB=W*F æ/3C.þÛb9DKB63AÁœ8E",1þÏþ¸D43AL?C:^  'Gæ5$%44&%3&&&&²5$%45J3%4%%4%Õ   W _9 'ÂÍ=1~ ,+:LQCS) : *OBQN7%/þº, * ª>C>7CC®h&&Â/1@E6:E 8 #ÿóóÃ@IR%"&#"32654& #"&54632#"&54?4&5467>32#"'67"'6ZEÈÂþôÁ] "LÕ’”Õ×›Qm bD9>%-È 3"7‡ )6¿‰„¿¿„ygšOÒÕ•–ÐD3LÜM RyQ¡ <1Lþ« D!#ÿòó ".=%'>5%7&&#"76322"&5462#"&546"32654'.i£!'‘'þ–C¦ 1)("(;;T;<.‘ÑÓ•–ÒÖ—˜eVËŠÄo,t’V?&u>[nT'L ù¹Ç<)*;<*);Õ“•ÓÔ—•Ðo^~ŒÄÄŠ“d(.#ÿóùÁQ4&'"'7'7'7>37654654/3232+32+32+32++76x2sJ3!##!3J$=!%W% '=!1<J Fx]jJ<1!='  %W cv vc 8Æ 7  F  cc  F  7 ÅX#‰,!75'#"'!62ý”ÐvÐ;9ÐFÐÐýºÐv,þ]£)þ¯£ Ä¢77¢g£ £g¢77ÿöÂ-ft‚‘7463&54632.546327>32#"."'5332654&#"32654/&'32>3.'#.#"632>54&#"32654&'7&')0G%(& ++( ˜g8W0 •8, 3 I'M3e2›R  >L ![%( 8  M</ ôX K#§-&ß&/ Ì!&5@oqAA#Yp ,=z•(8E2pT2m >5(‹mS ' b % Loi !¢ 4™ B<™| Œu* !;4x)_o~†Œ–?67>776327#''#"'#"56?267327654/327#";2654.1432'7&"3677654&#"327326547326%#7654R# EL1=U J]& —— \hc*O4Y8í C&B%K Bx;/:|   4X¦%>K ' w   <'ìO $xX iÊZ4KA8#`  T; GgŽ8 8!o& 8%(D FF5   ²µ$B Y :!±  # ÏV$^]>2UKO ;CN#3l  *17=2#"&5467#!"''??2654/654'%>7%>7 . 0_­ $þëþN)Q|E!yIÍ#QBFþçnþ†?q+þDož ( *>>Wþû û šˆt‚|þY-%ŠRp/ iÛshàGbý$#ƒ&(-492"5'57!2"%5'%7654/'!!&!654'!!!6jNNeeÍá áþŽRRRöŸŸ(WþaB€þ•„þ|þwD® ¨NOOÍv¬w   ›b_¢_nmW‚îP4Õ()¢L#1l| ",39?2#"&546/763!27/4&+76%654''%.''%.'™- /}•Q)²$ŽþU"Iy!E«%µFBQýòŠþ’ p+þ l ' þb< = ׇš ùåv{‚rÈ*/oQ‰"þ;ïÚÞG ÞÜ#û#‹&E7"&546;32>32#".#"7232675##"&5463235."#"'#";> 8EJ:˜/',5ÏhNì5*$4G-&z'_0'(-_#w8(- =ƒ):8#‹ 2ÂU>CWK)0)xWH„&-&Bb&-&:HI0"#2FK?)0)JE2-G##gªL6E22#".5.#""#"'.5463:32>76#&#"32?64a!8/4S3:W1,7$"2   1%.J?R2'4    !o *$$* HnL*?B:  ;#"&'."M T¸:Z-pþÚQ%,Ý)GŽ4wþf–  7ƒ$ÿò+Â574&54>7>3232767632#"&'&'8    Ýnm  B)4öJ7G k˜!/'   ?'æqW  R#J/;ñ@/3 #×´  ' 7 ×þà ;þáþá; þà;yþâþà;!þß; ;þà #×´ ''7'77×®®®¬¬®®®®¬¬«­®®®®­«®®®ÿÿÿ»<”N#"&'#"&54654&54>767.'&'&5463262676327632>2<eBX  [rT#  ›(  ,%   n#[·" Š3¢‘ + -#)½kP +U ˜) $ÿò‚ÁN7#"&##".'#'?4"".54654&'67.'6732632>32Q Zy# .:O =   t2$M <&D "   ‚r   #;T hU,•2?­,"[6K¡#ض #3##5#53573##5#535##33535#¬ææ\çç¡çççççÄ¡çç¡ççpç\ææ\çFççèèçç#ç¡èè¡#Ö³ 3##5#535ðææçææ³æçææçæ#Õ² !!'#3!5#´!þßnnoþßnno!þÞnnoþß!#Э 3#'53#5#5ãííÒÑÒí¿Ñ¿ÑÒííWzÑÒíí#̳ 33###53Ê[§§[§§³µ[þ]£[#³33##'#'537#3335#5µuLANkV8Z’’’]³GME|þ¢GLu|”]þc]”#÷³ #33###53'33###537#3335#5á[‰‰[ŒŒ2¿‰‰¿ŒŒŒŒ‰‰˜UþžbUʘ¹þžb¹˜‡þžb‡˜#`S1;54&'5!#"732673#54.#!526=+"#;iV[HnF[ Oj,W<[Hþ’F] NkJZSnmS\Gþ‘32SkiN ^Eo#ÿò‘¾  #3#'#7'337/373#/?#ZiÎffÎijÍffÍRR¨RRT?}A=<<==32#"&'#"&546=#"&54632.5462Ö5&'#"&546ƒ#/% 029P:2/ *&(1'99(1''3/  9P:2/3''2'99º0 )'(1'99(1''302:P92/$1!'99'0))2/2:(':#ÿòñÁC%4>=#"&546323.54622>32#".##"& #*#!0,5OM5 0-!!MjM 6$3235#"&547&54632#"'3&4632632#"'#"&547#632"&547.546325##"&'#"&4632$(‰$H&(%$Œ%1!" 8%Œ$$ (6' &$‰%% '&!%'Š&8 "' %&Š4$G $#D%$$ '& $$%% &2##ÿó÷Á!2#"'.'.'&54>7>76‹Ås xÏ C.(ˆ& ;o12KÁ k¸Òi 6v,(P833y* #ÿò÷Á&3#.'5>767>7.'.Ç€zÌ ¾…{½-/agqT2*",)HNÂþÜ œþä¿¿œ >,-??X?#ÿô $''%7632%'7./&547ŸcÑEêé@Óf? !þë3hi"HÔÐ$1ðï1Âô¸þó—— ¸Òþû,4þÿþB¸¸!&ž›,+#ÿò 3'7'3!''!7#7'7#¡E’z7”—-t›CkÞZùöMÕiXÚ¨=ÇÆF°×'²\¤cc¤\Mþê§þí££§Ìä…Ü‚‚Ü…#ÿóÁ (23'7'372#"/#"'5'&543%7627'7'š-x]"jn%Xt›þÁ;ßâ=ÃfH¿‘5«§2“¾éuG‚MM‚GZœþó“ œîi· qÍttÍq #ÿóà !%'!5%#/%¤_Ýfþÿù`è aÔÔRRAóNÞY…þ´ËÃþî¥þç°°¥øƒþäSñbbbþäì0b’#ÿóx 3#'''!7#7'7#—{RÕ?×Z…’²ƒVâaQî¾QÒÉKË÷Âõšþýk‚­ãöï#Ƴ7'#5'7'75À¸NÅÅN¸–¹NÅÅN¹³ßv…mn„uÛÛu„nm…vß#°³ #553'77''7 mmÓ6ÒýªÓ6ÒÒ6ÓVÒ6Ó³óóýMóó×z_zþ¦z_z¹z_zþ¦z_z#ʳ7%!'#'7!5'7 ×ê=þÃê× 1Î%åþÇ9娳þ¿ç Ô +ÒåþÅ;åÒ+ Ô çA"ÿñôÂ643274322#"/#"'#"54?%&543%'&5432fÛ´þè­Ñ×±þï´¥þêºÚײþé²Ó× #ÿòöÁ #&),/7'#''7'57'777!'/'7?7'–.Ë|ÜÙu ¼7 .Èxááx¼:+15+Üjl/ÊgÖµ/4+àngþÇÔkØÁÚ{À6 1ÃwáØv½5 3ËyÝík5ÌlÜ·.6'ÕflþËÉoà¹16'Ù#ÿð•Â&#"/"/"54?'&543276272ÒÀö66öÀÀö66ùY®PþþP®­PýýQ#ÿùåº5732/#"/#"?#"54?'&54;'&327632êòËË ò+ˆ‰+ìÆÄê+ ‰„È,ŽŽ 0íÃÄï'…,é ¿#ÿùÞ»7''77''Ù§§Ù”‘Ù¨¨Ù‘»Ú“’â©©â’“Ú©#ÿÿõÐ7'''77'7''7G1®}®®}®1Œ2-ƒ-°ƒ¶¶ƒ°-ƒ-2 ¯,‚26ƒ.¯±±¯.ƒ62‚,¯ƒ³³#Õµ/3777!!'''#'7'7'7!5!'7'7'7l!`#j¼Áøú þóúøÁ¼j#`!a$j»Ãúþþïþúûj$aµþóúøÁ½k#c!a$n¿ÅûþþîþûÅ¿n$a!c#k½Áøú#ÿõ À ".8BK#"&54>7>32.54632#".2#"&547&54632"&54o<$*5L&Ç1_#*5L&Ç+H4($Zé+H5'$^­F22$#1U:  994 'ž&#iGW&#"&R³"&WÏ1F22$"DzLIþµ|IJ#ÿò Àoy%4654.'&##"&54>54&54654.546323267>54&5463232>32#".#"#"&"2654&%$   *&9"BNBBNB"9()  #$#%   *(8#BNBBNB#8(* ! %#$=++<+*9w  )0'!$,   ,$!(1( +)>o   (1(!%+   +$!(1( k!)+†+>++ +#ÿý‡¶N%".'&5465#"'&54>7.5476324&5467>3282%@%CMMC$@$3#(>m¢¢mA8)z 6"%F6 ¡(0&")%±j$*"&0(¡†% 22 %}3!( g  h &"|Ž&#53"$Ž|"& g  g (!3 ™$- D™H5&+||+&5#ÿîÌV`%4654"#"&467254#"#"&5463232654.546232>32#"/"3#"."3264&¤ 8%:]T(  Y3 6%8II8A #Y>9H C*7W$5,ICbEE`E#ÿð Á?Rf{¤%#"&54>7#"&54632&5462>32#"'#".7632654&#"?3232654&#"32654.'#"/&#"327/&54323267'#"54?— %6L ++ )FUL5$A2%LlK%1B$5LUF) $L6/  !'6)*6˜^ V&8L7'K„F1&6+",Cš>0-"+# =-&6þÖHZ6&1!UEÓN6&-= #+~!3&6XJ E\ #ÿòòÀ4=Wkƒ—±ÅÝò#"'#"'#"&547.4>7&4632632632%"264&#"&54?'32654/#"&54?'32?'#"&46327'&#"32?'&546327'&#"7'&546327654&#"76327654&#"7632#"/3264&#"#"/32654/ò*?+/SO/*@**>,.QP.*@)þ°&66J55  )1"#1)f< _h02#5.>n "" nj "00" j _!; .5"2/hQ )1"#1)f< _h02"6.>n "" nj "00!j _ < . (#1/hx>-+JaaG +->-+:JaaH+5J55J5Ïm "" mj "00" j_ < .3#1/gR, (1D1(f< _g02"5.>n "" nj "00" j_!< .4"20gR, (1D2(f< _g1#4. #ÿòòÀ  %*/4>2 &5466327#"'7.'%'%&47'>7'"264&‘ÒÒþÖÓÔ“D!#$!EE%&<¥6 þU¥6 ¤ ýé¤ >D 6JD 6QIdeŽdeÀÔ“•ÒÒ”—Ñ ¤ ýé¤ °C 6þ¶C 6RE J EE J ²¤6 þU¥6 `dHGeeŒg!¢Í:AGLSY^&547>32#"&'.547#"'&5467.547632%&#"654%>54&'3267%RRb0(IU[$5€Ÿ¬u 2&fPR/31'IT\$5ž®s 2&ea* F\V þÏ* Fþø!YWþø µC9( KªsW1%17/3#+[i´D(& M©sW1%17.3"+[d0#(ap˜'M‘™GþÏ#(ap™&K“˜I$‹°A7'/'#7'757'7'77''7'7'5'7'37?7'zŒnadc!Œg Z&Z gŒ!ceanŒŒnaec!Œg Z&Z gŒ!cdanXQ708 :k{Q¢D;rr;D¢Q{k: 807QQ708 ;l{Q¢D;rr;D¢Q{l; 807#ÿÿ•µLPTX\`d'4;7377632##"/'/"57'#"/&54?'7'"4?6327577'5'75'7'Ä  „}ˆ„„ˆ}„  „~ˆ„„ˆ~r˜rr…qssr˜rr…qsscK——K˜TDMLDT˜K——K˜TDLMDTvƒC…AA„BdBBA¥ƒC…AA„BcAAB#©A7'/'#7'7''7'7'77''7'7'77'7'37?7'rižc\X42imM"Mmi24X\cžiižc\X42imM"Mmi24X\cžU>"018fš;yx+FhhF+xy;šf810">="018fš;yx+FhhF+xy;šf810" "ÿòï¿ &2?LYh'>7#'&543'32.'7#"52#"&546#"'&54634632#.2#"&5476"&=>321Þ Í ¨Þ Í ¨ Ê wÊ Ú F####L& & e& ' tn‡N-ýùIN-žÊ Ú ‹Ê Ú  Þ jÞ Í ####mˆN-|ýpmˆN-|ƒ% & e% !   #ÿñðÀ %2?L7'7''762"&42#"&546"&54>32#".546324632#"&UƢƲÇþ‡Ç8D00D0JF)' O4)F+( L4E1- X7Ž#Dý30.V;"ByÇþ†ÇÇþ\ÇÀ1"!00DF1-W<‘!Bý10.#W5ƒ'!BpF+(O3*D((O4#ÿó¦ÅP7&54632#"'62#"&547'#"&5475#"&54627'#"&546325&5462u…5#%44$%ƒƒH43%#4…F4"#5G…5#%45Hƒƒ #$43%#4…F3F5GxM "22#$5 NN 5%#12"L=#54#>L "31#%5 NN!6%#13"M<$54#> #ÿòôà #-:GQ[g#'&546323#"&547'7632#"&547%57632#"'%#"&546327#"''&546322#"&546” 1 ‹ X#þµ X#lœ  þ]œ  v †#þû †#°&88'(88Þœ þ]œ v †#þû †#¦ 1 ‹ X#K X#‰8('88'(8$ÿòï½a'&546276327632#"/#"/#"&54?&'#"&54?&'#"&463267'&546326q "." m! *™» $$ º›* "m "# m  *™» $$º›* m¨º $$¹š* !m "." m"*™º $$¹š* "m "." n  ™#ÿóFÁ "&546324.#"326¯°Üã±­âäj$hC3 k\zˆ¿¾#׳ 3!5#!!niý¸l*ý÷ ³hýµaR!ýð#׳ )35!#!oý´lHh!ýöMfýµG ýõ#Õ³ !'!!VýÅw3ýî³xýÅs@!ýé#Õ³ )7!!VýÍw;ýî@sýÅWýé#ÿòíÁ ''7'7%7ˆ““•ú ••Å••—þŸ••Á¡••Ä™™•þ¤––Æ••”#h³#hE³ýM³#ò³#òϳýM³#|³!|þ§³ýM³#eÁ4>;#"32632#"&#'=fA W9( %4&#"#"&4632e™|6R( %=T\DIZ u’)# TzTc#yÁ"#"632>;632#"'#"&546>K{&#T2“eL)!>ZX@b.O1D[¤ÁL8PeuN5Z~Xg.9eLp™$zÁ&'3267#"'+'267#"&54632>32_K|&$T2”dJƒ )!>YX@c,O1D[ %:lL9OeuO6Z>?Xf-9eL8N>/#ÿq¹%4<%".54676;573#"'#"&5463232>7#ERx=^K1E. ! %I‚˜ ¤Mxg:8ÿòèÁ.'&547>22#"&466L(%JšJ%6G* 9SS;32.'&5462"&46›( *6B, 0082:'B­9SSvSTÀ"  L?%5%/()6*A?LþNTtTTvR#(k‹&2>2.'.546î/K2b°s!##ZM NZ%#!s‹96$ObuZ+#(@>=A( #+Yt#ÿóyÂ!.54632327&#"#"&5467»NJiI5F(2#23 Z>[8IgJNdb:Hg-HMO!AH*J4?fI;b#ÿóÖÁ9Df#"&54632563232654&54632#"'&54>7.#"654&#"632327632#"&54632Uq;5A""$1 52+" "‚?2 0 uh&8n$ 66N.B$5>5$#C `@{·M;b3! 7.46;32&5463232654'632>54'öj>Mm% 7!L> ( $/^=/.$& #' 58<)%G #  ýQ-2,H/VCM7%+S+ 1)3Z 6" $$.'%4&#!  '/ E*#ÿóò 2 &546#32+!5#"&5‘ÑÓþÖÒÕÎ$7vM "$( ÂÔ“•ÓÓ—”Ñ]H  þø## (#ÿóò 62#"&5464&54632!5#+>54&#"326‘ÑÒ•–ÒÖ[ &%C?su%ÙIQN2eTDX ÂÕ’•ÓÔ—”ÐÌ 3)8Q.Vc É/&&9$)D0@L>/!#ÿóò L2#"&546#"'632#"&54654&#"32654.'&54>54&#"32654/>32‘ÑÒ•–ÒÕË>1&18>+  bK]y!1( ")"RMF] "*ÂÕ’•ÓÓ—”ÑÓ0:(8/5L !3C]G%8  1$7<4(  .#ÿóò "#2 &546"&=35##3+!5r–´‘ÑÓþÖÒÕxxKíÖ4 þæªÕ’•ÓÓ—”Ñý¾17Mþž"* ###ÿóò :2#"&5464654&#"32654&#"732>7#"'632#"&‘ÑÒ•–ÒÕ*" _F_€cMN1 1*.(5,!ÂÕ’•ÓÓ—”ÑýØ "-?bICX(† ,#~¢6B27M#ÿóò >2#"&5462#"&54632654&#"&5463232654&#"’(15*+6;*‘ÑÒ•–ÒÕG-Z>VrVB[9@5 \F3Q0 oB84AC43ESÕ’•ÓÓ—”Ñþ•)RS4iOAURYx !+9'73326‘ÑÒ•–ÒÕ¥ &yþv! Ê~X%$ÂÕ’•ÓÓ—•ÐýÔ4"ABͺ&% ªqI )$#ÿóò !9'&54632#"&542#"&546>54&#"32654&¬/6, !,AE;+,54&#"327#"&54654&#"…+78V355‘ÑÒ•–ÒÕ‡?]/xbUpXFZ6@5![KC43DA74BwÕ’•ÓÓ—”Ñý“7[[/sgNBRC\w%-;#ÿóòÂ)62"2#"&546"&5#32+35265#"Î||A“ÒÓ•”ÓÔh&D:9  Ü“OX§NR-7LìêLÔ”•ÒÓ”•ÓýÁ®"   þÚ&&.rŠƒNk:#ÿóò &3##5032672#"&5464.#"326ˆ%54&#"#54632'2#"&5464.#"326&<=: áþßsG/3)(0=T@BWŽ‘ÑÒ•–ÒÕÙ5L]H–bT¿ˆ‡¿¹-G.'.4 QK.=.-97- ?STÉÕ’•ÓÓ—”Ñþ™JwF.l\|‰À¿#ÿóòÂ(4D"#>32#"&54?32654&+532654&'2#"&5464.#"326†16J<=PDQTCGJ8GW=MD4  d1'+.++-&-œÕ’•ÓÓ—”Ñþ™JwF.l\|‰À¿#ÿóò )##5#53'32#"&5464.#"326K8ÏÏ88——‘ÑÒ•–ÒÕÙ5L]H–bT¿ˆ‡¿2vv24þÌåå¥Õ’•ÓÓ—”Ñþ™JwF.l\|‰À¿#ÿóòÂ(8%254&#"#3#632#"&'72#"&5464.#"326‘`4*#/-öÉ@ASZE8F-0%‘ÑÒ•–ÒÕÙ5L]H–bT¿ˆ‡¿ ‹.8+' 2…,YGLdA8 %."Õ’•ÓÓ—”Ñþ™JwF.l\|‰À¿#ÿóòÂ+7G4>324.#"632#".7"32654&2#"&5464.#"326é64e3 19 L;LS>'+)67*&//‘ÑÒ•–ÒÕÙ5L]H–bT¿ˆ‡¿\Jh1k^Q DSAE\ 2WZ=.3C<15?EÕ’•ÓÓ—”Ñþ™JwF.l\|‰À¿#ÿóò &!#>7#72#"&5464.#"326î8SYDmMþ¢‘ÑÒ•–ÒÕÙ5L]H–bT¿ˆ‡¿H*yÇibã\¬Õ’•ÓÓ—”Ñþ™JwF.l\|‰À¿#ÿóòÂ)5E"&547&54632'"32654&"2654&2#"&5464.#"326KUU‚SZHN<;Iˆ&..%&1.+)46P41&‘ÑÒ•–ÒÕÙ5L]H–bT¿ˆ‡¿×KX%".547632"3254%3##5>72#"&5464.#"326Ý$(*'AŽ..T.*RþÊ)54&#"&5462!5‘ÑÓ•–ÒÖQ 7@=)`IG]X(F++8L%<ÂÕ’•ÓÓ—•Ðýõ*)2H+DXVA  .55+(>"6/.A"ÿóò ;2#"&5464.'654&#"4632#"'632#"547326‘ÑÓ•–ÒÖ6:WB-/R& #-'"' ),)"IRWDH[ÂÕ’•ÓÓ—•Ðþ=!1 E;N ;* ,.)&#(=*&%.U :KT#ÿóòÂ#2#"&546##3353Š{‘ÑÒ•–ÒÖ.KHÙÏRK湕Ւ•ÓÔ—”Ðþk1þÏBuu#ÿóò &2 &5462#"&532654&#"535!36‘ÑÓþÖÒÕšP+(#&GL?LcZJ(*ÒþçGÂÔ“•ÓÓ—•ÐþÎm:>/+=FfPK\_AþçQ#ÿóò 32#"&542#"&54627&#"32654&#">cD'& $/[‘ÑÒ•–ÒÕ‘Lr7;#55 D[R@4. 'x:1-5=.*‚Õ’•ÓÓ—”Ñ  q2kLJf1bIDY)XA#ÿóò 2#"&546!3>75‘ÑÒ•–ÒÕJe_LOÂÕ“”ÓÓ—•ÐkA_Ýeo½„2#ÿóò  62#"&462"&5462#"&546>54&#"32654&Ž $&#$&+,F-+*‘ÑÒ•–ÒÕè$R?@W@R\EF]!'("#+)F)Ó,N11'&-nÕ’•ÓÓ—”Ñþ´/$9KL7H !V@UXA'3#ÿóò 02"&54672#"&546#"&'32>54.#"32€$/.D'&0‘ÑÒ•–ÒÕà MLn79"55E[Q?;'=.*8:1-5›Õ’•ÓÓ—”Ñþ›"'w3lMJg1_IEY#ÿóòÂ(2#"&54'2#"&546#+33"32654äGD"'‘ÑÒ•—ÑÕ5B.0SV¹ QLNR%ƺi[¼Õ’•ÓÓ—”Ñi(#6þëö}ƒyþ#:\z3 #7!5!޳þå³×ý¾Bzþßþáà„#^ºU7%7%{EN¬þ†SþUþëuþ©3p×#Œz'' 7#P‰þwPýâ¸C²ÍβB#^ºU7'%'%'{XpSz¬N^}×q2þªt#§t &'567#k>+ÁÞ°Ôþ…+>þ•pPXTD£ZQ#|˜!"'.546763!'&54632#"&47FþY46§2/7%$ää%&70 +, 2.&%6 þüþö!7L0#{2!55!#}ÛÛýƒjÈÙØÈ#}1!55!#ÛÛý¡Ùן#š !55!'3#'3#'3#6ääþûfLLS--Z²gÀ¿g±±±±±±#aFR 353#5#3#3#3#3#—°ˆVQ‹°aGGZ22[!!^èjN‹#!‰Khþáþáþáþá#hL!55!#ÿõõþëaòòa#Ryb'#Vüª&¬Ù¥bþèøÇÅ #Ryb7  %#&þÚVý$~þ[RùÏÏ #r° #Oü±É°þªþªV"S€`37!5 5!"'&5<=K6R+#_þ¡þÅ:q`S=SèéSã#T€`%5!"#5467>3!5!þÝH-*(4(%;_T Y ãHESè#ÿœ­ 5#35­þö€€ZþB‘Y#FPm !53#5!#Š ™ÿþü” þv]í",ä]#+"ˆ3 #5!!7!!™€ þ÷€þŠvþŠvúˆþÐþÓœ#ˆ ó #+"ˆ3 #5!!7!!—‚ þ÷‚þŒtqþ‹uúˆþÏþÔœ#ˆ ó #e@M5!57!7!!%œ¤þ>þ¥´D;þ¨ž;M¶u½\¸5H¯M§#e@O%'!'5!57%!!Cþ}´]À¢Œþs:þa¨ƒeT»\½v˜Ÿ§L²#,•‹ '5#'3-#3zþÚT¦Røþýøø‹þ¸þé?QUþZòãOþÛ#,•†%5#7357%#3-øR¦T&þžøøþý,iPQ?þëdþáPáï#KHe 5!'7'!7!!7; þíþ2DD=ýþ7D Àeþñþõ`Aƒœ!9„ƒ2µ#KHe%5!7'7!57'!!;ýèDDDÎúºÀý÷D7KZœƒA`þõÖ½¶3ƒ„#Õ²#".'! !67>32ÕØ®2_Y<b8þÈþž)%ŽH¬ëþÞÈ <)x=7&#"467'%67"%.ê}*3FM#1}«þû0yS©þý  i!6O`  7i Ú ÚžÚdCÙw#Ñ>ã&547#53&54!67!%!!&”G27a¡¡þõþ­(PV6þgS@<þª ã+; K"" "!"!û1D+ÈJ1"$à'7.5327.'%&%467%ê}1#(BH4*ý»WPþýtþü ©i7  bM7!þäÛÙÚwÚI"ÿîUÇ%&5467&#">7'&#"%632&54'&(7e*#DI^Ni5S3fM>MMþûTa,ÇÙ@=0F.U )d+ ¢„72WBBÚK 67A#{¤8"!>7&'!;.'>7Xfkþ®O<{R .F=+„ (x—†‰ "ITgIl0›>O" p?žA2¬MY("ÿìUÆ$%&547#"'%32?.'327.547)þý+*aTMM7#"&54632×H%E&) HD32&547&5467L?a<5@&26 2'(=1;nL?M…JLƒL"S!0/!?4&.- //#'5R27Œ Š62O*#•{9$4654+"+"&54?654/&54;2;254&54632#"w!Q(0 ô>;,ò6 $R$%yk"º,  ;  d [ B ' ne#K¤g=7"&54?654/&546;23254&54632#"&54654#"#‚0/  ,1Þ;1+' &” #'%"! '/9K-Z8 $^!'#1N  G#'—#‘'#U F0"ctP 3#>7.'3!5!.5!#>75>K¶ªW>=VZMlÂ8k4ý…þ#Hþm{4f"8LP‚vl‰XYD8qO5t&-%`þÏ-%n9&e4èÎ%!'7!èü„wÄÄw|å!ÌÎ!4èÎ=!'7'7|wÄÄwå8!ÎÌ!4èÎ 7'7!'7'7lwÄÄwwÄÄwå!ÌÎ!!ÎÌ!èþ %!'7!!!èüÙLññL'üª=<W]üý]8JIèþ =!7'!5!'7'7W<=üª'LññL8IJ8]ýü]èþ 7'7!'7'7%!7'ÁLññLfLññLýk=<Æ<=]üý]]ýü]ËJIIJ4èÎ %!'7!53#°ü¼wÄÄwD88å!ÌÎ!±þf4èÎ 7#3!'7'7888DwÄÄw屚±!ÎÌ!ÿÏ>ï 2#"&546$326&#"632#"§!" !þ¿É‘ÒÓ‘ú夥òò¥¤Ž" "bþÞÍÍ ÏýûNééþ¶íÿÏ>ï 6632#"!!>7!!.夥òò¥¤Ž·@þÀ ¶³‚½ þ¸H ¾¸Nééþ¶ííºƒþ‹C‚¸ ¹€wþ»€»ÿÏ>ï !6632#"'7'327'654'&#"夥òò¥¤fßÝO}_}cßPTܬc}{^ݸNééþ¶í³àÝa|‘QRß°a{}cÜ PNÞÿÿ=ÿο·& ¡yX=ÿο·%#"&5332653533##5#5¿_”LvÍ3´[cª3þ¡B¤¤B¤èH„N­mÏþ-V’QÓþg™™B““BÿáËŽ 7   'DþÚ0&'0þÙ'0þÙþÛ08&0þÙ'0þÚþÙ0'þÚ0+RU?57+îîîî”@A@Á@A@fXX/".fk‡.?^/7tDrPe62"&46"2654ŒT<V==V&/"!//!"89¼¼Š2þùX2þù?2Ôƒ2Ôb#¿$%67#547>737#".' YVÞO~T[1H" Þ 73noJ:[*Zâ~«™sj»— <**  «sH"Gƒ+:d}k "32654&".54632÷ÌÊ“ÐÙŠg¸t㲨ïâ2³Šƒ¾Ç{nÎýK^®jŸÙæ‘«Ìÿÿ9ÿŠR: Ú Pÿÿÿ.= ÛSÿŠÏ: )ÚÚ3ææÙÚÚ3ææ!þAþAØØþAþAØØÿŠØ: 7'7'¿3ææ3Úþ€3ææ3Ú!þ(þ(¿¿þ(þ(¿¼2¶„3##¼úá„üÇ2,„35332ákü|¼2¶„ %335#'3##Õ2–Èú–dKî2dý2,„ 73##533KÈ2––dRüàKd ü|ж„ #3#(B)ææb1Â\šyS„Ι2„ 4.'3#>Ä !<ææ,A%Â8Z]8y"ü|Y{“}dk„ !!#!=!}îþ®Kþ¯î£Kþ ôáKKÕ©„' »» È„dýdd£>'7'KÈÈ ¼¼dýDddŠd« R– ~%27&'7>7267654&5472632632"'>54&#"#"'#"&547567#".763232746=4.545632>-VQs0Å0"0Ë 2|5 &515S. EmDCD9\M^ Q3+Då ' %5A—1V+V DLƒN0q u=  0 +5'1=  %A$8K‚%FFE]*XM6o !  )$ &Y¨6 …727&'7>7267654&543263632#"7>54&#""&/#"&5476747#".'&763032746=4.547632>ß5og:÷981ÿ"D˜> A2 ; Bh9% %D5^gŒv_ aD8SM¶ 5##& D"G9}b7lXI&V^¢#` 9ÇO  "? &6C0 4!! )p:J]¶\-Wr8'J?GŸ(5" "8-<%#"&'232327654&'&'%4.54326767#".- e> -/0/#0& ý–  <)1 $2G@,ÇG *1 2 lª/;1* ) A—1 Zp0q¡FAyŸH%#"&'&73654654&'.132$4.543267>32#"&'&y!w%: >=#BIJ?üÿ %84 W-.#(óQ  A±-GD¼vtJ ) 3JÔ,*q<\+-8N6ÿýÃx#0"#"&/432326324&5>54&'"&543KD $ 6x,L9'=):cP“JI4˜)* F0,U>A",[©A1!zU  ßÿàéZ%2"#".'&543232632#&7654&'"&543NBpI#E ¢;4G"@y^ð'#Âa ]@$#:&32d{.}OêßE0®r' Âÿú-|[#"&'.5432"54>7>7#".'&7630;2326?263263232632#".#"#g 7 .H 7"þr!F-–,4H  $ f.. );¹ ,!'>)q }Jd,&%' , ?6 þ(&+  #  " /ª &%& %' wÿôyW#"&'.'&54632"&54>7>7#".563263263232632#".#""ƒ#A-/$D)þ )U(eŽNf&3 h ò( (fˆ (D-\>+„  NPYz7'1$ .=y 5A% ýŒ "2"]ˆ'++U [~$+$ .- 55ªX{&’.5632#"&#""54376654672>7&5.5473727632>32#".'"54332654#"".'#"&54323272>7654'#"&5430;2O7XM %)&&ýó% $  >GO#z5H[RP,4 $.IP‚W` )"  0 ;&,) œ (" þÅ  P!`+G3 (D,*-`EF3 *6y6n# +::)@7 X®(–.'"56#"'&#"#"'43>67274&5.47632632>32+".'"563232654.#"".'#".'&54323252>7465&'#"&5432c u:  S)=  "Zýn;&)6G *_ $^/.ŽC^pe`5E5%Ua !E1jz 4*  %L-)-4ý; þu Ÿ7¯ &8W " )V753wVW> 3E11FŒP($J IG= C ƒ ²*‰"&#""'432627654#"1"54'.5456"54>7#".'&54323263232>7654.547632632#".'&52332654&#"†47U. @/e@)ý5   !   J"P&,-=, 3(NY4!(D#7 1N&D7!=þï9³…   %#?&Y  v A.:ÐX$$0&îV=3 S„cNƒ é =™#".'&7#".'&52&'.5456#"&#""'432632"54>7#".'&54323263232>7654.547632632#".'&522654&#"é $ <'P #C%1 ?/!e@)47UýJ5   !   J"P&,-=, 3(OY4!(D#G#2 -R%0+¹1O%D7!=þ¾9³…   %#?&Y  v A.:ÐX$$0& îV=3 S„cN™ÿÒ-KŒ23%'#".'&7632;2367.'.'&563232632>32>32"##".#"32632#".5467632&'#".'&5432326ø ;™( !  ©    ! T"8S0 (]+&2, %/:T/XyuK*‰ YQ!Io6jZ $lg<Ó- 7# )Ç*œ(  4$€$  K` !((g"'\ .C97`?%œ $™ÿÒºK©#".'&52#".'&5223%'#".'&7632;2367.'.'&563232632>32>32"##".#"32632#".5467632&'#".'&5432326º  $'5(Q "D$ý ;™( !  ©    ! T"8S0 (]+&2, %/:T/XyuK*‰ YQ!Io6jZ $lg<Ó- 7# )Ó $1 -Q&0)ó*œ(  4$€$  K` !((g"'\ .C97`?%œ $/ÿî¼J0%#"/.'&547>?>=4&54732¼ k >|D/c0 !%)VL , @l4o { Jt6,:0 TE # E)5#@=  ,V:vCv J#".'&7#".'&52#"/.'.54?>=4&5472172v $ <'P #C%z`‰$(D‡I8#2 ,S%0+þn BE 5 &7‡@  A'!@c!   $1}Raÿ̧!Is2#&7>54'#".54163232>74.'&54326%>7632#"&54654.547632tŸ *8[JVj $ M#[; /#˜ýfL # !&0B 39]E?(37iç™' +#  D<5 "R p.9œorB 9e8e„Šñ 5 ŒÉ"bŠ#".'&5432#".'&52#"47>54&5#".5232>7.'&5432632%632#"54654/0414'&5432É  $O  C "D$Mx.FRDJ` &  K_= U •ý`T(<".Â$1  ]&0)q*ElCC B^ψ  /2 )%C) F w'0Šfo/¦0[50Ð|Ö ,Ç'?Ì@%2#".'&5463326+"##"546727.'.54332632 “^KxE1)-%6FD× -nfKl!švlCBIˆ$/# S'"' !÷( 93 Ç'É!@b#".'&5432#".'&54322#".'&5463326+"##"546727.'.54332632É  $O  C " J $l“^KxE1)-%6FD× -nfKl!švlCBI®$1  ]&0 )þ$/# S'"' !÷( 93 Áÿô=f'#".'&54763232632327.'.'&4326327632+".#"72#"'.54>32326°R¢=5%" ( Ý   4 * V O"   TN\( +* DDV-2I"Áÿôîf ‡#".'&54632#".'&52'#".'&54763232632327.'.'&4326327632+".#"72#"'.54>32326î $N  P " L %îR¢=5%" ( Ý   4 * V O"   TN\( +* DDV-2I"ÿi@-454&'&543232>7632#"&+  +$Mºo.U,O?Y0hN  m  #C¯•FO@ NK&P(:uù#Ð M#".'&54632#".'&52%4&54323267632#"&54654&546Ì $N  P " L %þ‰ ' #FZÎDY0RU2\Eb%0 C'/ 'K 3xˆIb4R%3f€bÎ# Lÿ¿§A a3267.#"'26754&547632632#"&+#"7>7#".54>3254'#".'&432‚W,=  #8F„"ø9, 1 P8XAž590V )X'7#.*3' 'CþÛ!$& ‘7M7OOÞ"‘  " ,  3@,""q&3: #žY# 6&'?%  4'+  Lÿ¿§L#/…#".'&5432#".'&74323267.#"'26754&547632632#"&+#"7>7#".54>3254'#".'&432ƒ  $N  Q  " J $þPW,=  #8F„"ø9, 1 P8XAž590V )X'7#.*3' 'CþÛ!$& ‘ß &/  C '/ $þlM7OOÞ"‘  " ,  3@,""q&3: #žY# 6&'?%  4'+  fÿû¦~".=47#".'&5463227>54.54763267>54.54763232#"&'#".'&7632327>7"32632†Vq[*p! 65 D3 ƒœ3 iX }+  2 ?p¥ '#*&.’ S0ZF0/`. "-$?' H? ƒ$5 ^F %X#* 2) pD„ "  fÿûÝ›#".'&52#".'&52".=47#".'&5463227>54.54763267>54.54763232#"&'#".'&7632327>7"32632Ý  $'5(Q "D$þúVq[*p! 65 D3 ƒœ3 iX }+  2 ?p¥ '#*&.’ St $1 -Q&0)ý 0ZF0/`. "-$?' H? ƒ$5 ^F %X#* 2) iD„ "  wÿßG+Q"&54>76?67"##"&563232623263$32#".5467#"” AB­  nB*=  ö &6—: ‘;- 5œˆ0DD0IQ=Ž”‚þãW m  *c~ :=$(W'm'Q 3Z>1C! #:_2Pw5 3wÿߨ+ m#".'&7#".'&52"&54>76?67"##"&563232623263$32#".5467#"¨ $ <'P #C%ý< AB­  nB*=  ö &6—: ‘;- 5œˆ0DD0IQ=Ž”‚þãW ~#2 ,S%0+ö  *c~ :=$(W'm'Q 3Z>1C! #:_2Pw5 3mÿçŸ,6Pn"546767#".5432327654.5476327632%"&546746232632"543>32##"5467.+"&‰m- =:& \69 ´ 7t[Psn9M 3Ÿþ— t9 =5/4CLI$ÊMrn$&<:&! W> þÒì'@3 1 4,  5Ù  & mÿçŸ,VpŽ#".'&7#".'&7432"546767#".5432327654.5476327632%"&546746232632"543>32##"5467.+"&e  $ ;(Q  " J $ýum- =:& \69 ´ 7t[Psn9M 3Ÿþ— t9 =5/4CLI &/ -R '/ $ýl$ÊMrn$&<:&! W> þÒì'@3 1 4,  5Ù  & ‘ÿñ_^T"&54>7"#".5432327654.5432>32>32"43>54&#"G $K' 0GT 5 =…Bš4  Rn=d‹5*F5Zˆ’_M8—,)€^ 70 1?. !#= ( Jt*$*!`M3b& ‹R;S24~ #ƒ#".'&5432#".'&7432"&54>7#".'&5432327654.5432>32>32"5&3>54.#"  $N  Q  " J $þ  %P  O $P 7 Dˆ,>}6  Wt>'OS4cI5aIq=' 'E+;—5² &/  C '/ $þU $qT2 7* !" # Af$% A,[P /3<* #*5¹ÿõ‰,"&54323263>32#"&#"543>765.#"#ù+ f}9dx‹e>\€H=BuP6 &!kPK‹J(:+7$((qWjl2"&543232632?632#"&#"543>74&#"È: % 'p{gOu:#9CG6RIhT>`yFMQË?)+1NN'6Z<,  &8d?Wf!'!qWÄ;!T#".'&5432#".'&5432"&543232632?632#"&#"543>74&#"Ä  $O  C " J $ýU: % 'p{gOu:#9CG6RIhT>`yFMQÛ$1  ]&0 )ê?)+1NN'6Z<,  &8d?Wf!'!DÿùaåB4>7##".'&54323767>32#".'&š*>THL )z)bn[   dÕÖm., ª† &"C60rˆ=kIC'+   +   T“k/$(V2/Dÿù°åb#".'&7#".'&74324>7##".'&54323767>32#".'&°  $ ;(Q  " J $þ;*>THL )z)bn[   dÕÖm., ª† &"C60rˆÑ &/ -R '/ $ª=kIC'+   +   T“k/$(V2/í";07467.'.5432>32#32632+".í_G P6 ;Æ"c²<Z=j‰"¨"#ÁÙLÓ>u.-“˜ ß!T %7#AJ'@0*Kí£; K#".'&7#".'&52467.'.5432>32#32632+".£ $ <) " L %ýš_G P6 ;Æ"c²<Z=j‰"¨"#ÁÙLj8%0 '/ 'þœ>u.-“˜ ß!T %7#AJ'@0*KŒÿëˆD5A€7"54>7#".'&5432327654.54763276323267.#"724&54>727.54632#"'&#"#".'#".4>Ì"P*2%W S Ls$R}McvE/1S a(=¢#9:@- C3@H6 26* PQ = Z63L"&Nî*4‚L 7&%5Q'œ°"Œ4//,PTAW+++ 760?&D082*! $woö7a%#"&54>743232632.#"#"'&7>32+"#4676%632#"5654&54654&'&432oÞ~ª  ’62 s :-wZ  WCc)#W)>'ýôg *! 9e6TC& "&'Û $ %%& T Y²vERâ Sg"<6CŽõ K  X?­ …%327&#"67327&'47.'&54763267654.547632632#"/#"&54>7632654.#"#"/#"&÷V%KCD95WÊ%5"Es &"&G¿¤$ K VP  1D2x 3Rd6d%8*HN' ,P232654.#"#".'&'G1(G^'<þü1$iœ  8  !ì¥.B" 59^Hd,?63F**€ò |5)!!.@28(¬ 5 Äe:$ ,3=*! 6 ?%N/é*FJ)TH! 0QG'* !<>:Q(þô6} (O>…»(74&#"#".54>32"6762>54&'P¬ˆ&y¤1#?+Wr¢W“¶" ;'Kßý|†nJˆW3Pozª -Ø»W][i\=À„%>4&*, “6˜¸)^ Zd\+u‘ÿï‹- \…%327>7&#"%4.'#".'&7432327&=4.5432>32#"/#".5462667>7632#"&5454&'&5432žK3>- \?&F ,4?E  "D 4 )= Uj_Dd /7).F"T„OþM2  ) L +" 3|> 3Y3j  $&C%  ' #   ;ÏE *5  >)+$ (5± þ½lE( 7&#"%4.'#".'&7432327&=4.5432>7.52#"'#"/#".5462667>7632#"&5454&'&5432Ë $ <'ýÓK3>- \?&F ,4?E  "D 4 M#'& N>_Dd /7).F"T„OþM2  ) L +" 3#2 -ýÔ> 3Y3j  $&C%  ' # #  ;ÏE *5  >)+$ (5± þ½lE( 7&#"%4.'#".'&7432327&=4.543267#"&54622632#"/#".5462667>7632#"&5454&'&5432]&&þ&K3>- \?&F ,4?E  "D 4 t)(:)Uj_Dd /7).F"T„OþM2  ) L +" 3ê&&ý­> 3Y3j  $&C%  ' #)))%  ;ÏE *5  >)+$ (5± þ½lE( 7&#"#".'&543232632327674&546;2F0<,E]m’ANP ‹ m – 8PO87+.9±H&   7AªF -‰ƒ€%8ˆm>Œca*()!BQ\pfXçv|<8.Oy1‹!Óðt#".'&5432#".'&52#".'#"&54>7&#"#".'&543232632327674&546;2Ó  $O  C "D$ ** 5$A[g‰=IL we’ ;'F,ªD"   4$1  ]&0)þÍv¡ !Ztle7ƒl@Žba*)(!%$#!P7I)8- är=?Vy+‹!®î f2"&546"264#".'#"&54>7&#"#".'&543232632327674&546;2h)*8))/&&2 ** 5$A[g‰=IL we’ ;'F,ªD"   4¹)8*))&&þ°v¡ !Ztle7ƒl@Žba*)(!%$#!P7I)8- är=?Vy+y Žûh7>7.54654.547632#".+"4326727.'#".'&763232654'#".'&5432Á "$5;Q.1f#"A *L7Äw (B$D®<' 4E!8.'– )t L',ˆ0&5   $(" M7*w  7R-,)= 2 :($* Ÿ$\(Cy Žûˆ#".'&7#".'&7432>7.54654.547632#".+"4326727.'#".'&763232654'#".'&5432Q  $ ;(Q  " J $ýÁ "$5;Q.1f#"A *L7Äw (B$D®<' 4E!8.'– ) &/ -R '/ $þ{ L',ˆ0&5   $(" M7*w  7R-,)= 2 :($* Ÿ$\(Cy Žû {2#"&46"264>7.54654.547632#".+"4326727.'#".'&763232654'#".'&5432Ú))))0&&ýº "$5;Q.1f#"A *L7Äw (B$D®<' 4E!8.'– )i))):(&&þ= L',ˆ0&5   $(" M7*w  7R-,)= 2 :($* Ÿ$\(C?–™l-"".'&5432326232>32#"'.œQEH&# >=S%($%!"8šQ PSRN;H;# 080 #&>H J®eFo¬žÃ!L#".'&542#".'&5432"".'&5432326232>32#"'.I $ O  P # J %þÀLBD$ :8O$3?$0”RW¹dV#2 A%0 +6@6 *2*6'1rG LÌ`o¬ž² =2#"&546"264"".'&5432326232>32#"'.µ:)))X&&þ¹LBD$ :8O$3?$0”RW¹d²)))&&G6@6 *2*6'1rG LÌ`•#nß o‘%326?&#"&'#"&#"&'"56323263>32632#"&'#"&54632654'+"&'&432327&%632#"5454&'&5432qT()I QE1D %ƒ   `)•  & ^  IQBD 08'YS}=1F,$ #Zcþ| n(+'6-  3Œ'&%2lV % %  RB(%* "& ,G(>-?Z „ ½WD ÚPv0-¥^*L"•#Õß '‹­#".'&7#".'&52326?&#"&'#"&#"&'"56323263>32632#"&'#"&54632654'+"&'&432327&%632#"5454&'&5432Õ $ <'P #C%ýìT()I QE1D %ƒ   `)•  & ^  IQBD 08'YS}=1F,$ #Zcþ| n(+'6-  33#2 -R%0+þt'&%2lV % %  RB(%* "& ,G(>-?Z „ ½WD ÚPv0-¥^*L"•#¡ß£2#"&47"264&326?&#"&'#"&#"&'"56323263>32632#"&'#"&54632654'+"&'&432327&%632#"5454&'&5432?:())F&þT()I QE1D %ƒ   `)•  & ^  IQBD 08'YS}=1F,$ #Zcþ| n(+'6-  3…):((:&&þ'&%2lV % %  RB(%* "& ,G(>-?Z „ ½WD ÚPv0-¥^*L"à X? l%32>7&#"7254'".'&5432;&'#"&5432;5.'&54632>3267.5472#".'#"&546E-/> 4KO=±"34I_  ~G 9Ø j€+ A#=òh NF}p‹Hm2Sn@Us{,"5' 6` .Q* Q32 e%9  0U/ ,‚5$c 5QNY>3;67"#"#".'&547632332632654.52#"/"'4>767&'#"&&ç9#  &ÎL9\#:$5v0) H!.$)F>!L }H.n š{"323>7&4632465"&'"5432?4.547632>3232>54.54632#*#"54>5454&#"#".5#"&ê%.' ˆQ0 +j !u 54 4ofN$Ab'|p---#$Y9 #5//c(ABPu[>Z.3EŒ(!,d: V5@%7 >42+0 # # G36x".1-Xx56HNX‚;(5„h%6  2$QPžc673>7&467'&'.'&54763267654&547632"1"'47654&'".'+"&4+_7j•TH2!:9)ÏQ] O  w}%1F`N7O?.Vö—Cz( H5'IÛ=uŒo_@x.(U?N‚“2H9+ , J$Jb"#((:e>o[%b¿g‹„­k b4i›ÿÒWQ k67'4>7.'&7632654.547632#"'#"'32>7654.12#".547&'& X=%cZÕ?RQ:@K At>  I! 0 1>+9GZ/S6!  +- &7a;%HG+Ob-S^^ 0P59 #+'!<#-1* > wY ;5EQ+BM$  E-"@f'@TE0.\?*C >™ÿð9W%"'./#".'&563227&546;274.5432#"&#"7632#".'"54332654&#"M, 3+;5   --+/0,  G 37#toKZDH5)5 &.A2<1^½NV dQ)c *  >)( < "F*(A,/8  +%0S |Ž5Bÿæ‰`%#"'.'&'#".'&543227'.546;274.5432+"&#"7632#"&563232654&#"b  A6 4J+! 77 @ A=: !X @,/! ‘Y;S'ZC‡3L@M>xë_n' #€d3W&!4  :5$ ( J  #$B52-*:E*6$.7&'#"&5&54654&5432>7&54>32632¢AK#:×/ 9F7) `"H%µ!#`   X%! %* # +E% 0F#$F‹p!5zL†bgM';*-þêQ›/"UPhj Q  -3[_@ / o )]   ‚&+I,L[?V'>@!&HH+·o d67.'"%32654.'654'#"4767&'#"&54654&'&5432>7&54>;2632#"Ž\U* %E ;GW%0!u, :N&Š38m J   4 , 7$V*59+ .N2)éš)3 a¦yc2M) <þ¥cÆ70hV€z~9q=v° >Q(ˆz %(" ¥-7 4[ \pNl #6[9"EM;'þ | J%3265&#"46;24&54654.'.'&5432>32#'#".'#"&\H3>F5T^    MLn p-E#v0  /R6¡5GkD@< )5 >&^%>6 - *! /=B# * 5ÀA K7326765&#"4;23&54654.'.'&5432>32#"'#".'#"&Ùx6B$QWBÙ %    ^Lh0!•-> ]Å Fh8XoEWU'D%(v_9n-"'&EH !' >#7^ P& *4 KWA³ÿïO3W"#"54367654#"4.5432#"&"&5467>7633>32#"543>54&#"s  ‰3<3=ž;Ô !   WZ‡@3O, TÓ9aQM-Saš¯ 0`+ þK . `h((aHL 34+$3?/~N+ &3N/Be£*ÿéÉ7>"547&5054654.5432>32#&7>54&#"U 66s%)(-@,h >Z-% 9/#f #rn+5 "$LOho32>54.#"c<>4 § ("8 >!.O6¦* 5Å‘`j·ŽUg,*/Y7D-$H/.~PT\, 22)Y )@   .)8# 7á=kXgŒ?3) H4.I()0!+'-MÕ@l2674654.54326327>3232?#"&54654&#"#".'&52654'#"5475#".'&432Ü G!!G)  2”&2J7*,@?IG4>5*"@68*' ,)L žÉ;,#" 7# #=#D*( ?8!6QTA$þ÷)J,-]L>ø$)4,772t}K:!X&NyFñR_ ,  »<û=632#"'43>54.#""&54>7>7#"#".'&543326k+|Ç+¤†d†UP8p–¨$K1^¼5 4ùž m¥ø'x¦-VYIWN! !ŒP $-Q- 7ì'#241Ð0t l%=47#"&/62;32765.5476326322632"'>5.#""#".'#"547k+6&   >" B&tq1I#L:c5<>(DPfc $¦K8[4 5F$ Y2!  F e-A6RE"1N.>_f[7654&5463263223632'47$54.#"1#".'#"&54746J)* $ != 6 /,L ,“‹>\+_(’8'L5ƒ{  (  ÏV6‚3=& ¡ $0y7 ( O }9SDcZ%7oµ"?>%‚jSBG !H'8! j†? h%3267.#"'6767"&54676=".#"#".'&5422632632#"&546;2654.#"!$U%(2%†7&#"#".54332632>32#"'#6322>32#".#"#".#"#"&54>7&5463232>54.#"#"&§ * (ʘ²’4X0Ž% .O73C(Pf8RAHP #)63m, !4 %J *%1fL [ª5=&*+ 0H#';.*;M" v   …Œ"*)'# '{O$[A-@ <  -(#" $;: <`&1$ *$ +D  Vÿéz>x&#"#"'&5>?#".543232?67.'"5432632>32>32>7.5432#".'32632#".546:-J-!   Š(@q7 Ke-X/L# \ #,6T Ÿ\$OL&8%HŸRu %>‚E `^eb#8”ê8gc;|j '½ B  !#5´I%(+7 8& $! j;f:x'& < 6%,Œy{D%".#"#"&54>7654.547632>3232>763‹,9)!_S  5³ 5 œ">)2>,&D='0@K)ÿÿºh*Å1+64.5472#"47>7"#".'&4332$72632#"7>75&í %6 \ AMžŠñ F*C< #`_-Sx* #"²*eJÙ½U@"^ z€°=4.5432#"767"#".'&43232$726;2#"67>7&í HD)D S`ɯþÑY6”I ) xw=f Ð4&+Ý62A  _ í' %kP.t&ÿñÚ„8%4&5<54'#>767>?5654'5632#"&546cLNC3-šB+>05C    ²n(/#_9&L  1$@?  6G:˜ |ðÿç?4654&'"47>767>?5654&547632#.54654&{#|`q=¿Q1T :77    …. #G')sG+c #=?3 >T^¢*”(rË …]4&5.543223234&54#'.'&54322>32#0>7>5<54&##"#"&46÷' >N & H]3+=0P#9>?1â%6 ¬$  !!2£!10#51;K"!w $= <€L X4&/43223234.54.547632>32#"767>=4&##"#"546¸. Ma0_y  ;6L;eÖR('þæl#%   $>  /','Å*!=<+D¡*›%  % N5EºlHi&'4'#".'&546323236;2632+"&#:323;2#"&##"'##"&/4763232672634>546é6F F !kœ–[46464&'&5"#".'&543232>;2632##"&#2#".##"'##".'&5432374äCV R %!0Wû )* ' -v…_% ?} ;Sf  K ýY)6 _%  & &;C+“    '  ÈJY%4>=4'>7#".'&5476323274&54654.547632>32#"&'&#>-='Pq‹HY^N¡B 8‘ 1.[)  b02Q FF32;U4.+Kž}**+01A É2 P  zÿýŸ]#47>7#".'&5476323754654.547632>32#"&'63&54>=1*O;N2a‹³X“#' +<ã 1H´=9s2 'ŒJKÍIlB;5YÌ™  4 /6!>S AÅ,# @9i  WD?Œÿùx\"#"&#"'47>7#"&5432363>54&5432>32#".'.'3>5 &…3QZsU9bC:#  J]@ H$®* L “e&(/-  /;:3, {WF3%OHK@@2 @ *L S"*! b˜ˆV( &E G 59"}j°Œÿùy#".'&52#".'&52"#"&#"'47>7#"&5432363>54&5432>32#".'.'3>  $'5(Q "D$ &…3QZsU9bC:#  J]@ H$®* L “e&(/-  /;:3,— $1 -Q&0)a {WF3%OHK@@2 @ *L S"*! b˜ˆV( &E G 59"}j°oÿë•g"&543232>7'#".'&54763232>7./.'&54632>32%632"&'.'Ë@  / !.lC,5F  + =-     H &±f¡1B @9~6O G º7E  –  *  0,    D99  •T    *â=>ê*& oÿë¨1‡#".'&542#".'&52"&543232>7'#".'&54763232>7./.'&54632>32%632"&'.'¨ $ O  P #@%ýs@  / !.lC,5F  + =-     H &±f¡1B @9~6O G º7Ä#2 A%0+þoE  –  *  0,    D99  •T    *â=>ê*& ã!K67&54707054/632>2#47>767"&#"òˆM! #Jc   0.D_>=fPB1)aJ$20Cw_• E #      sW'#>>&F%F>=998<="5@*&ãìi#".'&7#".'&743267&54?54/632>2#47>767"&#"ì  $ ;(Q  " J $ýWˆM! #Jc   0.D_>=fPB1)aJ$20Cž &/ -R '/ $þí_• E #      sW'#>>&F%F>=998<="5@*&x–M2>7>54'37>32#""#"'#4>7&546>54&54732>7j?q 9X:% © %"00ƒÁW;é‰(# 5V'O&  1=Æ!"2@(W[8[0Ó6#  &17 #X8 " Axä%3d>7654%#".'&542#".'&52%37>32#"#"'#4>7&5463>7654'2>+j?q 9X:% £ $ O  P #C%þ %"00ƒÁWþ+# 5V'O&/ 0 0Æ!"2@(W[8[.¾#2 A%0+56#  &17 #X8H#A©ƒ7ŽB%.#"#"&523672636545"#".'&5423 676326;2#"'Ñ þ»H4 H ⬠%þ 9 Â)6 ŽS  G)-    þÑT ©ƒÚ!d#".'&5432#".'&5432.#"#"&523672636545"#".'&5423 676326;2#"'Ú $N  P "L %¹ þ»H4  H ⬠%þ 9 Â)6 ­%0 C'/ 'ýøR  G)-    þÑT tb"&=4&=4'#"&5432327&54.5432>7>54&/632632+"&#">7a 79:(MB+)_y*6  ,‹ !8 4!< ,A"‘o +  P Q!$'3  533#&2 KE [ŽTI/ *_Ma;Z">0Ä#†#".'&5432#".'&7432"&=4&=4'#"&5432327&54.5432>7>54&/632632+"&#">7Ä  $N  Q  " J $ýî 79:(MB+)_y*6  ,‹ !8 4!< ,A"‘o ¨ &/  C '/ $þ—  P Q!$'3  533#&2 KE [ŽTI/ *_Ma;Z">0—Hô8#"&563#"&'&52"./6032767™w  N n" v S   ! ]~^ma3BØgš õd! .þŒ2  ,/[ zd)5š—[ô0=X#".'&7#".'&7432#"&563#"&'&52"./6032767[  $ ;(Q  " J $þw  N n" v S   ! ]~^ma3BØ€ &/ -R '/ $š õd! .þŒ2  ,/[ zd)5šwWàB%#".'&'"5>767'#"#".'&72323>32326324O "XdLgl¬kU*W7 S ]U !)+XN]2m4[v)MD0; GnyP2  "   ç333M2wW°Y!c#".'&5432#".'&5432#".'&''>767'#"#".'&72323>3232632°  $O  C " J $14O "XdLhl¬kU*W7 S ]U !)+XN]2ù$1  ]&0 )ýš4[v)MD0; GnyP2  "   ç333M2pš i%4654&5#"./63232?4&54654.5432>7>2>7&'&5*#"32632#".‹ 1M %"M  “>"o¬) *ZF ›  þê=>%@9± X‚~Š-ybT /  ,* p$'9$!@G!P#  E"œ Ia%@*!   1pÆ …#".'&7#".'&524654&5#"./63232?4&54654.5432>7>2>7&'.1&#"32632#".Æ $ <'P #C%þ 1M %"M  “>"o¬) *ZF ›  þê=>%@9± X‚~Š-ˆ#2 ,S%0+þ bT /  ,* p$'9$!@G!P#  E"œ  Ia%@*!   1¿/9å7&56".'&%4&1432#"547>7654ÀA þ%(  M$"lm>dŠJ'%ÀD 7!5_,4   æ?;fB)E‹‚d|!¿/ß`!3Y#".'&5432#".'&5432&56".'&%4&1432#"547>7654ß $N  P "L %ý1A þ%(  M$"lm>dŠJ'%ó%0 C'/ 'D 7!5_,4   æ?;fB)E‹‚d|!è  $-F4.'63>32>7.'&'>>54&#"#"&#"³/ƒ @uv“`T„V. (_EJ2™¹ Y 3q  6) Z#2"Ó    !ªÎpU01c\;%&45-ÁþÔ8Ô&  F)  $è ß^!Jc#".'&542#".'&54324.'>32>7.'>>54&#"#"&#"ß $ O  P # J %þ$ $;ƒ @uv“`T„V.j^J4—¹ Y 3q  6) Z#2"ñ#2 A%0 +  )   !ªÎpU01c\;% & :"50ÀþÒ8Ô&  F)  $|X"&#"547>7#".'&5432;23267&=4&54654'"5436$7262&632PÕN-?(3@‡Ž  …x 5Ob Fm# }!@œX„OoJK+?og20&  & [)G ÓJ!z#".'&5432#".'&5432"&#"547>7#".'&5432;23267&=4&54654'"5436$7262&632Ó  $O  C " J $2ÕN-?(3@‡Ž  …x 5Ob Fm# }!@œXê$1  ]&0 )þÀOoJK+?og20&  & [)G èv#A#".'.'&372#".'.'&5%4.1432"547>76é  M „  G  &Qd^Ea}4) Ï 3'# A$y- (  %6Ž$ ë$(Y>)D‚gr4¤] &H#".'.'&5432#".'&546"547>7654.4743ç  a ®  #53 >`‡L6  /f7654.4743î $N  P "L %þI  a ®  #53 >`‡L6  /f76?45"#".'&76323237376;2#"&"&#"#".'&5432>32  K   (:)A )MZ'   44_tRˆËZTµ0+   G i­ak”š -6HC%) !>.__>'   þû ,  t,ñ #Bd„#".'&5432#".'&7432.5432#4>76?45"#".'&76323237376;2#"&"&#"#".'&5432>32ñ  $N  Q  " J $þm K   (:)A )MZ'   44_tRˆËZTµ0+   G i­ak”ž &/  C '/ $ð -6HC%) !>.__>'   þû ,  *ÿîÜ1".'"&54654&54654&'&542Ã,4}Q 6<2LW+/Q(8èUF º<;Ä1+1; _H 0*ÿî N#".'&52#".'&52".'"&54654&54654&'&542  $'5(Q "D$ ,4}Q 6<2LW+e $1 -Q&0)þÃ/Q(8èUF º<;Ä1+1; _H 0~‰J"&+"476765"#".'&563232>74&54654.56326322`ÔH8S9‡%”Y) I &oQ ;a^R)­ \xPM1€‚<^( ^*+79C t®ŸX9%"#".'&563232632#"&"#".'&563;232632#"&Auà$m ùzšz ×bd…    ¯T^?‰Ï!2  ["   …:êG%".'47>7.5432>5#"&/632326;23>7632ö ! 6,‚qw3*3sUg&8t5¸#&Wþ¡ &   c’o 5K(q¡+:J9iA6C>^2)6F8¯)   +q!–xÿøˆe%#"&'.545432"&5634767&767>7"#".'&763>7632#"&54654&54.5'&ˆU=g#£'Pþ”S+# H3®=>Éy0gÒ$% /Kt\ ¬*!  ¼R'+ *Pág þ¤$FL^)%    Ú$D76”/ISb.DiE0Ÿ!1 -‰€3/S=@-XIR?T<^!vµ‰a-%#".'&'&?2"567674654&5432‰ *T<O(4-üïrB 7L‹Õ8v.Œ>@$CdM  ‡QP# T} dvµ·õ!7O#".'&542#".'&5432#".'&'&?2"567674654&5432· $ O  P # J %" *T<O(4-üïrB 7L‹ˆ#2 A%0 +þh8v.Œ>@$CdM  ‡QP# T} dvµ©Í'?"264&2#"&54#".'&'&?2"567674654&5432v&&K:)))k *T<O(4-üïrB 7L‹µ&&2)8*)þ18v.Œ>@$CdM  ‡QP# T} dºO³?>54.54732632#"&546=474&'&42ä¼%)=G< F\=CLìfæ\V8Š'Y%  #+  S!60;O [Ch4K]ºO’ü#c#".'&5432#".'&5432>54.54732632#"&546=474&'&42’  $N  Q  " L $ýÎä¼%)=G< F\=CLìfæ\V8 &/  C '/ $ñ'Y%  #+  S!60;O [Ch4K]ºOóP"264&2"&4>54.54732632#"&546=474&'&42N&&K:)):(þä¼%)=G< F\=CLìfæ\V8Û&&3))(:þÀ'Y%  #+  S!60;O [Ch4K]¡E&°4"#".'&546326?632#47>7654&5&Èþh# _ GåOO ZpL1j@mKG%.   {+*   # Ûu3.MB^8e#/¡EËT!V#".'&542#".'&5432"#".'&546326?632#47>7654&5&Ë $ O  P # J %³þh# _ GåOO ZpL1j@mKG%.   ç#2 A%0 +Q+*   # Ûu3.MB^8e#/¡E«CF"264.2#"&4"#".'&546326?632#47>7654&5&f&0:())Xþh# _ GåOO ZpL1j@mKG%.   +&&):((:Ÿ+*   # Ûu3.MB^8e#/rט<*"&/:32>3232>32#".#"· "   FZ'I+G"ToŒ‘–! }„ <<"=5AbwbS rטÀ!L#".'&5432#".'&5432"&/:32>3232>32#".#"] $N  P "L %ýª "   FZ'I+G"ToŒ‘–! }S%0 C'/ '¸ <<"=5AbwbS rטÜ<"264'2#"&46"&/:32>3232>32#".#"Ï&&-))))þ "   FZ'I+G"ToŒ‘–! }Ä&&2(:)):(þ¨ <<"=5AbwbS Œÿ÷p'‡%#".'.'&52%4&5476>4&546=4'#".'&5632674&54654/.543263632#"&#"#"#"&'&736p&#3 <ýÏ0WQ >/&µct BhU / "Ê Š8 y&< €&M*2SgÒ:y38SõO8{#@ #(  )0 88" 15 $Š:o V  Œÿ÷* 2H¨#".'&54632#".'&52#".'.'&52%4&5476#>4&546=4'#".'&5632674&54654/.543263632#"&#"#"#"&'&736 $N  P " K %1&#3 <ýÏ0WT >/&µct BhU / "Ê Š8 y&< ¼%0 C'/ 'ýÛ&M*2SgÒ:y38SõO8{#@ #(  )0 88" 15 $Š:o V  ÿ÷p,#8˜"264'2#"&46#".'.'&52%4&5476#>4&546=4'#".'&5632674&54654/.543263632#"&#"#"#"&'&736&&-))))&#3 <ýÏ0WT 6@0µct BhU / "Ê Š8 y&< &&2(:)):(ýT&M*2SgÒ:y+A_òO8{#@ #(  )0 88" 15 $Š:o V  wtŽŸ?%#".'.5432>767&##".'&563>7632‡+7[  ‘'E4-   þ0Z"  e‹Ý¹4 'LF)+L‹ >/9, +&'##    -    ¡"+f ÿðþ '8%#"&'&'"56#"&'.543#"&'.563þ`‰´ 0“:\I-%W9\1"  ,w9Z3LD‰?†W")K=+%O2  &A #$v.†Ú'D%#".'#".'&5432%.54324&54654&54?3#&57>†Î4È 4&$ n /Å$G” $ýó'=--[G)-- 2 (V?b‡&\ /#¥A"À\[Þõ5".'"'47>7.563>54&43632ý,)3@M^8]‡P*54&'#".'&54332$32#"&#"6;2#"&#"32632#".6{®/ 21*b 8! i?#^=H ùg,­,)^$:/b Si4L:$ { K ADA$K].(;!&2BPÉÿô4uQ%#"./"&/43232632327.'.'&632>7>3#4>767* -C!    r    ?+Ÿ/ $OR ( #; 2:A^ 17  HL  !W1 *8  ]Lw+$}ÿí„ R%#"./#"&54323263232>7.'.'&5432>7634>767"6  ”, ? %" 75>765.##"&'&76303263232>32632#"&zÌÚ W&û@ ‹’)  !cu2 0@@7 „ê *  ¦$4  'uU  &Åk_430326?2+"'#"'&#"#"#".'&74327>747#"#".'&76323>3656'34'&+"#".'&  , ™FG  ])­,¤!1%dS ?Ãj   Hð  $ ¡- %·-Ñ+ùZ2$322+#"'&#"+".'&732767465"&#"#".'&763%67454'56'&+"#".'&542Dg   &!˜ ! W&$‰ƒ , Î!ShÚ3Î Ciÿ“   -  Ú1/ ¨B 7 Ðö-D".'&5432332632#&7>76=&'2"'&/432326°þz q>•Ÿ)Ud†YJnP4+ -5=n4*$5 àû# "mƒG<%#AF8T;5 å "#?Ä*F4654.5432#"47>5<54&4654&'&5432"&54&„ 5 2\/D!þá  5k#3 #þâK)S$`6oR]4% dS!O  +*` QxEkÃ)H6267>7#".54>54&43#47>54&546Ä .  „&s$*004.,©% '6:K   ui6¦ \#X *.2.* cʇ wg" (3L8, 'agA( #í1ð+&'63232$7#"&54>ED)nC$EIuM V/ f‰0 s" ¬pQ)?,9-Mé¦i4„3N22+#"'&#"#"&5&5&47.'&'&4332>32632636?.#"#"'4= ¹ D„  G¦LSp%!ýÖ „F#–'  )\Et}3þ½   $ oA~h'F0ˆ]' ï/ìTA2>7654&#"#"&#""&54654&5263>È @+f8R9%   TL  8x>Lc> vT$!?B (IL=X<8   8  < ?­5*ãF"#"&#""&=465./43216$7632>7654'4#&ÔpB¶  =‚Y 2$2F2^<_B4  Ž  IK N   '/Ã?!;7"; *SFW>d?<¨ÿîcy232>7.'&767263547#".5423263232674654.54?2632#"622#"&+"&5&'"#"&5432326þ9('R :?qv +   ‰<2V4&80B>>ƒ&  e‚9*D $n CH(2?]%  2 3Ž  pÅãb;kœ–_4&'#'./63232$72632>7>7&#2#".##"'##".'&543237474646æ £' 4?$fAiAW=5F ÿ v…_% ?} ;Sf  K ýÙa1 /  @ )W  ;C+“    '  )6 °'@ÏJ2>72674&#"+"#".'&43232>32#&7>7#".'&76|/“e : ‘ÍK 55(³T X|N3k‰¯>)…\"  \°…6  )  !&ï…5/D¬0 rMlº/#"&'&74366&232676763#".5226¡" '½  &ØK˜ˆ*Be:Mþ÷-5$0=~ &þCV9uîK‚‡-32#"767>=4&##"#"546Ý  $N  Q  " J $ý,. Ma0_y  ;6L;eÖR('þæl#%   Ë &/  C '/ $§$>  /','Å*!=<+D¡*›%  % N5EÕÿÿ*…W#"&#"#47>7#"./63232>73654&547632>32#".'.'>7>ó €&FJ^>xƒ/n  ;G>! ? lS  ' .0 LµawD:$N¥‚=;C> I$Np. 8 2 '0ÛJ+ÆC{@2>701654'32>72+"#"'>?4654>54'632/.R5U ]\&… " Q¹#Ú:L):;9(¡5˜)1As£ 1#  %%"GT   4ÿÿ­5ã"sœX¨ÿîñ„‘#".'#"622#"&+"&5&'"#"&54323263232>7.'&767263547#".5423263232674654.54?26;27#".'&432¡  80B>>ƒ&  e‚9*D $9('R :?qv +   ‰<2V41,P $k #-3Ž  pÅãb; CH(2?]%  2 0%0BÿÿkÆ"vœZÿÿ°'&Ï#—ÿ£[ÿÿ¼c+Òyvÿœu®Ÿ%"&#"#".'&5433>32p ×Omè$^8‚ŽPw±!2*  ÿÿÿòܤÿÿÛ¤ÿÿ+ÿò°¤ÿÿ ؤÿÿ ÿò¶°ÿÿ"ÿòÔ¬ÿÿÿøÁ–ÿÿ8ÿò½¤ÿÿÿêˤÿÿoФ#Ž«1=#".#"3##5>5##5>5#53>32632%"347.Ž<{z)Ü+»)Ü+DDljW+J"Bþ”)?¼ #nYt þ¶) .Dþ¶) .D m|''>Q+P1* «8".#"327#5>54&+#5>5#53>32¨ #"5 2?*Ü.HV*Ü*DE ,P5:E> ) A+ 5-þú03(þ·)0C!"5E- &   «%17>5#53>76323267#5>5##".#"35 ,EG-L H 9)×'¼+àE A¼ 79 BH ?ý¨'%Nþ­"Hš4#«GT"327#5>54&#"##5>5##5>5#53>32632#".!"367.1)?<5+Ü/"L5 )Ú*»)Ü+DEljf6_0N$þØ)?½#’>Q+ B þú.!0&þ¶)!-Dþ¶) .D m|33 ( >Q+K3#«3BN!#5>5##5>5##5>5#53>3263232675#".#"'"347.×%¼ 'à/»)Ü+DElj[*?H 6 '” C¨)?¾$%Nþ­$!59þ¶) .D m|**ý¨'³›Ð>Q+J5*!3ÿö¢»^4>7+".#"3273#&#"#"&#"#5332654.5463&54632326?23#327#"5#&˜ , MM,.7!  U.+l**W:M 6<#./CB/T:5I4 H7@ ee3! @#\5© /#66<-"B ‰{$.@5)9H œCI&#-#'@)9A5=4I)2) t þÜT# ,-ÿÿ¹#~ªÀšÿÿ½#~>Äšÿÿ¹#~ªÀ#~,8šÿÿ½#~>Ä#~,8šÿÿÿ èH#zX@ÿÿÿ èH#{mHÿÿÿûèH#~öÿHÿÿøV#~’>‚ÿÿ'(V"~V>ƒÿÿÿþâT#~’>„ÿÿÿþÑV#~¸>…ÿÿ0ÿV"~L>†ÿÿ0ÿÿ V"~>‡ÿÿðV#~:‰ÿÿ=ùw"~^@Šÿÿþ§ð4#~ß;‹ÿÿåV#~’>ŒÿÿK#~’>ÿÿçW#~¸>ÿÿ/V"~V>‘ÿÿìV#~Ú>’ÿÿþ­å3#~,8”ÿÿØV#~,8•ÿÿ ÜV"~>—ÿÿþ©ã4#~Æ<˜ÿÿÿÿÕV#~’>™ÿÿV#~,8šÿÿ ÿÿòV#~ð=›ÿÿ0ÿ½#~>Ćÿÿø°#z‚ÿÿå°#zŒÿÿذ#z•rþ®¸B#'7%4.'7!"&547'?'7ü455Ñ Bý,79G 4*Ÿ455‘555®774Ç3C' @(U°+7O}e*&þ˜7749774rþ®¸B#'7%4.'7!"&547'?'7ü455Ñ Bý,79G 4*Ÿ455‘555®774Ç3C' @(U°+7O}e*&þ˜7749774ÿôþ´-N '7'?'7#'!054'”9::t999v9::--4ü 8Ž:::½;;:I:::¢ATJnS f8ÿôþ´-N '7'?'7#'!054'”9::t999v9::--4ü 8Ž:::½;;:I:::¢ATJnS f8{þeë2 5'7'7'7237# 327#&'&5&546767.#">¡>??Š>??©>??¸ÃrZþ¦–6'O7rÇ%¢£†0-A?‘a6o63""5X??==??=º==>É!?ÑMO#A@&-/2 @=CyIv "}þgô-9=A'7;#.5%237# 327#&'&5&546767.#">'7'7ê433¾ +2((þáÆiYþ©”5)H0n£C¡ ‡--@>`3r43 0;433h433¨443>R,Q#?0%y!>ÏLO18)"$0?= CxHt 0&þŽ4433443ÿýþÞb '7'7'7>32!"5%'&#"244à422#333ž "o>cý²Î!T3333333”443U'M9#LKZÿýþÞb '7'7'7>32!"5%'&#"244à422#333ž "o>cý²Î!T3333333”443U'M9#LKZÿÿþŸk+ '7''7'77>7654'k455466455¡ €16h",0A&!ƒ221G220¨221½EOOñH +7`?65-WÿÿþŸk+ '7''7'77>7654'k455466455¡ €16h",0A&!ƒ221G220¨221½EOOñH +7`?65-Wyº“/37;!654/&/&546?#!"'&5476ŽIj }= [~£Çmk"*ý´M3ØþÐâKI y¥A j2‚,ÿû”m!%#!7!654/&/&546?'6ŽÇ€k"*þÍ4}= "_z£2þÐÈR6n'&"09*$#]O mš=  :O/>j2‚,ƒÿ(ö -2&#"32632#".547$7&+"546Ê!!"]P ?„YuRv<S 4h^..c_†   V%vO5#;>"ksb‚S]8A„þåÑX426=4#"+&5465476;"&#";2#*#.'547ri— n*T-m2 . oLoMrf$ „[7* CÖ0+ :2M#1@T AH cmV7G'/ÿêÿ6K:'7'7#"5!054'­;==º;==--4ü1@8‘9999999’>NEhN `5ÿêÿ6K:'7'7#"5!054'­;==º;==--4ü1@8‘9999999’>NEhN `5¿ÿâîî6>ah%2>54.'7#&'#"'.54>35732654'73263%327523654'62#"'#"547:1232654'67&'7–7.m c<+"6B*7 ")7-þQ#%[   " =# 57RI¢ASbBIKr(&-"M[F+)ëk!Pk"–  ) I%þž,A(,0N%#".'&'7;4&'#"/7327654'7'7'7#"54732654/5473X¢%*‰ïw1($IDBA@49®77µ"`\Ž; ,s7j*( \27Taµ)C9eš?#&ä2q 9723764AX10;21œÕPN7>¾;—92;—9& JB J,þ8ïÿ7>?>´;—:/;—:þŸ Jq J6ÀùC7>¾;—9& J3£ÿ¦'#67'&546324&#"6Û 2"]G5"4" '* @$'I #1*   ,þ8ïþ»7>´;—:þŸ JXÑúl#"'#"&547332>72654'7ú !   $+ %-   2R®746;&#"32767&.$)$%;b#+³L* # 3"!ÿÿ ÿÒe‰¥ eˆ%23267#"&#">;"&'654'7›3 $).698"&-"0y MWF/V$7&D)þK™,.6.Qbc…V=afÿÿTÿÒò˜¦ÿÿk.…'°Zp·ÿêÿøC'"46;&#"32767&+"5!54'¯.$)$%;b#+`+2ð.04ÅL* # 3"!u@MFjO a5•ÿÒß¼ >54'7•  *.b¨71U®Yÿ¤«Œ.½;"&'654'7× MWF/óK™,.6.Qbc…V=af~ÿ½A'7%4.'7!"&547„444NAý287F 4*Æ665ßAN@)S®*7N} h%$!~ÿ½A'7%4.'7!"&547„444NAý287F 4*Æ665ßAN@)S®*7N} h%$!ÿüÿ?E'7#!7!054'ûCDDZ-4þñ 7«EED¬ASIoS f7ÿüÿ?E'7#!7!054'ûCDDZ-4þñ 7«EED¬ASIoS f7{ÿÿ¹'7'74&'7!"&547ACCACCÜ ?ýK47D 2)vBBCCBBCþ”OD='P©)5Kyd%# {ÿÿ¹'7'74&'7!"&547ACCACCÜ ?ýK47D 2)vBBCCBBCþ”OD='P©)5Kyd%# ÿô*$'7'7+'!54'–9;;Ê9;;,3û7é::;<;;:ÕBRJoSb7ÿô*$'7'7+'!54'–9;;Ê9;;,3û7é::;<;;:ÕBRJoSb7ÿú¸ !'7'?'74&'7!"&547ô@CC¡@CC°ABBW!Aý777F 3*WBBCCBBC7CCBþ8QF?)R­*7N{f&$!ÿú¸ !'7'?'74&'7!"&547ô@CC¡@CC°ABBW!Aý777F 3*WBBCCBBC7CCBþ8QF?)R­*7N{f&$!ÿþ5 '7'7''7+'!054'£===¿<>>===_-4û7Û==>@==>;>>=þ½ASIoS f7ÿþ5 '7'7''7+'!054'£===¿<>>===_-4û7Û==>@==>;>>=þ½ASIoS f7ÿÿzþlâ1¯zþl 1*.:237#"327#&'&5&546767.#">'7%#.';J ÃpY¯ïK6(N6nÅ%Ÿ¡…/-@>‘^3s42 !"5Å544N-A%81 >djKP$A=%,.0?; CwHv !þo553%Yf #! ÿýÿ/]7632!"5%'.#"'7€g,W"[aý·Ê~B•544·L5`LJX þ”554ÿýÿ/]7632!"5%'.#"'7€g,W"[aý·Ê~B•544·L5`LJX þ”554ÿÿzþlâ1°zþ` %*9237#"327#&'&5&546767.#">;#.J ÃpY¯ïK6(N6nÅ%Ÿ¡…/-@>‘^3s42 !"5J8-( % >djKP$A=%,.0?; CwHv !h P!4+ÿý^7>32!"5%'&#"”0p;bý¶Ë~X™&""M8#LJXÿý^7>32!"5%'&#"”0p;bý¶Ë~ T™&""M8#LJXpþ’µ (,237# 327#&'&5&546767.#">7'74²jTþ»Š3#G1iÆ–˜+*=:‰X0m1. -8o,++/;ÃGJ <<%;<- ;9BpBn  -$±,,+}þI% :'7#.';%237#"327#&'&5&546767.#">Ú655r-=, 19þ<Èt\¶ûO7*I0vË$¨¥‰2/BA•c[D*5 ##7ð665ýÜLm B*â"AimOS2;+132B?"F|Jz  #ÿýXÒ'7>32!"5%.#"@200{#9cý¼Ç:B"$O¢110þÅ&„"KI*-ÿýXÒ'7>32!"5%.#"@200{#9cý¼Ç:B"+H¢110þÅ&„"KI*-r«l%.'7+"=7~  4"8Ê7 N$ O (8hCN`&r«l%.'7+"=7~  4"8Ê7 N$ O (8hCN`&r§D'7.'7+"=7/977„  4!7È6  997þ #,&N (7gBM_&r§D'7.'7+"=7/977„  4!7È6  997þ #,&N (7gBM_&ÿÿþŸY÷%76?>54'E €07hSEE%÷EOH ñH 1 ddQ&-WÿÿþŸY÷%76?>54'E €07hSEE%÷EOH ñH 1 ddQ&-WÿÿþŸYÆ'7767>54'F8;;7 €+54'F?CC> €+"R C:F&?‹*! k( $JZ$e47!"-E'  A/@ h6H5 )0Ž0H8@E7&|ÿÃõ9%254'7+&'#"+.547326764'732=7r5(-)) !$:1+?Y!"5>"R C:F&?‹*! k( $JZ$e47!"-E'  A/@ h6H5 )0Ž0H8@E7&ÿú`,%2654'7#"'+"'+"'27654'73254'7 "49+-!SÅÞ !L H Q6Q,S$&&&&K5,5+/@7ÿú`,%2654'7#"'+"'+"'27654'73254'7 "49+-!SÅÞ !L H Q6Q,S$&&&&K5,5+/@7|ÿÃô8<@D%254'7#"&'#"+.5473267654'732=7'7''7'7s4(-&% #$:1-?Y!"5>"R CRm?Ž *! k( $/11"/11$/11JZ$e44$ "-E&!  A/@ e9FH*-MC1H8@D8%---:..,“---|ÿÃô8<@D%254'7#"&'#"+.5473267654'732=7'7''7'7s4(-&% #$:1-?Y!"5>"R CRm?Ž *! k( $/11"/11$/11JZ$e44$ "-E&!  A/@ e9FH*-MC1H8@D8%---:..,“---ÿú˜j+/37%2654'7#"'+"'+"'27654'73254'7'7''7'7: 9?01!$[!×ó !%S  7788'788)699P X?;>4'!6Ôo +þ`03//©Á -eS}‰R-K7$$¹h00F'›}[”D  6!M$"#!"'+&53>?;>4'!6Ôo +þ`03//©Á -eS}‰R-K7$$¹h00F'›}[”D  6!‚ÿ!´á)482+#"567>54'77674#"23276'7@$&580–%FS8ÔQkA\-?",x:1JTPg‡@”100 8' ) B[0±oVNHNT!45GIHix7RƒS000‚ÿ!´á)482+#"567>54'77674#"23276'7@$& !LK–%FS8ÔQkA\-?",x:1JTPg‡@”100 8'!"B[0±oVNHNT!45GIHix7RƒS000ÿì9($'7#!"'+&53>?327>74'!6`100è"+þ`03//©Á#*\ WyT3R|]$ø000þËHCh00P .A’vX”C € ÿì9($'7#!"'+&53>?327>74'!6`100è"+þ`03//©Á#*\ WyT3R|]$ø000þËHCh00P .A’vX”C € ÿù8G 76547632#!'%4&#"!6¥V? tf2I=ýÿ :$)bMƒÿSEš´3ƒBVQO-';ÿù8G$76547632#!'%4&#"!6¥V? sg&( 2ýÿ9%&aM~SE›µ2ƒ @.=O-'8ÿÿ×G"76547632#!'%4&#"!6DV? sg&(=þf¸9%&aM~SE›µ2ƒ @.QO-'8ÿÿ×G$76547632#!'%4&#"!6DV? sg&( 2þf¸9%&aM~SE›µ2ƒ @.;O-'8ÿù8G$'76547632#!'%4&#"!6».//èV? tf2I=ýÿ :$)bœ../þ‚ƒÿSEš´3ƒBVQO-';ÿù8G('76547632#!'%4&#"!6».//èV? sg&(+ýÿ9%&aœ../þ‚~SE›µ2ƒ @.;O-'8ÿýÙG&'76547632#!'%4&#"!6\.//èV? sg&(=þb¼9%&aœ../þ‚~SE›µ2ƒ @.QO-'8ÿÿÞG)'76547632&#!'%4&#"!6a.//èV? sg&( þ_¿9%&aœ../þ‚~SE›µ2ƒ @.=O-'8‚þ]†.$467&'5476;&#";673&'&‚>>W#A8F5D Mšb.xr#ŽMƒiohàqKþõ4•4K* =91*8$R: CK}FL.A !|þ¤\P/;#&'327#"&54>7.#"#6g "&&dƒ†f4JN5NA3J+hPh‹7F> =P ' !LLY6rG*@*38yb@wO9  wÿù¡c%327+"5&5>3&#"V:e«2®´ü@ _:8W"`63Yå$\M1L_:5I'"%ÿöÿÿ8H$2;#"'+&'723254.#"#5>Z8LH$2JLH=Q_§˜  BH( &O>M]]MY>C‚þd€8%)467&'=476;&#";673&'&'7‚A:W"A7E4E M_.wp#IdngÛrJÁ011þú<0J*=90)9$Q:BJyHL-A !b000|þ¤\ 3'7;#&'327#"&54>7.#"#6Š122 "&&dƒ†f4JN5NA3J+hPh‹7F> =Ú221» ' !LLY6rG*@*38yb@wO9  wÿïXZ7327+"5&5>3&#"'7ÞJ9]š.Ÿ¡åû; V43M O8-S’...Ü]J0I^63F$"#2001ÿöÿÿ[)#'2;#"'+&'73254&#"#5>7'7c;LJ&2abJ?Rb«“ ˜  Dj111B($LB\$%#6LN$"0 $#@>9W =1(J¼223€+3%.2#%.'67326;2=.5476;2327.''7Výò""S¦)¦)S:L'!..4$T'*122A`>B\$%#6LN$"0 $#@>9W =1(J¼223ÿâ>[+#!57032505.5476;2''7".(Sþ÷ÚP5K' -.S1000" !"5BX?\J/ #"B98/Æ222þì2 !<1ÿâ>[+#!57032505.5476;2''7".(Sþ÷ÚP5K' -.S1000" !"5BX?\J/ #"B98/Æ222þì2 !<1‚þüÏ¡.<'7'7+&54&54733267654&#""546";27254/Å777f877n$HG[¨Ñ3 8rXmK  _A#) &j7777777ÈUF?,8-v`zgA'5/ $K3/p8/ ‚þüÏ¡.<'7'7+&54&54733267654&#""546";27254/Å777f877n$HG[¨Ñ3 8rXmK  _A#) &j7777777ÈUF?,8-v`zgA'5/ $K3/p8/ ÿâ9P'+#!57032505.546;2''7.#"'7$Rþû×O4I(8*.0//()%!'"‰/00/=X>ZH. ##7w.Ä220þ§ 3V1220ÿâ9P'+#!57032505.546;2''7.#"'7$Rþû×O4I(8*.0//()%!'"‰/00/=X>ZH. ##7w.Ä220þ§ 3V1220yº5/#!"'&547;!654/&'&54>7´Çm*U/ #*ý´M3Ob }= "4!8TtMöW3)hD7|:dX@C@-(MD z¤A4 *&!)/!yº5/#!"'&547;!654/&'&54>7´Çm*U/ #*ý´M3Ob }= "4!8TtMöW3)hD7|:dX@C@-(MD z¤A4 *&!)/!ÿñŠ!#!7!654/&'&54>767„ÇK1kUQ*þÍ4}= "40\w]ÈRnf›c^O j= 0 -(,0$ÿñŠ!#!7!654/&'&54>767„ÇK1kUQ*þÍ4}= "40\w]ÈRnf›c^O j= 0 -(,0$„þ¢Á·#"54732765?™>rYõ=.LYHQ#Y%&4/4 'UlR$Áa¤KJ4.o¸&)’@0¬þé„þ¢Á·#"54732765?™>rYõ=.LYHQ#Y%&4/4 'UlR$Áa¤KJ4.o¸&)’@0¬þéÿóÿþú½'?6545Ò((-+lNY ½‚ þyJPMgÄÿóÿþú½'?6545Ò((-+lNY ½‚ þyJPMgÄýæ7¦%%"&54732#'&#".'54>32&Pkd8$GF1=  ?(l_g&A"G'>$òƒ?0ƒ¡%ýæ7¦%%"&54732#'&#".'54>32&Pkd8$GF1=  ?(l_g&A"G'>$òƒ?0ƒ¡%ÿë­æ%2"/+5>3254/3%UMC/- 8ee"/()*4æz8= (L -,¾"4!ÿë­æ%2"/+5>3254/3%UMC/- 8ee"/()*4æz8= (L -,¾"4!yþס2 %'7265&'7#"'"&547¹;::ƒ(:*HP8 ˆiû777ýòQlœ `G¬NF^/jg\aI9“yþס2 %'7265&'7#"'"&547¹;::ƒ(:*HP8 ˆiû777ýòQlœ `G¬NF^/jg\aI9“ÿôKè'7#!'!54'=>>E-4þæ 68®:::´>E-4þæ 68®:::´EBse ' (s HD"WJ gO/‚‡ò%"&'#&547&547;%3267.'ggY K£ßJ,>^þGD5  ¡U‚MGU^ &&þ¯VHï" -$Cÿôÿô# *&'#727&'47'62654''654'a³#fXXfS‰T3Ö8• F3_‚&0Q`#®¿2B2 ROL0U§0%.þLV^S/m?7 c9"(/ÿîÿëG(0%3##"&/#737>324.#"3>654&#z0%ÜÜ .D- + ¿» ))*;   77‹:@W:Ì'" M=&OQ6eM}A;^"  ;W13¤œ)3?Iþ»þ$#&505476;+5>76547.#"3232Jc**3 Dj;l5w=-" - % H>9 ¡Ur…K E6J7*g51fIþ»þ$#&505476;+5>76547.#"3232Jc**3 Dj;l5w=-" - % H>9 ¡Ur…K E6J7*g51fƒþ|ö +/32&#"32632#".547$7&+"546'7'7Ê!!"]P ?„YuRv<S 4h^..c_†¾ACCßACC  V%vO5#;>"ksb‚S]8AýµBBC"BBCƒþ|Ä9'7'723"&#"#".547323654.'.546ÍACCßACC1 D70 !N¹Rv<S 4gY•¸),3\þ¾BBC"BBC6 M  >$#;>"ksbABY2'.ÿúÿ>%l7.'7+&''7'7Ü  4"8ÐACCßACCN$ O (8hCN!-ÎBBC"BBCÿùÿ>%¡72673#"'&'+&''7'7'39527  ! &ACCßACCN)*+(5 (, !-ÎBBC"BBC ÿófM(/C%>7'4&547767'&'"#"&5432>54'23267#"&#">¸*D<  /6;h±z/44qAJ6-ð3 $).6941"0î\É07 (4K“}i6+[1PÔM 74.¥³ß2>«$7D) ÿüãK 4#"5'#"'6764';%�#'23267#"&#">ã0i -\F¡6¦y”x*%þÚhwdhý3 $).694-"0¤b¯>5:U ]Ÿw‹pµ5¥ØÊŒ$7D)ÿÿzÿóf['°üF ÿÿ{ÿüã['°F!ÿÿeÿfÌ'°TþÈ ÿÿ{ÿãÊ'°)þÅ!zÿófÌ(/%>7'4&547767'&'"#"&5432>54'¸*D<  /6;h±z/44qAJ6-î\É07 (4K“}i6+[1PÔM 74.¥³ß2>{ÿüãÊ #"5'#"'6764';%�#'ã0i -\F¡6¦y”x*%þÚhwdh¤b¯>5:U ]Ÿw‹pµ5¥ØÊ#ÿòòÁ 354>54&#"34632#3 Ø#*#8#*#H=‰5#.$,888þ˜hgÄ0 2#,8"7A’/2'þÊA{hgþ™ÿÙÿÚœc&)3D&54>54'&5!2632#*#!#".5465327674&'"32>_`#a ?þó\r]Bl>*C7·Ñ;Cœ$L*+c$/UIWP(#A þän18D"1:,.?««3H)*Ÿ+ '$"1 ;Qÿ~;¹"&5473327èUB7!8y'* %‚ha¾´Î“‡Vþý´0#"&5463232=332654.=3ú('wZJ^#&8  .5(>T+*S-R@?L)GX<1)(  '>2*C7DyRlþI´9C#"&547.5463232=332654.=3264&#"ú('B@C13BJX#&8  .5(>T+*S 4"#"-R@?L)J-I1CC1#:0)(  '>2*C7DyRlüÙ#2#"þƒ´;J_#"&547.5463232=332654.=32654&+2>54'#"&'ú('QST=>R)$1#&8  .5(>T+*S,,%  C*2(1*(-R@?L)T- \AYTB?& +)(  '>2*C7DyRlüé  u# " %6$ #. ÿŪ!533þéÄS;#ÂFÿ÷e¶/923##".546;.#"#4&#".54632632=#"@s –“H:)7P;@')3Q+"*? t7LlRd%(R"A(?¶eP*d|87;K95+$þÉ.?*?2lQ €A]GGþË1‰(ÿEÍ\!2#"54654#"#"'46323276‘" .8>c3  /-R9\" ¹þÎPÈ.  ÆoÇKÿöbZ8CJR]%2#"&547##"'#"&546;4632>54&#"'>322654&+'4&#"325#32=#"×>MQ@5H TER'!A7LRU%N?+@ + D41'2O!4?$,5 /$.*22 &¤8,+44*fã?"bþE9:PX=4f€PPS=H1Vk,G4OQ!$*#,"80#L6>Ê1% 2X;Ë:PM=I=Rµ@ %`UMÿõq\LXa"&547&#"#4&#"#4&#"632#"&54>32632632654&#"'>322654'264&"*3XnKs>70SA3'3SS,¥->2B?5@N $7\;TE5\Z59\1.0'6 9.*De$,8#D# üÿ&'@()— w=jaQ>m- þ¾5@( þ¾,)5ÉGP=;HiT$FJ8$ONKL%+' ' 39$þgL?f=l=(3 -H1.H0Mÿö[6A#"'&547&#"#4&#"&54632632654&#"'6322654'«)4U?5&"sF*4S,#A+(v†pRh%1UC+1#3!*aik'/8#D)—!wH#"&547&#"#"&54>7326=4>32654&#"'6322654'°!,%4 C708"98O70$3!(bib+5l?ŽhQk_YE„`3M>1IaRB8;R'"#,&Qk$þh?Hr5We:8Nÿõ\'22#"&547&#"&54632654&#"'62654&'w*D+]PB9Jp0Nf_uƒa?+1'4j&- f,\39(5Tv_sWGƒ[vTs;HŒkŒ$,'RýÙJ<'aTc1@KÿøÂ29DO2#"/3254&+53254+#"'#"&547634632#4&#"325#32=#"ª#07;@)!6,CTER'!A:IC!hN?.B E8,+4)fâ?"b#+1*% !3!!'fPPR>T Vk0F7:PM=P (1"µ%( $`UGÿ_þ¿@GOY%#!"3!!"&5463!2654&+532654+#"'#"&546;4>3232%4&#"325#32=#"Æ 3)þ/Tý¬,66,Ã"-#A/TEQ("@8KTP( ;(EVZ30þþ7-+44*fã "?"bš,%, %G3*+; !$ $RcCCC69,43 \I),w1C?5A4@“. #%QBKÿ À3:CM2#"&54632&#"32654&+#"'#".546;4632#4&#"26=#26=#"mCY´šXkv_]M+4H'Yb~›<1WFS"'B&+N1KO@BWH6,*4\.6À3‘$(\+ÿwW~—)"$/%"nASb{QQ>)?6VkkVÕTA#=J0'UJ)9EÿFçÃ=D\dn~ˆ2#"##"&547&#"#54&#"#"&5467#"&546346324&#"2654&##"'632632'%3265#2654'32=*#"2654'&jW,4$IC5/@M#$.G!!M 0 6BE%/GUoK=*=B7(0*3%0FQCN%G/6N þÙ2'(9¹(%P@/6(CQ"5*,JPYc>32'654.#"32#".547##"'#"&546;46322654&+'4&"3265#26=#"x *+5!^GE}1[(2$ 2U iT@4#4 /TER'#?:IUZN?$8—'!*#>2Ç9V44*'?Ã^'"b(3L&DD_hNt.H(K?7Q:G+>42f€PPV:H1Vk +<&Ñ8*4@<Ñ9QN*#Q4?>2:H0SFS&!A9JTXä%)#>*¿8,+44*fã?"bTm-G5Ã(+B;"!<6F 3+"C45(8  E92654&+'4&"325#32=#"vYuOLETý4üq.88.·J>)#&J/UnB9CA3.I&SFQ("@8KTT$M@%:0F&+"4‹9V44*fã "?"bÄKx K0K!(G5V55$!+30 -'Q,:.5@CN.WjCCC6:,E]%5F`þª' ") h°2A?4=6C˜4 #%QGKÿ/ÄNZait2#".54>32&"32654&#"2#".54>5##"'#"&546;46323>2654&+'4&#"325#32=#"?fŠÂ >N7bUSK?'jI\"–fT3È8,+44*fã?"bÄ®…¤Ð"" ¬ŒtšP97Q:G+?4  %JI.PPR>H1Vk#.=#Psþl8*4B:Ñ:PK?H@Pµ= $`U@ÿ$¢·P^dnx2#".54732>54&#"32#".547##"'#"&546346323>2654&+'4&"325#32=#"»hMxÁ|_¢u\:'bT!êt±e@\L1RZUE+"4 -SCR$A9GSsL>#77 )*4!U$!)!=Ã9R3! d¾Ÿ "= a·ˆm=ooQ2/BITO(~sdj§Å/GcW/UpI>6OC;)<4 (e|NNQ54&#"32#".547##"'#"&546346323>2654&+2654.#"4&"325#32=#"»hd+.*" #3 ¬_¢u\:'bT!êt±e@\L1RZUE+"4 -SCR$A9GSsL>#77 )*4!U$!)!=Ì6"(þ’9R3! d¾Ÿ "= a·ˆm£g A&"2 *"  4/BITO(~sdj§Å/GcW/UpI>6OC;)<4 (e|NNQ54&#"32#".547##"'#"&546346323>2654&+'4&"2654&#"2654'#"&'325#32=#"»h{9>#4*"6 r”_¢u\:'bT!êt±e@\L1RZUE+"4 -SCR$A9GSsL>#77 )*4!U$!)!=Ã9R3B""d.21$#-þ ! d¾Ÿ "= a·ˆm¶k T/*> "+ &/BITO(~sdj§Å/GcW/UpI>6OC;)<4 (e|NNQ@'0ŽH?C1&!'2ETER'!A:IRU%N?%:E8,+44*fã?"bu&;0%&/5./&5(-˜T57I/3'4&f€PPV:H1Vk#.=#:PM=I=Rµ? %`UKýüÀ)08Cp{2#"/32654&+#"'#"&546;4632#4&#"325#32=#"2#"&547&'73254+"&54632&#"3264&#"H?C1&!'2ETER'!A:IRU%N?%:E8,+44*fã?"b703<! .B*6&KS>@'0:DT0$C#6-?#!#$ÿT57I/3'4&f€PPV:H1Vk#.=#:PM=I=Rµ? %`Uþ’09D*?16! &5(-$&;0%&þÊ-&--%KýêÀ)08Co|‘2#"/32654&+#"'#"&546;4632#4&#"325#32=#"2#"&547&'73254+"&54632&#"32654'#"'2>54'#"&547H?C1&!'2ETER'!A:IRU%N?%:E8,+44*fã?"b708?-# 4H6.&KS>@'0:DT0$C#6-$ ", 3&#/ÿT57I/3'4&f€PPV:H1Vk#.=#:PM=I=Rµ? %`Uþ–/;$G$5 G4A$&5(-$&;0%&þü   P#!  '"4 & 0Kþ¼À)08Cn2#"/32654&+#"'#"&546;4632#4&#"325#32=#"2#".54732654+"54632&#"3H?C1&!'2ETER'!A:IRU%N?%:E8,+44*fã?"bù0-.#N.:0%#!KýÿÀ)08Cw„2#"/32654&+#"'#"&546;4632#4&#"325#32=#"2#"&547.54732654+"54632&#"32>54&#"H?C1&!'2ETER'!A:IRU%N?%:E8,+44*fã?"bù0<34! /A$P_8,65M+4?zK-.#N.:0%#!þÐ "-%KýèÀ)08Cv„—2#"/32654&+#"'#"&546;4632#4&#"325#32=#"2#"&547.54732654+"54632&#"32654'#"'2654'"&547H?C1&!'2ETER'!A:IRU%N?%:E8,+44*fã?"bù0<:9 4"4H0LV8,65M+4?zK-.#N.:0%#!ÿ   P." 44 &".KþÁÀ)`goz„2#"/32654&+#"'#"&546;46322'654&#"#54&#"#54&#"632#"&54>3263264&#"325#32=#"2654#"H?C1&!'2ETER'!A:IRU%N?%:A7Pb$H-&>)!>&(d&!/0#+3 67C!9DP8,+44*fã?"b" +ÿT57I/3'4&f€PPV:H1Vk#.=#þóVCm*-V5>Ѷ)ÓÅ*t&4+'1F63J'0.+- :PM=I=Rµ? %`Uþ42Fþ¿À)ekt~‡’2#"/32654&+#"'#"&546;46322"&547&#"#54&#"#54&#"632#"&54>3263264&"325#2654'32=#"3254&#"‹H?B2&!'4CTER'!A;HRU%N?%:2EZ6X7D!,>, >," 0 (#.,#,6'0# >.%=:%.?9V44*fÃm!1@!þ (?"b/+ÿT56J/3'4&f€PPU;H1Vk#.=#þîfK8DC7P5 Òµ&!ÓÄ!, &:)&.D7+D%11.,9QM=I=Rµ þ4"'L.4E!)ž+:`UþB"1Oþ\iÀ+y‡’›¥2#"/32654&+#"'#"&546;46324632632632#"'732>54'#"&5467&#"#54&#"#54&#"632#"&4&"325#2654'32=#"3254#"Ÿ&8 B2% (2ETER'!A:IST%M@%:ýò_B=0"=9$(=S$9;dD)(+1!7 5,'3=)1%#?+ >&) / %"/1,4É9V44*fÃQ 0þ!(?"b;)(ÿ,,6J/2(4&f€PPV:H1Wj#.=#þ:Pf11..L X5Md# ?*C;H8,6C&#Ò¶'!ÔÆ*,&9*-'Dý9QM=I=Rµþ"&+%-$$Ÿ*;`UþA!23Gÿø›ÂAMS\e2'654&#"#".547&#"#5&+#"'#"&5463>322>3262654'%4&"325#32=#"Àbyk/L]L^K<%5 Y%>W)J>G#84AOdD8(:   eO6/2G$,JW"þ™0J+-$W§Ž)5T†f‘MC}Zp \yPn-C5M qBÓÐ g~LLR?I1Vi.K.NzþwH6lHNm #*Ê8MF?J;R° ,5.^RKÿ]…ÂQ[air"3!!"&5463!2654&#"#"&547&#"#5&##"'#"&546;>322>32632#'2654'%."327#32=#"§+Þü"1+3)ñIWXI!^K<5HY': ) 8'F$85?NMC9s ]J1-.>arfM¡$,JV8þ¯/J,-#V§!5T!M<&(;hRQlLgC]\@iB %7,§¤ =>%??F4=*IW¡Dg}fay<.\;B[6.ª0>=1?2D“ 4#/NEKÿ]‹ÁhryŠ2#!"3!!"&5463!2654&+532654&#"#".547&#"#5&##"'#"&546;463232>3262654'%.#"327#32=#"»=Y(DE`MüÍ0Ûü%,45+ùRG %%'HP+^K<%5 Y(0!*J>H" 64ANOE8!3"&0 /10E$-KV8þ¯1$%,-#W§"5T¿-$ 4&'B8K!M6,*9<&24"#9LgC]&9-jA @,§¤ Wi??E5=*GY%4,A#þ¶;/[322>3262654'%4&#"325#32=#"Ædy²™Xm½\F50:mVs‹`O^K< #-Y%7^)K=G#83BOdC9!4  eO6/2G$,JW"þ™1$&*-$W§Ž)5TŸ‚®Ö,%G# ·q• [zRm$P7~N iKÔÑ g~LLS>I1Vj"+@  OzþvI6lHNm #+Ê:LI=J;R°<5.^RMþȯÂ_ƒ–ž§%#".54632.#"32>54.#"#".547&#"#5&+#"'#"&5463>322>326322'654&#"#54#"&546326'2654'%4&#"325#32=#"¯½¢AL4]yC' P;?XZC=a:%'M5^K< #-Y#7^)J>G#83BOdC9!4  eO6/2:!;A.þÏ&% #"%$,JW"þ™1$&*-$W§Ž)5T^¶à 2!6GB '/#&--G^X.;kg= [zRm$P7~N iKÔÑ g~LLS>I1Vj"+@  Oz/LƒþÁ' + ;% &ÃI6lHNm #+Ê:LI=J5.^RIÿ*Â[elu%>32632# 4>7!2>54&#"#".5467&#"#5&+#"'#"&5463463222654'%.#"3265#32=#"¼gO7.2:\AB #9_{²lý€/- [¤›…ËsHt?ZK<%5 4*#,@ *J>G# 62DNfE8(: !#.F[.þ©0$1-$#5¨Ž6TùM|PPj(JTHD/³#4i4jv¸`Z/FbW0_‚ W~Po.C6:m% -A4ÔÑ e€LLR?J0Tl.K.ÊJ5nFQj3EÊ;K=IJ32632".547# 4>7!2>54&#"#".5467&#"#5&+#"'#"&5463463222654'2>54&#".#"3265#32=#"¼gO7.2:\ABb,4*"#*’åý€/- [¤›…ËsHt?ZK<%5 4*#,@ *J>G# 62DNfE8(: !#.F[. *+ý«0$1-$#5¨Ž6TùM|PPjšhC("3 3" ?³#4i4jv¸`Z/FbW0_‚ W~Po.C6:m% -A4ÔÑ e€LLR?J0Tl.K.ÊJ5nFQj3EþÜ  î;K=IJ7!2>54&#"#".5467&#"#5&+#"'#"&546346322>32632%2654'264&'"2654&'#"&=.#"3265#32=#"¤ ( U>+> ˆÅý€/- [¤›…ËsHt?ZK<%5 4*#,@ *J>G# 62DNfE8(: !gO7.2:\ABþ›#.F[.Î.!V7'#8+-/)þ0$1-$#5¨Ž6Tj4 >U$5*$"/³#4i4jv¸`Z/FbW0_‚ W~Po.C6:m% -A4ÔÑ e€LLR?J0Tl.K. M|PPj¸8J5nFQj3Eþ×,z:( 5 588 (;K=IJ ?(. 9'(1KUK:7&$ÿT57I/3'4&f€PPV:H1Vk#.=#:PM=I=Rµ? %`UòWB>K*Z+Fѵ&!A0\#.hCX10Kþ»À)08Cgq2#"/32654&+#"'#"&546;4632#4&#"325#32=#"2#"&547&#"#54#"&5463262654'H?C1&!'2ETER'!A:IRU%N?%:E8,+44*fã?"bÔCZ5,*7D *97'4MYK74'-m6B#ÿT57I/3'4&f€PPV:H1Vk#.=#:PM=I=Rµ? %`UòiJ7ED6R6 ѵHC3Z!-hAZ0/þü)"O.4E#,KþXÀ)08C€Š2#"/32654&+#"'#"&546;4632#4&#"325#32=#"4>32632#"'732>54'#"&5467&#"#54#"&264'H?C1&!'2ETER'!A:IRU%N?%:E8,+44*fã?"b5 0& 4',;R0<9bH&& !3; 6+&2>+>",98  NZx"=%ÿT57I/3'4&f€PPV:H1Vk#.=#:PM=I=Rµ? %`Uþt.B 0.KT2Kf '0# P&$5 .>"9:PM=I=Rµþ¹).gM<$6TN] %`Uý“P." ,+ '".JÿDšÂ18AK2#"$54732>54&+#"'#"&54;4632#4&#"325#32=#"=IÚ¬ÆþüVF„v’;ni?0&(UEQ'#?:I‡DM@$9F9+2,5)f£ "?!cQB‡£Ù¡˜k"nyŽZP5gG+9f€PPR>yUl ,;'9QV4I54&+#"'#"&54;4632324&#"325#2>54&"32=#"E#2 1"1CF\ÆþüVF„v’;ni?0&(UEQ'#?:I‡DM@$9B=Iþò9+2,5)fÂG.#2#þ3 "?!cU>* "*C1 Ù¡˜k"nyŽZP5gG+9f€PPR>yUl ,;'QBr9QV4I54&+#"'#"&54;4632#4&#"325#2654.#"2654'#"'32=#"=Ir%2 >*?R3BÆþüVF„v’;ni?0&(UEQ'#?:I‡DM@$9F9+2,5)fÂ,%D+75%C#þ& "?!cQB†T$.-8&Y=% Ù¡˜k"nyŽZP5gG+9f€PPR>yUl ,;'9QV4I,#N@,5_F:D=?V90I8NaH:+Z5:a"':PM=I=Rµ? %`Uþ #&C6%NOKþÀ)X_gr}†2#"/32654&+#"'#"&546;4632"&547&=4&#"#"&5463232654'4&#"325#32=#"2654&"'2654'H?C1&!'2B TER'!A:IRU%N?%:_*5:B\B-6,#N@,5_F:D=?V90I8NaH:+Z5:a"':PM=I=Rµ? %`Uýb-,-%ª#&C6%NOKýë À)\ckv„™¢2#"/32654&+#"'#"&546;4632#"&547&=4&#"#"&5463232654'4&#"325#32=#"2654'#"'2654'#"&547'2654'H?C1&!'2B TER'!A:IRU%N?%:_*6C$ 4H93,#N@,5_F:D=?V90I8NaH:+Z5:a"':PM=I=Rµ? %`Uý“  P." ,4 '!/É#&C6%NOMÿøÓÂ8=IOXc%>73!5654&+#"'#".546;46323235"&54632"54&4&"3265#26=#"ÛI} ýƒR) TER'#E-<BN:N?$8*=K$»GUF9.C¤H\‡( þ9V44*'?Ã]'6- Ù•9þG!P&4f€PP@>.EVk +<&P75!T>7CQ] ÐX–b( -r"…9QN73##".547!5654&+#"'#".546;46323235"&54632"54&264&"4&"3265#26=#"ÛI} E/ "*þPR) TER'#E-<BN:N?$8*=K$»GUF9.C¤H\‡( Ù2##2#ýÙ9V44*'?Ã]'6- Ù•9þG,3A 2!*!P&4f€PP@>.EVk +<&P75!T>7CQ] ÐX–b( -r"þ"4""4V9QN73#"&547!5654&+#"'#".546;46323235"&54632"54&2654'#2>54'#"&'4&"3265#26=#"ÛI} )+TzS.þtR) TER'#E-<BN:N?$8*=K$»GUF9.C¤H\‡( Ë&$!$(+3&1EýÒ9V44*'?Ã]'6- Ù•9þG!>BYW?A#!P&4f€PP@>.EVk +<&P75!T>7CQ] ÐX–b( -r"þ! !X 0%" &4"! 0-¹9QN73#"&54632&#"327675&=!5>54&##"'#"&546346323235".5463273"544&"265#32=#"ø#ec >4J/Vk#.=#?J5?*3EXTP/I–g2- w>Š9QM=H@PTa= $`UMþ¾ÓÂ8qv‚ˆ‘›¦%>73!5654&+#"'#".546;46323235"&546322'654&#"#54&#"#54&#"632#"&54>3263267"54&4&"3265#2654#"26=#"ÛI} ýƒR) TER'#E-<BN:N?$8*=K$»GUF9.Cs6O`F0' :) ":'*l +/"*2 67D !8FhH\‡( þ9V44*'?ÃJ-þ…'6- Ù•9þG!P&4f€PP@>.EVk +<&P75!T>7CQ] þúVCm**[3DѶ +ÔÅ+.)&0F53K&21./6X–b( -r"…9QN73!5654&+#"'#".546;46323235"&546322#"&547&#"#54&#"#54&#"632#"&54>3263267"54&2654'4&"3265#3254&#"%26=#"ÛI} ýƒR) TER'#E-<BN:N?$8*=K$»GUF9.CZCZ8(,6G#.:"("9.#,+",*#,4(:.=0$>;$.„H\‡( ü#5B#ý®9V44*'?Ãë.þ¸'6- Ù•9þG!P&4f€PP@>.EVk +<&P75!T>7CQ] þ÷eM9BE5Q6 Ó¶-ÔÅ"' .8*&-D75N#330.9X–b( -r"ýb#)P/5I"+9QN73!5654&+#"'#".546;46323235"&546324>32632632#"'732>54'#"&54>7&#"#54&#"#54&#"632#"&"54&2654'4&"3265#26=#"3254&#"ÛI} ýƒR) TER'#E-<BN:N?$8*=K$»GUF9.Cýæ&/# ?.">:$(=T";9cD)% (=> 4+&2.4,:)!!:.$#2 )"-$)3,¾H\‡( ­ #ýð9V44*'?Ã]'6- -,Ù•9þG!P&4f€PP@>.EVk +<&P75!T>7CQ] þB+D&3300L U7Oa %5.J#;G7, !,!+Ò¶")ÔÆ"1 .:(4KX–b( -r"ýa'-) %%9QN73!5654&+#"'#".546;46323235"&54632"54&4&"3265#26=#"4632!7354&'4#"6ÛI} ýƒR) TER'#E-<BN:N?$8*=K$»GUF9.C¤H\‡( þ9V44*'?Ã]'6- ï9T‘þâ½&¡-/*2,AmÙ•9þG!P&4f€PP@>.EVk +<&P75!T>7CQ] ÐX–b( -r"…9QN73!5654&+#"'#".546;46323235"&54632"54&4&"3265#26=#"4632##"&547#7354&'4#"62654'#ÛI} ýƒR) TER'#E-<BN:N?$8*=K$»GUF9.C¤H\‡( þ9V44*'?Ã]'6- å9T‘&A/1?&o½&¡-/*2,Am.&11%Ù•9þG!P&4f€PP@>.EVk +<&P75!T>7CQ] ÐX–b( -r"…9QN73!5654&+#"'#".546;46323235"&54632"54&4&"3265#26=#"4632#".547#7354&'4#"6264&#"2>4'#"&547ÛI} ýƒR) TER'#E-<BN:N?$8*=K$»GUF9.C¤H\‡( þ9V44*'?Ã]'6- ê9T‘*3$%3c½&¡-/*2,Am%') )/Ù•9þG!P&4f€PP@>.EVk +<&P75!T>7CQ] ÐX–b( -r"…9QN..>"¾).gM<$6TNÀ$P '< ,+ '". Mþ,ÓÂ8=IOXc…™%>73!5654&+#"'#".546;46323235"&54632"54&4&"3265#26=#"4>32#".54632&#"326=#7354&#'"654&ÛI} ýƒR) TER'#E-<BN:N?$8*=K$»GUF9.C¤H\‡( þ9V44*'?Ã]'6- ó,-’CV38J5B;7N;)ó¼#$(¦30,_(t Ù•9þG!P&4f€PP@>.EVk +<&P75!T>7CQ] ÐX–b( -r"…9QN%$bPB!5?tS[!Kþ¿À)[bju2#"/32654&+#"'#"&546;46322654'7#"&=4&#"#54#"&546326324&#"325#32=#"H?C1&!'2B TER'!A:IRU%N?%:T"*Q^?5/A,,9: LWI57&!7/A&z8,+44*fã?"bÿT57I/3'4&f€PPV:H1Vk#.=#ýë=/b$*x?M@2190ѵI .b$-u?O0/A08)2:PM=I=Rµ? %`UKþÀ)biq|‡2#"/32654&+#"'#"&546;46322654'7"&547&=4&#"#54#"&546326324&#"325#32=#"264&#"H?C1&!'2B TER'!A:IRU%N?%:T"*Q^58B\B18,,9: LWI57&!7/A&z8,+44*fã?"b#!#$ÿT57I/3'4&f€PPV:H1Vk#.=#ýë=/b$*xS'A1??1;! D190ѵI .b$-u?O0/A08)2:PM=I=Rµ? %`Uýb-&--%Kýë À)fmu€¢2#"/32654&+#"'#"&546;46322654'7#"&547&=4&#"#54#"&546326324&#"325#32=#"2654'#"'2654'#"&547H?C1&!'2B TER'!A:IRU%N?%:T"*Q^6A$ 4H=5,,9: LWI57&!7/A&z8,+44*fã?"bï  &4)'"0ÿT57I/3'4&f€PPV:H1Vk#.=#ýë=/b$*xT&#I.G4F$ B190ѵI .b$-u?O0/A08)2:PM=I=Rµ? %`Uý“  P." ,4 '!/Kþ+À)w~†‘2#"/32654&+#"'#"&546;46322>54'7#"&54632&+"32>5#"&'.#"#54#"&54>326324&#"325#32=#"H?C1&!'2B TER'!A:IRU%N?%:G DZ%>;!=S`811*VR+>!:.6."97BNZ /% 5'!60BT8,+44*fã?"bÿT57I/3'4&f€PPV:H1Vk#.=#ýä 2"V&L’C_-251F:W6Ò¶H:=Z!+m-B 0/O> Y:PM=I=Rµ? %`UKþ¼À)AW^fq2#"/32654&+#"'#"&546;46322'654&#"&54&2'654&#"&544&#"325#32=#"H?C1&!'2ETER'!A:IRU%N?%:|L+A7+-8H [ó|LA$A7+-8H [a8,+44*fã?"bÿT57I/3'4&f€PPV:H1Vk#.=#þëRD$0) !L0;<1V*iEVRD@K !L0;<1V*iEk:PM=I=Rµ? %`UKþ À)Jbiq|ˆ2#"/32654&+#"'#"&546;4632#"&547'654&#"&54632%2'654&#"&5464&#"325#32=#"2654&#"H?C1&!'2B TER'!A:IRU%N?%:v*.B./A@A6,-8H [V?>Lþ*>L*(@6,-8I [V+8,+44*fã?"b %!"$ÿT57I/3'4&f€PPV:H1Vk#.=#ýà >%1?@0G!L0;<1V*iDWRDGÝRD.G"K1:>/V*iEV:PM=I=Rµ? %`Uýb$.-&Kýë À)Lbiq|‰ž2#"/32654&+#"'#"&546;4632#"&5467654&#"&5462$2'654&#"&544&#"325#32=#"2654''2654'#"&547H?C1&!'2B TER'!A:IRU%N?%:k.3$ 4H4@7+-8H [W|Lýî|LA$A6,-8H [‰8,+44*fã?"bï#&4)'"0ÿT57I/3'4&f€PPV:H1Vk#.=#ýß F(.G4/9 !M0;<1V*iEVRDHÞRD@K !L0;<1V*iEk:PM=I=Rµ? %`Uý“ # P." ,4 '!/Mÿ6Ã/;G2!3##"&547#5654&#"632#"&5462>54&"%2654&#"7^‰VS&%A31C&ôebI)A$ ,=2CB6>KÛ#2#þ:!)' *&ÃzdkX—þG"41CC13#JtPi"/>)HS<:HeS~˜ý· ""+µ.%#0-$'.MþþÃ/<NZ2!3##"&547#5654&#"632#"&5462654&#"2654'#"&'%2654&#"7^‰VS/.U<=S1ÆebI)A$ ,=2CB6>K°%$,64%".EþS!)' *&ÃzdkX—þG%BDWTBD(JtPi"/>)HS<:HeS~˜ýÓX9)$ (2( 0-ñ.%#0-$'.Mÿ Â<H233#"&54632&#"3265!5654&#">32#"&5462654&#".cŠSîS/YDht^IHG"$}W"aBþ®a_I(A% +!4B6>AM%"'"((†ÂV—þ;8J;,# &#[cHjQp".=)+\31PeTsžþn8%2.#9Iÿ_°Á>2#!"3!!"&5463!2654&#"#"&546732654&546ñ6O(59VþÈ9 ñþ0;1:G]A4"3VJRhQ<2F& $<Y¿'?B#`JP(H:+#:tYE\GN$HVmXMf YC$: 9?5?OIÿb·ÄK2#!"3!!"&5463!254&+532654&#"#"&54>7326='546þ*D' AAcOþ¯9þ0;294}($46/)[FOj 2)3E /%,4`¿& 9#F;I$H:+#:T"0$+ !7<'TGYlZ-L,Z?-B =4W:FHÿÇÂ72#"54632&#"32654&#"#"&54>732=4>ø\s¼šÐnWmK(.$4 J=[M§€§×T"" ")µ–hŽØMh€`2JC5>1K`¨#/QAMþÈÎÀ@b%#".54632.#"32>5#"#"&54732=4>322'654&#"#54#"&546326ÎɤAL4]xD' O;?XZCAe='}%/ZCUe|fI54&#"#"&547326=462'654&#"#"&54732=46N_ =-$3 J6%<ZCUe|42I<%8a}5?bP-";;/8DUD-%9C¿u_9KC6w-%Y1>e*.=RCi1)P3@Q64AMþX±À+e2'>54&#"#"&547326=462+"3!!"&46;2654&#"#"&546732654&546N_ =-$3 J6%<ZCUe|42I<%8at$5 8&Í$$Hþ¸ (( ·-<)"6>,4G.1#.2"&<¿u_9KC654&#"#"&547326=462+"3!!"&546;254&+532654#"#"&5467326='46N_ =-$3 J6%<ZCUe|42I<%8as@:((@6Ý$$Qþ¯ '' ÊQ D8;05F1."/ %?¿u_9KC654&#"#"&547326=462#"5432&#"32654&#"#"&546732=46N_ =-$3 J6%<ZCUe|42I<%8ae;N{f‹ƒE6%5LQOa1';<+7E*5!' /(:C¿u_9KC654'#2>54&'#".=ÕwXËþ¶ÆS+7V= +$7þv›JM&7/Ue|42I<'6RC’SéBT#c*%&0 ("83%!,  *ù[nþñ—þG+H>U8#G,¡U¦B,D!{f¢FSLSdU.SSd·FÓVF6¾þ* [+( 76!-"  #MÿAÂMU%4632!!3#".54>32&#"326=!5#54#"#"&547326=463237"!5&ÕwXËþ¶ÆS‹£ \b7P?`F6B'iO:z[ýã›JM&7/Ue|42I<'6RC’SéBT#ù[nþñ—þGvv &" VX¡U¦B,D!{f¢FSLSdU.SSd·FÓVF6¾IÿóÇÄC2#"/32654&+532654&#"#".54>732?> 2L%LRbJ%$ 1#;3)#".(>",A(<377! =+'5G5a#9:Ä,& CO732?>264&" 2L%LR8:A3"2  1#;3)#".(>",A(<377! =+'5G5a#9:N4""4"Ä,& CO@&"C1C+! ' <%+&8,2)KYK,C!/\?7G@9?+Ma‘;9Q)ý»"4""4IþþÇÄKYk2#"&547/32654&+532654&#"#".54>732?>2654'+2654'#"&' 2L%LRCBU<=S0 1#;3)#".(>",A(<377! =+'5G5a#9:: +72'$.EÄ,& COG&$PDWUAB)<%+&8,2)KYK,C!/\?7G@9?+Ma‘;9Q)ýÒX:($ $6) 2+HÿDãÃL#".5432&#"32654&+532654&#"#"&54>7326=4>32Ò9/y<@]5D.˜W-"=Q9GVC6&&-9/60LZBSg >.$4 J=4'$1K`KI77P)MHÿëñÃk#"'#"&54>54&#"##532654&#"#"&54>7326=4>323265332>54&'u;A+4'I2T>8H)2)"& %& &:L=GW+&(D(! 0 5617!2" 1(Cþë;3%J1LaHÿDòÃs#"&547&'#"&54>54&#"##532654&#"#"&54>7326=4>323265332>54&'2654&+"u;AGH 1"1C4&T>8H)2)"& %& &:L=GW+&(D(! 0 56* Ã!‚IoDO "*C1$871)#*% BMOL_z`3W9# eQ/F!@JI3L'>17!2" 1(Cþë;3%J1Laýß* HþüñÃp}"&547&'#"&54>54&#"##532654&#"#"&54>7326=4>323265332>54&'2654'+2654'#"&'u;AYWTzS7%T>8H)2)"& %& &:L=GW+&(D(! 0 5617!2" 1(Cþë;3%J1Laýë( X9)" '3( #. NÿÃs#".54632&#"3265#"'#"54>54#"+532654#"#".546732676323265332>54'ŠD35eN8C/mP'U(3mI$eP1B[4j…(1(H4/I'& ?:1G F:k 2"') –@O7- "P3BL'!%6 kÃ@tle…k1" '" vk1HTY0*)3QttQ5N?H„'Wz.9&XeÍ90H,%#1'Dþê1<)=2tSLÿ(|Ãh%3254'7#"$54732>7#&'#"&54>54+5;254&#"#".546732>763232653ˆ!'k~ô’çþÌb `ÚQƒ_/ \5i6P)0)HG$6*O<1G F:k*" %%)N;P7/['P5@M¥*C®Š9O©vÁlð¿†eRw©Ï6$FT)00*EpdMi6O>H„'Wz.D Ja{"B;.H/"A"/(DLþñ}Ãu~#"&547#"$54732>7#&'#"&54>54+5;254&#"#".546732>7632326533254'7264&#"&9*" 0FŠ¢çþÌb `ÚQƒ_/ \5i6P)0)HG$6*O<1G F:k*" %%)N;P7/['P5@M!'k~Ž2""$&>."3 B4Hð¿†eRw©Ï6$FT)00*EpdMi6O>H„'Wz.D Ja{"B;.H/"A"/(Dþê*C®Š9O©‡þô#2"!4Lþ|Ãr•%3254'7"&547#"$54732>7#&'#"&54>54+5;254&#"#".546732>7632326532654.'#2654&'#".=ˆ!'k~†:@U|TsyçþÌb `ÚQƒ_/ \5i6P)0)HG$6*O<1G F:k*" %%)N;P7/['P5@M/.&A+7'#8'# $':¥*C®Š9O©¥s V1=VU>+ð¿†eRw©Ï6$FT)00*EpdMi6O>H„'Wz.D Ja{"B;.H/"A"/(Dýr y:( 5 6& & +7Hÿ÷ÓÅ=2'>54.#"#4&#"#"&5467326=4626 Pw :*"/ 0(!2S9+-CVEOjR/#1 /(#4hš8;Å„e3D?7<*2L%5=þìD .@KaO`}c\u6<,2L%?KMRg67Gÿö<Å9E2#"&547&#"#4&#"#"&54>7326=463262654&'=þrI:4`k27CHÿbÃÂTa4632632#"'7327654&'#"&54>7.#"#4.#"#"&54>732652654'PbO\8G^ŽI[WMLg;8('X=?7+M@7Q E0 H5/IS& )C\EPd ;*#1-# %;O2%3!0)ET77s‚LpML*JIa?R -:[mUF4?-)08þÝ:":CkK_|d3HB6<,5N#ISšBDF& 7&1?Fÿ÷Â+72!5>54&#"#"&54>732654&5&546354.'.m„þy^^)!+?bGPa ;*m@2.9}²KFê.%)ÂhÝNO'-@2\Rh|f4F@7J]O? Na¯Ds;Õ*>)Fÿ;Â6BJ2##"&547#5>54&#"#"&54>732654&5&546354.'264&".m„!!A31C!À^^)!+?bGPa ;*m@2.9}²KFê.%)4""4"ÂhÝ /0DC1/ NO'-@2\Rh|f4F@7J]O? Na¯Ds;Õ*>)þ"4""4FþþÂ6BOa2##"&547#5>54&#"#"&54>732654&5&546354.'2654&#"2654'#"&'.m„.,U<=S/“^^)!+?bGPa ;*m@2.9}²KFê.%)%$,64%".EÂhÝ&?DWTBD&NO'-@2\Rh|f4F@7J]O? Na¯Ds;Õ*>)þ3X9)$ (2( 2+GÿGJÂ52#".54732654&#"#"&5467326=46–3J&\µtr±[G#@¿—•¼D7*=`DPb<8"07B6+8cÁ-JK'jµrq´jƒhXqż‹M_9,…BYucH†#r@F\<0oL_GþéKÂ?J#"&=#".54732654&#"#"&5467326=4632264&#"í%9A31CJTr±[G#@¿—•¼D7*=`DPb<8"07B6+8cI3J&s##("1>.0DC1 q´jƒhXqż‹M_9,…BYucH†#r@F\<0oL_-JK'–þë"4"#"GþŠLÂBNa"&547#".54732654&#"#"&5467326=46322654&#"2654'#"&'Ì%.TzS 4;r±[G#@¿—•¼D7*=`DPb<8"07B6+8cI3J&DY&%'%*85$1 *(U 8%AZUAq´jƒhXqż‹M_9,…BYucH†#r@F\<0oL_-JK'U¢¿X9)" '3 # #. Mþ½±À+S\2'>54&#"#"&547326=46#"&=4&#"#"&5463232654'2654'N_ =-$3 J6%<ZCUe|42I<%8a’*C4/>,#N@,5`E:D=?V90I8NaH:+Z5:a"ð#&C6'LOMþ³À+[en2'>54&#"#"&547326=46#"&547&=4&#"#"&5463232654'2654&"'2654'N_ =-$3 J6%<ZCUe|42I<%8a’*5:B./A-6,#N@,5`E:D=?V90I8NaH:+Z5:a"þf&.-…#&C6'LOMýë»À+^l€‰2'>54&#"#"&547326=46#"&547&=4&#"#"&5463232654'2654'#"'2654'#"&547'2654'N_ =-$3 J6%<ZCUe|42I<%8a’*6C$ 4H93,#N@,5`E:D=?V90I8NaH:+Z5:a"þ—   P." ,4 '!š#&C6'LOLÿ;OÂ19A%4632!!3##"&547!5#5654&#"&5463237"!5&264&"ÛwXËþ¶ÆS A31C þTîI7(+4,;UEF]$véBT#s4""4"ù[nþñ—þG#.1CD0.#¡,H.9B76#2XHYYJ4'ÒVF6¾ýê"4""4LþþIÂ08EW%4632!!3##"&547!5#5654&#"&5463237"!5&2654&#"2654'#"&'ÛwXËþ¶ÆS,.T=>R1þ‚îI7(+4,;UEF]$véBT#\%%+72'1 Eù[nþñ—þG&‚ZUAD(¡,H.9B76#2XHYYJ4'ÒVF6¾þX9)$ %5"! 2+HÿxÂHO23467632!!3#"&54>32&#"325!5#5654.#"&546"!4ü $1(#-0J8O1 þ±ÕSþñF'@@ WQ#L02DU*ÂýÓøI&2D8Dc7OC(Â"<&3(Mh"&.LQ9—þLè.&¾¡+IB3= 2XHX*]@6ÓLþÈGÂ@`h%4632!!3#"&54632.#"3276=!5#5654&#"&5463232'654&#"#54#"&546326"!5&ÛwXËþ¶ÆSÆ_z}_xD' Q;QFWFjKLýàîI7(+4,;UEF]$vD% #HBT#ù[nþñ—þ3{©L+6GB (:$/HIf¡,H.9B76#2XHYYJ4'þ²$% ;;% % VF6¾LþºGÂ&.T%4632!!3!5#5654&#"&5463237"!5&2'654&#"#54&#"&546326ÛwXËþ¶ÆSý”îI7(+4,;UEF]$véBT#s6H)?(. 9'(1KUJ;7&%ù[nþñ—þG¡,H.9B76#2XHYYJ4'ÒVF6¾þUWB$-) *Z+Fѵ&!A0\#/gAZ10Lþ»GÂ&.R\%4632!!3!5#5654&#"&5463237"!5&2#"&547&#"#54#"&5463262654'ÛwXËþ¶ÆSý”îI7(+4,;UEF]$véBT#YCZ6+*7D+97'4MYJ86%/k 6B$ù[nþñ—þG¡,H.9B76#2XHYYJ4'ÒVF6¾þUgL7ED6R6 ѵHC3Z!-hAZ0/þü)"O.4E$+LþXGÂ&.jv%4632!!3!5#5654&#"&5463237"!5&4>32632#"'732>54'#"&5467&#"#54#"&2654'ÛwXËþ¶ÆSý”îI7(+4,;UEF]$véBT#þ² 0%5&,;R0<9_K&& (: ; 6+&2>+>",98  NZx"$%ù[nþñ—þG¡,H.9B76#2XHYYJ4'ÒVF6¾ý».B 0.KT2Ih ':0P&"!4Og&aÆDZ-þ±ÌSKxÓŠ®þâ¥$)#š ¢äýâÙI@.1<5C 45ñ*<)Á[D2+ý(R_F—þ>'FP9&ˆï’?_=7V9€ÎsÖ ¡+J-9;1F 0Y-C!)236ÓIþròÂKT`23432!!3#"&547#"$&54673 =!5#5654&#"&54>"!42654&#"Og&aÆDZ-þ±ÌSL3 2"4B‰Ç­þâ¦$)#š ¢äýâÙI@.1<5C 45ñ*<)f2""Á[D2+ý(R_F—þ>bB8- #*F0 )‡ð’?_=7V9€ÎsÖ ¡+J-9;1F 0Y-C!)236Óý!!!6IþòÂIRau23432!!3#"&547#"$&54673 =!5#5654&#"&54>"!42654.'#2654&'#"&=Og&aÆDZ-þ±ÌSw67U>=Uy¨­þâ¦$)#š ¢äýâÙI@.1<5C 45ñ*<)3.A+7'#8+-/)9Á[D2+ý(R_F—þ>|GQ.>UU>-$‡ð’?_=7V9€ÎsÖ ¡+J-9;1F 0Y-C!)236Óý  y:( 5 588 )9Lÿ;+ÂHP[2#".547&/3254&+532654&#"#4&#"632#"&54>326264&"%2654&#"zGbBJ86A3"2   8U29'$.717/ASS,¥-?1AD93262654'+2654'#"&'%2654&#"zGbBJ=FTzS/ 8U29'$.717/ASS,¥-?1AD932632#4&#"3265#';54#"26=#"v=J(# #'%(/ %/! !?/ '. B.0H)I@\D7.$:5*.7ä6+$?'H&"cI<%9 /F!28X0 1#" :'I)-" "PMkS9L>GI>SdS Ž )'c%þÃ,4UT)HÿøÂ5<DNY%#"/324+5324+#"'#"&547&54>3263232%4&#"3265#';54#"32=#"Ë$>1:H:H'20P)#?:IBD .(G%OEV7…þÿ8,+44*'?æ9)$?4?"bˆ##* ! ^"FD`.PPR>P@ 2 PPnSD^:PM=H@PTal*'c!Ü $`UHÿd¿AHOZe"3!!"&5463!254+53254+#"'#"&547&54>3263232#4&#"325#'";5432=#"´8Sý­1;<0“}6*/EZ;P)#?8KBD96G%O%:@|/5P;|7-+44*fÃ_.$"$„?"b 'B1()9:0(-dWCCC6D5%0 CC%4>,*,9%1C?5<4E˜‘!SÔ%QGMÿÂ:@JU^2#"&54632&#"32654&+#"'#"&547&54>32632#4&"';54#"32>5#32=#"nE]³—D’w\[B(0>"^T+r‰5,UEP)#?:IBD .(G%O.A E9V4¦9)$?.¥5)&1ã(?"br[}š,#.“m@Ue|PPR>P@ 2 PP/I29QN32#"&546326326322654&+53254'$264&#"+,SE(, AH(/0**%.41ES@KF:K ;(6]2*"L:\4% .!/=$ 9F£„a948dB'yF^ý— + &D@.32þÍ>&& %â ?$9E:!L 4211/$þÂ-E'>5$F #-^`?s" !/<.)M;!3bP€—NMF4?Ý) '.7;!h;=L-H1.HLÿ;oÃer…Ž%#"&547&/3254&+532654&#"#4&#"#"&5467&#">32#"&546326326322654&'%2654&+53254'$264&#"+,42A31C AH(/0**%.41ES@KF:K ;(6]2*"L:\4% .!/=$ 9F£„a948dB'yF^„4"& þ= + &D@.32þÍ>&& %â ?$A"!?0DC1- :!L 4211/$þÂ-E'>5$F #-^`?s" !/<.)M;!3bP€—NMF4?þv" ‹) '.7;!h;=L-H1.HLþù{Ãdn”%"&547&/3254&+532654&#"#4&#"#"&5467&#">32#"&546326326322654'#2>54'#"&'%2654&+53254'$264&#"+,;GS|R8 AH(/0**%.41ES@KF:K ;(6]2*"L:\4% .!/=$ 9F£„a948dB'yF^ž.)(C&0 5$"./þB + &D@.32þÍ>&& %â ?$D##TCXV@I):!L 4211/$þÂ-E'>5$F #-^`?s" !/<.)M;!3bP€—NMF4?þˆ% $v+'  '3) Có) '.7;!h;=L-H1.HJÿ7Ú¹)1233##"&547!532654&#"#&54>264&"=CQ7ëS"$B21C$þ4Ó+7$)#* + 974""4"(R>I-—þG"3/ED03""?/"80! $. þS#2##2Jþýܹ)5H233##"&547!532654&#"#&54>2654&#"2>54'#"&'=CQ7ëS,0S>=S2þ]Ó+7$)#* + 9.%C&0 3&1 /(R>I-—þG&BCXUAD)"?/"80! $. þmw+(  %5"! CJÿ9×¹%-233!5>7!532654&#"#&54>5#=CQ7ëRþ<9[8 þCÓ+7$)#* + 9oJ&#(R>I-—ý€ .9."?/"80! $. þ7¡):JþzÛ¹3;F233##"&547!5>7!532654&#"#&54>5#264&#"=CQ7ëR!! .B!þ÷9[8 þCÓ+7$)#* + 9oJ&#°#!#$(R>I-—ý€!.*?1.! .9."?/"80! $. þ7¡):©-&--%Jþaà¹4<G\233##".547!5>7!532654&#"#&54>5#2654'#2654'#"&547=CQ7ëR"+-# $5 +þÿ9[8 þCÓ+7$)#* + 9oJ&#œ"&4)+1(R>I-—ý€%8$5 -# 7& .9."?/"80! $. þ7¡):z P." *)  '$,JþÊÞ¹R\233!532654&#"#&54>2#"&547&#"!532654#"#&546323&54>2654'=CQ7ëSýrÓ+7$)#* + 9.+B5,%2H4@>þ€‡0 0(*7r&Di%B(R>I-—þG"?/"80! $. þÏ(:2=J:.V< J5M' '; (1;)*5E#>3þþ(.I5@ )JþjÚ¹nz233!532654&#"#&54>#!"3!!"&5463!2654'#"&5467&#"!532654&#"#&546323&54632'3254'=CQ7ëSýrÓ+7$)#* + 9Â@4þB$$5ýË&&ž0>> 1)$/<'+0B>þµc#,%'7o%OI-—þG"?/"80! $. þ3D&  A-B 2<3$,3>1A!.  &-!%.6:F? )%I$JþjÚ¹u233!532654&#"#&54>46322#!"3!!"&5463!254#5254&##"&547&#"!532654&#"#&546323&2654'=CQ7ëSýrÓ+7$)#* + 99MI-—þG"?/"80! $. þL;G-)/)'!!6&!'3?0)S7)C -  ',F .%'2F#Jþ4عu233!532654&#"#&54>4632#"&54632&#"32>54&'#".5467&#"!532654&"#&546323&2654'=CQ7ëSýrÓ+7$)#* + 9IQAN(0BkV1``(51%#7A+@ #4+#:*/!2 #þ¦n *3 )6 r(»V(R>I-—þG"?/"80! $. þ/CYK T@Y}  '@A"H '&.& #G<  -'4*)&8-5%& I3Jþ}عir233!532654&#"#&54>4>32#"&54732654'#"&547&#"!53264&#"#&546323&73254=CQ7ëSýrÓ+7$)#* + 9£ .@,,žuƒµ@9¤zg. *$K ( .þùK "*Z©0$'(R>I-—þG"?/"80! $. þN %.>E)Uo‰hO7 ;?\riM22B3%O.+E!,& +.!$/^*=I%Jýÿì¹t}‹233!532654&#"#&54>#"&547#"&54732654'#"&547&"!53264&#"#&546323&54>32'32542654&+=CQ7ëSýrÓ+7$)#* + 9•-:(G0'‡±@9¤zhŽ. *#K<( .þùK "*Z' @+-w+$' (  (R>I-—þG"?/"80! $. ý–.)+702 ŠgO7 ;?\riM10D3%O,,D",& +.!",9%6 >E)Mª.=I"þ®" "Jýëì¹{„ޤ233!532654&#"#&54>4>32#".547#"&54732>54'#"&547&"!53264&#"#&546323&732544'326'"&5732654'=CQ7ëSýrÓ+7$)#* + 9·' @+-J B2!2 "ƒµ@9¤z5I;*. *#K<( .þùK "*Z©+$'!- &:&)-$21(R>I-—þG"?/"80! $. þN%6 >E)S6 %+?& ‰hO7 ;?\r&D+10D3%O,,D",& +.!",a.=I"ÿ ; :.";Hÿ‰À[i"3!!"&54>3!2654.'#"&54>7&#"!532654&#"#&546323&547632632#'2>54'»!$Óü-,<$ ÖO_$/ &O;?N2##/J72_ý¼Ë#,("#, +H;=U2¸<@?Z\Cgƒf{% &&+0GJ:)* iN)B% AIVweL+I. =;Lx;">-(5/$3!2>54&+532>54&+#"&54>7&#"!532654&"#&546323&54>3262654'µ^{HJP:ü§Úü#*.+$),- ) TC"S<9K"7+%<5L#_ý¼Ë"-(D- +H;AQ2¸< .O1g=p"*@G1{PC@(C4GI 0% & (%7#! ,4ATOp^A.N0$1G8x;">-*3.%=IY=D,Ti4A5$Jþ«UEK4^71@Lÿ1Â_m%4632#".54>32&#"32>54.'#".54>7&#"!532654&#"#&546323&2654'ß‚cz@Ji­‚ `e4K@SM99+#[f'7V4" +QD&7 E3$J5M#8+ýà®8*"#* + P3>W2²>%#0),Õi„r{dµ %)>TO(,8. 9Zy':-+>090F75m"U #11% E:O?A8VDM:;/.(JKÿvÄPZ%4>32#"$&547327654'#"&5467&#"!532654&#"#&546323&2654'j&T9u4MR†äŠœþý˜s 71$䬅UL92BQ9*5C-(Uþ#ˆ7-& * 6?9K*£2(TÝCS9p Jg¥YoÊ~Œg8cC ×Y`“Y%,)Y{YGL_2?8H: &J(,%0#2NR=@6RAL8B)J2oKþÌyÄ]gs#"&547#"$&547327654'#"&5467&#"!532654&#"#&546323&54>32%2654'2654&#"#++*" 4B}œþý˜s 71$䬅UL92BQ9*5C-(Uþ#ˆ7-& * 6?9K*£2&T9u4MRþõ(TÙ "("M @%"3 F0 6oÊ~Œg8cC ×Y`“Y%,)Y{YGL_2?8H: &J(,%0#2NR=@6RdCS9p Js-L8B)J2oþÛ$"""KþgzÄ[epƒ#"&547#"$&547327654'#"&5467&#"!532654&#"#&546323&54>32%2654'2654.'2654&'#"&=ø2PW<=Ukyœþý˜s 71$䬅UL92BQ9*5C-(Uþ#ˆ7-& * 6?9K*£2&T9u4MRþõ(T—.:V7'#8+-/)tO=@SU>'&oÊ~Œg8cC ×Y`“Y%,)Y{YGL_2?8H: &J(,%0#2NR=@6RdCS9p J‘KL8B)J2oþÍ.y:( 5 588 (Hÿ0(Ånw%2#!"3!!"&5463!2654'#"&547'#".54;2654&#"#54&#"632#"&54>32>32+"32>2654#"324#"ƒG^SBþ*9gý™/<:1²;L^8*)7 vp.14ÏÇ@M<03'S?3>! (&"-7,?7p0Y -C jzÏD:W)“£.3þY**™B61B ;.#$,.%?$(1-" B0 -!‚?4->D? O/7% 9 #8,(>7&7-:_4,>>‰//.f%MþܹÀ‰’%2#".54732>54#5254&#"#"&547'#"&54>;2654&#"#54&#"632#"&54>32>32+"32>2654#"324#"E[**=VkNC„jD\"S?b‚z>UmJEN9 9)2. $'D@",PGW2«AVC)5$S?4=!(%.#*9,A5p0X AXv™6G2$#@8@e.3þm**–?2% (/K) Fj¯n}| qkb™\< <)6(3!#.>>""1H7.:I63,DFO.8% 8(77-)> 7N=M[(!0 .. ¦!//*4fMÿ ?Åqzƒ%2#".54632&#"32654&'#"&547'".546;2654&#"#54&#"632#"&54>32>32+"32762654#"324#"yWo¯‹;F0kWpC8.K4D[#p‹/-6,)7 ŠB3 apÉ>O2:4&S?3>!(&.#.6,?7p0Y CUnYÛ'9 +#4†ˆ+.3þO**”aLc{"#,'nX-L$(1,#H7'! .KH4%=:< @.8% 9(77-(>7T=FX"AA„ //.fMþÈ@Åxœ¥®%2#".54632.#"32654.'#"&547'#".54>;2654&#"#54&#"632#"&54>32>32+"32762'654&#"#54#"&54632672654#"324#"y8Q+nf€AL4]yC' P;+7$[Br! 6,*6 Šg: #+(BC$É;R<07"S?3>!(&.#-7,?7o1Y @XpWÛH=-!6†…&% #"Q.3þO**”57~VO 2!6GB '$&-”m$6 $(1.!I6 /"3 E7,6;W@.8% 9(79+(>7Q@GW5!AAþá& + ;% %› //.fMÿólÅž§°¹%2"&547'#"&546;2>54#"#54&#"632#"'#"&54;2>54&#"#54&#"632#"&54>32>32+";2>7>32>32#"'#"32?62654#"324#"324#"*:8T6 ,%7.Q+6H}iµ@>f2'SG,=! (%.#0šsŠOUK©á(=7/ZS?3>!(&.#.6,?7o1Y .C {fËzu9Q›mE-@2p0X *A ~…#?`R@:f A !.3þF** ý]**¨5'(1.! 2(5?7#bBA O7/% 8(7U\D<(^"1*'0† S.8% 9(77-(>7$4*GV843O\*,> 7 /(XC,)#:„//.%ffJÿN(Ū²»Å%2#!"3!!"5463!254'#"&547#"&546;2>54#"#4'&#"632#"'#"&54;2>54#"#54.#"632#"&54>32>32+"3267654632>32+"32>2654#"3254#"3254#"—>SZDþX//Dý¼`7)n›=0(&0 a^/8EsXŸ54WMLH4 $#4)—izqq§Á44WLM '6 # *(1(:/a+ P&: ¹ËA,o_y?[Fa+O2ˆŠHPJ0&+þ##ýš$$®;1;F!5J$,Z1#(2,$ C-4+:F2$_|3]=$94,[[?3Cb4&_}n $#! )78-*? 5 /( @+c_>T5 ' [?,==‡,X*01101LÿDÅ»ÆÏÜæ22#!"3!!"&5463!254#52654&##"&547#".54;2>54#"#4'&#"632#"'#"&54;2>54#""#*#"#45<54&#"632#"&54>32>32+'"3>54>32>2654#"3254#""3267"&%3254#"H*/ ƒµ(-%þ4% ýö%01$¹&) 21'&0 UM / ·ž %-VLG5 # *(>`ŽKzx¬½45WM  +85 # *)1(90a+L&: ¸yzEDEYU:'81a+O'*þ™""#‘+8A-%/)7üò##Å 8%q D*)9- ((!!'3-# A." ‚ +_,\=$#! (8OP73E`4&_€4  CD$$! )79,*> 5 /( 6'0AK8(>5þX&,, 01µ(.m „"01"Lÿ0ů¸ÁË%2!".54632&#"32>54'#"&547#"&54;2>54#"#4'&#"632#"'#"'&54;2>54#"#54&#"632#"&54>32>32+"32>7>32>32+"32$2654#"324#"324#"15 þñ5A-jTRC7(4mF)HE)D1'%1 4rB&,SÈŸ#5 WMMH5 &!4)ft½%»¬44VML*84 # *(1'80a+N2ƱzST_­a&."`,L'; Ų/=,"'+þ€##ý­##© >,ù") -W=F##(2,$E4(ƒ$ _|\=$94,S_B9+]4&_€42DC$#! )79,)=5 '  3$Wx6#75!0'›$v‚ --+#b"bLÿóÂÕŸ«µ2'654&#"#"'&5467&#"#4&#"632#".547!#"&546;2654&#"#54&#"632#"&54>32>32+";2>?>32>3262654'2654&#"%324#"Ój…6'1YfU#nWA@)$9/*.CyZy ]zRl>6E9p% 3*þÔ,2+i_H<<))$;;Ú5,+:T0$6::O7/% 8 #9+(<5!K=If%0K0*0P3 þqK6nJPo3G')&1-$=þ%fJÿœ¸¢¬¸ÄÌ%#".5467'654&#"#".5467&#"#4&#"632#"&547+"&46;2>54&#"#54&#"632#"&54>32>32+";2>?>32>326322654'2654&#"%2654&#"324#">-1" "*0 WeQ"lV?(< :,(-;Q:&N_ +6o-E2DRq]ð$,-#|?nDA pVK1F88B7g‚þ‡(3Ub54"+$"ý<$!&"(#ýF**D'- 2"+6 BvYu ZxPj-A47p" 1*þÛ%1*h[F"3)C;W^ :U*4V866#57:M&=$ &(&)8*': 3 I;Ja*&=#+1YO,# ŠezH6kIPk2EÇ$!""Á7$1,#; "!dJþŸ©´ÉÕÝ%#".5467654&#"#".5467&#"#4&#"632#"&547+"&46;2>54&#"#54&#"632#"&54>32>32+";2>?>32>326322654'2654&#"2>54'#"&'%2654&#"324#">%&S<*> O3JeQ"lV?(< :,(-;Q:&N_ +6o-E2DRq]ð$,-#|?nDA pVK1F88B7g‚þ‡(3Ub5ò*B)1%# #-8ýg$!&"(#ýF**?(54.#"#54&#"632#"&54632632+"32?6322654#"324#"×ê¹Îþài!]˜…©ñQ.$:)*6 !€i+ #+hUÉ,2"*)4'SA3:#(%/"*9hR`;1UFUkSå0.'2K†QDLbè.4þP** f‰ë¬Š~"mvžiZx($%1H,( D+ 05A 7$* KC@,;& 8(77-AN57K>CS ' !>"N@//.f%Fþ˜×¿xŽ˜%2#"&547#"$547327654&##"&547'#".546;2>54.#"#54&#"632#"&54632632+"32?62654#"264&+324#")LbOG 2"4BTbÎþài!]˜…©ñQ.$:)*6 !€i+ #+hUÉ,2"*)4'SA3:#(%/"*9hR`;1UFUkSå0.'2K†Q .4™!! #ýÐ**˜N?Q@N #*F0묊~"mvžiZx($%1H,( D+ 05A 7$* KC@,;& 8(77-AN57K>CS ' !>"Ž//.þÕ#2"#Df%Fþ?׿w€Š•©%2"&547#"$547327654&##"&547'#".546;2>54.#"#54&#"632#"&54632632+"32?62654#"324#"2654&'"2654&'#"&=)LbA33:U|TLGÎþài!]˜…©ñQ.$:)*6 !€i+ #+hUÉ,2"*)4'SA3:#(%/"*9hR`;1UFUkSå0.'2K†Q .4þP**.*A(:'#83%/):˜N?4X R/=VU>1& 묊~"mvžiZx($%1H,( D+ 05A 7$* KC@,;& 8(77-AN57K>CS ' !>"Ž//.f%ý¬ #y8* 5 5!-8 ,6LÿEÝÀWco#".547&'#"&=4.#"#".5467&#"&546326323265332654.'264&+%2654'X*9 GEE/ "*E0.RB_:-(lUD)< 9/-M^^!kwb?4.MJX<)"?S2):N 3#4""ýU)5We(À@D3sD K3A 2!  ALaLa :2ZzRl.B6;n% nW~?Mjƒ`M]LD,#Dþì4>iM-94ýâ"4"‰K6oIPo #,LþþßÀUbt€#"&547&'#"&=4.#"#".5467&#"&546326323265332654.'2654'2654'#"&'%2654'X*9 VXU<=S,4'.RB_:-(lUD)< 9/-M^^!kwb?4.MJX<)"?S2):N 3#) %)92'#/EýN)5We(À@D3‚B`DWW?A'3LaLa :2ZzRl.B6;n% nW~?Mjƒ`M]LD,#Dþì4>iM-94ýï% X8*$ %5) 2+öK6oIPo #,MÿÞÂht#".54>32&#"327#"'#".5&4.'&#"#".5467&#"&54632632265332>54'2654'y$AK‰e58CDZa'6SO,? Yý()5We(Á&zCnz<!(Ù%KK&90T"3(ZzRl-B67q& ,@7„HU–_€RH"RŠ+#Dþìq+A3YfþK6oIPo #,LþÈìÀo‘%#".54632.#"32>54'#"'#"&='.#"#".5467&#"&546326323265332654'72'654&#"#54#"&546326%2654'ì,Fa_4AL4]zB' P;@WZCAg9% 5LU9.RD]<5&lXA)< 9/+N]^!kwb?4.M.C"fFS2)>Ju';þÈ&% #ýß)5We(na—\; 2!7FB '/#%./AR;8MLbG4>7'&'#".'4&#"#".5467&#"&546326323265332>54&'2654'r%.þ´õ¦þô—17'502éHQQ$N$-I%8 *@# ]N:%5 /*&ATU _jU7.1;?NU#-LD'8 4+ý#.KV"ÂAD'¼øpÆzHh=7`B¤Æ.EH&9/‡nZxSl.C67n' u?ƒHY”`WC"R‰*"Dþìo.D74aþ–J5lHNm #+PþþÝÃkwƒ#"&=#"$&546732>7'&'#".'4&#"#".5467&#"&546326323265332>54&'72654&#"%2654'~,3F/0Fš¿ þ÷ 17'502éHQQ$N$-I%8 *@# ]N:%5 /*&ATU _jU7.1;?NU#-LD'8 4+ %.s ""ý•#.KV" B(4BA5SiÇ€Hh=7`B¤Æ.EH&9/‡nZxSl.C67n' u?ƒHY”`WC"R‰*"Dþìo.D74a AD'‹þö$"*"óJ5lHNm #+Pþ™ÞÃn|œ#"&547#"$&546732>7'&'#".'4&#"#".5467&#"&546326323265332>54&'72654&'"2654&'#"&=2654'V(; U>=U ‹Ÿ¢þö17'502éHQQ$N$-I%8 *@# ]N:%5 /*&ATU _jU7.1;?NU#-LD'8 4+ %.ž #(:,8+-/)8ýÅ#.KV"B%2(>UU>32#"&54632>326322654'264&"%2654&#"ÿ))D01C2GpU$mX@)< 9/*0CS-$ -F%/!4B6>AMŒrk-J)>58CkŽþy&3Wa5$2##2#ý%%"'"(( =%3AD0.6 PWZ{ [|Rl.C5:q# 5(þÔ,(#.?&)\31PeTx™M#*†l]=J7oILs3G¸"4""48%2.#9MþûSÂPZez†2"&54>7654&#"#".5467&#"#4.#">32#"&54632>3262654'2654&#"2>54'#"&'%2654&#"XkŽZ\S|R!1%FpU$mX@)< 9/*0CS-$ -F%/!4B6>AMŒrk-J)>58K&3Wa5þ,%%C*3&1/ý6%"'"((†laZaCXV@); PWZ{ [|Rl.C5:q# 5(þÔ,(#.?&)\31PeTx™M#*þtJ7oILs3G£u" " &5$ Fõ8%2.#9Eÿø‘ÄDO[233!53654&#""&547&#"#4&#">32#"&54763263262654'2654&#"ýVj_àSýןjJ8NNh@M&/SI63L&.!/F5>@OJH`_F$V.#)? )F",*þO'&!)(Â}_}E—þG":„KgInCRNCsA 2(þË,(6.I8)SA0LlOqRNONþ¾8/a-U*.:P/%$/.#9Eÿ;•ÄOWbn233##"&547!53654&#""&547&#"#4&#">32#"&5476326326264&"%2654'2654&#"ýVj_àS$(A31C)þ’ŸjJ8NNh@M&/SI63L&.!/F5>@OJH`_F$V.#)74""4"þ¬ )F",*þO'&!)(Â}_}E—þG51CC15":„KgInCRNCsA 2(þË,(6.I8)SA0LlOqRNONý½"4""4ß8/a-U*.:P/%$/.#9Eþþ›ÄN[ny…233#"&547!53654&#""&547&#"#4&#">32#"&54763263262654&#"2654'#"&'2654'2654&#"ýVj_àS'1TzS3þ»ŸjJ8NNh@M&/SI63L&.!/F5>@OJH`_F$V.#),%$+72'1 *(þ– )F",*þO'&!)(Â}_}E—þG&CAZTBF(":„KgInCRNCsA 2(þË,(6.I8)SA0LlOqRNONýÔX:($ $6"! #. B8/a-U*.:P/%$/.#9MÿÊÂiu2!3#".54>32&#"326=!53>54&#"#"&547&#"#4&#">32#"&54632>3262654'2654&#"RgZS.IU=N4bVlB=j"\H6u‘ý²ø+0D7" N 8%2?Z(0SJ2-F%+!4B6>AMŒrh0 ;+8()G#*@9 #þL%"'"((ÂvXr^—þ /5& $ !&_N"%e2LeNf-6%M;bT1)þË,(5#.?&+\31PeT{–M5þ¾9.T4 U+*+P8%2.#9Pÿø=Âer}‰2#"'&547&#"!53>54&#"#"&547&#"#4&#"632#".54632>326323&5462>54&'%2654'2654&#"w/J) H;5"`.C 2%ýì´#,;/ C 3#,9N(#M>-DV'6- 8/$5 |e[*-2"#/F^LË6p•X'ý¾$73þŠ,"""Â*;H6Zy7.:ƒZ/E74l &c6HeMe,6%M7&#"!53>54&#"#"&547&#"#4&#"632#".54632>326323&547632632#!"3!!"&54>3!2654.'#"&%2654'2654&#"%2>54'[45#/J72_ýÞ´'(;/ C 3#,9N(#M>-DV'6- 8/$5 |e[*-2"#/F^LÔ<@?Z\Cgƒfý5!$µüK,<$ ¸O_$/ &N<=Pýö$73þŠ,"""6% &&+1¦5X( =;Lx;"$r(HeMe,6%M54&+532>54&+#"&54>7&#"!53>54&#"#"&547&#"#4&#"632#".54632>3263232&54763262654'%2654'2654&#"Y]|HJQ9üϲüK).:*ü),,!) SD"S<9K"-!%<5L#_ýè´#,;/ C 3#,9N(#M>-DV'6- 8/$5 |e[*-2"#/F^L3^7<@?Zf> r"*@G1ý¦$73þŠ,"""PC@(C4GI 0&,< ($7#! +5ATPo^A%C+$$0G9x;&c6HeMe,6%M32&#"32>54&'#".5467&#"!53654&#"#"&547&#"#4&#">32".54632>326323&7327654'2654'2>54&#"ÀqZl9A\™r;J4POKF70(OQ(0K. ,'I<"2 EE$8.D +-ý­ÛO;/ C*# .7N(#M>,ES *, 9^<{e[*6$2"#0I[Mä5Ã&$sýÊ$7!& þ} !"Ôe‰r_޶ % !)>TM'6_5X|(:.=k 5/E7)q &LmIeMf,@ N32#"&547'#".54>;2654#"#54&#"#"&547&#"#4&#">32#"&54632>3263262654#"%2654'2654&#"L-7%ßÊ)B'-aHc.*;9*(8 ;…E0 "*(BB"µ2^e3&S?35$(1#0CSJ2-F%.!4B6>AMŒrk-J);$'3r.˜-4þz**þ%"'"((à 8'Ÿ $!)!2%"-&D&#4 B0b9<-@.8 E #9+/&5(þÔ,(5#.?&)\31PeTx™M#*55þ\//.Ú"??É8%2.#9Mÿ:)Ñž©µ%#!"3!!"&57>3!2654&'#"&547#"&546;2>54#"#54&#"#"&547&#"#4&#">32#"&54632>32632632+"32>322654&#"%2654'2654&#")T4þS..5ýË*8)!“-H3'8-)7 _g05BwYÉ $-e7"S?35$(1#0CSJ2-F%.!4B6>AMŒrk-J);$'3r.l-7%XJý-I(.fMh/BZÕ ! þ~**þ%"'"(( 921%', 7")2'<.6,=J 0!b>T@.8 E #9+/&5(þÔ,(5#.?&)\31PfSx™M#*55 8'HW%*!%-%I;ð"??É8%2.#9Mÿ<Ø¡¬¸%2#!"3!!"&5463!254#5254##"&547#"54>;2>54#"#54&#"#"&547&#"#4&#">32#"&54632>32632632+"32>762654#"%2654'2654&#"€fV '2ýë))[ý¥)33)ÿ%.'P8-)7 -E!A2‡FV1¶*> e7"S?35$(1#0CSJ2-F%.!4B6>AMŒrk-J);$'3r.l-7%‚]º3HP&OGQ.1þ“**þ%"'"((™8&  0%:5$ '$*<$)2'/s.:* b>T@.8 E #9+/&5(þÔ,(5#.?&)\31PfSx™M#*55 8'GX1'4)4!‰/*.é"??É8%2.#9MÿóUÂgs€Œ2'654&#"#".5467&#"#4&#"#".547&#"#4&#"632#"&54632632632>3262654'!2>54'2654&#"bl‡{1WlQ nUD)< 80'3JSF9(k ?+': a(0CSI3-F%-< "*F-@N‹sSE1VC,2Je:I9=,7N(5We"ýõ(X-02þ) &&!).•eHDt]z ]zOo.B67r% 5?þë 2#"&54632>32632>3262654'2654&#'%2>54'2654&#"bkˆN2DbC.)? )E+!nTE(< 80'3JSF9+k$4+': a*2ASI3Qa .B2 0!AMŒrl,K)D+:Bi6>1B'4K(5We"ù4"" ,ý$. X+21þ*$#&!).½cVW 6.1CD0&@ MP1=2" ]zRl-B77r% 5?þë 7654.#"#".5467&#"#4&#"#".547&#"#4&#">2#"&54632>32632>3262654'2654&#"2654'#"'%2>54'2654&#"bkˆW`"+ =T0"F )E+!nTE(< 80'3JSF9+k$4+': a*2ASI3Qa .B2 0!AMŒrl,K)D+:Bi6>1B'4K(5We"Û,%"D,65%C7ý$. X+21þ*$#&!).½c]Ze%: W?(: PU1=2" ]zRl-B77r% 5?þë 54&+"&54>32&#"32654&"6HT>;A3"2 t==o6-.5a:J(O7‚D5i?L) k4""4"?5J)!E1C+! $!?9 ''F4/.G80)"þƒ"##KþþÓÀ.;N2"&547&'732>54&+"&54>32&#"32654&'#2654'#"&'6HTJKTzS+`1=o6-.5a:J(O7‚D5i?L) ^$$,63&"/*(?5S'"WAZUA@'49 ''F4/.G80)"þ– !X:($ &4' #. Kÿ…çÀ3"#"&54632&#"32>54/.54632&L@JbM`-IK(IjYDX<-><;/10cl%0r]‚H=•8'MWE5L'.& 0*' 6%] <(FUE5Aÿ?¿+Q%2#"&54632&#"32654'#"&4632&#"32'654#"#465654#"&546326NYm¨IabK^5Z2EJ5`zŠi=R`qJ=€’T$  ôaOt‘9/-;62&!,r\…HnU:4^Jþà    '   Gÿ>ÙÂ4%#"&'532654&+53254&+"&54632&#";2ˆ7Sa?wi5B9!ðÊx/#w:Ip^zG7g@O%e31 8'(B7+)1D*G4BOG70'# /!TGþ‡ÙÂ>K%#".547&'532654&+53254&+"&54632&#";22654&'#ˆ711A3"1 ~4i5B9!ðÊx/#w:Ip^zG7g@O%e31n ( (# 8'/#<1C)" &'7+)1D*G4BOG70'# /!Tþ+ ,#Gþ@ÙÂ;FY%"&547&'532654&+53254&+"&54632&#";22654&"2654'#"&'ˆ7HBTzS1c,i5B9!ðÊx/#w:Ip^zG7g@O%e31Ÿ%&$,65$"/*( 8'>$PAZUAD( 7+)1D*G4BOG70'# /!Tþœ%X:(" '3' #. JÿönÂ,%2#"'&54732654&#"+"54632&#"327ÍGZq\ŒgdTB¦vAR.5·o\|G7g9Zw ýK7=HRTogOBU^Ž.&"uHUG7/lJÿEoÂ7E%2#".547&'&54732654&#"+"54632&#"3272654&#ÍGZ67E/ "*‹abTB¦vAR.5·o\|G7g9Zw ,2#" ýK7;$!B3A 2!"RSmgOBU^Ž.&"uHUG7/lþŒ"! JþþsÂ5BT%2#"&547.54732654&#"+"54632&#"3272654&'2654'#"&'ÍGZGLU<=S(I‡`TB¦vAR.5·o\|G7g9Zw $,62'#/EýK7E$"WDWUA='A}NgOBU^Ž.&"uHUG7/lþ™ !X9)$ $6) 2+MÿTÀ(4%#".547#"&546322>54&#"264&+Ì0E/ ") _€yad‡û1<*bGHa"I¢2## 4 6-3A 1"{afˆhcH!H0Id`G3>+–"4"MÿÀ&6H2"&547.5462>54&#"2654&+2654'#"&''d‡`aTzS"*<.!yQ1<*bGHa"IŽ&! +72'1EÀhwCeBYW?6' -O2fˆþn!H0Id`G3>+’X8*" %5"! 2+MÿEØÂJR#".547&'#"&=74&#".5463232653327654&'264&"W)8 KE/ "*E12YHa5!(0 6.*; qK7\G-50S(.5*.G)2##2#À@D0tE33A 2!" BLePSG>%M354'#"&'W)8 ^\S>=S.5%2YHa5!(0 6.*; qK7\G-50S(.5*.G) &0 3&1 EÀ@D0†CbCXU‚)5LePSG>%M35#"'#".54754#".546323265332654&'N:K»¬`€|[oF5c"_Z%@i=)3?e(3T86!S:Op*: gS8CX'6SOBRB1Â&~EîÎ*!*#"$5?2'KK*R9‡fJyLCC1e3TU`G+#DþìqcJ7qMþ½ØÂ@v#"'#"&=74&#".5463232653327654&'2>54'7#"'#"&=74#"&54632326=3W)8 "/:)S92YHa5!(0 6.*; qK7\G-50S(.5*.G)  KV .%7%!:3>7 JZI4,6.#:À@D08X1 MLePSG>%M354'7"&547&'#"&=74#"&54632326=3264&+W)8 "/:)S92YHa5!(0 6.*; qK7\G-50S(.5*.G)  KV<=B\B+!:3>7 JZI4,6.#:C#!!$À@D08X1 MLePSG>%M354'7#"&547&'#"&=74#"&54632326=32654'"'2654'#"&547W)8 "/:)S92YHa5!(0 6.*; qK7\G-50S(.5*.G)  KV=F$ 4H7!:3>7 JZI4,6.#:2 L4)'"À@D08X1 MLePSG>%M3%M3,6'/(‘ . MþÙÂ@~‰”#"'#"&=74&#".5463232653327654&'2"&547&'#"&=4#"&54632326=33267#"&5462654&#"264&#"W)8 "/:)S92YHa5!(0 6.*; qK7\G-50S(.5*.G)F'1C?B\B&# %M3,6'/(‘ . þà-&--%MýëÝÂ@‚›¯#"'#"&=74&#".5463232653327654&'2#"&547&'#"&=4#"&54632326=33267#"&5462654&#"2654'#"'2654'#"&547W)8 "/:)S92YHa5!(0 6.*; qK7\G-50S(.5*.G)F'1DH$ 4H1" %M3,6'/(‘ . ï P." ,4 '!MþÆØÂ@HT[#"'#"&=74&#".5463232653327654&'4632!7354&'4#"6W)8 "/:)S92YHa5!(0 6.*; qK7\G-50S(.5*.G)‹9T‘þâ½&¡-/*2,AmÀ@D08X1 MLePSG>%M2%M254'#"&547W)8 "/:)S92YHa5!(0 6.*; qK7\G-50S(.5*.G)9T‘*3 4"4H3c½&¡-/*2,Am", )'"0À@D08X1 MLePSG>%M2 $,G4>"¾).gM<$6TNÀ P#!  ,4 '!/Mþ,ØÂ@bmv#"'#"&=74&#".5463232653327654&'4>32#".54632&#"326=#7354&#'"654&W)8 "/:)S92YHa5!(0 6.*; qK7\G-50S(.5*.G)‹,-’CV38J5B;7N;)ó¼#$(¦30,_(t À@D08X1 MLePSG>%M2%$bPB!5?tS[!KÿIfÃK".547327#"'#"&=4&#".546323265332654'7[y½sKi!dEi¯pâ‘\22VFe3" (0"G(*: qM7YH.6-S4+8Kj|þÛ·1Mjh7|tck0X[B*vJK`L\J?$I0PgDI4b{TaWNC9Cþì3?cOˆ:`Œ±ÛKÿ iÃXa#".=#".547327#"'#"&=4&#".546323265332654'7264&#"+.C1"2 …¡y½sKi!dEi¯pâ‘\22VFe3" (0"G(*: qM7YH.6-S4+8Kj|‹4""' B%1C+! =1Mjh7|tck0X[B*vJK`L\J?$I0PgDI4b{TaWNC9Cþì3?cOˆ:`Œ…þý#2##2Kþ©gÃYfz#"&547#".547327#"'#"&=4&#".546323265332654'72654&#"2654'#"&'ë"-U<=Ss€y½sKi!dEi¯pâ‘\22VFe3" (0"G(*: qM7YH.6-S4+8Kj|µ. C,64%"0 )6 8%DWUA(1Mjh7|tck0X[B*vJK`L\J?$I0PgDI4b{TaWNC9Cþì3?cOˆ:`Œ¢ò" v9)" &4)  MÿFÂJUa2#".547&'#"&=4&#".54632326533265#"&5462654&#"2>4.#";HQ((E/ "*\D3XIa4"8Mo*; jS//E+6.S!0';_*)1@E=")' &$  $$ÂmWˆM ?#3A 2! ONiVEKAkO…8BG2`ƒ'M5HSH;Aþè$5 cr&"R;7KÞ.")1/J1þ¦.!6!MþþÂJUas2#"&547&'#"&=4&#".54632326533265#"&5462654&#"2654&#"2654'#"&';H"aS>=S&G73XIa4"8Mo*; jS//E+6.S!0';_*)1@E=")' &$ %%%+72'17ÂmW0R7 fCXUA<& @NiVEKAkO…8BG2`ƒ'M5HSH;Aþè$5 cr&"R;7KÞ.")1/J1þ²X9)$ %5"! %9MÿÁ\h2#"&54632.#"3265#"'#".5<54#".546323265332>5#".5462654&#"yS8´®B”}[lM=M%!`V+wž;Zp,1\!6" S:Op@FgS7EU)5SL9,A! +#3 @G!**!'&Áq|íË+!(% ‚i6LL)%( ‡fKxL&|Db‚7YWZH-%@þé7D'CD&#4(4KÝ.#;( ,7HÿA’Á e%2654&#"".5473 7#"'#"&574&#".54632326533265#".54632 +*#%'þÉzPb"]Bf‹„E‹!$`?5XL]2"*/ 1#(.hRBQ /!GSN8FU$E "+C154'#"&54>7&#"#4&#"#4&#"632#".547626326322654'%4&#"326ý”g@4$$3@4$dNA8K >($S?5T?3'5SI5,F$-<2D7+5DJGÀF6\X6=](B)#6(þÚ#,%1 -ýR%")$%'lu–, "2W5u"-6XlSB%6-$E:þÂ5@(þ¾,(6$/A$IV>4,@M+wPMONJK*! !.RkH:D, 9&-@NKGa_F3Ze0@Ql+# E !K'ü¯ &%!).©0 %/4," 3/) ")5'þÎ5@'!þ¿,(5$/@$H ?*1LfSuPNOMZZK<$*!&y/H0.#$2Hÿ;†Äiq|%2#"&547&/3254/&5463232654&#"#4&#"#4&#"632#"&547632632632#"&#"326264&"%264&#"&3-61A31C?& 1_`=q=8#G D9C[SA3'3SJ5,E$-< "*5>@NKGa_F3Ze0@Ql+# E !K'2##2#üð &%!).©0 0!>0DD0)4," 3/) ")5'þÎ5@'!þ¿,(5$/@$H ?*1LfSuPNOMZZK<$*!&þÖ"4""4/H0.#$2Hþþ†Äht†‘%2"&547&/3254/&5463232654&#"#4&#"#4&#"632#"&547632632632#"&#"3262654'#2654'#"&'%264&#"&3-@=TzS+( 1_`=q=8#G D9C[SA3'3SJ5,E$-< "*5>@NKGa_F3Ze0@Ql+# E !K'.$ %)92'17üù &%!).©0 6%LBYUA?( 4," 3/) ")5'þÎ5@'!þ¿,(5$/@$H ?*1LfSuPNOMZZK<$*!&þí! X9)$ %5"! %9ò/H0.#$2Oÿ+Áiv%2# $5467!2>54/&546322654&#"#4&#"#4&#"632#"&54632632632#"&#"2654&#"rTXo¶¹bþÙþ˜47*92M[£›\=q=2)CE1EaSA0)4SH4Pa +>+9 /!6XŒrk./Y54/&546322654&#"#4&#"#4&#"632#"&54632632632#"&#"2654&+2654&#"rTXLG 2"4B“ÁþÙþ˜47*92M[£›\=q=2)CE1EaSA0)4SH4Pa +>+9 /!6XŒrk./Y54/&546322654&#"#4&#"#4&#"632#"&54632632632#"&#"2654&'"#2654&'#".=2654&#"rTXs4;U|TЦþÙþ˜47*92M[£›\=q=2)CE1EaSA0)4SH4Pa +>+9 /!6XŒrk./Y/#!íÂDe=9^A¡Å-W=. 6(5 $!-3)þÍ5@( þ¿,*3i_I<<))Ucz˜MM; ["2(<!þj #y:( 5 5' & +7„9$3-$$$Lþ’KÂ>J[g74>32632632'654&#"#4&#"#4&#"632#"&2#"&5462>54.#"2654&#"L$8\:i0/Xj/*SN:A 3)+hK;'3S@2&6SS,¥-> !*E4>LêOfcNL`]? '.  & 5MLýÐ,(*&°%HJ8#OMHJ=Df3U6 A‹Rf-$þÂ3B)þ¾,)5ÉG =*:HjlcOIfcGOhþÊ 7$2H89Nr,#'0-$'.Lÿõ™ÃVb%#"'#".=4&#"#4&#"#4&#"632#"&5476326326323265332654'74&#"326™bIL2+M-7&.%*M7,!,N<.&="'6,<9.:E>BbC:*WS*'M%þ¾,(2"/:*FS>:HlRdRWJKHJ^JrD;*"Cþí3%þ¾,(2"/:*FS>:HlRdRWJKHJ^JrD;*"Cþí3<²#2# ‹+#$.+#%-LþùÃ_j‹%2654'7#"&547&'#".=4&#"#4&#"#4&#"632#"&547632632632326532654&#"2>54'#"&'%2654&#"ú2AgyUYU<>R9(+M-7&.%*M7,!,N<.&="'6,<9.:E>BbC:*WS*'M%þ¾,(2"/:*FS>:HlRdRWJKHJ^JrD;*"Cþí3<¦v+'  '3#  "ú+#$.+#%-Qÿ™Áwƒ#".54632&#"32>7#"'#".'&54#"#4&#"#4&#"632#"&546326326323265332654'2654&#"%(4%@aE =<%mQNF0*8O]+?, '4W%-I"7KRL5- !#M>-'= '6/;:.;D{f]**M]*!K0<M#-MC6Jgû²,!$'Á#JJ+_„h< !*% 9.,!HH", a†ZþÙ2A "þ¾,'4#->%F_1;HgSvœKKHH5WV]F*"CþìnhGlSþŒ%($1.!"1IþÞjÂmx#"$&5467!2$7#"'#".'&54#"#4&#"#4&#"632#"&546326326323265332>54.'2654&"ò6BÄþ¢äßþ—Ó+6%0)öÕ$Õ+J+*K"8KQM6-6M>-D^'6&31'9E|e^))M_* K~+;$-MC&7 !# û³+ 4%'Á%A›éz{æ”G`HAV9ÏziW QI"- [†ZþÙ1B!$þ¾,&5rSG==7.fT{–JJGG·NFK+!Cþìn+?3>-- þŒ%($1-"$/IþÞmÂy„#".'!"$&5467!2$7#"'#".'&54#"#4&#"#4&#"632#"&546326326323265332>54.'7264&#"2654&" %; 1!+9Ôþ¶ßþ—Ó+6%0)öÕ$Õ+J+*K"8KQM6-6M>-D^'6&31'9E|e^))M_* K~+;$-MC&7 !# 6Bs !("û­+ 4%'-=0 "+10€{æ”G`HAV9ÏziW QI"- [†ZþÙ1B!$þ¾,&5rSG==7.fT{–JJGG·NFK+!Cþìn+?3>-- %A–þë$0##"%($1-"$/Iþ{nÂ~‰ «2#".547!"$&5467!2$7#"'#".'&54#"#4&#"#4&#"632#"&546326326323265332>54.'72654.'2>54&'#".=2654&"Ý)5$$5* +$ ÌþÝßþ—Ó+6%0)öÕ$Õ+J+*K"8KQM6-6M>-D^'6&31'9E|e^))M_* K~+;$-MC&7 !# 6Bµ.:A&0 ("8 +"!, 8ûÝ+ 4%'_ @V? 8#f{æ”G`HAV9ÏziW QI"- [†ZþÙ1B!$þ¾,&5rSG==7.fT{–JJGG·NFK+!Cþìn+?3>-- %Aºþ÷/y+'85 ""  (:s%($1-"$/Kÿ÷ÃÀ_ky2#"'#".'&54#"#4&#"#4&#"632#".54632632632326533265#".5462654&#"2>54&#"G1K)R8`)&V*?JRM5-!-M>-DV'6- 9/$4 {f^))M^* K1<L2M@35Q!8(49?$#!û{!#'À]m+RQ1II"4(a…YþÙ1A'þ¾,&4g]F"3+:G$<;u›JJGG5WV[F7;þé1F]mC>;8FÚ-!:(*6´!%/+#$/MÿIâÀt€‹–%#"&547"#"'#".'&54#"#4&#"#4&#"632#".546326326323265332>7#".54>32'2654&#"2654&#"%2654&#"~'= 00B `)&V#7KRM6,7M>-1G '6&307$5 |e^))M^* K2<L4M@3&8 !:- 1'#3 k##"!3&%û]+ #''B$Šz+#:(+4þ—,´%($1-D1IÿðÀ|‰•¡%#"'53264'#"&547&'#".'&54#"#4&#"#4&#"632#".546326326323265332>5#".54>32'2>54&#"2654&#"%2654&#"t2JdK9,$A)8 -#(7Y%$X#7KQM6, !#M>-1G '6- 8/$5 |e^))N^* K~L$.L?4&8 !9, 1'3Ik $" û‰!"#' H:DSA09X )-/$(CJ!-\…ZþÙ2A "þ¾,'45M5G#3+:H%;<z—JJGG»zF6<þè0H'AA"C"3+5,^l‘€" <(*6þ§ ¥7$1/ $/KÿÅÁ~Š–2#"&54>32&#"32>5#"&'#".'&54#"#4&#"#4&#"632#".5463263263232653325#".5462654&#"2654&#"G$4 ,HqLXlDR.WG1Pqq>b;'6_*L&V"8KRM6,7M>-)>!'6&307$5 {f]**L^*L2<L 1M@3{5- 9@##" ûz+"#'Á-LO+U€oG(.&% ("%.%!4FA"N("J"- \…ZþÙ3@!$þ¾,'4&2>% G==2Q%;<vœKKHH5WW[F7<þè2E³,#4*:FÛ- ;(+4µ%(%0/ $/Lþ¼KÂ>s‰74>32632632'654&#"#4&#"#4&#"632#"&2'654&#"#54&#"#54&#"632#"&546326326%2654&#"2654#"L$8\:i0/Xj/*SN:A 3)+hK;'3S@2&6SS,¥-> !*E4>Ll6O`F0' :) ":'*k +./"*2fDE 9E ýC,(*&F-°%HJ8#OMHJ=Df3U6 A‹Rf-$þÂ3B)þ¾,)5ÉG =*:HjsVCm**[6AѶ +ÔÅ+.6)&0G4`U21./C,#'0-$'.þ¶76Lþ½KÂ>{…‘œ74>32632632'654&#"#4&#"#4&#"632#"&2#"&547&#"#54&#"#54&#"632#"&54>3263262654'2654&#"3254&#"L$8\:i0/Xj/*SN:A 3)+hK;'3S@2&6SS,¥-> !*E4>LICZ5+,6G#.:"("9.#,+!-$),4(:.=0$>;$0j"5B$ý,(*&Ý .°%HJ8#OMHJ=Df3U6 A‹Rf-$þÂ3B)þ¾,)5ÉG =*:HjteM7DE5Q6 Ó¶-ÔÅ"' .:( 3E65N#330.þý#)Q.5I"+G,#'0-$'.þí4LþYYÂ>‘žªµ74>32632632'654&#"#4&#"#4&#"632#"&4>32632632#"'732>54'#"&54>7&#"#54&#"#54&#"632#"&2654'2654&#"3254&#"L$8\:i0/Xj/*SN:A 3)+hK;'3S@2&6SS,¥-> !*E4>Ló&/# ?.">:$(=T";9cD)% (=> 4+&2.4,:)! :.$#2 )!.$)3,W #ý;,(*&¾,°%HJ8#OMHJ=Df3U6 A‹Rf-$þÂ3B)þ¾,)5ÉG =*:Hjþ×+D&3300L U7Oa %5.J#;G7, !,!+Ò¶")ÔÆ"1 .:(4K '-) %$H,#'0-$'.þë(5 Mÿ÷­Á1=HQ>32!4&#"#4&#"632#"&546326322654&#""654&354#"TFÜþ"H5#8SH4Ob +>!2 5?AMŒr 5( 4]?PýÁ$#'"(#é . ¹)sQNú¡F[42þö·3A &þ¾,(5i_I"3+2OeS{— MBþ¯9%2.#=[#9;°ƒ‹%3hEsF–å1MÿA³Á;DOXd>32#"&547!4&#"#4&#"632#"&54632632354#'"654&2654&"%2654&#""TFÜCbC þäH5#8SH4Ob +>!2 5?AMŒr 5( 4]?PQNú¡F” . ¹)z4"!6!üÃ$#'"(#[42þö·-1CD0.3A &þ¾,(5i_I"3+2OeS{— MB^EsF–å1#9;°ƒ‹%3ýü"##2†9%2.#=Mþþ·Á<EP]p|>32##"&547!4&#"#4&#"632#"&54632632354#'"654&2654&#"2654'#"&'%2654&#""TFÜ.8U<=S:þÿH5#8SH4Ob +>!2 5?AMŒr 5( 4]?PQNú¡F” . ¹)m%)92'"/ 0üÄ$#'"(#[42þö· GDWUAJ"3A &þ¾,(5i_I"3+2OeS{— MB^EsF–å1#9;°ƒ‹%3þ "X8*$ $6( &)ð9%2.#=Iÿ\øÄ I%2654'%#!"3!!"&5463!2654&+"#"&5467&#".54632632v*4We5«bHþl?#9ýÇ3>?2j8KgU nSB@P<,0IY*5!>.v_;37F6V3" s;1]=D\.8f_‚'J5,+5kMYlMgGWTF1` `H&^"g+Xx 1A;Dÿ\óÆ S%2654'%#!"3!!"&54>3!2654&+532654&#"#"&5467&#"&54632632r*4Vf6©I>þJ>>4ýÌ0B 0!eH>(-7@C5lU@?Q/:(HZ_!kxX<75dÍ Kx<0Z>EY.8#xBfEA³LþÈ,Ã@co2#".54632.#"32654&#"#".547&#".54763262'654.#"#54#"&546326'2654'{—˦AL4]xD' O;@WZCœx`7nWB)< h)L`_!38DE_6.1 &%  #V)5We(ÃΙµß 2!7FB '/#%.Æœ‰º \zRl,B6}Q rU}>%vB^GGý²' , ;% 'ÀI9oIQo #,GÿøÄNXa2'654&#"#"&5467&#"#4&#"#"&5467&#"&5463263263262654' 2654' l‰,"1Zt]nSB@P:/!3KSL9lSB@P9/+'?% ^!k}]B04;k@1g5-9P*4Xe6ýêT4WeÑh,L3 Bu]{ \{UgfQ9q$B5þë @0-_vn_nRCAO:/!3KSJ;lRCAO9/+'?% ^!kyaA14;k@1g5-9@r…9oBÈV3XeþJ+3We4P*I4+-6h]r \{QkhO;o$B5þë 9O ZzQkhO9q$ /:-€=K’cˆ\[‹q=[‡I7mKPo3FI7oIPo4EGÿÄnw2#!"3!!"&5463!2654.+532654&#"#"&5467&#"#4&#"#"&5467&#"&54632632>3262654'2654',e‰RP-D5ü_"#Zû¦1?@0_JZ$! &%^C7nRCAO90!5ISK:lRCAO71+'?% ^!kyaA14;k@N:5-;}V3XeþJ+3We4ÃN?G))K0E I6),7E:$/ ,B,:\{QkhO9o&D3þë :N ZzQkhO9m( /:-€=K’cˆ\<þtI7oIPo3FI7oIPo4EHÿÁdp|2#"&54632&#"32>54&#"#".5467&#"#4&#"#".5467&#"&5463263263262654'!2654'"pŠ/GbX0Y|GZO0"U"\}%CK6#pV$nUD)< 9/ƒSE9&lUD)< 9/,0I#_!j{]>57Di6$~%48Q*4We(þ)5We(Ážwb•T5,$'+.I‚Ug ]yRl-B69q$ tþë ;J[yRl,B6:o% ,?7„HW”a~[ZþsJ8nJQo #,I9nJQo #,HþÉ<Á$™¥2'654.#"#54#"&546326".54632.#"32>54.#"#".5467&#"#4&#"#".5467&#"&546326326326322654'!2654'ú&%  #"?N5]yC' O;?X<-3Pt; .T6+nUD)< 9/ƒSF8"lWB)< 80*0I#_!j{]>57Di6$~'28LtœÇæ*4We(þ)5We(‹' ,  ;% &¬ 3#7FB '/#*?gj8JhT< \zRl-B6:o% tþë 8MZzRl,B69n' ,?7„HU–a~[ZÖž¯ÕkK7nJQo #,I9nJQo #,Kÿ=Á\fr2# $54732>54&#"#".547&#"#4&#"#".547&#"&54632632>3262654'!2654'1`vT؉þìþ­[%R7ùFˆ’lFeP_K<%5 ZlL<1]N:%5 Z!@TU!_mR8./<]/ B29#2F".KV.þP#-KV#ÀŠi6gmR4Þ¹ytgk£¾/JyNWu ]yPo.C6|Q rþë :IZxSl.C6{Q t?…FW•a~V9þwH6kINm2EI5lHNm "+KþùÁgq~Š2#".547# $54732>54&#"#".547&#"#4&#"#".547&#"&54632632>3262654'2654&#"%2654'1`v]+0F/#2 Úþìþ­[%R7ùFˆ’lFeP_K<%5 ZlL<1]N:%5 Z!@TU!_mR8./<]/ B29#2F".KV.é2"! ýŠ#-KV#ÀŠi‡e B&4B*" AÞ¹ytgk£¾/JyNWu ]yPo-B7|Q rþë :IZxSl.C6{Q t?…FW•a~V9þwH6kINm2E÷## ÕI5lHNm "+Kþ™Áeo}‘2#"&547# $54732>54&#"#".547&#"#4&#"#".547&#"&54632632>3262654'2654&'"2654&'#"&=2654'1`vC?3NU>=Uƒºþìþ­[%R7ùFˆ’lFeP_K<%5 ZlL<1]N:%5 Z!@TU!_mR8./<]/ B29#2F".KV.×  #(:,8+-/)8ý˜#-KV#ÀŠiMŽ4N|UU>!/Þ¹ytgk£¾/JyNWu ]yPo-B7|Q rþë :IZxSl.C6{Q t?…FW•a~V9þwH6kINm2Eÿ   [7+#5588 (:[I5lHNm "+Iÿ÷ÕÃ2<E2!5654&#"#"&5467&#".5463263235462654'"!54&[sý|RfK$nSB?Q:.,L`_!47wb=63Hd~CrýÌ*4We6Æ=L#UÃvbë@lYy ]ySjeR9r# qV}>$wAh†‰ÌIáViþrH9nJQo6CYWEÏŸ[qIÿEÛÃ?HT^2##".547!5654&#"#"&5467&#".546326323546"!54&2654&'#%2654'[s E/ "*!þ=RfK$nSB?Q:.,L`_!47wb=63Hd~Crj=L#U4"ýR*4We6Ãvbë-3A 2!-@lYy ]ySjeR9r# qV}>$wAh†‰ÌIáVi5WEÏŸ[qýû"!!ŠH9nJQo6CIÿßÃ=FSeo2##"&547!5654&#"#"&5467&#".546326323546"!54&2654&#"2654'#"&'%2654'[s$.U<=S1þbRfK$nSB?Q:.,L`_!47wb=63Hd~Crj=L#U &&)92'#.7ýY*4We6Ãvbë!@DWW?D"@lYy ]ySjeR9r# qV}>$wAh†‰ÌIáVi5WEÏŸ[qþ!X8*" %5( &8ñH9nJQo6CMÿØÁ\co2#".54632&#"3265!5>54.#"#".5467&#"&54632632354>54#"%2654' .J, 4lMAL3x`RG!)M&ZJ6\eýº)*%K1$nUD)< 9/+0I#_!j{]?43Hb&>C¬—‹þ )5We(Á,;7þø#??&!+#Rhh:>G1 ]yRl,B63263262654'H9B-0++iJ>&3S#5+nSB@P9/!Nc_!k*14%:69@gI9þ\T4WeÅ1bA1S6" ?‘Rb,%þÂ&7 ]zRjeR;m&…F|?M‘0O2$!!LNþoG9nJPo5HÿôVÄ[e%#"/3254.'&5463232654&#"#4&#"#"&5467&#"&54632632632#"&#"326322654'VU`O0 *]dHe .9# L =?B[SU@,#nTA@O9/#Mc^ k[<6=CvO?„Qi+$ D M%*7ý%+4Xd4V';5+-/) 04(þÍ?L\{VggP=m$ƒF~?K–gƒ!#^ZI=#,'-EH9nJQo4EHÿcDÀlv%#!"3!!"&5463!2654&#""#"546323254&#"#54&#"#"&5467&#".54632632632#"&#"32636322654'DDNý @#„ü|4>@2Ä6?'  Y3) L (H;AUSW5*$nSA>R:.!Db(7 &FvYB1?>kSE}Ri%*8 ?M 1.ý-+4Xd5^)>)B1()9# Q")&!(-!þþè>6MhGXTF0_ ^J)Z_IYmNLG3) ' K C/ 41**3   r/% B (C4F\SW5*$nSA>R:. 0=))6 &wYB16MhGXTF0_ !I2)Z-D(ZlNL6-& &!n`Ãr|%2#".54>32&#"32654&#"&54>7654&#"#4&#"#".5467&#"&54632632632#"&#"2654'½.C" "8`@2 \O3(M $'ZZ_LM4-*A-9C1E`SY76nVA)< 9/,0I#^ k{^>5;R7i?8D/\;."ýé)6Xd5‡00-2#!!#H74632632632!54.#"#"&5467&#"&%354#'"654&2654'Mwa;87=nJLïþ-*3& % nTB@O80!$Ja^!j RMú¡F@/º+þ*4We6Òh‰ ZZþõ·í)A%]yTigP32&#"3265!54.#"#".5467&#"&546326326354#'"654&2654'ŒEb4r_6OC\I6G&dP54&#""&5467&#"&54632632)6W`0&ÃþúN.MÞ§LxI0wC#!nT‚O9/#!2J!c&jX9:@;kŽ:XŽ5H:oIMs7Cíâ·wi\k™À"7IH&r’\zUhhO;o$0F:‚>K‘k… ­{+X\E-Kþ×¥ÄFPZ#".547#"$54732>54&#""&5467&#"&54632632%2654'264&#"O)-C1"2 P[ÃþúN.MÞ§LxI0wC#!nT‚O9/#!2J!c&jX9:@;kŽþr)6W`0)4""*E ?&1C*! â·wi\k™À"7IH&r’\zUhhO;o$0F:‚>K‘k… ­{H:oIMs7Cþæ"4"Kþ¦ÄFP]r#"&547#"$54732>54&#""&5467&#"&54632632%2654'2654&#"2>54'#"&'3,T=>R ??ÃþúN.MÞ§LxI0wC#!nT‚O9/#!2J!c&jX9:@;kŽþr)6W`0.%C*2'1  /` 6%AZUA# â·wi\k™À"7IH&r’\zUhhO;o$0F:‚>K‘k… ­{š6H:oIMs7Cþäw# $ %5"! &)LþÁ Ã-7_h2'654&#"#"&5467&#"&5463262654'#"&=4&#"#"&5463232654'2654' t5'1VqSnSB@P9/&0H#^!k‚X:84M*5We2J*C4/>,#N6%+6^G:D=?V/:I8NaH:+Z69a"ð#&C6%NOLþ  Ã-\ft}2'654&#"#"&5467&#"&546326"&547&=4&#"#"&5463232654'%2654'2654&'+'2654' t5'1VqSnSB@P9/&0H#^!k‚X:84Ò*.=A^A&9,#N6%+6^G:D=?V/:I8NaH:+Z69a"YH8oIPo4Eþ$"+&¦#&C6%NOLýë Ã-`jxŒ•2'654&#"#"&5467&#"&546326#"&547&=4&#"#"&5463232654'%2654'2654'#"'2654'#"&547'2654' t5'1VqSnSB@P9/&0H#^!k‚X:84Ò*8G$ 4H<8,#N6%+6^G:D=?V/:I8NaH:+Z69a"YH8oIPo4Eþ:   P." ,4 '!ž#&C6%NOGÿöêÃJT%2654'7#"&=4&#"#4&#"#"&5467&#"&54632632>32%2654'@4Hp ~bRES?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7ý_*4W`22iM†;H¢c~`QMRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKCH9nJLt6CGÿEêÃV`j%2654'7#".47.=4&#"#4&#"#"&5467&#"&54632632>32264&#"%2654'@4Hp ~BB 2! "*?8?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7@4""$ýA*4W`22iM†;H¢u@ I "* 1Da>MRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKC©#2#!‰H9nJLt6CGþûêÃQ^pz%2654'7"&547&=4&#"#4&#"#"&5467&#"&54632632>322654&'"#2654'#"&'%2654'@4Hp ~VTTzS5_?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7. 'C,65$"..ýV*4W`22iM†;H¢‡>]AZUAH''€MRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKCŸ "v9)" (2) @úH9nJLt6CHÿóÁw%4&'7#".54632&#"32>5#".=4&54.#"#4&#"#".5467&#"&54632632>3232>2654'ÆE5 ‡#8MgB>P6x`rC8b&WZ$In?' .Z&9 ).LSE9&lUD)< 9/-0I#_!j{]>57Di6=1&=$ $)?üµ)5W`3â:l!i‘>_\C9# *#/A;!:&9/W %,6>þë ;J[yQr/D7=m$ ,?7„HW™a~[#, )83B6-*=4›I9nJLt4FHþÈÁ"’œ2'654.#"#54#"&546326".54632.#"32654'#"&'654&#"#4&#"#".5467&#"&54632632>3232654'72654'Ó&%  #DN5]xD' P;?XXAy¢.RDY<(.LSE9$lXA)< 80,0I#_!j{]>57Di6X%*7+ ,8Bp (;,DaXý)5W`3‹% , ;% &­ 2!7FB '/#%.†n(g?6ZL6>þë ;J[yTo/D7>l$ ,?7„HW™a~[2) ?,\). gL‹<Ojp=^ŽR3lI9nJLt4FGÿöØà U^h2!535462654'7#"&=4&#"#4&#"#"&5467&#"&54632632>32"!54&2654'\uýÙ‘pþŽ4Hp ~bRES?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7 @P#Qû*4W`2Âzbæ"âWgþpiM†;H¢c~`QMRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKC]YFιRbþ¦H9nJLt6CGÿEãÃbkv€2##".547!535462654'7#"&=4&#"#4&#"#"&5467&#"&54632632>32"!54&2654'#%2654'\uD0 "*þ™‘pþŽ4Hp ~bRES?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7 @P#Q"/-#û%*4W`2Âzbæ,3A 2!,"âWgþpiM†;H¢c~`QMRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKC]YFιRbýú"0 1!¬H9nJLt6CGÿçÃ_hsˆ’2#"&547!535462654'7#"&=4&#"#4&#"#"&5467&#"&54632632>32"!54&2654&"2>54'#"&'%2654'\u-TzS0þ»‘pþŽ4Hp ~bRES?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7 @P#Q&%&%*2'1 /ûK*4W`2Âzbæ"AAZUAB&"âWgþpiM†;H¢c~`QMRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKC]YFιRbþ X# " %5"! &)óH9nJLt6CGÿØÃ%pyƒ2##"&54>32&#"3265!535462654'7#"&=4&#"#4&#"#"&5467&#"&54632632>32"!54&2654'#AD)ÿ_6OC\I6G&dPl$1G=}?Mg‰ [ hUEKC]YFιaSþ¦H9nJLt6CGþºêÃJpz%2654'7#"&=4&#"#4&#"#"&5467&#"&54632632>322'654&#"#54&#"&546326%2654'@4Hp ~bRES?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7K6H)?(. 9'(1KUJ;7&%ýG*4W`22iM†;H¢c~`QMRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKCHWB$-) *Z+Fѵ&!A0\#/gAZ10KH9nJLt6CGþ»êÃJnx‚%2654'7#"&=4&#"#4&#"#"&5467&#"&54632632>322#"&547&#"#54#"&5463262654'2654'@4Hp ~bRES?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7+CZ6+*7D+97'4MYJ86%/k 6B$ý*4W`22iM†;H¢c~`QMRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKCHiJ7EC7S5 ѵHB4Z!-hAZ0/þü)"O.4E$+OH9nJLt6CGþXêÃJ†’œ%2654'7#"&=4&#"#4&#"#"&5467&#"&54632632>324>32632#"'732>54'#"&5467&#"#54#"&2654'2654'@4Hp ~bRES?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7þŒ 0%5&,;R0<9bH&& (: ; 6+&2>+=",98  NZx"$%ýq*4W`22iM†;H¢c~`QMRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKCâ.B 0.KT2Kf ':0P&32354&'4#"62654'À9T‘þâ€4Hp ~bRES?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7a&¡-/*2,Amý0*4W`2Òc]°xliM†;H¢c~`QMRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKC®).gM<$6TOH9nJLt6CGþ êÃJTfqxƒ%2654'7#"&=4&#"#4&#"#"&5467&#"&54632632>32%2654'4632##"&547#7354&'4#"62654'#@4Hp ~bRES?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7ý_*4W`2b9T‘&C-/A&o½$$'¡..*2,Am.&11%2iM†;H¢c~`QMRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKCH9nJLt6Cþùc]°x`@A/0¾?$#gN;$6TNç$2 2$GýëëÃJTiu|†š%2654'7#"&=4&#"#4&#"#"&5467&#"&54632632>32%2654'4632##"&547#7354&'4#"62654&"2>4'#"&547@4Hp ~bRES?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7ý_*4W`2p9T‘*3 4"4H3c½&¡..*2,Am& %()'"02iM†;H¢c~`QMRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKCH9nJLt6Cþùc]°x"> $,G4>"¾).gN;$6TOÁ $P '< ,4 '!/Gþ,êÃJTs~ˆ%2654'7#"&=4&#"#4&#"#"&5467&#"&54632632>32%2654'432#".54632&#"326=#7354&#'"654&@4Hp ~bRES?) #*SJ4%lSBAO80%0I$_!k}]:81Jb=#6I[7ý_*4W`2j’CV37H7C;7N<(ó¼#$(¦30,_ t 2iM†;H¢c~`QMRF 2!þë :K[ySjhO>l$1G=}?Mg‰ [ hUEKCH9nJLt6C㢱€JM6:¾ >%$bQA (1tS[!QÿHìÁ q%2654'#".5473267#"'.'&#"#4&#"#".547&#"&54632632>3232>54'ß#.KR+À151Z{¶o‘ÜPi%^ 1Qj™\—ÀbZ  09M<0]K=%5 Z!4aY$_jU9,1;\/ A3AR3 "&c7H6lHLo2EŠ2j9&,UXJ:!2Noi=speo =E:8&/DL$j=5þë :IZxRm-C6{Q eN€KW•^V8fN WK$H0ˆ?QþþñÁq}‡#"&547#".5473267#"'.'&#"#4&#"#".547&#"&54632632>3232>54'72654&#"%2654'—%5*" 2D‘Í‘ÜPi%^ 1Qj™\—ÀbZ  09M<0]K=%5 Z!4aY$_jU9,1;\/ A3AR3 "&c$15Š2""  ý #.KR+=-"3 D2 =2Noi=speo =E:8&/DL$j=5þë :IZxRm-C6{Q eN€KW•^V8fN WK$H0ˆ?2j9&ƒþ!! 6ÑH6lHLo2EQþ˜ðÁp{“"&547#".5473267#"'.'&#"#4&#"#".547&#"&54632632>3232>54'72654&'"2654&'#".=2654'j(/!U|T„±‘ÜPi%^ 1Qj™\—ÀbZ  09M<0]K=%5 Z!4aY$_jU9,1;\/ A3AR3 "&c$15ž!"G("8&$ $'#ý#.KR+C<&=VU>("-2Noi=speo =E:8&/DL$j=5þë :IZxRm-C6{Q eN€KW•^V8fN WK$H0ˆ?2j9&¤ì%.[02 75' & *\H6lHLo2EYÿB%Á#12##".547!3354>54#"2>54&#"T9T*!A3+9 ýüTÛ&?CΗŒÖ# Á)DE$ë,1C20,¹þjá6N'þbŸÇ˜Î "+Yÿ"Á$1C2##"&547!3354>54#"2654&#"2654'#"&'T9T*)- >*?Q/þ)TÛ&?CΗŒ¨&%%+74&0 8Á)DE$ë&?-7&V?B(¹þjá6N'þbŸÇ˜Î‹W:'" %5# )8MþºÝ :2!33546"!54&2'654&#"#54&#"&546326 \uýqT¥ps@P#R 6H'$?(.!9"(1KUJ;7&$Âycæ¹þiâWg3YFιSaþ[WB,F *Z+Fѵ 'A0\#.hAZ10Mþ»Ü 09C2!335462#"&547&#"#54#"&546326"!54&2654' \uýqT¥p‰CZ5,*7D *97'4MYK74'-%@P#R6B#Âycæ¹þiâWgþ(iJ7ED6R6 ѵHC3Z!-hAZ0/¥YFιSaýW)"O.4E#,MþXæ Q\2!33546"!54&4>32632#"'732>54'#"&5467&#"#54#"&2654' \uýqT¥ps@P#Rþ@ 0& 4'+",98  NZx/)Âycæ¹þiâWg3YFιSaýÁ.B 0.KS2Ih ':0P&J^2!33546"!54&4632##"&547#7354&'4#"62654&#"2654'#"&547 \uýqT¥ps@P#R®9T‘*3$ 4H3c½&¡..*2,AmL4)'"Âycæ¹þiâWg3YFιSaýŸc]°x">.G4>"¾*-gN;$6TNÀ P." ,4 '!Mþ,ß 7BK2!33546"!54&4>32#".54632&#"326=#7354&#'"654& \uýqT¥ps@P#Rª,-’CV37H7C;7N<(ó¼$%&¦+8,_(t Âycæ¹þiâWg3YFιSaýÃ1D ±€KL5;¾@&"bHJ!5?tS[!Mÿ=íÁ3;2#"&547&/32654&+532654&#"&546264&"23K"KO5>A31C-1;G4+*4==2M](“4""4"Á .% @K:* G0DD0#7)"'2,)"$/yfO` rL{’ýÀ"4""4MþöçÁ1=Q2"&547/32654&+532654&#"&5462654&#"2654'#"&'23K"KOJMTzS3 -1;G4+*4==2M](|"%+75$1*Á .% @KJ(!XBYW?F(7)"'2,)"$/yfO` rL{’ýÍX9)" '3"!  "MÿFö¿:%#"&54632&#"32654&+532654&#"&54>32{54.#"&54>32'2'654&#"#465654#"&546326UqtYq?% U+IDS32á:F'K+$M*?B4554A?299/:<0>i&,GJ&I_T/-Q(*X'1?!#!("/$"+/,"!0orIf {CKn9H5H A(T3Mþ‡ãÁBM%#"&547&/32654&+532654&+532654&#"&54>322654&"(*02A31C0$M*?B4554A?299/:<0>i&,GJ&I_T/-q+#2#$30#=0DD0' ?!#!("/$"+/,"!0orIf {CKn9H5H A(Tþ¯""!MþEäÁANa%"&547&/32654&+532654&+532654&#"&54>322654&#"2654'#"&'(*>AR~Q2$M*?B4554A?299/:<0>i&,GJ&I_T/-› "G3&1 +'39#QAZW?F' ?!#!("/$"+/,"!0orIf {CKn9H5H A(TþÁX02  &4"! $. KÿîÁH%#".54632&#"32654#523254&#"53254&"&54>32„,/P_h8C/mO9K$&7pL$RHÏ „DT ‹;V@ & .N217&ã 7!d@>M!&"A+N'W1%#P#++FI&If {C$EJ6# 0 GMþŒõÁIm#".54632.#"32654&+53254&+57654&#"&54>322'654#"#465654#"&546326õ”s.:(]EZ1 A$/@A2UjaM03 …KL8`C-+@ & .N2:pA-.P\æ l‡ 3"8EB #0"&-hM@N*W3"# A!-+FI&If {C$EJ6#A3G# 7!d®" %$  .% $Iÿó‚ÂN#"'#"&54>54++53264&#"&546323265332654.'÷+< oSX;mLF=0906++/0(HY(}d>R? N6NXKS8+:J 3$ÁAG7c}M40#"!, B(|eMb qMx•>2< !J <Cþë2>fM/;4IÿF‚ÂYd#".547&'#"&54>54++53264&#"&546323265332654.'264&+÷+< GDD0 "*J0mLF=0906++/0(HY(}d>R? N6NXKS8+:J 3$2##ÁAG7r> J3A 2!  @40#"!, B(|eMb qMx•>2< !J <Cþë2>fM/;4ýá"4" !Iþú‚ÂVbv"&547&'#"&54>54++53264&#"&546323265332654.'2654&#"2654'#"&'÷+< \[S|R0;(mLF=0906++/0(HY(}d>R? N6NXKS8+:J 3$%%$,65$".*ÁAG7ƒ=aCXV@B)540#"!, B(|eMb qMx•>2< !J <Cþë2>fM/;4ýéX:(  '3(  "Iÿ„Âm#".54632&#"3267#"'#"&54>54++53264&#"&546323265332654.'÷.=Q8WEB3:6`‰rt:]X;mLF=0906++/0(HY(}d>R? N6NXKS8+:J 3$ÁDK1-%LgX* *% %uŽOM40#"!, B(|eMb qMx•>2< !J <Cþë2>fM/;4IþÇšÂd‡%2654'7#".54632.#"3265#"'#"&54?654#"532654&#"&54632326532'654.#"#54#"&546326Ð?Ox™2KPDN6]zB' O;?XY?‡>_X;lLF=(I(K-+01'HY({f>R?/ #'NE^S6@&%  #"4fM39þã8msU7 2"7FB '/F1¹™OM30/ !#,#!(‚_Mb oOt™@0< $  1#Cþë1?¿% , ;% %Iþº‚ÂNs#"'#"&54>54++53264&#"&546323265332654.'2'654&#"#54&#"&546326÷+< oSX;mLF=0906++/0(HY(}d>R? N6NXKS8+:J 3$6H -%?(. 9'(1KUK:7&%ÁAG7c}M40#"!, B(|eMb qMx•>2< !J <Cþë2>fM/;4þAWB1>*Z+Fѵ&!A0\#/gCX10Iþ»‚ÂNr|#"'#"&54>54++53264&#"&546323265332654.'2#"&547&#"#54#"&5463262654'÷+< oSX;mLF=0906++/0(HY(}d>R? N6NXKS8+:J 3$CZ6+*7D+97'4MYK74'-m6B$ÁAG7c}M40#"!, B(|eMb qMx•>2< !J <Cþë2>fM/;4þAgL7ED6R6 ѵHD2Z!-hAZ0/þü)"O.4E$+IþX†ÂN‹–#"'#"&54>54++53264&#"&546323265332654.'4>32632#"'732>54'#"&5467&#"#54#"&264'÷+< oSX;mLF=0906++/0(HY(}d>R? N6NXKS8+:J 3$þn 0& 4'++>",98  NZx"$%%ÁAG7c}M40#"!, B(|eMb qMx•>2< !J <Cþë2>fM/;4ý§.B 0.KT2Kf '0# P&;L9.3A,"˶H 2!Y#-(\ +'!IþÆ‚ÂNVbi#"'#"&54>54++53264&#"&546323265332654.'4632!7354&'4#"6÷+< oSX;mLF=0906++/0(HY(}d>R? N6NXKS8+:J 3$€9T‘þâ½&¡-/*2,AmÁAG7c}M40#"!, B(|eMb qMx•>2< !J <Cþë2>fM/;4ý…c]°x¾).gM<$6TNIþ ÂN`ls~#"'#"&54>54++53264&#"&546323265332654.'4632##"&547#7354&'4#"62654'#÷+< oSX;mLF=0906++/0(HY(}d>R? N6NXKS8+:J 3$v9T‘&C-/A&o½&¡..*2,Am.&11$ÁAG7c}M40#"!, B(|eMb qMx•>2< !J <Cþë2>fM/;4ý…c]°x`@A/1¾*-gN;$6TOè$2 2&IýëÂNdpwƒ—#"'#"&54>54++53264&#"&546323265332654.'4632##"&547#7354&'4#"62654&#"2654'#"&547÷+< oSX;mLF=0906++/0(HY(}d>R? N6NXKS8+:J 3$v9T‘*3$ 4H3c½&¡..*2,AmL4)'"ÁAG7c}M40#"!, B(|eMb qMx•>2< !J <Cþë2>fM/;4ý…c]°x">.G4>"¾*-gN;$6TOÁ P." ,4 '!Iþ,ƒÂNp{„#"'#"&54>54++53264&#"&546323265332654.'4>32#".54632&#"326=#7354&#'"654&÷+< oSX;mLF=0906++/0(HY(}d>R? N6NXKS8+:J 3$x,-’CV37H7C;7N9+ó¼$%&¦+8,_(t ÁAG7c}M40#"!, B(|eMb qMx•>2< !J <Cþë2>fM/;4ý©1D ±€KL1?¾@&"bHJ!5?tS[!Jÿ? Á^#"$547327#"'#"54?654+53254&#"&54>323265332654&'§9@þýËéþáVQÖ¹‘)h bJ:iJþê Ám{#"&5465#"$547327#"'#"54?654+53254&#"&54>323265332654&'2654&#"§9@\,/ 2"3Cg|éþáVQÖ¹‘)h bJ:iý’" "Jþ… Áoy#"&547#"$547327#"'#"54?654+53254&#"&54>323265332654&'72654&'2654&'#"&=š(/!7#=USféþáVQÖ¹‘)h bJ:i"%ˆH³ö #.y9)%358&( +7Jÿ<hÁ3"&546732654&+532654&#"&54>32yˆ§ .sVK>3551?:@N`"( !3T6Rg[^AEÄÚ¹Ni;\x¡Ê]9;P0E&'@`t; @~&FH5!U>Q*7fU?EJþ™hÁ=K2#"&547#"&546732654&+532654&#"&54>2654&+¬Rg[^JGA31C  ˆ§ .sVK>3551?:@N`"( !3T{ "$ÀU>Q*7f\AO0DD0Ú¹Ni;\x¡Ê]9;P0E&'@`t; @~&FH5!ý+#!JþJiÁ;FY2#"&547.546732654&+532654&#"&54>2654&#"2654'#"&'¬Rg[^bcS>?Q!‚ .sVK>3551?:@N`"( !3T=.%C)95$1*(ÀU>Q*7fmBfAZW?6'Ú±Ni;\x¡Ê]9;P0E&'@`t; @~&FH5!ý""w6," '3"! $. MÿEçÀ:B%#".547&'#"'&54>732>5332654.'7264&"›2E/ "*H48PJ9; <*#*0B9(,S2*9M0"&,ˆ4""4"& 7-3A 2! EM@Dc4F?o732>5332654.'2654&"2654'#"&'a&,\\T=>R06'8PJ9; <*#*0B9(,S2*9M0" (!%+75$1*À 6R0ˆAbBYV@D'4M@Dc4F?o5#"'#"'&54>73265332>54'7®Oy}Lc:4SjS"*MJ-7NX57PK9; >.",2I;'4S1!,3#j0:agè4&!"%1aC9KL?Db2IBn>Ob.!Cþì>4%K1@8;37#"'#"'&54>732>5332654.'7'2'654.#"#54#"&546326©@N6]xD' O;?XN9Kp>)]CV98PU63 <*#ZC8)*S2*:L0"OX.G`[&%  #"þÈ 2!7FB '0"%05Ls[97MMMKCY4E@BˆOb + :þì3?hP+94Îw\’X9­% ,  ;% &MþºáÀ.S#"'#"'&54>732>5332654.'2'654&#"#54&#"&546326a&,nQV98PJ9; <*#*0B9(,S2*9M0"6H'$?(.!9"(1KUJ;7&$À 6R0g‚MM@Dc4F?o732>5332654.'2#"&547&#"#54#"&5463262654'a&,nQV98PJ9; <*#*0B9(,S2*9M0"CZ5,*7D *97'4MYK74'-m6B#À 6R0g‚MM@Dc4F?o732>5332654.'4>32632#"'732>54'#"&5467&#"#54#"&2654'a&,nQV98PJ9; <*#*0B9(,S2*9M0"þe 0& 4'+",98  NZx/)À 6R0g‚MM@Dc4F?o732>5332654.'4632!7354&'4#"6a&,nQV98PJ9; <*#*0B9(,S2*9M0"‰9T‘þâ½&¡..*2,AmÀ 6R0g‚MM@Dc4F?o732>5332654.'4632##"&547#7354&'4#"62654'#a&,nQV98PJ9; <*#*0B9(,S2*9M0"9T‘&C-1?&o½&¡-/*2,Am.&11%À 6R0g‚MM@Dc4F?o732>5332654.'4632##"&547#7354&'4#"62654&#"2654'#"&547a&,nQV98PJ9; <*#*0B9(,S2*9M0"9T‘*3$ 4H3c½&¡-/*2,Am.0&4)'"0À 6R0g‚MM@Dc4F?o.G4>"¾).gM<$6TNÀ o." ,4 '!/Mþ,áÀ.P[d#"'#"'&54>732>5332654.'4>32#".54632&#"326=#7354&#'"654&a&,nQV98PJ9; <*#*0B9(,S2*9M0"…,-’CV37H7C;7N<(ó¼$%&¦+8,_(t À 6R0g‚MM@Dc4F?o73265332654&'7áµåJ"EÈ›«z'%Z05QSm 4),gG:'5SQAOA'|ã¸ç¦ƒhZsÍ„KJ…a3U5 @‘Oe+#Cþìr`IQel¬ÐGþápÀEQ#".5465#"&547327#"'#"&54>73265332654&'72>54&"%7 2!"2 OYµåJ"EÈ›«z'%Z05QSm 4),gG:'5SQAOA'|‹.!6!9>- "*+!   禃hZsÍ„KJ…a3U5 @‘Oe+#Cþìr`IQel˜þù $$ Gþ†pÀBM_%4&'7#"&547#"&547327#"'#"&54>7326533262654&"2654'#"&'@A'|~#,U<@P >9µåJ"EÈ›«z'%Z05QSm 4),gG:'5SQAOr&%&%+72'#//ÛQelµi 7%DWW? 禃hZsÍ„KJ…a3U5 @‘Oe+#Cþìr`þŒX9)" $6) @Jÿø%Ã+6"&5467&#"#4&#".54632632'2654&'“AQ:0/3@S5!

7&#"#4&#".54>326322654'"­q:7&)_=8aPB9J E1'a6CS5!5*. 2#): "/;*P;@\)9:[WþØ'-(1"/mn*QJ_€-:ZsVF2?.F3)þË=304R,:5>D38X0 JH1$„JMÿøÄ?%#".54732&#"32654&#"#4&#".54>32632ø«Œ=I3ËSJ&;KpI6m„bM&1S5"3+.3%(."/;*P:ˆ¥%J2/?S6-=L 6.)7pXU:EV4R1 Ðx&% #"þÊ 3"7FB '/#"1Ä¡7db;-$þÂ3326326~$:Wf6¼e‹q1WlN!$mSB@O80/3BS3" *#4%*: !/9+Q;>Y9/;5=DmKPp5DŽ‹mŠJEmS‘[{RkgP=m$-%þÂ=3 &D+):5?E37W0 JJ GÿeôÄJT%#!"3!!"&5463!2654&#"#"&5467&#"#54&#".546326326322654'ôrTý‚6@üÀ72;.KL\hR!mSA?Q,<14@S5!6ME1'/lNR9BW4243!2654&+532654&#"#"&5467&#"#54&#".546326326322654'üN@ýB6Füº/: -‹E:"#Wj"mSA?Q,<12BS5!5NE1;KlNR9BW424FHe0!=þx*4Wf7p4@)@0' #3 9,'@= MgGWUE'`%%þõè2+TB?W eGVk=<.-#+8;1]=B^-9HÿÂPZ%#".54632&#"32654&#"#"&5467&#"#4&#".546326326322654'Å£!Y\{[YK+Z~[$z–p]#mSB@O803*GS3" *#4%*: sPQ;:X#J6Euþk$:Wf6 Õ $!+'½‹v– [{SjgP=m$&+þÂ=3 &D+):5?E3eƒJI­ß=DmKPp5DHþÉ'Â_ƒ".54632.#"32>54.#"#"&5467&#"#4&#".54>32632632'2'654&#"#54#"&546326'2654'¿>N4]zB' N<@W%8,?c;' 0V7"mQD@O8012?S4!)< 2$*: &S9Q;:X'F8C|š3O!&% #"^*4Wf4þÉ 3#7FB (/#$+CZT+LgS; [{QliN=m$,%þÂ=3-A6-93?E3DS9JIÓ›5fkQ3¬% , ;% %ÀG:nJPp3FJÿCœÂIS".54732$54&#"#"&5467&#"#4&#".54632632632'2654'yžü•Z!Q"ÝÐ rR mSB@O80.4@S5!5*.)"*: sPQ;D3eƒJJŠl²×òG:mKPp4EJþÿœÂZdq2#".5465#".54732$54&#"#"&5467&#"#4&#".5463263262654'2654.#"£qˆ]$5 2! "*Š®žü•Z!Q"ÝÐ rR mTA@O80.4@S5!5*.)"*: sPQ;" "!Šl†b<- "* 1" ?`»zxpbh¡Å±][{UhfQ=m$.$þÂ=305R*F,>D3eƒJJþsG:mKPp4Eò$#$Jþ¤œÂV`k}2"&547#".54732$54&#"#"&5467&#"#4&#".5463263262654'2654&"2654'#"&'£qˆ€$,TzS {žü•Z!Q"ÝÐ rR mTA@O80.4@S5!5*.)"*: sPQ;D3eƒJJþsG:mKPp4EùX:(" (2"! @Hÿ÷ÚÃ?"!54&'2!5>54&#"#4&#".546326323546!=L"TZ]qýO,2N6&3S3" *#4%*: sPQ;8NRl\ÆrŽWEÏŸ]o5vbë*x54&#"#4&#".546326323546"!54&2>54&" ]qC1"2 þ ,2N6&3S3" *#4%*: sPQ;8NRl\Ærj=L"T #2#Ãvbë,1C+! +*x54&#"#4&#".546326323546"!54&2654&"2654'#"&' ]q.TzS1þ0,2N6&3S3" *#4%*: sPQ;8NRl\Ærj=L"T&%&%+74%"./Ãvbë"‚ZUAC%*x32&#"325!5654&#"#4&#"&54632632354>54#"$:S*„…54&#"#4&#".5463263235462'654&#"#54#"&546326"!54& H†ÃŽBL3}_xD' Q;,A ZCv•ýŒ,2N6&3S3" *#4%*: sPQ;8NRl\Ær&% #~=L"TÃy_ÿ{© 2!6GB (%.št*xP 3#): lWP;7ÂJ79#"I:J :.&(2,*$,+#þ¿<3hM,;5?E3c†JHIÿ;ÞÄDL2#"&547&/32654&+532654&#"#4&#".546326264&"0GaCI:9A31C -*3?3%(7/:0/@S2">P 3#): lWP;7‚2##2#ÂJ79#"IC$!C0DD0* :.&(2,*$,+#þ¿<3hM,;5?E3c†JHý½"4""4IþùìÄDPe2#"&547"/32654&+532654&#"#4&#".5463262654&#"2>54'#"&'0GaCIBPU<>R4 -*3?3%(7/:0/@S2">P 3#): lWP;7%:*5$"/ÂJ79#"IH$!YDWV@G':.&(2,*$,+#þ¿<3hM,;5?E3c†JHýÏ"X$ " '3(  "IÿÂM%#"&54>32&#"32654.+532654&#"#4&#".54632632C‹eJŽ)CD#n?'3RzB1|„ :)""9DH:3DS2"=Q3%): mVP;9oOiS:( +KL,(  &Wq%'4;/2>.!þ¿=3gO*<5?D3c†JHNAL<*COÿ?‚ÂH2#"$54732>54.+532654&#"#4&#".546326ÅReTZ.G`Y-Êþò[&Yï·Rs7*# 221>C71@S3!U"@T5T3! ܯ‰ma}’Á 53$5 78()2+"þ¿<4hO*;4@E3c„JGOþ¯‚ÂPb2#"&547#"$54732>54.+532654&#"#4&#".5463262654.#"#ÅReTZGGB21C;?Êþò[&Yï·Rs7*# 221>C71@S3!U"@T_:N/ED0 ܯ‰ma}’Á 53$5 78()2+"þ¿<4hO*;4@E3c„JGý4##Oþa‚ÂP\p2#"&547#"$54732>54.+532654&#"#4&#".5463262654&'2>54'#"&'ÅReTZa`S>=S!-Êþò[&Yï·Rs7*# 221>C71@S3!U"@To=dCXW?+!ܯ‰ma}’Á 53$5 78()2+"þ¿<4hO*;4@E3c„JGý:X+'  &4$ $. IÿõîÂH#"'#"&=4&#"#4&#".546326323265332654.'h*: nST:-\BWA-)32&#"32>5#"'#"&'&54#"#4&#".546326323265332>ÂD2‘.E_R,Ya_YkQ>\&YV)4\V33fd)2T?Ps)8S,#+@ v>HnTf'(b.D".:(6S%*,? æ8m`õR~G, %6$ & 9nLWJJW:TŸ.#þÂ0@,@3pP(zD`„II*?2/[b+$Cþì+F,A3Lÿ3õÃ\#".547! 7#"'#".=4&#"#4&#"&54632632326533254.'~9>Q|Ï„mµ~a9$ ,')UPp*U+'K)3#9'* M+2IhwdKC5*I,7&2) .M!€/#Á%ŒI8inQ4 4LO]Q*i]R[þw” =H ?+eUJ"" þÂ;2dMƒ8L—]ŽHF"K4k7A*">þì,1£-?9LþêõÃhs#"&5465#".547! 7#"'#".=4&#"#4&#"&54632632326533254.'2654&#"~9>]$5 1!4BŠÆmµ~a9$ ,')UPp*U+'K)3#9'* M+2IhwdKC5*I,7&2) .M!€/#2"",Á%ŒI“b>, "+F0 = 4LO]Q*i]R[þw” =H ?+eUJ"" þÂ;2dMƒ8L—]ŽHF"K4k7A*">þì,1£-?9ýŒ!!Lþ‡õÃhrˆ#"&547#".547! 7#"'#".=4&#"#4&#"&54632632326533254.'2654&'2654&'#".=~9>‡1S7#=U¦mµ~a9$ ,')UPp*U+'K)3#9'* M+2IhwdKC5*I,7&2) .M!€/#", :A)9-8'#!, ;Á%ŒI²iN@ ,#V=$"- 4LO]Q*i]R[þw” =H ?+eUJ"" þÂ;2dMƒ8L—]ŽHF"K4k7A*">þì,1£-?9ý€ #/y9)%35& "  +7IÿöþÄ62'654&#"#4&#"#4&#".546326326?Rm!3,'kK=&3SC2(2S2">P3B*: oTR:4^Y69Ça3V5=’Ne,$þÂ4A)"þÂ;4hL2p?E4e…ONIIHÿôF D%2654&'"&5467&#"#4&#"#4&#".54632632632¤(0/$h98AP91/,GSB3'3S2">P3%*; pSS:6\Y6EY`FIR4?68kQl5E=gQ:p&'-þÂ5A*"þÂ=3iM);5@D3e…NNJJLOoTmIÿaÊ U%3254'#"'7327654&'#"&5467&#"#4&#"#4&#".54632632632R,#W8Rxq;7')^=89-RB;F`>.VA9SB3'3S2">P3%*: lVS:6\Y6AVtQ[Z¤2r׋``YOx¾hØžOc2þÂ5@.þÂ1?gJ:k(|E`„MMIIýp$0#""Fþ…“ÁP_v2#".547#"$&54732654&#"#4&#"#4&#".5463263262654.'2>54&'#".=ÒWjKA(1"U>*4$ l€£þø›-)+ò’ÆûK=2,SA12+S-"?UB3=JoSg'.Xm.'{ " $-8+-!+ 9Á‚gT 9=(>U ?,")r׋``YOx¾hØžOc2þÂ5@.þÂ1?gJ:k(|E`„MMIIýb [*%358"  )9Iÿõ-Ä(02!4&#".546326354#4&#"6O(HE)þ+3!=Q3%*: pTU6DÂRMû¢FH, iµÄ8oM·<4gO*;5@E3e„TV£EuD–å1<%3½©ƒIÿB2Ä*3;F2##"&547!4&#".546326354#4&#"62654&#"O(HE)B21Cþï3!=Q3%*: pTU6DÂRMû¢FH, iµI>* Ä8oM·,/ED0,<4gO*;5@E3e„TV£EuD–å1<%3½©ƒþà*+Iÿ6Ä*3;GY2##"&547#4&#".546326354#4&#"62654&#"2654'#"&'O(HE)%.T=?Q1î3!=Q3%*: pTU6DÂRMû¢FH, iµA&%&)92'1 7Ä8oM·"ABYW?C%<4gO*;5@E3e„TV£EuD–å1<%3½©ƒþô"X8*" %5 # %9Mÿ1Á2;C746323632#".54632&#"326=!4&#"&%354#4&#"6MnTl!2‚Ü€‹AM5…bXJ 6G+ac(vQþ_,#A+(v‡UNQú¡FH*"iµÝ`„SSþö·Ša ",^`0@92FmU^ÏFoI–å1<$4½©ƒJÿ%ÃÁ9CK2#".546732>5!4&#"&5463236354+4&#"6è7=,Otd#b¤qX4 (.*ZCg‹„DThGþc.!?Uu…oRm!4ÍPNöœFG,!i¶Á #9bAÙ3N&2HLYK(Ff>gpV‡R4 E.0@gJwK^Š`„SS FqG–å0=%3½©ƒJþÅÁDNVb2#"&547#".546732>5!4&#"&5463236354+4&#"62654&#"è7=,AC 2"4B 82b¤qX4 (.*ZCg‹„DThGþc.!?Uu…oRm!4ÍPNöœFG,!i¶b "$+Á #9bAÙ>0K #*F0 2HLYK(Ff>gpV‡R4 E.0@gJwK^Š`„SS FqG–å0=%3½©ƒþ1$"! Jþ?ÆÁCMU`u"&547#".546732>5!4&#"&546323632354+4&#"6264&'2654&'#".=b')U|T'b¤qX4 (.*ZCg‹„DThGþc.!?Uu…oRm!47=,PNöœFG,!i¶ .P:'#8'#!+ £@*=VU>2'2HLYK(Ff>gpV‡R4 E.0@gJwK^Š`„SS #9bAÙN‘FqG–å0=%3½©ƒþ7,y8* 5 6& "  +IÿFrÃ3"&54732654&#"#4&#"&54>32632õµ÷A$:Ù ®PA&3S3!+3#v…!/:*P;:KSnѺâ²gVj™Ç°‹Yw,%þÂ<4%K0‘1C¦6V0 JK“u¨ÍIþÒrÃ?K2#"&547#"&54732654&#"#4&#"&54>3262654&#"±Sn^+0F/0FELµ÷A$:Ù ®PA&3S3!+3#v…!/:*P;:y4!! Óu™h A'4BB4â²gVj™Ç°‹Yw,%þÂ<4%K0‘1C¦6V0 JKýV## 2IþsrÃBNd2#".547#"&54732654&#"#4&#"&54>3262654.'"2654&'#"&=±SnD=1MU>+> 45µ÷A$:Ù ®PA&3S3!+3#v…!/:*P;:P.+A)9("8&/)9ÓuV™4O<=V$5*(# â²gVj™Ç°‹Yw,%þÂ<4%K0‘1C¦6V0 JKýNz9)858 )9Mþ¼[6NY#"'&547&#"#4&#"&54632632654&#"'6322'654&#"&5472654'«)4U?5&"sF*4S,#A+(v†pRh%1UC+1#3!*ai—|L+A7+-8H [ƒ'/8#D)—!w54'#"&547'«)4U?5&"sF*4S,#A+(v†pRh%1UC+1#3!*ai>9II98J-A7+-8H [V?>LL'/8#D)@.+,"*#$—!w32&#"32>5!5654&#"&546ù3J"&>Oê?O6)BC"K?-Dv:D13þJH071A5Dd*(:07,–þ7Ô '&P9-R&?@5C#3XK\KþÈ ¹:Z2!3#".54632.#"326=!5654&#"&5462'654&#"#54#"&546326ù)A$&8TÄBL3}_zB'T9,A WFhþQH071@4Dc8&% #")'1# 7,—þ3{© 2!6GB )$/h -M&?A5B$5WK\þL' ;;% %Kþ¾ ¹>2!3!5654&#"&5464632&#";2#"'73254+"&ù)A$&8TýýH071@4DcU:DU/$C#6-?70N1V,&KS>@(/)'1# 7,—þG -M&?A5B$5WK\þb&;0%&05./&5(,Kþ ¹GR2!3!5654&#"&5464632&#";2#"&547&'73254+"&264&#"ù)A$&8TýýH071@4DcU:DU/$C#6-?7098B./A,1&KS>@(/#!$%)'1# 7,—þG -M&?A5B$5WK\þb&;0%&0=>1??16 &5(,þØ-&-&$Kýë ¹IVj2!3!5654&#"&5462#"&547&'73254+"&54632&#"32654'#"'2654'#"&547ù)A$&8TýýH071@4Dcï70;=-# 4H7,&KS>@(/:DU/$C#6-  %533/)'1# 7,—þG -M&?A5B$5WK\þE0>!D$5 G4?"&5(,%&;0%&ÿP." '"#& '".Kþ¾¹FP2!3!5654&#"&5462'654&#""&547&#"&5463262654'ù)A$&8TýýH071@4DcÂL_Q$:H7F8V5C. ?HU;'$#3&8A")'1# 7,—þG -M&?A5B$5WK\þÆaFZ0 .H=S=O7FD6P6 .'R* 3`EYþû',F04G#+KþW¹U_2!3!5654&#"&5462#!"3!!"&546;2654&+""&547&#"&5463262654'ù)A$&8TýýH071@4DcÍITB0þø((vþŠ"**"í$1C7  G9T6B/:AIO>(!"2!7A")'1# 7,—þG -M&?A5B$5WK\þÄUFAT3$$D3:F2D099-F+?.F 'P;OÜ&:),;$KþX¹^h2!3!5654&#"&5464632632#!"3!!"&546;254&+532654#""&547&#"&72654'ù)A$&8TýýH071@4Dc¨P:+!$@ˆ./*0þá''sþ ,#)êWL-E8V5C/:@HÅ!7B")'1# 7,—þG -M&?A5B$5WK\þB;IS$.#73%0;!: 1C/::-?/>/G %&9)-9$Kþ-¹Wa2!3!5654&#"&5462#"&54632&#"32654&#"#".547&#"&54>3262654'ù)A$&8TýýH071@4Dc¸Q`j@LO=?6$9QQOaG< F7.$. C1>?H&7-$/#8@*)'1# 7,—þG -M&?A5B$5WK\þÄvYj‡0u\Ne3262'654#"#54#"&54632'2654'ù)A$&8TýýH071@4Dc­Qd…nN.6%*:@'ThO?$I:+(E3>>G%. $! .#9C )'1# 7,—þG -M&?A5B$5WK\þˆew” &$.+‚h[z=Q6H,# R6K8S) 2`%; þz ' ˆ/'H15I !$Kþº¹B2!3!5654&#"&5462'654&#"#54&#"&546326ù)A$&8TýýH071@4Dcí6H -%?(. 9'(1KUJ;7&%)'1# 7,—þG -M&?A5B$5WK\þÁWB1>*Z+Fѵ&!A0\#.hBY10Kþ»¹@J2!3!5654&#"&5462"&547&#"#54#"&5463262654'ù)A$&8TýýH071@4DcÍCZ6V6D+97'4MYJ86%/k6B$)'1# 7,—þG -M&?A5B$5WK\þÁiJ7EC7S5 ѵHB4Z!-hAZ0/þü)"O.4E$+KþX"¹Xc2!3!5654&#"&5464>32632#"'7327654'#"&5467&#"#54#"&2654'ù)A$&8TýýH071@4Dc8 /&5&,;R0<9bH'% <)$; 6+&2>+>",98  NZx"#')'1# 7,—þG -M&?A5B$5WK\þ'.B 0.KT2Kf 50=P&( #ô -M.7B4B$5WJ]Kþ>¹CO2!3##"&547#5654&#"&54632!5!5654&#"&5462654&#"ù)A$&8T*C-1?)ù/$*$/@4"1  þBH071@4Dcù..#-)'1# 7,—ýD20@B.2 2'*!+#:/@( "ê -M&?A5B$5WK\ýQ!"-#Kþ¹ERf2!3##"&547#5654&#"&54632!5!5654&#"&5462>54&#"2>4'#"&547ù)A$&8T(3-# 4H3ì/$*$/@4"1  þBH071@4Dcà %(!'41)'1# 7,—ýD%>$5 G4>% 2'*!+#:/@( "ê -M&?A5B$5WK\ýz P '< 4"' (".KþZ ¹O2!3#"&54632&#"3265!5654&#"&5463235!5654&#"&546ù)A$&8U`=+fU53*,L:Kþ4/$ *#.AdAlJJ)2½6)'1# 7,—þG -M&?A5B$5WK\þÃO@›4%)",#:1=<1$’9E&:+…g;HKþ¹GP\2!3!5654&#"&5462##"&547!5654&#"&54623546"354&2654&#"ù)A$&8TýýH071@4DcÕ>K)C-0@)þà/$ *#.AdAlJJ)2½6&.#$)'1# 7,—þG -M&?A5B$5WK\þÃO@›31?A/34%)",#:1=<1$’9E&:+…g;Hþx$"-%Kýë¹LU`t2!3!5654&#"&5462##".547!5654&#"&54623546"354&2654'#2654'#"&547ù)A$&8TýýH071@4DcÕ>K%3-# %3þê/$ *#.AdAlJJ)2½6.$&4350)'1# 7,—þG -M&?A5B$5WK\þÃO@› <$5 .< 4%)",#:1=<1$’9E&:+…g;Hþ©  P." '"#& '!/Hÿ+›Á/2!3# 47326=!5654&#"&546ŒL^$9PpžKþ[PAfžg[ºþQG8.3?4Dc*YJ;(–þ@:b3§}r_o@h]?%V8.N/9B3D"2YL[Hþ¯¥Á=K2!3#".547# 4732>=!5654&#"&546264&+"ŒL^$9P:DB2"2 /4ýè[PCk«qJX<þQG8.3?4Dcð## "*YJ;(–þ@?. J/E+!  “}r_o=aY;# 4".N/9B3D"2YL[ýÉ#2# "Hþ\¢Á;FZ2!3#"&547# 4732>=!5654&#"&5462654&"2>54'#"&'ŒL^$9PY`T=?Q ýè[PCk«qJX<þQG8.3?4DcÂ%&$*2'1 E*YJ;(–þ@N5eAZW?.#“}r_o=aY;# 4".N/9B3D"2YL[ýÊX# " %5"! 2+KþÁ¹EO2!3!5654&#"&546#"&=4&#"#"&5463232654'2>54'ù)A$&8TýýH071@4Dc *C4.?.!N6%+6_F0N=54'ù)A$&8TýýH071@4Dc *77C-1?04.!N6%+6_F0N=54'2654'#"&547ù)A$&8TýýH071@4Dc *CA-# 4HH3.!N6%+6_F0N=.c$+w>N@31)?&ѶH5'b$-u@O0.@18(3Kþ¹Vd2!3!5654&#"&5462654'7#"&547&=4&#"#54#"&546326322654&'+ù)A$&8TýýH071@4Dcô!+Q^08C-0@+7"'"9: %&MWK39$"6.A(#&-$)'1# 7,—þG -M&?A5B$5WK\ý¼>.c$+wN' @1?A/6"E1)?&ѶH5'b$-u@O0.@18(3§$$ 0%Kýë¹Xdy2!3!5654&#"&5462654'7#"&547&=4&#"#54#"&54632632264'#"'2654'#"&547ù)A$&8TýýH071@4Dcô!+Q^5;-# 4H.c$+wS&#E$5 G4E$ ?1)?&ѶH5'b$-u@O0.@18(3v$ P-# '"#& '!/Kþ+¹g2!3!5654&#"&5462654'7#"54632&#"32>5#"'&'&#"#54#"&54>32632ù)A$&8TýýH071@4Dcâ$0DZ&>; X4G'F4R+>!:^ 6"97'NZ .& 6&!61A)'1# 7,—þG -M&?A5B$5WK\ýºC1U'L’D_,2 341€J1Ò¶H," Z!+m-B 0/Q4.#"#ù)A$&8TýýH071@4Dc:"(ZN'& 0!0 :A¡½=9«³U, 6<:9.(KXI<2%!7p!0K  %)'1# 7,—þG -M&?A5B$5WK\þ2OBYb< 5 %$  ‚kPA:C[nK,# F/¿¦B=&[(g=J+*`I%*þú, !Kýë¹ixŒ2!3!5654&#"&5464&'7"&547#".547327#".=4&#"#54#"&546326323262>54&#"2654'#"&547ù)A$&8TýýH071@4Dc<(U`$9DbD1;8jj@:6¥†¨S&1 2976,&HTE9/$ 3k("g  .'"#'.)'1# 7,—þG -M&?A5B$5WK\þ<G?Qj95*,=<-# .\?J=7>UgG2.A,²›=9#U&`9E('YE#4è I0 -%  &KÿEÍÃ,5@2##".547!5654&#"&546323546"!54&2654'#óYvE/ "*þH8.1A4D`MJc%¬rm=O#S #//"Ãvbë,2B 2!,-O.:B4B$5WK[ZJ9)âVi6WFΠ[pýü#0 1"KÿÎÃ*3>R2##"&547!5654&#"&546323546"!54&2654&"2>54'#"&'óYv ,T=?Q/þ-H8.1A4D`MJc%¬rm=O#S %&$*2'1EÃvbë#?AZW?A&-O.:B4B$5WK[ZJ9)âVi6WFΠ[pþX# " %5"! 2+KþÀÂÃENT]f2!5654&#"&5463235462#"/32654&+#"'#"&546324632"!54&4&"325#32=#"óYvýGH8.1A4D`MJc%¬rÊ0**#!*8.5)'0783+Z 3=O#SA%6 "A}j (?Ãvbë-O.:B4B$5WK[ZJ9)âViý¬7F2 # !!CS227(0!7HWFΠ[pýâ%3/)1&6t#=7Kþ¿ÂÃNW^en2!5654&#"&5463235462#"/3254+53254+#"'#"&54634632"!54&4&#"325#32=#"óYvýGH8.1A4D`MJc%¬ré #G"*8.6*(/6O4*'27=O#S=-  A}k (?Ãvbë-O.:B4B$5WK[ZJ9)âViý¬ 6!CR226)27G73WFΠ[pýâ/(/(8Ngi  CT447(0 9F.% WFΠ[pýä&54'5 %(x5# ?9Kþ¾ÇÃ@I2!5654&#"&5463235464632&#";2#"'73254+"&"!54&óYvýGH8.1A4D`MJc%¬r':DU/$C$5-?70N1T.$MS>@'0F=O#SÃvbë-O.:B4B$5WK[ZJ9)âViýÈ&;0%&/5./&5(-&WFΠ[pKþÃà 3e264&#""!54&'2!5654&#"&5463235464632&#";2#"&547&'732767654+"&Q"# #-=O#S\YvýGH8.1A4D`MJc%¬r ;CT0$C#6-?61!!*>A$&K %>@'0þL"4"+"AWFΠ[p6vbë-O.:B4B$5WK[ZJ9)âViýÈ&;0%&/. 2 &:-''& #(-KýíÏÃKTa{2!5654&#"&546323546"&547&'732654+"&54632&#";2"!54&2654&#"2>54'#"&547#óYvýGH8.1A4D`MJc%¬rÔ./IrI%C$%L"1>@'0M1U/$C(1-?+$=O#S$+ & -  $Ãvbë-O.:B4B$5WK[ZJ9)âViý)H'5MM56% $&(.#4-0% & $%‡WFΠ[püè[$ % !, ,+Kþ¾ÂÃ(Q[2!5654&#"&546323546"!54&2'654&#""&547&#"&5463262654'óYvýGH8.1A4D`MJc%¬rm=O#S:L_Q$:H7F8V5C. ?HU;'$"2'8A"Ãvbë-O.:B4B$5WK[ZJ9)âVi6WFΠ[pþbaFZ0 .H=S=O7FD6P6 .'R* 3`EYþû)*F05F#+KþWÂÃ(`j2!5654&#"&546323546"!54&2#!"3!!"&546;2654&+""&547&#"&5463262654'óYvýGH8.1A4D`MJc%¬rm=O#S*IT@2þø((vþŠ"**"í%0C7  G9T6B /:AIO>(!"2!7A"Ãvbë-O.:B4B$5WK[ZJ9)âVi6WFΠ[pþ`UF>W3$$D39G2D/:9-F+>/F 'P:PÜ&:)-:$KþXÈÃ(is2!5654&#"&546323546"!54&4632632#!"3!!"&546;254&+532654#""&547&#"&72654'óYvýGH8.1A4D`MJc%¬rm=O#Sþ¶P:+!$@ˆ./*0þá''sþ-, êWL.E8V5C/:@HÅ!7B"Ãvbë-O.:B4B$5WK[ZJ9)âVi6WFΠ[pýÞ;IS#.#73$';!%: 1C/::-@.>/G %&:(-9$Kþ-ÂÃ(cm2!5654&#"&546323546"!54&2#"&54632&#"32654&#"#".547&#"&54>3262654'óYvýGH8.1A4D`MJc%¬rm=O#S?Paj@LO=?6$9QQOaG< F7.$. C1>?H%.! $/#8@*Ãvbë-O.:B4B$5WK[ZJ9)âVi6WFΠ[pþ`wXj‡0u\Ne32632#"'732>54'#"&5467&#"#54#"&2654'óYvýGH8.1A4D`MJc%¬rm=O#Sþ7 /&5&,;R0<9bH&& (: ; 6+&2>+=",98  NZx"#'Ãvbë-O.:B4B$5WK[ZJ9)âVi6WFΠ[pýÃ.B 0.KT2Kf ':0P&KþËÃ(S`2!5654&#"&546323546"!54&233##"&547#5654&#"&5462>54&#"óYvýGH8.1A4D`MJc%¬rm=O#Sì"1 Ç;%! 0@$£/$*$/B* .$%Ãvbë-O.:B4B$5WK[ZJ9)âVi6WFΠ[pþ ( # þÝ0*A/0 1#*!+#:1>þº "&$KýõÉÃ(S^r2!5654&#"&546323546"!54&233##".547#5654&#"&5462654&#"2654'#"&547óYvýGH8.1A4D`MJc%¬rm=O#Sì"1 Ç;-5H3 %5›/$*$/B0A!'(!0Ãvbë-O.:B4B$5WK[ZJ9)âVi6WFΠ[pþ ( # þÝ&?4G.?& 1#*!+#:1>þße') 43 (".KþÆÂÃ(0<C2!5654&#"&546323546"!54&4632!7354&'4#"6óYvýGH8.1A4D`MJc%¬rm=O#S­9T‘þâ½&¡-/*2,AmÃvbë-O.:B4B$5WK[ZJ9)âVi6WFΠ[pý¡c]°x¾).gM<$6TNKþ ËÃ(;GNY2!5654&#"&546323546"!54&4632##"&547#7354&'4#"62654'#óYvýGH8.1A4D`MJc%¬rm=O#S­9T‘&A/1?&o½&¡-/*2,Am.&11%Ãvbë-O.:B4B$5WK[ZJ9)âVi6WFΠ[pý¡c]°x0/AA/0¾).gM<$6TNç$2 2$KýëÉÃ(>JQ]q2!5654&#"&546323546"!54&4632##".547#7354&'4#"62654&#"2654'#"&547óYvýGH8.1A4D`MJc%¬rm=O#S­9T‘*3H3 %3c½&¡-/*2,Am%535/Ãvbë-O.:B4B$5WK[ZJ9)âVi6WFΠ[pý¡c]°x">4G.>"¾).gM<$6TNÀ P." '"#& '".JÿPÄ:C2#".5473265!5654&#"&54623546"!54&€^rOn‡^ 5itg_D(d*bGn’‡D©ÚýŒH8/2@4Dc–`%­oM>M#TÄx`þü4R, +FX{I…wk|VˆQ5aP-O.:C2B$3XL[ZI9*áTk5[BΟZrJþ“QÄFOY2#".547#".5473265!5654&#"&54623546"!54&264&#"€^rCD*" #2 rl5itg_D(d*bGn’‡D©ÚýŒH8/2@4Dc–`%­oM>M#T2""*Äx`þüA4L"3 *"  +FX{I…wk|VˆQ5aP-O.:C2B$3XL[ZI9*áTk5[BΟZrýK#2"Jþ=RÄEN\q#".547#".5473265!5654&#"&5462354632"!54&2654.'#2654&'#"&=é"GW<+> cW5itg_D(d*bGn’‡D©ÚýŒH8/2@4Dc–`%­oW^rÚ>M#T #"G'#83%/)+(£ G=@S$5*0% +FX{I…wk|VˆQ5aP-O.:C2B$3XL[ZI9*áTkx`þüSú[BΟZrýL%[02 5 6!-8 %0 KþÁÐÃIR[2!5654&#"&546323546#"&=4&#"#"&5463232>54'"!54&2654'óYvýGH8.1A4D`MJc%¬rÒ*C4/>,#N5&+6^G:D= QU=O#Sì(E%Ãvbë-O.:B4B$5WK[ZJ9)âViþ, ,1"@RA60.>?V.;I8NaH:+Z /!a"±WFΠ[pý_#&C6%NOKþÐÃQZgp2!5654&#"&546323546#"&547&=4&#"#"&5463232>54'"!54&2654&#"'2654'óYvýGH8.1A4D`MJc%¬rÒ*:5A/1?32,#N5&+6^G:D= QU=O#S &- %Ý(E%Ãvbë-O.:B4B$5WK[ZJ9)âViþ, ,1"W(!>/AA/=!!D0.>?V.;I8NaH:+Z /!a"±WFΠ[pü´$! $«#&C6%NOKýëÐÃW`mvŠ2!5654&#"&546323546#".547&=4&#"#"&5463232>54'"!54&2654'#"''2654'2654'#"&547óYvýGH8.1A4D`MJc%¬rÒ*?>$ %D0,#N5&+6^G:D= QU=O#S  "Ö(E%%535/Ãvbë-O.:B4B$5WK[ZJ9)âViþ, ,1"\'#G..L"!C0.>?V.;I8NaH:+Z /!a"±WFΠ[püâ   !}#&C6%NOÍ." '"#& '".KþºÎÃR[2!5654&#"&5463235462654'7#"&=4&#"#54#"&54>32632"!54&óYvýGH8.1A4D`MJc%¬rÃ!+Q^@4/A"'"9: %&MW-% 7&"6.A'7=O#SÃvbë-O.:B4B$5WK[ZJ9)âViý">.c$,v?M@31)?%ѶH5'b$-u*> 0.?28(3¨WFΠ[pKþÎÃZcq2!5654&#"&5463235462654'7#"&547&=4&#"#54#"&54>32632"!54&2654'#"'óYvýGH8.1A4D`MJc%¬rÃ!+Q^9/=*+=,7"'"9: %&MW-% 7&"6.A'7=O#S".  !Ãvbë-O.:B4B$5WK[ZJ9)âViý">.c$,vX$8-::-8E1)?%ѶH5'b$-u*> 0.?28(3¨WFΠ[pü¸#0  $KýßÒÃ\er‡2!5654&#"&5463235462654'7#"&547&=4&#"#54#"&54>32632"!54&2654'#"'2654'#".547óYvýGH8.1A4D`MJc%¬rÃ!+Q^6: 8%6LE)"'"9: %&MW-% 7&"6.A'7=O#S #V: & "-Ãvbë-O.:B4B$5WK[ZJ9)âViý">.c$,vS'&F&. K7M&!91)?%ѶH5'b$-u*> 0.?28(3¨WFΠ[püÚ   #[;*# ! %5*Kþ+ÄÃ(m2!5654&#"&546323546"!54&2654'7#"54632&#"32>5#"'&'&#"#54#"&5462632óYvýGH8.1A4D`MJc%¬rm=O#S $0DZ&>; X4G'F/R+= !:]  6"97BNZKl&!61AÃvbë-O.:B4B$5WK[ZJ9)âVi6WFΠ[pýVC1U'L’D_,2 341€J1Ò¶H:=Z!+m@Z0/QLA$A6X9H [VT=O#SÃvbë-O.:B4B$5WK[ZJ9)âViþ'RD@K !L0;<1V*iEVRD@K !L0;<1V*iEV£WFΠ[pKþÈÃCYbn2!5654&#"&5463235462#"&547'654&#"&54622'654&#"&54"!54&2654&#"óYvýGH8.1A4D`MJc%¬rÃ+<*> A6,-8H [W|L(þ|LA$A6,-8H [ð=O#S,#"+Ãvbë-O.:B4B$5WK[ZJ9)âViý#<+&:-+!L0;<1V*iEVRD@.RD@K !L0;=0V*iEùWFΠ[püÂ## KýãÉÃD[doƒ2!5654&#"&5463235462#"&547'654&#"&54632%2'654&"&546"!54&2654#"2654'#"&547óYvýGH8.1A4D`MJc%¬r«%7 .&7K8A7+.7H [U@>Lþ,>L*(A6X9H [U¯=O#S.V:" 8 *Ãvbë-O.:B4B$5WK[ZJ9)âViý$ .&&8 L6D' !L0;<1V*iEVRD@ÖRD.G!L0;<1V*iEV£WFΠ[püÞ .[;*#% %'3*KÿB Ã=GR233##"&547#5>54.#"#4.#"632#"&5463262654&"%2654&#"eTdUìIB21CÔ#? 6%)8S40¤-;/>=2>K…j\C4o2##2#ýh$%&'Ás`€H—þG,/ED0,mQ44-!þ¿,$. ÉHR<;IkRuQOýÅ#""†.#%1.H1Kÿ Ã=HZe233##"&547#5>54.#"#4.#"632#"&5463262654&"2654'#"&'%2654&#"eTdUìI!-U<@P0®#? 6%)8S40¤-;/>=2>K…j\C4_%&$)92'2Eýc$%&'Ás`€H—þG"ADWW?B&mQ44-!þ¿,$. ÉHR<;IkRuQOýÙX8*" %5!" 2+í.#%1.H1MÿÁOZ%33#".54>32&#"3265!5654&#"#4&#">32#"&54632>322654&#",.4öS ;iJBN5eb%?I)N'gP54.#"#4.#"632#"&5463262654&#"2'654&#"#"&54732=46eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4þ´$%&'ê4@bP-";<.8DUD&,9CÁs`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþn.#%1.H1EM?w-%Y1>e*/54.#"#4.#"632#"&5463262654&#"2+"3!!"&546;2654&#"#"&546732654&546eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4þ´$%&'á$5  & Í$$Hþ¸'!( ·/:)"6?+4G.1"/;!<Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþn.#%1.H1E++'>"20"L9.:` -4H;*H :+6-*#+4KþZÿÃ2=233!5>54.#"#4.#"632#"&5463262654&#"2+"3!!"&546;254&+532654#"#"&5467326='46eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4þ´$%&'à@:((@6Ý$$Qþ¯ '' ÊQ D8;05F? #.<"?Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþn.#%1.H1F=$-'02(#6!8?70:H;6B  ;*5.#:'/Kþ-ÿÃ2=n233!5>54.#"#4.#"632#"&5463262654&#"2#"5432&#"32654&#"#"&546732=4eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4þ´$%&'—vN{f‹ƒG4%5LQOa1';<+7E*5!' 0':Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþn.#%1.H1CmVo8*vaE\2FTA&] :*/@k1Kþ½ Ã2|„Š•233!5>54.#"#4.#"632#"&5463262+"32632#"&547#"&546;2654&"#54&#"632#"&5463264#"32$4#"3%2654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4Œ !*?JŸ$'.¾$%% X]#%A8“&1"4 6,( %#H6?$""þÚþ$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþ,)$;"L " ) #++##$9D .(+6#$ô‡DDÊ.#%1.H1KþAÿÃ2™¡§²233!5>54.#"#4.#"632#"&5463262#!"3!!"&5463!2654'#"&547#"&54;2654&#"#54&#"632#"&54>32>32+"3274#"32$4#"3%2654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4Tb<6,þÊ&&–þj '!&'2>%%NJ(%ˆƒ1,'  6*") $$31K :+ EQ‰#0:ê""þàþs$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOýn-"!+'!)   + *V/)  4%.&$/ $$ (>—DDÃ.#%1.H1KþNÃ2™Ÿ¬·233!5>54.#"#4.#"632#"&546326232#!"3!!"&5463!254#5254#"&547#".54;2654#"#4&#"632#"&54632>2654#"'4"2"3267+&%2654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4z &(WoþÑXþ§!!#0!2  k yi9933+#  L@ 3 ­..2&+m"ý¿$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþ4 , L-  &  LV #?R I.-/2.#þè  –!! 7Iù.#%1.H1Kþ'Ã2𢍳233!5>54.#"#4.#"632#"&5463262#"&54632&#"32654&'#"&547#"&546;2654&#"#54&#"632#"&54>32>32+"3264#"32$4#"3%2654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4u9Jt\$_P0H.%3O(+K[%.˜()&@J…(5!';7*!( $32I <,8G<'1Ó)!!þÙþy$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOýk@3AQI;0  R410"(N *%%,%#.$7(09V9—DDÃ.#%1.H1Kþ¼ Ã2Yd233!5>54.#"#4.#"632#"&5463262#"/3254&+53254&#"&546%2654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4‡>5/1@6E+$I))DSýq$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþ-=(/%7 )/ /GJ4?K3Q`A.#%1.H1Kþ Ã2cr}233!5>54.#"#4.#"632#"&5463262#"&547'62654&+53254&#"&5462654&'+2654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4‡>5/1/1C-/A8 ++$I))DSK&" $ýB$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþ-=(/0!;1?@0B  # /GJ4?K3Q`þP$"%&ñ.#%1.H1KýëÃ2hvŠ•233!5>54.#"#4.#"632#"&5463262#".547'632654&+53254&#"&5462654'#"'2654'#"&5472654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4‡>5/1.:-# %E -+$I))DS<  &4350ýV$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþ-=(^$D$5 .L"  $ /GJ4?K3Q`þ P." '"#& '!/.#%1.H1KþPÃ2lw233!5>54.#"#4.#"632#"&546326#"&5432&#"32654&+532>54&#"&54>32%2654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4ï($Q.0(Rq5$<&-72(% $*)4>*:DüÅ$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOýÐ4O$5 .  2+'3#! )4="6=K388!5s.#%1.H1KþÀ Ã2Wb233!5>54.#"#4.#"632#"&5463262654'7#"'#".547326=32654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4ˆ%1JUJ58%$5 %-\<,#%:!ýF$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOý+C4V$0gDU11 @,l,+Z3? ϶!(C.#%1.H1Kþ Ã2cq|233!5>54.#"#4.#"632#"&5463262654'7#"&547&'#".547326=32654.'+2654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4ˆ%1JU::,<%$5 %-\<,#%:!4" -ýd$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOý+C4V$0gW+A&<+1 1 @,l,+Z3? ϶!(¢"  .Â.#%1.H1Kýß Ã2bn‚233!5>54.#"#4.#"632#"&5463262654'7#".547&'#".547326=32654'"'2654'#"&5472654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4ˆ%1JUB@M5&8 G$5 %-\<,#%:! ,V: &*#-ý§$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOý+C4V$0g]*%L8J .&P$ 1 @,l,+Z3? ϶!(… # *[:+# !65+é.#%1.H1Kþ8 Ã2=~233!5>54.#"#4.#"632#"&5463262654&#""&5432&#"32>5#"'#".547326=332>54'7eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4þ´$%&'•6N…@'"7F230$3/'"77()F'&@DÁs`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþn.#%1.H1þ "/ !@-'22@*n*)]6?Ö¶L9+U*8;%Ed3KýòÿÃ2r“ž233!5>54.#"#4.#"632#"&546326#".54632.#"32#"'#".547326=332654'2'654#"#54"&546322654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4ƒ4:1_B<;S>N.6%*:2'¾ B%7'$6%5 [;%,/6"'2JW( ý¤$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþ'ˆO-VT4 &$.+ -*33%7,m+,Y-H϶!+F4X$þ ' Ô.#%1.H1Kþº Ã2=b233!5>54.#"#4.#"632#"&5463262654&#"2'654&#"#54&#"&546326eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4þ´$%&'è6H -%?(. 9'(1KUJ;8%%Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþn.#%1.H1EWB1>*Z+Fѵ&!A0\#.hBY10Kþ»Ã2=ak233!5>54.#"#4.#"632#"&5463262654&#"2#"&547&#"#54#"&5463262654'eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4þ´$%&'ÈCZ5,*7D+97'4MYJ86%/k$6B$Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþn.#%1.H1EiJ7EC7R6 ѵHC3Z!-hAZ0/þü#(O.4E$+KþXÃ2={‡233!5>54.#"#4.#"632#"&5463262654&#"4>32632#"'732>54'#"&54>7&#"#54#"&2654'eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4þ´$%&') /&4'+",98  NZx"+ Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþn.#%1.H1ß.B 0.KS2Ih ':0P&7#5>54.#"#4.#"632#"&5463265#%2654&#"eTdUìIþ)8\7 ¯#? 6%)8S40¤-;/>=2>K…j\C4©h%#ýò$%&'Ás`€H—ý€ /:-mQ44-!þ¿,$. ÉHR<;IkRuQOýž¡(:Ð.#%1.H1Kþ| ÃFNZe233##".547!5>7#5>54.#"#4.#"632#"&5463265#2654&#"2654&#"eTdUìIE/ ")þç8\7 ¯#? 6%)8S40¤-;/>=2>K…j\C4©h%#É#$ "ýC$%&'Ás`€H—ý€,3A 1"- /:-mQ44-!þ¿,$. ÉHR<;IkRuQOýž¡(:Ÿ"!+"o.#%1.H1Kþ; ÃDLWju233##"&547#5>7#5>54.#"#4.#"632#"&5463265#2654&"2>54'#"&'2654&#"eTdUìI",S>=S.î8\7 ¯#? 6%)8S40¤-;/>=2>K…j\C4©h%#›%&)(+3&3/ý{$%&'Ás`€H—ý€#@AZW?A' /:-mQ44-!þ¿,$. ÉHR<;IkRuQOýž¡(:Œ%&X 0%$ &4"! A´.#%1.H1Kþ¼ÿÃ2=z233!5>54.#"#4.#"632#"&5463262654&#"2#"/3254.54>323254&#"&54>32#"&#"326eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4þ´$%&' %593-(1C0;02/%-E/0&7 ,+3 Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþn.#%1.H1ú!)  ! FP.ES+2J%!  JÿÃMY233# $546732>5!5654&#"#4&#"632#".5463262654&#" JcXæIBe„x;þìþ¯(1(ZJs»w}Í}þ½gI<'3SJ4%=&-@1A?4.,Šf^H6þ® %( !',ÃgS‚d–þC5U2! é¿NuBkŠ2^aF-(N4XGX+$þ¿,(6**4GO=;I'L2yžPPþm-#%0/"%/Jþš—ÃXgs#"&547# $546732>5!5654&#"#4&#"632#".54632632332654&#"2654&#"N2 2"3Cq’þìþ¯(1(ZJs»w}Í}þ½gI<'3SJ4%=&-@1A?4.,Šf^H6\JcXæIl " ýQ %( !',„8, #*D2 é¿NuBkŠ2^aF-(N4XGX+$þ¿,(6**4GO=;I'L2yžPPgS‚d–þCLÏ$"  O-#%0/"%/Jþ?˜ÃUcx„"&547# $546732>5!5654&#"#4&#"632#".54632632332654.'"2654&'#".=2654&#"&7;U|Tjwþìþ¯(1(ZJs»w}Í}þ½gI<'3SJ4%=&-@1A?4.,Šf^H6\JcXæI— !P:'#8'# $'ý¼ %( !',Ÿ T0=VU>1(é¿NuBkŠ2^aF-(N4XGX+$þ¿,(6**4GO=;I'L2yžPPgS‚d–þC_À[8* 5 6& & +w-#%0/"%/KþÁ Ã2Zcn233!5>54.#"#4.#"632#"&546326#"&=4&#"#"&5463232654'2654'2654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4Ÿ*C4/>.!N5&+6_F0N=>Qý*E%þS$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþ. ,1"@RA60.>?V.;I8Mb54.#"#4.#"632#"&546326#"&547&=4&#"#"&5463232654'2654&#"'2654'2654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4Ÿ*::C-/A37.!N5&+6_F0N=>Q&."$á*E%þS$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþ. ,1"X'C1?@0>J0.>?V.;I8Mb54.#"#4.#"632#"&546326#"&547&=4&#"#"&5463232654'2654'#"''2654'2654'#"&5472654&#"eTdUìIþm#? 6%)8S40¤-;/>=2>K…j\C4Ÿ*?>$ 4HD0.!N5&+6_F0N=>Q "Ö*E%òL433ý$%&'Ás`€H—þGmQ44-!þ¿,$. ÉHR<;IkRuQOþ. ,1"\'#G.G4K#!C0.>?V.;I8Mb;254#"#"5463232654&#"&4>32#"&#"32636š#Bfä(!>þÂ.? /¢^= O W9#A R(´*.A9D}8 C %LÃ3$pE5' %K,K'"!/½;XjlT/ K6!  JÿÁV%#"&5467327654+53254&'&5463232654&#"&54>32#"&#"32632a‚bŸÃ(%&*@lD@8H"ÙuZ[R=2) N E1³*/@97Q%8;$K'&:M`ß·Y{>6nT-W^G-9*102(0 !-áFivIAc9# "2('%'$,2Jÿ À\%2#"&54>32&#"32654.#""#"&5463232654&#"&54>32#"&#'"&#"376s%0'n†H…3L@@7/-:O]#MS73 .!*G7 :H:Ã) 1D=!32#"&#"32632'2'654##4654#"&54626MjaOt8"h5.I8czF8 2 % I8 60'5>V))6hH.@4%E*4%&5HWŸY  , þË2(+41- #hV=L(&(070-JG&H`vO0VQ0">&7/+cJm‚ƒ    6ÿ#•ÃK%2#"&54732>54&#"&546323254.#"&54>32#"&#"æ^Q "6a>›ÂF*I§€6N$;E=/.&E > 7%86 /,IJ':T',#J U8+>2$Ý´¢j_’™Æ#3('<'*-:< !1`BQZ 32#"&#"264&+æ^QEFE/ ") ›ÍF*I¯ƒL`;E=/.&E > 7%86 /,IJ':T',#J n4"# U8T>M3A 1"Û¶¢j_’œÃQ<'<'*-:< !1`BQZ 32#"&#"2654&'2654'#"&'æ^Q[\U<=SšÂF*I¯ƒL`;E=/.&E > 7%86 /,IJ':T',#J ]&(%(:3&$-EU8e=cDWW?3%ر¢j_’œÃQ<'<'*-:< !1`BQZ ,E/ "*ókiJ % 9 "ÿ@SFI &e«u#//" $8dA¶-2B 2!,›Š¢,/6  gp36 4Ý…{þì#0 1"MÿÂ'/9L2##"&547#5463!54&+4&#"62654&"2>54'#"&'%5>,$-U32#"&4632.#"326=!54'%354&#'"654&H+<5ÝdƒMroQ([ E "UI-[=þ8,-üBUC&0°0ÏI)°}‹&2IþÙþÂ'KZb2#".54632.#"3254'!5462'654#"#4654#"&546326!54&+4&#"6!AY/…p7E/dI]6 F$3D 1&¹þ‘k_  d!'+ÿ@SFI'e«Â-[sP¦r† 5$6HB!"/#%ì ›ŠýÇ$$ %' -% !$—0*+%( gp18&.Ý…{Mþº #G2!546!54&+4&#"62'654&#"#54&#"&546326!7>.þNk³ % 9 "ÿ@SFI &e«g6H> ?(. 9'(1KUK:7&$ $8dA¶ž‡¢,/6  gp36 4Ý…{³WB>K*Z+Fѵ&!A0\#.hCX10Mþ¼  #GQ2!546!54&+4&#"62#"&547&#"#54#"&5463262654'!7>.þNk³ % 9 "ÿ@SFI &e«Y=R2'&3?*52#0GRD31#*c 1=" $8dA¶ž‡¢,/6  gp36 4Ý…{´hJ7DC6Q6 Ï´GC2Y!-gBW//þþ#'N.4D",LþX  #^j2!546!54&+4&#"64>32632#"'7327654'#"&54>7&#"#54#"&2654'!7>.þNk³ % 9 "ÿ@SFI &e«Ö% )#-?''4L9 .!. *"% 0"-+2=F%  $8dA¶ž‡¢,/6  gp36 4Ý…{þ³-C 0.K K=Le 5/>P&54&#"#4&#".546326Rl[öIþk+3N6(1S3!=Q 3#): lWQ:7Ã}]vO—þG*u>SG,$þÂ;4gN-94?E3d„IIIÿBÉÃ;H233##".547#5>54&#"#4&#".5463262>4.#"Rl[öI A3"1 Ø+3N6(1S3!=Q 3#): lWQ:7‡  Ã}]vO—þG.0D)" .*u>SG,$þÂ;4gN-94?E3d„IIýÃ.+,IÿÇÃ9DV233##"&547#5>54&#"#4&#".5463262654&"2654'#"&'Rl[öI$-T=>R0­+3N6(1S3!=Q 3#): lWQ:7Z%&$+73&"/EÃ}]vO—þG$@AZTBC&*u>SG,$þÂ;4gN-94?E3d„IIýØX:(" &4' 2+MÿÍÁB233#".54>32&#"326=!5654&#"#4&#"&546326"Sm^ûNq’?O7f` Q>&R;Qe'g<þ¯aK7#;S,#?Uv†oSf'(Á„`iQ–þF…e & "El]fNg&+þÂ0@hIpRk{`„IIJÿ KÂG233#"$&546732>5!5>54.#"#4&#".546326µRk[æNІ±¡þûš)2*#‰æŽX³~þÄ*3 6&'1S3!20-$þÂ<4hO*;4@D2e„JJJþšQÂVb#".547#"$&546732>5!5>54.#"#4&#".54632632332654&#"2*" #2 jv¡þûš)2*#‰æŽX³~þÄ*3 6&'1S3!20-$þÂ<4hO*;4@D2e„JJ}]wN–þEF×$" #Jþ?RÂTat#".547#"$&546732>5!5>54.#"#4&#".54632632332654.'"2654&'#"&=Þ8 \_¡þûš)2*#‰æŽX³~þÄ*3 6&'1S3!20-$þÂ<4hO*;4@D2e„JJ}]wN–þEXÉ%[8* 5 6!-8 +I¬Ã&082!54>32>354+4&#"6%354+4&#"6Ìc}ü(BC$4D>3OuMRúŸFI+ jµþ¥NQúŸFI+ jµÖz³¿Jl6 ?,,1!¦FnJ–æ3;%4¶±}FoI–æ3;%4¶±IÿA¹Ã(0;EM2#"&547!54>32>354+4&#"6264&#"354+4&#"6Ìc} CbC!ýW(BC$4D>3OuMRúŸFI+ jµz$$ +þ32>354+4&#"62654&"2654'#"&'354+4&#"6Ìc}%0U<@P3ý€(BC$4D>3OuMRúŸFI+ jµM%&$)92'2EþfNQúŸFI+ jµÖz³!BDWW?F"¿Jl6 ?,,1!¦FnJ–æ3;%4¶±þúX8*" %5!" 2+ÛFoI–æ3;%4¶±Pÿ²Á+4<EM2#".4>32&#"3265!5<54676326354#4&#"6%354#4&#"6ÎouCM44MBX82:*ef&U^üÜ/{©+#úLSú¡FI*!jµþ¥LSú¡FI*!jµÁ|Ž·†f ,! TkŽ $AU)>‹‹ GmJ–å49%3¶°‚|GmJ–å3:%3¶°EÿE–Â+274>32#"&5473265!354&+4#"6ã+;6Ý‘iœ»B$?¢†Nmþ” #5 ù?REGBj¬Ë<\4 þö»OiÛ´†gZy˜¼G4!- .2 –ku26N¬°{EþŸ™Â)9@O74>32#"&547"#"&5473265!354&+4#"62654&#"ã+;6Ý@C*" 0F œ»B$?¢†Nmþ” #5 ù?REGBj¬k""Ë<\4 þö»M1K#3 B4Û´†gZy˜¼G4!- .2 –ku26N¬°{þG!!$EþIšÂ+;BNb#".547+"&5473265!54>32354&+4#"62654&'"2654&'#"&=2 $U>+> +›¸B$?¢†Nmþ”+;6Ý— #5 ù?REGBj¬@!")9,8+-/)8— 6!=V$5*>+Û´†gZy˜¼G4Ê<\4 þö»`…- .2 –ku26N¬°{þH [9)#5588 (:MþÁ  0@HQ2!5462654'7#"&=4&#"#"&54632!54&+4&#"62654'!7>.þNkæ 0KY=2+;5I1$'4YB6@ % 9 "ÿ@SFI &e«l&A" $8dA¶ž‡ý(>1a"*rBPC40:2?V-.þNkæ:KY97B./A:-5I1$'4YB6@ % 9 "ÿ@SFI &e«w#!$%È&A" $8dA¶ž‡ý(69a"*rZ'A1??1C!C0:2?V-54'#"&547!7>.þNkæ:KY?;-# $5 3(5I1$'4YB6@ % 9 "ÿ@SFI &e«\ »&A"ú", 3&#/ $8dA¶ž‡ý(69a"*ra$$D$5 -# -: !?0:2?V-54&#"2654&#"327.54&#"Æ)*CbC  8*7€œVEK,@T*?ŒWmL%Xþ¼!-7-.>Dø"# #ýð0`A1D1#&16 >$1CD0 •sSoVV*=4Mx]nBN{vG4:)@UT54&#"2654&#"2654'#"&'327.54&#"±+;TzS-*7€œVEK,@T*?ŒWmL%Xþ¼!-7-.>DË&!%(:3&3'ýþ0`A1D1#&1% A6BYW?3% •sSoVV*=4Mx]nBN{ˆ54:)@UT32&#"32>7#"'#"&5463263232654'>54&#"%327.54&#"¾9,0N{R>G3.JG#RH52›Š>\4! F7*7{¡VEK,@T*?ŒWmLÇ!-7-.>DþÏ}i /F/%&1À1µIEncB& !*#$5OE*a xSoVV*=4Mz[nBþ“4:)@UT32'>54&#"%327.54&#"4&"325#32=#"!WmL%XŠn8*7€œVEK,@T*?Œ¬0*+" !*8.5)'0782*Z Â!-7-.>DþÏ0`A1D1#&1è%6 "A}j (?"x]nBN{n“ •sSoVV*=4M³7#$1 # !!CS227(0!:EË4:)@UT54&#"%327.54&#"4&#"25#'32=#"!WmL%XŠn8*7€œVEK,@T*?ŒÐ #G"*8.6*(/6O4*'2Ë!-7-.>DþÏ0`A1D1#&1ñ- 54&#"%327.54&#"2!"&5473254&+532654&+#"'#"&54634632#4&#"325#32=#"!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1V-$%þû–ÉA;°á" +8.6+'/9M3*-.&" Cl*A"x]nBN{n“ •sSoVV*=4M4:)@UTNgi  DS447(0 9F.% &54'5 %(x5# ?9Oþ.À!/?ry‚‹%2654'7#"'#"&54632632'>54&#"%327.54&#"2#"&54632&#"32654&+#"'#".546;4632#4&#"26=#'32=#"!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&15,#86Oþ¹À!\jz…Œ“œ%2654'7#"'#"&546326322'654&#"32#".547##"'#"&546;46323>'>54&#"%327.54&#"2654+'.#"327#32=#"!WmL%XŠn8*7€œVEK,@T*?Œl ".%S$=?. 6 A;$*) 8.6)'1994**##,ž!-7-.>DþÏ0`A1D1#&1½1'{# !A~k(?"x]nBN{n“ •sSoVV*=4M6 9$SG6I6G/(%6!420BT227(0!9E0 )7N4:)@UT54.#"32#"&547##"'#"&546;>326'>54&#"%327.54&#"2654&+'.#"327#32=#"!WmL%XŠn8*7€œVEK,@T*?Œq>T,04( .% " ' 3#+, (/8.6+'08:3** #(!-7-.>DþÏ0`A1D1#&1¢(" !A~k'?"x]nBN{n“ •sSoVV*=4M69*&'&- (1*% .&(1A2CS227(.#9E/"€N4:)@UT54&#"%327.54&#"#"&54732654&+532654#"32#"&547##"'#"&546334632>32'4&+326'.#"327#32=#"!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1Á’§Ö3/Çš|¢I0@ ,,*#,2*/'#,43 /&Q  K?9J"%½#«9n`#7"x]nBN{n“ •sSoVV*=4M4:)@UT54&#"%327.54&#"!WmL%XŠn8*7€œVEK,@T*?Œ,7"•9þQ‹%1 4 !-7-.>DþÏ0`A1D1#&1"x]nBN{n“ •sSoVV*=4Ms5+- þÝ(9$ $1‹4:)@UT54&#"%327.54&#"2654&#"!WmL%XŠn8*7€œVEK,@T*?Œ,7"•9#=*+=#þî‹%1 4 !-7-.>DþÏ0`A1D1#&14"" "x]nBN{n“ •sSoVV*=4Ms5+- þÝ/-::-/(9$ $1‹4:)@UT54&#"%327.54&#"2654#"2654'#"&547!WmL%XŠn8*7€œVEK,@T*?Œ,7"•9$4 /%&8 4ï‹%1 4 !-7-.>DþÏ0`A1D1#&1.V:,")$-"x]nBN{n“ •sSoVV*=4Ms5+- þÝ'A&8 /%A'(9$ $1‹4:)@UT54&#"%327.54&#"2654'!WmL%XŠn8*7€œVEK,@T*?Œ^L_Q$:H7F8V5C. ?HU;'$#v!-7-.>DþÏ0`A1D1#&1™&8A""x]nBN{n“ •sSoVV*=4M3aFZ0 .H=S=O7FD6P6 .'R* 3`EYK4:)@UT54&#"%327.54&#"2654'!WmL%XŠn8*7€œVEK,@T*?ŒiITB0þø((vþŠ"**"í$1C7  G9T6B/:AIO>(!"y!-7-.>DþÏ0`A1D1#&1!7A""x]nBN{n“ •sSoVV*=4M5UFAT3$$D3:F2D099-F+?.F 'P;OM4:)@UT54&#"%327.54&#"2654'!WmL%XŠn8*7€œVEK,@T*?Œ¼P:+!$@ˆ./*0þá''sþ ,#)êWL-E8V5C/:@H|!-7-.>DþÏ0`A1D1#&1Ÿ!7B""x]nBN{n“ •sSoVV*=4M·;IS$.#73%0;!: 1C/::-?/>/G %&4:)@UT54&#"%327.54&#"2#"&54632&#"32654&#"#".547&#"&54>3262654'!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1êQ`j@LO=?6$9QQOaG< F7.$. C1>?H&7-$/#8@*"x]nBN{n“ •sSoVV*=4M4:)@UT54&#"%327.54&#"2654'!2654'!WmL%XŠn8*7€œVEK,@T*?Œ~=RG5D6@/'&.=*1,!>/'%/<$17>I5%"@$<—!-7-.>DþÏ0`A1D1#&1Á"3:þã#3:"x]nBN{n“ •sSoVV*=4M4_E\/ -K=R=Q7EB7R6 ,#·¯(2:R7ED5R676R+ 0bDW<;L4:)@UT54&#"%327.54&#"2654'2654'!WmL%XŠn8*7€œVEK,@T*?Œ„LAD2ýæ%%ýs$#þ':@4 =.&$.:!*3,% <1#%-9)3:BI4# ">+&8œ!-7-.>DþÏ0`A1D1#&1Æ/7þÓ /7"x]nBN{n“ •sSoVV*=4M8Y7B^61#)K97C-K.;;,K' %š“!)-I/;;-J(>-M %Y:H12P4:)@UT54&#"%327.54&#"2654'2654'!WmL%XŠn8*7€œVEK,@T*?Œ 03)ýÈ(†ýz (P &,##;.%$,9!*1." :.H,8 !8@F4"!;,$8#8.Mþ·!-7-.>DþÏ0`A1D1#&1»-6þ×-7"x]nBN{n“ •sSoVV*=4MŒ 8'41 $;',' -I/;;,G*$›”"*-J/;:.J) /K 'W:J32'w4:)@UT54&#"%327.54&#"2#"&54632&#"3254.#"#"&547&#"#54&#"#".547&#"&5463263263262654'!2654'!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1AP&B@$7ET(7,16Hœ 2! @2'"/< L0(! ?2'"< $17=F7# !&= H !/!3;'þÛ!3;'"x]nBN{n“ •sSoVV*=4M4:)@UT54&#"%327.54&#"2'654&#"#54&#"&546326!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&16H -%?(. 9'(1KUJ;8%%"x]nBN{n“ •sSoVV*=4M4:)@UT*Z+Fѵ&!A0\#.hBY10Oþ»À!/?bl%2654'7#"'#"&54632632'>54&#"%327.54&#"2"&547&#"#54#"&5463262654'!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1ÿCZ6V6D+97'4MYJ86%/k6B$"x]nBN{n“ •sSoVV*=4M4:)@UT54&#"%327.54&#"462632#"'732>54'#"&5467&#"#54#"&2654'!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1`Nj&,;R0<9_K&& (: ; 6+&2>+>",98  NZx"#'"x]nBN{n“ •sSoVV*=4M4:)@UT54&#"%327.54&#"233!5654&"&546!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1="1 Ç;þ«/$<+$/@"x]nBN{n“ •sSoVV*=4M4:)@UT54&#"%327.54&#"233##"&547#5654&"&5462>54&#"!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1="1 Ç;%! /A$£/$<+$/@, .#%"x]nBN{n“ •sSoVV*=4M4:)@UT54&#"%327.54&#"233##".547#5654&"&5462654&"2654'#"&547!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1="1 Ç;-5-# %5›/$<+$/@&0A!'40"x]nBN{n“ •sSoVV*=4M4:)@UT54&#"%327.54&#"233#"&4632&#"3265!5654&#"&546!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1?"1 Ò002(iV43*+L/"54&#"%327.54&#"4632!7354&'4#"6!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1r9T‘þâ½&¡-/*2,Am"x]nBN{n“ •sSoVV*=4M4:)@UT54&#"%327.54&#"4632##"&547#7354&'4#"62654'#!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1r9T‘&C-1?&o½&¡-/*2,Am.&11%"x]nBN{n“ •sSoVV*=4M4:)@UT54&#"%327.54&#"4632##"&547#7354&'4#"62654&#"2654'#"&547!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1r9T‘*3-# 4H3c½&¡-/*2,Am&4350"x]nBN{n“ •sSoVV*=4M4:)@UT$5 G4>"¾).gM<$6TNÀP-# '"#& '!/Oþ,À!/?^is%2654'7#"'#"&54632632'>54&#"%327.54&#"432#".54632&#"326=#7354&#'"654&!WmL%XŠn8*7€œVEK,@T*?Œ@!-7-.>DþÏ0`A1D1#&1v’CV37H7C;7N<(ó¼#$(¦30,_ t "x]nBN{n“ •sSoVV*=4M4:)@UT%$bQA!(1tS[!Oÿ9À'5<L%2654'73!5>7&'#"&54632632'>54&#"5327.54&#"!WmL%X`5þ3Q**7€œVEK,@T*?Œ@!-7-.>Dõ*7#6#þ·0`A1D1#&1"x]nBN{„KïYC •sSoVV*=4M4:)@UT7&'#"&54632632'>54&#"5327.54&#"2654&'#!WmL%X`5 *" "1 þîQ**7€œVEK,@T*?Œ@!-7-.>Dõ*7#6#þ·0`A1D1#&1ò2#"x]nBN{„Kï+"2 )" +YC •sSoVV*=4M4:)@UT7&'#"&54632632'>54&#"5327.54&#"2654&#"2>54'#"&'!WmL%X`5,S>=S.õQ**7€œVEK,@T*?Œ@!-7-.>Dõ*7#6#þ·0`A1D1#&1Ô.%%C*3&3E"x]nBN{„Kï&?CXW?A)YC •sSoVV*=4M4:)@UTH2#"/2654&+532654&#"#"&547&#"&5463262654'5:W'KQ4!(F)' !!%7A<6lSB?Qi $M`^!jua>8>W(6V\. /% :$S (! 44&#*-."$8\wSjeRvTrV}?Lgˆ$$þrI9lHIs7CJÿ4›ÂAK2#"$54732654+53254.#"#"&547&#"&5463262654'ÌXsCGvn“ÇþíO E쯇±7%%- 4#=6lTA@Pi!"N`^ kua?8K%#".54632&#"32>54'#"&546;&#"&546322654'&#"]”x7@+fQO=.@kk>Z.SD9D[I0V3@+bw„aŒ9#.ë+5;J"V‡´  *!&';cg9Fa|NAMjL(V:y<Jk‡ˆ;=* $P;@Y/"3MÿEÓÁ$/2!!3##".547!546"!54&2654'#^uþ²ÔSE/ "*þDsv@U(Pæ#//"Á‡j/—þG,2B 2!,Ðl…0UC6%N[ýø#0 1"MÿÔÁ"-A2!!3##"&547!546"!54&2654&"2>54'#"&'^uþ²ÔS ,T=?Q/þksv@U(P¼%&$*2'1EÁ‡j/—þG#?AZW?A&Ðl…0UC6%N[þ X# " %5"! 2+JÿöÁ-474632!!3#".54>32&#"326=4&5!"!4J[j^þ²S6`M@L4bVKF&R%YZ$QOý¨åNC)Ãy…Š•–þB@O: % (*:Q–_>6ÓMþÀÒÁ5>DLU2!!3!5462#"/32654&+#"'#"&546324632"!54&4&"325#32=#"^uþ²ÔSý…s¸0*,!!*8.5)'0784*Z þè@U(P¥%6 "A}j (?Á‡j/—þGÐl…ý®7#$1 # !!CS227(0!6I"UC6%N[ýÞ%3/)1&6t )#=7Mþ¿ØÁ=FMU^2!!3!5462#"/3254+53254+#"'#"&54634632"!54&4&#"325#32=#"^uþ²ÔSý…sÝ #G"*8.6+(/6O4*%3þÞ@U(P¯-!A}k(?Á‡j/—þGÐl…ý® 6!BS226)27G64"UC6%N[ýÞ/(2%9 #$s3.=6Mþ@ÈÁPW_h2!!3!546"!54&2!"&5473254&+532654&+#"'#"&54634632#4&#"325#32=#"^uþ²ÔSý…sv@U(P -$%þû—ÈA;°á" +8.6+&09M3*, .&" Cl*AÁ‡j/—þGÐl…0UC6%N[ýà#’•|WE>Ngi  CT447(0 9F.% &54'5 %(x5# ?9Mþ.ÉÁIPYb2!!3!546"!54&2#"&54632&#"32654&+#"'#"&546;4632#4&#"26=#'32=#"^uþ²ÔSý…sv@U(Pè,"86Iþ¹×ÁGP[bir2!!3!5462'654&#"32#"&547##"'#"&546;46323>"!54&2654+'4&#"325#32=#"^uþ²ÔSý…s|-B S$=?. 6 A;*$+)8.6+'1994**# $+÷@U(P~1' …% !B~k(?Á‡j/—þGÐl…þ+&7,SG6I5H/(%6&/S!CS228'0!9E0 )8¥UC6%N[ýT<*&‰%27 1'5s3%=6=þ½èÁXalszƒ2!!3!5462#"/3254+57>54&#"32#"&547##"'#"&546;>326"!54&264&+'.#"327#32=#"^uþ²ÔSý…s’>T,04( .% 7' 3#+*"(/8.6,'08:3** #”@U(Pt(" !A~k'?Á‡j/—þGÐl…þ+8+''&- (1*%! .&(1A2AU227(.#9E/!€¥UC6%N[ýT0! $,‰&16!1'5s3&=6Kþ&ÑÁbkry‚2!!3!546"!54&#"&54732654&+532654#"32#"&547##"'"&546;>32>32'#3254'4.#"325#32=#"^uþ²ÔSý…sv@U(PX°€Æ.*¸„l” B2'## '.%*B'./)"I  M.0G!Ï& ™03bV 1Á‡j/—þGÐl…0UC6%N[ýTPo§SM?OiT>&L(%0#)1@3 CQ//6)."8E}?A?2,=N57 "%T1)1p1";5MþºËÁ:2!!3!546"!54&2'654&#"#"&54732=46^uþ²ÔSý…sv@U(PÞ5?bP-";=-8DUD&,9@Á‡j/—þGÐl…0UC6%N[þYN>w-&X1>e*/54'#".547^uþ²ÔS'8I97K8ó‹%1 3&-6"•ý½sv@U(PÑ$.+-! "-$Á‡j/—ý'&E5MK7E&(9$ %06*/Ðl…0UC6%N[üê.[$ % , %5+Mþ¾ÕÁ8AK2!!3!5462'654&#"#"&547&#"&546326"!54&2654'^uþ²ÔSý…sjL_Q$:H7F7,+5C. ?HT<'$!Ê@U(PV'8A"Á‡j/—þGÐl…þ.aFZ0 .H=S/F 'P;O¤UC6%N[ý€&;(-:$MþXØÁPYc2!!3!5464632632#!"3!!"&546;254&+532654#"#"&547&#"&"!54&2654'^uþ²ÔSý…sUN<+!$@ˆ./*0þá''sþ5#)êW L.E7,+5C/:@H!@U(Pa!7B"Á‡j/—þGÐl…ýª9KS#.#73#0;!: 1C09:-@.>/G %}UC6%N[ý„&:(-9$Mþ-ÑÁPZ2!!3!546"!54&2#"&462&#"32654&#"#".547&#"&54>3262654'^uþ²ÔSý…sv@U(P§Paj?MM~6$9QQOaG< F7.$. C2=?H%.! $/#8@*Á‡j/—þGÐl…0UC6%N[þ\wXj‡.0u\Ne.;08*"!)6 '*' 7*"!)5 ?07@/#95÷@U(Pw,-3á-3Á‡j/—þGÐl…þ._F]/ -L?Q>Q7FD6U4 -"¹±(2;R7FC7R7@CT* 0cEW==¢UC6%N[ýW.'I15J#./'I15J$-MþUÉÁgpzƒ2!!3!5462#!"3!!"&5463!2654&#"#"&547&#"#54&#"#"&547&#"&546326326326"!54&2654'2654'^uþ²ÔSý…s.: +þ.6ýʺ#0.65(! '2 $,+ 3) '1 $,29>.6& 1ö@U(PŽ)0þè((0Á‡j/—þGÐl…þ(1<"/9'60$%K80I-I.;8.K'$™“'"-H/::-J'<.M $Y9H12¨UC6%N[ý~!&A%(B%( B$*@MþTÊÁqz„Ž2!!3!5462#!"3!!"&5463!254&#퀆&#"#"&547&#"#54&#"#"&547&#"&546326326326"!54&2654'2654'^uþ²ÔSý…s)B')-#þ#0ýÐ$"ÃE !(3)'1 $+' 2' &0"/17;/5$ 1õ@U(Pˆ'/ÿ(/Á‡j/—þGÐl…þ)'.7&51$$;$,' -I/;9/G*%š”"*-J0::.J)?/L 'W;I32§UC6%N[ý"&B#)@'(!B%*A(MþÛÈÁ)22!!3!5654&#"&546323!546"!54&^uþ²ÔSþ­/$*$/B2!2 Çý¾sv@U(PÁ‡j/—ý) 1#*!+#:1>' #Ðl…0UC6%N[Mþ'ÑÁ6?L2!!3##"&47#5654&#"&546323!546"!54&2654&'#^uþ²ÔS&! /A%¡/$*$/B2!2 Çý¾sv@U(Pè&%Á‡j/—ý)0*@` 1#*!+#:1>' #Ðl…0UC6%N[üÒ$&$$MþÕÁ:COb2!!3##".547#5654&#"&546323!546"!54&2654&#"2654'"&547^uþ²ÔS(5$ %5ž/$*$/B2!2 Çý¾sv@U(PÓ &4)>*1Á‡j/—ý)&?..@% 1#*!+#:1>' #Ðl…0UC6%N[üõ P." ,* &$,MþPÉÁ9B2!!3# 4732>=!5654&#"&546323!546"!54&^uþ²ÔSzVþž>5“©DEþä/$+$.@42?Éý»sv@U(PÁ‡j/—ý5G SL@Gjt &2%*")";2=<0$Ðl…0UC6%N[MþØÁDMZ2!!3#".547# 47326=!5654&#"&5463235!546"!54&2654&+]vþ²ÔS0?25(3 *þ¼ ”ŠQnþä/$ *$.@42?Éý»sv@U(PÓ4"+Á…l/—ýY,DK-*ÿ * !w]&2%*")";2=<0$ÒÐl…0UC6%N[üª# MýéÓÁCLVk2!!3#"&547# 47326=!5654&#"&5463235!546"!54&2654'2>54'"&547^uþ²ÔS:DC02@ þ¼ ”ŠQnþä/$ *$.@42?Éý»sv@U(PÛ&,$'&<& ?Á‡j/—ýY0K/CD.)ÿ * !w]&2%*")";2=<0$ÒÐl…0UC6%N[üÐ & 'Q ," (' $0)Mþ¼ÉÁ7@2!!3!546"!54&2!5654&#"&546323546"354&^uþ²ÔSý…sv@U(PÇ>Kþ4/$ *#.B12AlJJ)2½6Á‡j/—þGÐl…0UC6%N[þ[O@›3%)"+";1=<1$’7G&:+…g;HMþÑÁBKW2!!3!546"!54&2##"&547!5654&#"&546323546"354&2654&#"^uþ²ÔSý…sv@U(PÄ>K)B.0@)þà/$ *#.B12AlJJ)2½6&.$%Á‡j/—þGÐl…0UC6%N[þ[O@›31?@033%)"+";1=<1$’7G&:+…g;Hþx$"&$MýëÙÁGP[p2!!3!546"!54&2##".547!5654&#"&546323546"354&2654'#2>54'#"&547^uþ²ÔSý…sv@U(PÉ=L%3 4" %3þê/$ *#.B12AlJJ)2½6.$", 3&#/Á‡j/—þGÐl…0UC6%N[þ[O@› < $,.< 3%)"+";1=<1$’7G&:+…g;Hþ©  P#!  '"4 '".MþÁËÁ?HQ2!!3!546233#5>54&#"#54&#"632#"&546326"!54&3254&"^uþ²ÔSý…s 4?6”-ü'1 4+g &'&'/SB:*!^@U(Pà($Á‡j/—þGÐl…þ3M@W.þÛF8:2ÕÇ#†05)(0E8Ni65UC6%N[ý¨26!MþØÁKTaj2!!3!546233##".547#5>54&#"#54&#"632#"&546326"!54&2654&#"$3254&"^uþ²ÔSý…s 4?6”-+25(3 +e'1 4+g &'&'/SB:*!^@U(Pí!"þM($Á‡j/—þGÐl…þ3M@W.þÛ5K-*5F8:2ÕÇ#†05)(0E8Ni65UC6%N[ü´$+ #ô26!MýêÓÁR[f|…2!!3!5462363233##".547#5>54&#"#54&#"632#"&546326"!54&2>54#"2654'#"&5473254&"^uþ²ÔSý…s 4?6; 4-*2H3 %2?'1 4+g &'&'/SB:*!^@U(PÒ+/(84'"*)þe($Á‡j/—þGÐl…þ3M@W.þÛ$@4G.@$F8:2ÕÇ#†05)(0E8Ni65UC6%N[üÚ,*W8($ '!34 "%26!MþÆÈÁ+22!!3!5464632!"!54&354&'4#"6^uþ²ÔSý…sè9T‘þâr@U(Pì&¡-/*2,AmÁ‡j/—þGÐl…ýmc]°xËUC6%N[ýó).gM<$6TNMþ ÑÁ!*6=H2!!3!5464632##"&547#"!54&354&'4#"62654'#^uþ²ÔSý…sè9T‘%A/1?%nr@U(Pì&¡-/*2,Am.&11%Á‡j/—þGÐl…ýmc]°x0/AA/1ËUC6%N[ýó).gM<$6TNç$2 2$MýëÏÁ$-9@L`2!!3!5464632##".547#"!54&354&'4#"62654&#"2654'#"&547^uþ²ÔSý…sè9T‘*3H3 %3cr@U(Pì&¡-/*2,Am%535/Á‡j/—þGÐl…ýmc]°x">4G.>"ËUC6%N[ýó).gM<$6TNÀ P." '"#& '".MþÁÖÀ 7AJ2!!3!54#"&=4&#"#"&5463232>54'"!542654'~_þ²ÔSý…)*C4/>,#N5&+6^G:D= QþÌ)<(`(E%Àˆ—þGÍóþ/ ,1"@RA60.>?V.;I8NaH:+Z /!a"º136ÑýV#&C6%NOMþÛÀ >HV_2!!3!54"&547&=4&#"#"&5463232>54'"!542654&'+'2654'~_þ²ÔSý…)*38B\B,5,#N5&+6^G:D= QþÌ)<(¢# .%ç(E%À‡Ž —þGÍóþ/ ,1"S'B1??17" G0.>?V.;I8NaH:+Z /!a"º136Ñü®-& 0$¨#&C6%NOMýëÖÀ EO\ey2!!3!54#".547&=4&#"#"&5463232>54'"!542654'#"''2654'2654'#"&547~_þ²ÔSý…)*??$ %D1,#N5&+6^G:D= QþÌ)<(„ !×(E%%53&#/À‡Ž —þGÍóþ/ ,1"]%$G..K"!D0.>?V.;I8NaH:+Z /!a"º136ÑüÙ   !}#&C6%NOÍ." '"4 '".LÿBÓÁ,8233##".547#5654&#".5462654&#")\{SÌSB2"1 ÈkZBFT+ )7z™ +##ÁyÊ\—þG,/E)" +NcL_bJ'51!AD/d†ýÅ+ "#LÿÔÁ*4H233##"&547#5654&#".5462654&"2>54'#"&')\{SÌS%-T=?Q/ kZBFT+ )7zX.%&C*2'1EÁyÊ\—þG"AAZW?B&NcL_bJ'51!AD/d†ýÙv# " %5"! 2+HÿÌÀ9233#"5432&#"32>5!5>54.#".546*^rQÐS 1V9ÖÖG912-< þÅ09/0HV>$$,{Àp_uX–þG 9@.KJ%&'6?."i:*>bKEW 5P.f†Iÿ/cÁ2233#"$5473265!5>54.#".546ÈaqQÌNµ‡ÎþðXHñ·jþÊ19?+CZA#(7€Ás^tX–þC^pæ¿€m_q¤ÈPB$j700]NFZ@C0jIþ›lÁ<I233"&547#"$5473265!5>54.#".5462654&#"ÈaqQÌN?HCbC04ÎþðXHñ·jþÊ19?+CZA#(7€!" Ás^tX–þCM5O1CD0 æ¿€m_q¤ÈPB$j700]NFZ@C0jý$#+IþOmÁ=J\233#"&547#"$5473265!5>54.#".5462654&#2654'#"&'ÈaqQÌNV`U<>RÎþðXHñ·jþÊ19?+CZA#(7€e# $,65$#/EÁs^tX–þC[8eDWV@+"æ¿€m_q¤ÈPB$j700]NFZ@C0jý&X9)" '3) 2+LþÁÖÁIR233!5654&#".546#"&=4&#"#"&5463232>54'2654')\{SÌSþvkZBFT+ )7z°*C4/>,#N5&+6^G:D= Qý(E%ÁyÊ\—þGNcL_bJ'51!AD/d†þ. ,1"@RA60.>?V.;I8NaH:+Z /!a"ð#&C6%NOLþÛÁP^g233!5654&#".546"&547&=4&#"#"&5463232>54'2654&'+'2654')\{SÌSþvkZBFT+ )7z°*38B\B,5,#N5&+6^G:D= Q# .%ç(E%ÁyÊ\—þGNcL_bJ'51!AD/d†þ. ,1"S'B1??17" G0.>?V.;I8NaH:+Z /!a"þh-& 0$¨#&C6%NOLýëÙÁVcx233!5654&#".546#".547&=4&#"#"&5463232>54'2654'#"'2>54'#"&547'2654')\{SÌSþvkZBFT+ )7z°*=@ 4" %B2,#N5&+6^G:D= Q ", 3&#/Å(E%ÁyÊ\—þGNcL_bJ'51!AD/d†þ. ,1"[&#I $,.J"!E0.>?V.;I8NaH:+Z /!a"þ“   P#!  '"4 '".Í#&C6%NOLÿ9ÌÁ&.233!5>7#5654&#".5465#)\{SÌSþ>9[8»kZBFT+ )7z´J%#ÁyÊ\—ý€ /9.NcL_bJ'51!AD/d†ýž¡(:Lþ}ÓÁ5=J233##".547#5>7#5654&#".5465#2654&'#)\{SÌS*" "1 þ9[8»kZBFT+ )7z´J%#®#"ÁyÊ\—ý€+"2 )" + /9.NcL_bJ'51!AD/d†ýž¡(:ž###"Lþ<×Á08CW233##"&47#5>7#5654&#".5465#2654&"2>54'#"&')\{SÌS(T=AO+×9[8»kZBFT+ )7z´J%#‡%&$*3&3EÁyÊ\—ý€&32632#!"3!!"&5463!2654&'#"&5467&#"#"&54>732652654'[$;>"sJ]=?ZDý‰" üí.?<-9>SL6PA;OPM-H8C[HRb >+'5!/' $:%,8S17Q)\FE_]zI6(*:lMF` 7kA\KIOe~_7HC:@,2J!BJ‡D7G; G:1@IÿÉÃ]g3!!"&5463!2654#5254&##"&54>7&#"#"&54>732654>32632#!"3254'|#üë,=15ƒ#/WXV>"U?:L 2++A.:[HQc =,&5 9'0.(O6gKA W:ý€"¡5)I AF†K9)G-%N(K.?7@_|\E+K1 6:F'IOe~_8H@9@.2>*Uz"@=$KTDA# /%:21D}M>OMÿÔÀUb%#".54>32&#"32654.'#"&5467&#"#"&54>732654>326322654'ÔÞ¦AN53L@dD8D=QK7‚°<(N>8JHF!L<9ZIQc =,&5!/' 0.(O7oF g}þ—$,)8*sÄ!"$¦„#;.'03]~]H?oBg‰Nf~_8H@8A-2I"Uz"><$Y‡®K>A8)5"-=Jÿö^ÃEP233!532654&#"#"&547&#"#"&54>7326=4>3262654'×I\còSý¤“FUC6@@0*6H+.5TEUg =,&5I;#7+6'22)B.4D¾wXˆE™þD#kXLc7d>SS>YAXJSSd`7JB8@+Ld:DN.J) þÏ15U00U*-JÿCfÃO_j233#"&547!532654&#"#"&547&#"#"&54>7326=4>3262654.+"2654'×I\còSCbCþf“FUC6@@0*6H+.5TEUg =,&5I;#7+6'22)Z"*þ{.4D¾wXˆE™þD-1CD0+#kXLc7d>SS>YAXJSSd`7JB8@+Ld:DN.J) ýÉ#  15U00U*-JÿgÃP[mx233##"&547!532654&#"#"&547&#"#"&54>7326=4>3262654&"2654'#"&'2654'×I\còS$-U<@P/þ“FUC6@@0*6H+.5TEUg =,&5I;#7+6'22)0%&$+72'#/Eþœ.4D¾wXˆE™þD#@DWW?B&#kXLc7d>SS>YAXJSSd`7JB8@+Ld:DN.J) ýÛX:($ $6) 2+L15U00U*-IÿÃ_i%!3#".54>32&#"3265!53>54&#"#"&547&#"#"'&546732674>76326322654'8+S~š@K46N=PJ ]4JI5lUý¨÷.9L?@@0+5H. *YDR63R>w 9'3%0V?%)?RgþÆ$4D õ;x–þGov  %b\#h9Ng7d9OM;YA$HO8LhE?TG…&V|/:'RU+,?6t¶6'U00U'6Jÿö…Ã[fq%4632#"&547&#"532654&#"#"&547&#"#"&54>7326=4>326323&2654&'%2654'ÂudaFCPB8Jo#Od_ý´“FUC6@@0*6H+.5TEUg =,&5I;#7+6'22)?I\cå<'1%f0ý.4Dßf{QL`XtWG„ZpTy:#kXLc7d>SS>YAXJSSd`7JB8@+Ld:DN.J) wXˆETB@F>TTc2@Y15U00U*-JÿhÆ‘œ3!!".54>3!2>54.'#"&54>7&#"532654&#"#"&547&#"#"&54>7326=4>32632!&547632632#!"%2654'%2654':ûü+--+Ü>V);'&O;=P1#%-4L#_ý–“FUC6@@0*6H+.5TEUg =,&5I;#7+6'22)?I\c<@?Z\Cf€ý*¯)#&SS>YAXJSSd`7JB8@+Ld:DN.J) wXˆETi[CCC€i~`|R2S:X42AX15U00U*-JÿGÓ¨2#!"3!!"&54>3!2654&+532654&+#"&54>7&#"!532654&#"#"&547&#"#"&54>7326=4>326323&54>3263254'2654'l]z@DM9ü«Ôü%/ ) `&#% (Q: 'Q@9L1(%4*C&_ý´“FUC6@@0*6H+.5TEUg =,&5I;#7+6'22)?I\cå< -R3_D¹-&M"A=ý½.4D|YC<"`.8$I?. $&*!<*./@BMUs`F*H0 %"/:*y:#kXLc7d>SS>YAXJSSd`7JB8@+Ld:DN.J) wXˆETi1B7&HÓ2CˆJ:QK15U00U*-JÿÇ”Ÿ%4632#".54>32&#"32>54.'#".54>7&#"!532654&#"#"&547&#"#"&54>7326=4>326323&2654'%2654'¿fxB>T!­‚ _f4K@SM99+"\f'7V4" 1&RC %/ E3&HK547,ý¶“FUC6@@0*6H+.5TEUg =,&5I;#7+6'22)?I\cä>%#0#2 ,ý’.4DÕh…r Q^3޶ %)>TO(=I 9Zy D/+>09:8O7k #kXLc7d>SS>YAXJSSd`7JB8@+Ld:DN.J) wXˆEXDM:82 4$(JW15U00U*-MþºÃ-R\2#"&547&#"#"&54>7326=462'654&#"#54&#"&546326'3254&'iPA8Px(*4G[HRb >+'5!/' $:iÆ6H'$?(. 9"(1KUJ;7&$7?MlÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiþ'WB,F *Z+Fѵ 'A0\#.hAZ10¼:8{(lWMþ»Ã-Q[e2#"&547&#"#"&54>7326=462#"&547&#"#54#"&546326'3254&'2654'iPA8Px(*4G[HRb >+'5!/' $:i¦CZ5,*7D+97'4MYK74'-?Ml}6B#ÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiþ'iJ7EC7R6 ѵHC3Z!-hCX0/¼:8{(lWýÛ)"O.4E"-MþX"Ã-hr}2#"&547&#"#"&54>7326=464>32632#"'7327654'#"&5467&#"#54#"&3254&'2654'iPA8Px(*4G[HRb >+'5!/' $:iÞ /&5&,;R0<9bH'% <)$; 6+&2>+>",98  NZ9?Ml?"#'ÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiý.B 0.KT2Kf 50=P&7326=464632!3254&'354&'4#"6iPA8Px(*4G[HRb >+'5!/' $:i'9T‘þâ4?Ml‰&¡..*2,AmÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiýkc]°xà:8{(lWþy*-gN;$6TNMþ Ã->HT[g2#"&547&#"#"&54>7326=464632##"&47#3254&'354&'4#"62654&#"iPA8Px(*4G[HRb >+'5!/' $:i'9T‘$C-/A#k4?Ml‰&¡..*2,Am-&-"$ÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiýkc]°x`@A^à:8{(lWþy*-gN;$6TNé$"-&MýëÃ-BL]do„2#"&547&#"#"&54>7326=464632##"&547#3254&'3632354&'4#"62654&#"2654'#"&547iPA8Px(*4G[HRb >+'5!/' $:i'9T‘#/-# 4H/b4?Ml‰&N  ...*2,Am&4350ÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiýkc]°x&:$5 G4:&à:8{(lWþy*-gN;$6TNÀP-# '"#& '!/Mþ,Ã-7Ydm2#"&547&#"#"&54>7326=463254&'4>32#".54632&#"326=#7354&#'"654&iPA8Px(*4G[HRb >+'5!/' $:i[?Ml7,-’CV37H7C;7N<(ó¼$%&¦+8,_(t ÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiþã:8{(lWþG1D ±€KL5;¾@&"bHJ!5?tS[!Hÿ11ÂLY4>32#".547327654'#"&5467&#"#"&54>732652654'ò&B+–HR0-ý͘÷e!Z‚Ú†Ävfa NA7Jh>$aC4YFOh :*$2 -&':)$&0 "ÿ07'p >;P‘ºgÀz{tcok¥WbTon&*3_t`DHdIieQc|d4FB6>/0I#R]¬T3G) 7%,GHþÍ1ÂWdq4>32"&547#".547327654'#"&5467&#"#"&54>732652654'2654&#"ò&B+–HR0-W**CbCb˜÷e!Z‚Ú†Ävfa NA7Jh>$aC4YFOh :*$2 -&':)$&0 "Ö+* #ÿ07'p >;PrY @$1CC1 %gÀz{tcok¥WbTon&*3_t`DHdIieQc|d4FB6>/0I#R]¬T3G) 7%,GþÜ 4"Hþr1ÂZgt†4>32#"&547#".547327654'#"&5467&#"#"&54>732652654'2654&#"2654'#"&'ò&B+–HR0-{-S>?Q Oa˜÷e!Z‚Ú†Ävfa NA7Jh>$aC4YFOh :*$2 -&':)$&0 "¨%$+73&1 Eÿ07'p >;PŒ^ 6%CXW?!gÀz{tcok¥WbTon&*3_t`DHdIieQc|d4FB6>/0I#R]¬T3G) 7%,GþÕX:(  &4"! 2+MþÁÃ-U_h2#"&547&#"#"&54>7326=46#"&=4&#"#"&5463232654/3254&'2654'iPA8Px(*4G[HRb >+'5!/' $:iä*C4/>-"N5&+6_F:D=>Qy?Ml„)E%ÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiþ, ,1"AQA60-??V.;I8MbH:+Z69a"Ê:8{(lWýá$%C6'LOMþÃ-]gs|2#"&547&#"#"&54>7326=46#"&547&=4&#"#"&5463232654/3254&'2654&#"'2654'iPA8Px(*4G[HRb >+'5!/' $:iä*;9B./A46-"N5&+6_F:D=>Qy?Mlw$!$%à)E%ÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiþ, ,1"Z&B1??1=! H0-??V.;I8MbH:+Z69a"Ê:8{(lWý3&.&$®$%C6'LOMýëÃ-_iwŒ•2#"&547&#"#"&54>7326=46#"&547&=4&#"#"&5463232654/3254&'2654'#"'2654'#"&547'2654'iPA8Px(*4G[HRb >+'5!/' $:iä*9F-# 4H=7-"N5&+6_F:D=>Qy?Mlm &4350Ð)E%ÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiþ, ,1"X'!M$5 G4G"J0-??V.;I8MbH:+Z69a"Ê:8{(lWýd   P-# '"#& '!/Í$%C6'LOMþºÃ-R\e2#"&547&#"#"&54>7326=462#"&547&#"#"&54732=46'3254&'3254'iPA8Px(*4G[HRb >+'5!/' $:i¢Da5-'6L7?.6CbQ;9G?MlN&.!BÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiþ'`N8J:0U=25/7APBr+"^92V+;G¼:8{(lWþ$$"KH&6MþcÃ-q{†2#"&547&#"#"&54>7326=464632#!"3!!"5463!2654'#"&5467&#"#"&54>732653254&'3254'"iPA8Px(*4G[HRb >+'5!/' $:iC4O0+?5*þ£$$·þIF)5+57 *0".=')!,>.0:%# +(!"q?Ml 0 #%ÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiýÆ-7<C61@*7'=+A,G1(+8'5+"+:D:(= <)*4(!J:8{(lWþF"J# $MþÃ-7‰’2#"&547&#"#"&54>7326=463254&'#!"3!!".5463!2654#5254&##".54>7&#"#"&54673265462632%3254'iPA8Px(*4G[HRb >+'5!/' $:i[?MlÀ`þY'  ý÷" 0¨9:7+9)", # ,%,;06A)5P +!:ˆ27326=463254&'#"&54>32&#"32654.'#"&5467&#"#"&5467326546326322654'iPA8Px(*4G[HRb >+'5!/' $:i[?Mlê“m*g#5(B-'*_VYq, 3*&/7&2(%L3H/ ERï)*ÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiþã:8{(lWþg‚ rS"/!! =S?.3B,EY5BQA'^#b=58QD;;Zr7#-#9#)Mþ7Ã-7s|2#"&547&#"#"&54>7326=463254&'32=432#"&54732654'#"&5467&#"#"&547%3254iPA8Px(*4G[HRb >+'5!/' $:i[?MlþÛ<@uc0/D©…šÌB;±Œz™@4*%0F'BN:/7BY,!v/)03ÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiþã:8{(lWþH;7s€JI7326=46#".547#"&54732654'#"&5467&#"#"&54732=4323254&'32542654&#"iPA8Px(*4G[HRb >+'5!/' $:i#(7* #1:‘À>8¬s=1(".A&T$ 97326=46#".547#"&54732654'#"&5467&#"#"&547325'4323254&'32542654&#"#2>54'#".547iPA8Px(*4G[HRb >+'5!/' $:i'*@. / #¬82šrf‚7+$)8$6B3&-8JA37dS(+ì?Mlj5)+ *.  %#ÔtVnWG„`"`GIOe~_7HC:@,2J!BJCZiüø :!,=& {cA> 5;UjZB:3>3%(3'n,4A6Z"N0-^h<( M¹:8{(lWþ$"=H'þØ $J# ! ' KÿE¥À;AKV%>73##".547!5654&#"&5463235".54>3273"542654'#“S‡E/"1 þ.H8.1A4D`MJc%À/9( 6&B2·e5·þ¿' ñ#//"ד7þG,2B)" ,-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>þ#0 1"Kÿ£À9?ITh%>73##"&547!5654&#"&5463235".54>3273"542654&"2>54'#"&'“S‡#-T=?Q0þWH8.1A4D`MJc%À/9( 6&B2·e5·þ¿' Ä%&$*2'1 /ד7þG"@AZW?A&-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>þX# " %5"! AMÿ¤ÃLR]%>73#".54>32&#"326='!5654&#"&5463235".54>3273"54“=¥0\H@L4bVJ</C#\G8LKý±H8-2A4BaNK]$À/9(.% B2Æu7Æþ°' Ù‡Jþ1@4 % %193ESEU]F:)?*#4 WU K"Q –f). w>KþÀ¤À.U[eks|%>73!5654&#"&5463235".54>322#"/32654&+#"'#"&5463246323"544&"325#32=#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2·0*+"!*8.4)'0784*Z *e5·þ¿' °%6 "A}j (?ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þ–7#"3 # !!CS227(0!6IÉ%O –g*<. w>ýæ%3/)1&6t )#=7Kþ¿ À.]cmt{„%>73!5654&#"&5463235".54>322#"/3254+53254+#"'#"&546346323"544&#"325#32=#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2Ò #G"*8.5*(/8M3+%3*e5·þ¿' °-  A}k (?ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þ– 6!CR226)26H55É%O –g*<. w>ýæ/(/(8v}…Ž%>73!5654&#"&5463235".54>3273"54232#!"3!!"&5463!254+53254+#"'#"&54;464&#"325#32=#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2·e5·þ¿' y.9;A#$<þ³ ‰þw#$)4# +8.5*%1l3c%""Ck*Aד7þG-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>þh=00+5 /%'$5B,,,#C0;k -0+ ,a 5,Kþ.¥À.`fpw€‰%>73!5654&#"&5463235".54>322#"&5462&#"32654&+#"'#".546;46323"54.#"26=#'32=#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2ª,ýå)/0(Œ5, '1>#86Kþ¹¥À.gmw„‹’›%>73!5654&#"&5463235".54>322'654&#"32#"&547##"'#"&546;46323>3"542654+'.#"327#32=#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2w-B S$=?. 6 A;*$+)8.6+'1994**# $+Oe5·þ¿' … 1'  " !A~k(?ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# í&7,SG6I5H/(%6&/S!CS228'0!9E0 )8L%O –g*<. w>ý\<#‰&17 1(4s3$=6Kþ½¥À.y‰•œ£¬%>73!5654&#"&5463235".54>322#"/3254+57>54&#"32#"&5465##"'#"&546;463263"542654&+'4&#"325#32=#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2|+> ,04( .% - !43#+0(/8.6+'08:4+* #Ãe5·þ¿' j($ !B~k'?ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# í$ &'&- (1*%#.&/*A2CS227(.#6H/!€L%O –g*<. w>ý\" $,‰$36!1(4s3%=6Kþ`™À.4>ˆ“š£¬%>73!5654&#"&5463235".54>3273"542#!"3!!"&5463!254&+532654&#"32"&57##"'#"&54;46323>2654&+'4&#"325#32=#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2·e5·þ¿' Ñ:M43eþ ##Yý§%%ÊZ  28I +3->07/5*%1n3*Z  \.#\&"#Ck *Aד7þG-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>þk1(&2Q/$$:"6 %#*,49F,,+$D.=k/>áDt ,/)!.d5/Kþ*¦À.qwŒ“š¤%>73!5654&#"&5463235".54>322#"&54632&#"32654&#"2#".547##"'#"&546;>323>3"542654+'.#"327#32=#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2tC\€j'gQ=66.$R6RbC5II9%)$8.6+'08<3*Y# Cye5·þ¿' ‚ 0(z" !@~k'?ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# ïsXkŠ q[MbW$6!5)# DS227(0!:E5KN%O –g*<. w>ýX= 8‰'15#1(4t3 =7KþG¡À.\blrzƒ%>73!5654&#"&5463235".54>322#"&54732>54&+#"'#"&54;46323"544&"325#32=#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2´'3rƒ«:.VL`?Z/8.6+&1Z+4+Z -e5·þ¿' ¬$8 !A|k'?ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þ”5,YljfFJN\;435%DS227)P6IË%O –g*<. w>ýä&20(1(4t%&=7Kýî£À.ioy‡˜¢%>73!5654&#"&5463235".54>322"&547#"&54732>54&+#"'#"&54;46323"544&"325#2>54&+32=#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2´'3FH?b? ¯:.,>L89<- 8.5*&1Z+4+Z -e5·þ¿' ¬%6!!A|Ä - %þì'?ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þ¤/'K0D(:9)}_Z>@F*C%3!;I,,.&G0?o»%O –g*<. w>ýô"++",#.f þÇ   60 Kýï¡À.lr|ƒ‹›¥¹%>73!5654&#"&5463235".54>322#".547#"&54732>54&+#"'#"&54;46323"544&#"325#2654&#'32=#"2654'#".547“S‡ýpH8.1A4D`MJc%À/9( 6&B2¸&0X(/ 1!"1  |¤8,WHV%CB'5,1("1V)1(U 'e5·þ¿' µ"!>v   ú&<æH2 %" ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þ¬,$Q/8! %$ %vWR;8DO0' 7&8D))+#C-;h³%O –g*<. w>ýü*,)!*_ þ÷ ê2-þª& *   Kþ¾¥À.OU_%>73!5654&#"&5463235".54>324632&#";2#"'73254+"&3"54“S‡ýpH8.1A4D`MJc%À/9( 6&B2:DT0$C#6-?70N1V,$MS>@'0§e5·þ¿' ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þ²&;0%&05./&5(-Ñ%O –g*<. w>Kþ¥À.X^ht%>73!5654&#"&5463235".54>324632&#";2#"&547&'73254+"&3"542654&#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2:DT0$C#6-?7098B./A,1$MS>@'0§e5·þ¿' ó&.$%ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þ²&;0%&0=>1??16 &5(-Ñ%O –g*<. w>üµ$"&$Kýë¦À.^dn{%>73!5654&#"&5463235".54>322#".547&'73254+"&54632&#"33"542654'#"'2654'#"&547“S‡ýpH8.1A4D`MJc%À/9( 6&B2ª70;=$ %7-$MS>@'0:DT0$C#6-Le5·þ¿' Ý  %533/ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þ•0>"C..@!&5(-$&;0%&Ê%O –g*<. w>üæ P." '"#& '".Kþ9§À.4>m%>73!5654&#"&5463235".54>3273"544>32&#"#"&54632&#"32654/.“S‡ýpH8.1A4D`MJc%À/9( 6&B2·e5·þ¿' *8C%a:.Yl:K=H>K*9Q:?C/#0//#?6LS %ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>ýñ,95)I;CjD$+! ='I/Kþ£À.4>l%>73!5654&#"&5463235".54>3273"542#"&54632&#"32654+"&54632&#";2'654#"#465654#"&54632“S‡ýpH8.1A4D`MJc%À/9( 6&B2·e5·þ¿' ÆEX‡f=KQ9K+G(7:,LbnT0CL[t;1fu@ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>ýÏH;Xl+#!-)% UEe7(*?,'G7Ø     Kþ¼¢À.Y_i%>73!5654&#"&5463235".54>322#".54732654+"54632&#"33"54“S‡ýpH8.1A4D`MJc%À/9( 6&B2£0<19?_.8,65M)6?zK-.#N.:0%#!Í%O –g*<. w>Kþ¢À.`fp{%>73!5654&#"&5463235".54>322".547.54732654+"54632&#"33"542654'#“S‡ýpH8.1A4D`MJc%À/9( 6&B2£0<0.-* +-Ua8,65M)6?zK-.#N.:0%#!Í%O –g*<. w>ü¿$0  +Kýê¥À.cis—%>73!5654&#"&5463235".54>322#"&547.547;63654+"54632&#"33"542654'+2>54'#"&547#“S‡ýpH8.1A4D`MJc%À/9( 6&B2˜0<.<-$ 4G)O[8,65M =?zK-. (#N.:0%#!Í%O –g*<. w>üâ   +V*&$ '!4.)Kþ†™À.4>JW%>73!5654&#"&5463235".54>3273"542#"&5462>54&#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2·e5·þ¿' yNgiHKa]? &. K75MLד7þG-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>þ^cOMbbHOhþÊ 8%8MHpOKþ§À.HNXkw%>73!5654&#"&5463235".54>322#"&547#"&5463233"542>54.#"2654&#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2±3025,<Hd]KNg e5·þ¿' Y0 8&5M 8Â#+#"ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# ýùIK<+_KOhbP6-f%O –g*<. w>ý( & &0!I7'1!v# #"Kýí¡À.IOYcpŠ%>73!5654&#"&5463235".54>322#"&547#"&546323"542654#"'2>54&#"2>54'#".5“S‡ýpH8.1A4D`MJc%À/9( 6&B2Œ&. K79IIc]KNg:e5·þ¿' Ò$.¢&7 K75MLñ+ && $ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þ 8%6LM5 `JOhcO#!G%O –g*<. w>üì.(< .&8MHpO—$ % !!  +Kþ¶£À.gmw%>73!5654&#"&5463235".54>322'654&#"#54&#"#54&#"632#"&54>3263263"542654#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2“ %-ZB,%7% 67d '*)#'/24@6BYe5·þ¿' Í +ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# ç C.q,,_9BÚ½!-ÜÍ!‡08*'3H84M)4301F%O –g*<. w>ýW:8Kþº¦À.jpz„%>73!5654&#"&5463235".54>322#"&547&#"#54&#"#54&"632#"&54>3263263"542654'%3254&#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2‡ý]%)R18J#,5%6KþW¯À.|‚Œ—¡%>73!5654&#"&5463235".54>324>32632632#"'732>54'#"&467&#"#54&#"#54&"632#"&3"543254'3254#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2þk"2)7(53"6H41T=$  %-53 ,.--#2(2(>,"')%-Le5·þ¿' › ,  þB&%ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þ^6N$4301M Z5Lf B,K%F>8XM+%Õ¹(#×É" 2"/:),(D9%O –g*<. w>ý¡%U, +1'56KþÙ™ÀIOY%>73!5654&#"&546323!5654&#"&5463235".54>3273"54“S‡þ¬/$*$/B2!2 ÇýªH8.1A4D`MJc%À/9( 6&B2·e5·þ¿' ד7ý' 1#*!+$91>' "-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>Kþ#£ÀW]gt%>73##"&547#5654&#"&546323!5654&#"&5463235".54>3273"542>54&#"“S‡(! /A'¥/$*$/B2!2 ÇýªH8.1A4D`MJc%À/9( 6&B2·e5·þ¿' ó .$%ד7ý'1*A/2 1#*!+$91>' "-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>üÖ "&$Kþ¡ÀY_itˆ%>73#".547#5654&#"&546323!5654&#"&5463235".54>3273"542654'#2654'#"&547“S‡)1$%1–/$*$/B2!2 ÇýªH8.1A4D`MJc%À/9( 6&B2·e5·þ¿' Ø  &4) )1ד7ý'%:..;$ 1#*!+$91>' "-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>ý ! !P." ,+ &$,KþM™À\bl%>73#"&54632&#"325!5654&#"&546323!5654&#"&5463235".54>3273"54“S‡š;VV43*+LQeþá/$*$/B2"1 Ìý¦H8.1A4D`MJc%À/9( 6&B2·e5·þ¿' ד7ý Œz4'*"+#:3<' $-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>KþR™ÀY_i%>73# 4732>=!5654&#"&546323!5654&#"&5463235".54>3273"54“S‡zVþž>5“©DEþä/)+$.@42?Éý§H8.1A4D`MJc%À/9( 6&B2·e5·þ¿' ד7ý5G SL@Gjt &2$*")";2=<0$-O.:B4B$5WK[ZJ9)?* #+RT# _%O –g*<. w>Kýí£À.flvƒ%>73!5654&#"&5463235".54>322353#"&547#"&547326=!5654&#"&5463"542>4.#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2V2?É77BA/0@Œ¼>5Ÿ~Qoþä/$ *$.C>e5·þ¿' ó  %%ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þã7. Óî/C,<<,!s`LG>?M^)!.")'!6/8|%O –g*<. w>ü›."!Kýë¤À.kq{‡›%>73!5654&#"&5463235".54>32#".547#"&547326=!5654&#"&546323533"542654&#"2654'#"&547“S‡ýpH8.1A4D`MJc%À/9( 6&B2½7-# %-‚¥70ŽsIdÿ+"&*;-.9µ1Ne5·þ¿' Û%535/ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þ :0$5 .:$cRB=47BQ#(!!/(1/'µÌ2B%O –g*<. w>üæ P." '"#& '".Kþ¼™À.NT^g%>73!5654&#"&5463235".54>322!5654&#"&5463235463"54"354&“S‡ýpH8.1A4D`MJc%À/9( 6&B2{>Kþ4/$ *#.B12AlHxe5·þ¿' Þ)2½6ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# íO@›3%)"+";1=<1$’6HL%O –g*<. w>þ=:+…g;HKþ¤À.Z`js€%>73!5654&#"&5463235".54>322##"&547!5654&#"&5463235463"54"354&2654&#"“S‡ýpH8.1A4D`MJc%À/9( 6&B2{>K#-*,<#þÓ/$ *#.B12AlHxe5·þ¿' Þ)2½6!"ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# íO@›/'3 <+03%)"+";1=<1$’6HL%O –g*<. w>þ=:+…g;Hþ$+ #Kýí¡À.[akt~‘%>73!5654&#"&5463235".54>322##"&547!5654&#"&5463235463"54"354&2654#"2654'"&547“S‡ýpH8.1A4D`MJc%À/9( 6&B2{>K,6 8%7J6þ÷/$ *#.B12AlHxe5·þ¿' Þ)2½68-2*:%P%,8ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# íO@›"= #*E1="3%)"+";1=<1$’6HL%O –g*<. w>þ=:+…g;Hþ¢ ))R5&  211&5KþÆšÀ.6<FRY%>73!5654&#"&5463235".54>324632!3"54354&'4#"6“S‡ýpH8.1A4D`MJc%À/9( 6&B29T‘þâÎe5·þ¿' ù&¡-/*2,Amד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þUc]°xr%O –g*<. w>ýû).gM<$6TNKþ À.BHR^eq%>73!5654&#"&5463235".54>324632#".547#3"54354&'4#"62654&#"“S‡ýpH8.1A4D`MJc%À/9( 6&B29T‘!'-* +-'|Îe5·þ¿' ù&¡-/*2,Am 6!ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þUc]°x 1'3 2'1 r%O –g*<. w>ýû).gM<$6TNê$+  Kýé£À.DJT`gq„†%>73!5654&#"&5463235".54>324632#".547#3"54354&'4#"62654#"2654'"&5477#“S‡ýpH8.1A4D`MJc%À/9( 6&B29T‘(1 6J5 1]Îe5·þ¿' ù&¡-/*2,Am-1*74,5+78 ד7þG-O.:B4B$5WK[ZJ9)?* #+RT# þUc]°x&< #-,$ =%r%O –g*<. w>ýû).gM<$6TNÅ +*V8'! '!!'2'8ËTÿ;Ã@FQ%>73# $54673265!5654&#"&5463235".54>3273"54&9§©zŠþÿþÇ-0*$å›Ôý¬G:+1A3B`NK]$Á09(.% uÊt7Êþ«' Ù„Nþ5p<+ñÎAhA1:2ESEU]F9*?*#4 ®(P#P –f). w>TþšGÃOU`m#".547# $54673265!5654&#"&5463235".54>32>733"542654&#"þ0 2"#3 hmþÿþÇ-0*$å›Ôý¬G:+1A3B`NK]$Á09(.% u9§Kt7Êþ«' þ"##ƒ 8+ #*+" ñÎAhA1:2ESEU]F9*?*#4 ®(„Nþ5BŒ#P –f). w>ýV#!" TþCCÃJP[i~"&547# $54673265!5654&#"&5463235".54>32>733"542654.'"2654&'#".=Ø38U|TXSþÿþÇ-0*$å›Ôý¬G:+1A3B`NK]$Á09(.% u9§Kt7Êþ«' Î,P:-8'#!+ œQ/=VU>0&ñÎAhA1:2ESEU]F9*?*#4 ®(„Nþ5Tž#P –f). w>ýV[8*%36& "  +LÿE×ÃDQ#".547.=4&#"#4&#"&5463263232654.'2654&#H9S>AE/ "*8ND-)+S8"3',2%‚nOU91TDd<05A 4&6+* #À~fn;J2B 2!$ WGKWK )þÂ<5,1J,?;E°_yKI`KU>P_I0?7ýà "LþüÖÃ?L_#"&547.=4&#"#4&#"&5463263232654.'2654&'"#2>54'#"&'H=OQSS>=S50=D-)+S8"3',s‚nOU91TDd<05A 4& .&C&0 3&1 EÀ|d9]CXUAH'T=KWK )þÂ<5,1JˆFE°_yKI`KU>P_I0?7ýë $v+'  %5 # 2+IÿÝÃT%2654'7#"&54632&#"3265#"&'&'&#"#4&#".546326329Ig†-G}R[}|_^>0@(cu‘L+CR P+5S3# )# 2$*: pRQ;2RIb52gLiTbí.UbH/)"!-!Žt%+jWP6]yC' O;?X(;2|™0RI`q3/S0*'9 s‚lQU91TJ^l6@y0L&3N‚&&%  #þÈ 3#7FB '/#$¼‹?bK'Æ:þÂ3>)<1™5E°Z~KIcD%¹]K˜6t’F7jrT7­' , ;% &LþÀÖÃ8_emw#"&=4&#"#4&#"&5463263232654.'2#"/32654&+#"'#"&54632>32#4&"325#32=#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&O0*+"!*8.5+'0782*X0%6""A}j(?ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýÆ7#$1 # !!AU227(0!:E%32&1&6t ) =7Lþ¿ÖÃ8gpw€#"&=4&#"#4&#"&5463263232654.'2#"/3254+53254+#"'#"&54634632#4.#"325#32=#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&n #G"*8.6*(/6O4*%30 ! A}k (?ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýÆ 6!CR226)27G64 2%8P_I0?7þ>=00+5/''$5B,,,#C0;k!,/+ ,a !5,Lþ.×Ã8ipy‚#"&=4&#"#4&#"&5463263232654.'2#"&5462&#"32654&+#"'#"&546;4632#.#"26=#'32=#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&B-;mp7JPz6"0*(?Sc& 9/5*:'.05+*:2!!;#{!Ž&;ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýÅO9Dt ]F+5AP33/308GE:)/0(Œ5, (0>#86Lþ¹×Ã8ny€‡#"&=4&#"#4&#"&5463263232654.'2'654&#"32#".547##"'#"&546;46323>2654+'4&#"325#32=#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4& ".%S$=?.(1A;*$) 8.6+'1993+V# C1' …% !B~k(?ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þC 9$TF6I5H;%6&/20CS228'0!9E~4Jþù$<*&‰%27 1'5s3%=6Lþ½×Ã8Œ“š£#"&=4&#"#4&#"&5463263232654.'2#"/3254+57>54&#"32#"&547##"'#"&546;46326264&+'.#"327#32=#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&+> ,04( .% - (8! 3#+0'08.7+'08:4+* ##(" !A~k'?ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þC$ &'%. (1*%#'.&0)B1CS227(.#6H/!€þù0! $,‰&16!1(4s3%=6LþVÔÃ8ƒŽ•¦#"&=4&#"#4&#"&5463263232654.'2#!"3!!"&5463!254&+532654&#"32#"&57##"'#"&54;46323>2654&+'4&#"325#32=#"H-= ^PGbD-)+S8"3',s‚nOU91TDd<05A 4& 9N43eþ ##Yý§'&ÊZ 1!X+,&*"*%7/6,&0n3*Y ]/#\%"#Ck*AÀDP9_u`MKWK )þÂ<5,1J…IE°_yKI`KU>P_I0?7þA1(&2Q/"$:#"&,*$);%9F,,+$D.=k/>áDt ,/)#,d "5/Lþ*ÔÃ8{†”ž#"&=4&#"#4&#"&5463263232654.'2#"&54632&#"32654&#"2#".547##"'#"&546;>323>2654+'.#"327#32=#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&C\€j'gQ=66.$R6RbC5IG;%)$8.6+'08<3*Y# C 0(z" !@~k'?ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þAsXkŠ q[MbW%5!5*" DS227(0!:E5Kþ÷= 8‰'15#1(4t3 =7LþGÔÃ8fmu#"&=4&#"#4&#"&5463263232654.'2#"&54732>54&+#"'#"&54;>32#4&#"325#32=#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&L(2rƒ«:.VL`?Z/8.5)&1Z+3*Z 1#!!A|k'?ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýÄ7*YljfFGQ\;435%BU227)P:E%30(1(4t% =7LýîÕÃ8qwš#"&=4&#"#4&#"&5463263232654.'2"&547#"&54732>54&+#"'#"&54;>32#4&"325#2>54&+32=#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&L'3FH?b? ¯:.?^J&GE* 8.4)%2Z+3*Z 1%6!!A|Ä $ %þì'?ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýÔ/'J1D(:9)}_Y>>H5L# ;):K--/%H1>o"++",$-f þÈ$   60LýìÔÃ8u}†–Ÿ³#"&=4&#"#4&#"&5463263232654.'#"&547#"&54732>54&+#"'#"&54;463232'.#"327#2>54&#'32=#"2654'#"&547H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&S(, 0 1B y 6+;WE#B@'5*2'"/T(0(S '$/§;t ñ%;ãF0$'ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý 9 $;+$wXT;=A2H! 8&5H**-#C/:i-$Q¢  -)!,`þ÷ ì&3-þ§%+# !LþÏÔÃ8[e#"&=4&#"#4&#"&5463263232654.'233!5654&#"632#"&546"3254&H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&¥?Z6¥9þÝCA.!0 ("-%+)2U,/ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þWS@E8 þÜ0K5C1#/6)!6C7TcŸ65LþßÃ8kx‚#"&=4&#"#4&#"&5463263232654.'233##".547#5654&#"632#"&5462>54&#""3254&H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&¥?Z6¥9&! !0 &CA.!0 ("-%+)2U, ."þð,/ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þWS@E8 þÜ2*) 20K5C1#/6)!6C7TcþV "-. 65LýøÔÃ8kw‹•#"&=4&#"#4&#"&5463263232654.'233##".547#5654&#"632#"&5462654&#"2654'#"&547"3254&H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&¥?Z6¥9-7 4" %7mCA.!0 ("-%+)2U ?!'&#0ë,/ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þWS@E8 þÜ#@ $,.@#0K5C1#/6)!6C7Tcþ|P') 44 (#-565Lþ¾ÔÃ8Y#"&=4&#"#4&#"&5463263232654.'4632&#";2#"'73254+"&H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&b:DT0$C$5-?70N1V,&KS>@'0ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýâ&;0%&05./&5(-LýüÕÃ8ep#"&=4&#"#4&#"&5463263232654.'2#"&547&'73254+"&54632&#"3264&#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&8703<! .B*6&KS>@'0:DT0$C$5-?#!$%ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýÅ09D*?16! &5(-$&;0%&þÊ-&-&$LýæÔÃ8gt‰#"&=4&#"#4&#"&5463263232654.'2#".547&'73254+"&54632&#"32654'#"'2>54'#"&547H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&8708? 4" %6.&KS>@'0:DT0$C$5-$ ", )'"/ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýÅ0;$G $,.?&&5(-$&;0%&þü   P#!  *4 &".Lþ¼ÔÃ8c#"&=4&#"#4&#"&5463263232654.'2#".54732654+"54632&#"3H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&10<19?_.8,65M)6?zKP_I0?7ýÂ3#!*,?7D6+7>-.#N.:0%#!LýÿÔÃ8lx#"&=4&#"#4&#"&5463263232654.'2#"&547.54732654+"54632&#"32654&#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&10<34! /A$R]8,65M)6?zKP_I0?7ýÂ3#0"<*@01!h:D6+7>-.#N.:0%#!þÐ$"&$LýèÔÃ8lz#"&=4&#"#4&#"&5463263232654.'2#".547.54732654+"54632&#"32654'#"'2654'#"&547H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&10<:9H3 %0LV8,65M)6?zKP_I0?7ýÂ3#3$C4G.=$d8D6+7>-.#N.:0%#!ÿ   P." 43 &"Lþ¾ÔÃ;eo#"&=4&#"#4#"&54>;263232654.'2'654&#"#"&547&#"&5463262654'H/>^PGb>3)+SZ3',s‚,@4o%1TL\4'6@6'L_Q$:H7F6-+5C. ?HU;'$"2'8A"ÀFO1_u`MUES )þÂ;J,1J™5E°>\+KIhVU44`H,A;þFaFZ0 .H=S^PGbD-)+S8"3',s‚nOU91TDd<05A 4& ,@"B0þø((vþŠ"*)#í#2C7  G8+*6B .;AIN?(!#3!7A"ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þD12?V3$$C49G3C/:9-F+@-G 'P:PÜ&;(-:$LþXÔÃ8z„#"&=4&#"#4&#"&5463263232654.'4632632#!"3!!"&546;254&+532654#"#"&547&#"&72654'H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&þâN<+!$@ˆ./*0þá''sþ5#)êW L.E7,+5C/:@HÅ!7B"ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýÂ9KS#.#73#0;!: 1C09:-@.>/G %&:(-9$Lþ-ÕÃ8s}#"&=4&#"#4&#"&5463263232654.'2#"&54632&#"32654&#"#".547&#"&54>3262654'H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4& Paj@LO=?6$9QQOaG<F8-$. C2=?H%.! $/#8@*ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þDwXj‡0u\Ne3262'654#"#54#"&546326'2654'H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&Qd†m<N.5%*:@'ThN@$I9,(E2?>G%. $! 9"9C,ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þAˆex“ &$.+‚hZ{=Q5I,# R6K8S) 2`%; þz  ' 1%G24J,%LþLÔÃ8q{#"&=4&#"#4&#"&5463263232654.'2#"&54732>54.#""&547&#"&5463262654'H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&G^7mK­5!3‘l>Y.*$ G8V5C/ACGU;)"*;"7>ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þDpS$GG,”yNG54.#"#"&547&#"&54632632'2654'2654&#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&W#(=/.> ~§3 2j;W-" E8)*3A-/AFQ<&"'(D\ÿ!6;­",-#ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý 7)<9,†lG?8>Zp15"7 6H2?<2G29*M$ /U=ReJ]#*!@+-B 'è)#LýòÔÃ8ˆ”©#"&=4&#"#4&#"&5463263232654.'#".547#"&54732>54.#"#"&547&#"&54632632$2654'2654&#"2654'#"&547H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&Q*, 0 +8 y 0/„h:S*6(B5('2>(3 ?CO8!$'%BWþô0 3:ª !#1 #%-ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý9" $,*${dA;2;Sg.0:;2B/98-C-.+E$ *O:J]E`+&:)(?Ü C&,, &LÿöÊà CL2!53546#"&=4&#"#4&#"&5463263232654.'"!54&ù\uýדpþ¤/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&ê@P#RÂycæ"âWgFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7YFιSaLÿEÕÃPYd2##".547!53546#"&=4&#"#4&#"&5463263232654.'"!54&2654'#ù\uE/ "*þ—“pþ¤/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&ê@P#R "//#Âycæ,3A 2!,"âWgFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7YFιSaýú"0 0#LÿÒÃNWdv2##"&547!53546#"&=4&#"#4&#"&5463263232654.'"!54&2654&#"2654'#"&'ù\u%-T=?Q0þÀ“pþ¤/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&ê@P#R%%")92'1 EÂycæ"ABYW?B&"âWgFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7YFιSaþ "X9)" %5 # 2+LÿÊà Yb2#"&54632&#"3265!53546#"&=4&#"#4&#"&5463263232654.'"!54&ù\ut˜b|“KXI7F‹_'{^þ“pþ¤/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&ê@P#RÂycævu-$ -"%a^"âWgFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7YFιSaLþºÔÃ8]#"&=4&#"#4&#"&5463263232654.'2'654&#"#54&#"&546326H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&"6H -%?(. 9'(1KUK:7&%ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þAWB1>*Z+Fѵ&!A0\#/gCX10Lþ»ÔÃ8\f#"&=4&#"#4&#"&5463263232654.'2#"&547&#"#54#"&5463262654'H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&CZ6+*7D *97'4MYJ86%/k6B$ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þAgL7EC7R6 ѵHD2Z!-hAZ0/þü)"O.4E$+LþXàÃ8v‚#"&=4&#"#4&#"&5463263232654.'4>32632#"'732>54'#"&54>7&#"#54#"&2654'H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&þw /&4'+",98  NZx"+ ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý§.B 0.KS2Ih ':0P&^PGbD-)+S8"3',s‚nOU91TDd<05A 4&À!2 Ç;þ«/$*$/BÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýû' $ þÝ 1#*!+$91>Lþ"ÕÃ8bn#"&=4&#"#4&#"&5463263232654.'233##"&47#5654&#"&5462654&#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&À!2 Ç;%! /A$£/$*$/B*"!$%ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýû' $ þÝ/*A^ 1#*!+$91>þº.-&$LýÿÔÃ8eq†#"&=4&#"#4&#"&5463263232654.'233##".547#5654&#"&5462654&#"2>54'#"&547H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&À!2 Ç;-5 4" %5›/$*$/B %&)'"1ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýû' $ þÝ&? $,.?& 1#*!+$91>þß P ' ,4 '$,LþZÔÃ8n#"&=4&#"#4&#"&5463263232654.'233#"&54632&#"3265!5654&#"&546H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&¾+Ò002+fU54),L:P_I0?7þ  #þÜ(:  ?;4)*"+";2=Lþ`ÔÃ8e#"&=4&#"#4&#"&5463263232654.'233# 4732>=!5654&#"&546H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&½2?É7u[þž>5“©DEþä/) *$.@ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ýû;1& þÙ2J SL@Gjt &2$*")$92=LýîÕÃ8s#"&=4&#"#4&#"&5463263232654.'2353#"&547#"&547326=!5654&#"&5462654&#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&¼2?É78A! /A »>5žPpþä/$ *$.?)"!$%ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þ7;1&ãÿ4!G*A/"{gRMAFRe-#2%*")";2=þJ.-&$LýëÔÃvƒ˜3#".547#"&54732>=!5654&#"&5463235#"&=4&#"#4&#"&5463263232654.'2654'2>54'#"&547H/>-$BJ 4" %! Šº>5€(G=þø/) *$.?52?µ.@GbD-)+S8"3',s‚nOU91TDd<05A 4& ", 3&#/ÀFO1[;ÿ>" P $,./$|fRMAFRe &3$*"+#:2=<0&Î)`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7üÆ  P#!  '"4 '".Lþ¼ÔÃ8W`#"&=4&#"#4&#"&5463263232654.'2!5654&#"&54623546"354&H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&>Kþ4/# *#.BbBlJJ)2½6ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þCO@›3$)",";1=<1$’7G&9,…g;HLþßÃ8bkw#"&=4&#"#4&#"&5463263232654.'2##"&547!5654&#"&54623546"354&2654&#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&>K)B./A)þà/# *#.BbBlJJ)2½6&."$ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þCO@›41?@043$)",";1=<1$’7G&9,…g;Hþx$"-&LýëâÃ8eny#"&=4&#"#4&#"&5463263232654.'2##"&547!5654&#"&54623546"354&2654'#2654'#"&547H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&>K%3$ 4H3þê/# *#.BbBlJJ)2½6.$ L433ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þCO@› <.G4< 3$)",";1=<1$’7G&9,…g;Hþ©  P-# '"#& '!LþÆÔÃ8@LS#"&=4&#"#4&#"&5463263232654.'4632!7354&'4#"6H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&9T‘þâ½&¡-/*2,AmÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý…c]°x¾).gM<$6TNLþ ÕÃ8JV]g#"&=4&#"#4&#"&5463263232654.'4632##"&47#7354&'4#"62654'#H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&9T‘&A/0@&o½&¡-/*2,Am6%11ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý…c]°x1/A@`¾).gM<$6TNç%2 2LýëÔÃ8P\co„#"&=4&#"#4&#"&5463263232654.'4632##".547#7354&'4#"62654&#"2>54'#"&547H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&9T‘*3 4" %3c½&¡-/*2,Am", 3&#/ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý…c]°x"> $,.>"¾).gM<$6TNÀ P#!  '"4 '".Lþ,ÔÃ8Zen#"&=4&#"#4&#"&5463263232654.'4>32#".54632&#"326=#7354&#'"654&H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&},-’CV38J5B;7N;)ó¼#$(¦30,_(t ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý©1D ±€KL6:¾ >%$bPB!5?tS[!Mÿ1bÃH#"$5473 7#".=4.#"#4&#"&5463263232654'Ü=IIoºvìþÚ[$V Öœ%#.C 11$:S6#MþŒgÃTcu#"&547#"$5473 7#".=4.#"#4&#"&5463263232654'72654&#"2654'#"&'ê &U<=Sh‡ìþÚ[$V Öœ%#.C 11$:S6#54'2654'H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&C*C4/>,#N5&+6^G:D= Qý(E%ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þF ,1"@RA60.>?V.;I8NaH:+Z /!a"ð#&C6%NOLþÕÃ8jx#"&=4&#"#4&#"&5463263232654.'#"&547&=4&#"#"&5463232>54'2654&'+'2654'H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&C*49A/0@-6,#N5&+6^G:D= Q# 2%ç(E%ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þF ,1"R) A/A@08! H0.>?V.;I8NaH:+Z /!a"þg-% 3$©#&C6%NOLýëÔÃ8o|‘š#"&=4&#"#4&#"&5463263232654.'#".547&=4&#"#"&5463232>54'2654'#"'2>54'#"&547'2654'H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&C*=@ 4" %B2,#N5&+6^G:D= Q ", 3&#/Å(E%ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þF ,1"[&#I $,.J"!E0.>?V.;I8NaH:+Z /!a"þ“   P#!  '"4 '".Í#&C6%NOLþºÔÃ8k#"&=4&#"#4&#"&5463263232654.'2654'7#"&=4&#"#54#"&54>32632H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&3!+Q^@4/A"'"9: %&MW-% 8%"6.A'ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý<>.c$,v?M@31)?%ѶH5'b$-u*> 0.?28(3LþÕÃ8s#"&=4&#"#4&#"&5463263232654.'2654'7#"&547&=4&#"#54#"&54>326322654&'+H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&3!+Q^08B./A+7"'"9: %&MW-% 8%"6.A'$#-%ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý<>.c$,vN'A1??17!E1)?%ѶH5'b$-u*> 0.?28(3§-& 0$LýëÔÃ8x„™#"&=4&#"#4&#"&5463263232654.'2654'7#".547&=4&#"#54#"&54>326322654'#"'2>54'#"&547H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&3!+Q^5; 4" %P_I0?7ý<>.c$,vR'$D $,.E$!>1)?%ѶH5'b$-u*> 0.?28(3v 0P#!  '"4 '".Lþ+ØÃ8‚#"&54.#"#4&#"&5463263232654.'2654'7#"54632&#"32>5#"'&'&#"#54#"&54>32632H,< _OI`.%3/S*0'9 s‚lQU91TJ^<05A 4%+$0DZ";>$X4G'D5R+>!:^4$97'NZ .& 5'!61AÀBK8_ubK`l!:þÂ,E)<1™5E°Z~KIeFU=Q_I1?8ý:C1V&L’@\02 251€J1Ò¶H," Z!+m-B 0/Q^PGbD-)+S8"3',s‚nOU91TDd<05A 4&ƒ0ZHŒaO~L2=9­Ž´T-6 :9'/KXI<3$ 8=3$*$ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý¤7H K`,QN/#5HC"XG@IdyS )'6MÒ¶H;1b$-pCR0/?+Q("=LýïÖÃ8ˆ™#"&=4&#"#4&#"&5463263232654.'4&'7#".547#"&547327#".=4&#"#54#"&546326323262654&#"#H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&ƒ1ZN'& 0!0 :A¡½=9«³U, 6<:9.(KXI<3$9p%0K.-%ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý²4@ BYb< 4 %%  ‚kPA:C[nK,# F/¿¦B=&[(g54&#"2654'#"&547H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&…(U`,1 2"1D1;–¶:6¥†©R&1 (976,&HTE91" 3k("g  $1"#'.ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý¼G?Qj9<" &=,# xfJ=7>UgG2/A ,²›=9#U&`9E('YE'4è I' -%  'Lþ¼ÔÃ8Mc#"&=4&#"#4&#"&5463263232654.'2'654&"&54'2'654&"&546H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&+|LA$A6X9H [µ>LA$A6X9H [VÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þARD@K !L0;<1V*iEVRD@K !L0;<1V*iEVLþ ßÃ8Wmy#"&=4&#"#4&#"&5463263232654.'"&54>54&#"&5462$2'654&#"&542654&#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&Y-,A^A%+%7+-8H [W|Lýî|LA$A6,-8H [,&-.$ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý@ >%/AA/(04+0;<1V*iEVRD?ÕRD@K !L0;=0V*iEþ´$#!&LýëÝÃ8]u€”#"&=4&#"#4&#"&5463263232654.'#"&547'654&#"&54632%2'654&#"&5462654&"2654'#"&547H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&> !)$ 4H?A7+.7H [V?>Lþ,>L*(A7+.7H [UÐ$L433ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7ý7 3".G4G$!L0;<1V*iEVRˆÚRD.G!L0;<1V*iEVþ…P." '"#& '!Lþ;×Ã8Zp#"&=4&#"#4&#"&5463263232654.'2#"&547 654&"&546#2'654&#"&546H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&': Æ—™Ë@9¹©@^9G ZSö9Ne@5,/:H [TÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þG':1|•˜TIBKl…‚j.>:1N,9XFXT?b:+B2=;0M-9XEYLýìÜÃ8N~‰#"&=4&#"#4&#"&5463263232654.'2'654&#"&546!2#"&547#"&54732654&"&5462654&#"H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&þé;Le@5,09H [T€': Z(+7*/A>@Ç@9µ‡­@^9G ZSY.!%%ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þGM7W6';+94,G'3P@N#4,iC 7 ),9+ŠqJC:E]|u`)84,H&3P@Nþ1(!2!LýëÔÃ8Nƒ“©#"&=4&#"#4&#"&5463263232654.'2'654&#"&546#".547#"&54732654.#"&546322>54.+2654'#".547H/>^PGbD-)+S8"3',s‚nOU91TDd<05A 4&þö7I`=4)*9E VO’-39+"3 7<’À=6«‰¤& -6D VPA&8 ‡   $1 "" .ÀFO1_u`MKWK )þÂ<5,1J™5E°_yKI`KU>P_I0?7þFG5S2%8)52)@'2I54&#"&546323&5462#¾#?Aü¿,H‚#Rl ,7(AxL8þ@(!7,0=5D\KIa&æMŽÌ•KIaM/T3:tx]3P, pQH^ E-6=.G!2[FVSE7.Eji†–rnLKJþýúÀM3!!"&5463%26544>54&#"!5>54&#"&54623&54632#"}!Cü½0=>/}.?7*$/ UB\rM7þ@(!8+0=5D\–_&æM’w`‚I]5ýQn*R<04C?#"';(&-RFÿÞÂE2#"54>32&#"3 4.#"!5654&#"&546323&546òk.EbX2Ö'@@ wN+8Y3B~ 44GV:0þ4D_NLb&êDr¨…\‹P1K$'K@^/[K>M/K$'1S3!:IeþXH073>4D_M*B$&ëJeSQ97ƒb3U5 =‘Qb+$þÂ<2aHH/K&:B2F!3XH_'0# 7,OuaxHHLÿùïÄ=H2#"&5467&#"#4&#"!5654&#"&54623&5463262654&'g†Q@AQ:0.2CS7+8J5þvG8-2@4C_–d%×AnRU9E¦(0,(g7ÃtRgfR>n$.&þÂ0=`OJa/K+6A4E"4XK[ZI:)FueJIþs<1,}!Ql6DKÿccÃTa%4632632#"'7327654&'#"&54>7&#"#4&#"!5654&#"&546323&2654' jWL7@\:i"\Vr=5'(_=87+RC;F!=((b5BS'DP]þvG7-1C5D`LKd&×K,/)'2!,é^|IH>4~Mm*QG`?Q -dMB/K,5B4C#2YJ\YJ6,O32#"&4632&#"326=!5654&#"&546323354+4&#"6 /X@äbA••AOB'M&XU)_BýgH8-2A4BaNK]$ '7'*úŸFI*!jµÇ:VG%þöåhO,>+%KP#-O-;>193ESEU]F;*'CF''–å2;%3¶°‚JÿaÃ;2#".54732654&#"!5654&#"&546323&546yd„þîàšù’[NÏÀïZCDV@1þPG7-4@4D`LJd&áDräw¼åoч„p `r±ÛÁœWxcJB]/J+7D2B$3XL[YI:*Aoi…Jþ×cÃKZ#".=#".54732>54&#"!5654&#"&546323&546322654&#" $6E/ ")x§’òŽ[NÇe¡bAZCAY@1þPG7-2B4DcIJd&áDs\c…r#$  C :/3A 1" 6mÆ|„p `rŸÖ+CYT+Wx^OB]/J,6B4D"3XK\XJ:*Aokƒ£x‡þú"!JþraÃLYk2#"&547#".54732>54&#"!5654&#"&546323&5462654&#"2654'#"&'yc…ƒ#/T=@P e†’òŽ[NÇe¡bAZCAY@1þPG7-2B4DcIJd&áDs¡%(:3&1 /ãx§n 8%BYY="mÆ|„p `rŸÖ+CYT+Wx^OB]/J,6B4D"3XK\XJ:*AokƒýG"X7+" &4"! CKþÁÒ¿2Zc2'654&#"!5>54&#"&546323&546#"&=4&#"#"&5463232654'2654'õa|"6,aZHF\L8þ@(!7,0=5D\KIa&æM„Ó*C4.?,#N5&+6^G:D=?V-54&#"&546323&546#"&547&=4&#"#"&5463232654'2654&'#'2654'õa|"6,aZHF\L8þ@(!7,0=5D\KIa&æM„Ó*/>B./A':,#N5&+6^G:D=?V-54&#"&546323&546#".547&=4&#"#"&5463232654'2654'#"'2>54'#"&547'2654'õa|"6,aZHF\L8þ@(!7,0=5D\KIa&æM„Ó*9F 4" %=7,#N5&+6^G:D=?V-54춮&#"632#"&54632#'2654&"2654'#·!:wE01E«1<=0± . =$)7QBRl$:/@B78LtAQ7II$4+Ñ"$4 !ø2"-.)I(3CB4(6V@#5/$*4L98G98J\Cg} ?+=+B$3 1#$/-H2þi#. .JþI6ÁJT_t"3!##".547#"&46;2>54춮&#"632#"&54632#'2654&"2654'#2654.##"&=·!:w,4S@+> 4Ž1<=0± . =$)7QBRl$:/@B78LtAQ7II$4+Ñ"$4 !Ï.""V773%/))I+F32+"3!&54>;254+53254#"632#"&54>2654&#"2654&#"2654&#"A`{=WŸÔ6jvB31Cý¬, <,¢T:Ž$6.=A0;F/>< ay=WÕ6«.*¢€R:Žž#7/32+"3!&54>;254+53254#"632#"&54>2654&#"2654&"2654'#"&'2654&#"A`{=WŸÔ6jw+T=?R.ýÅ, <,¢T:Ž$6.=A0;F/>< ay=WÕ6«.*¢€R:Žž#7/AZV@A'# *9US%MPo8InMZG0J- ?4I!\r$&1 US%MPo8I78LZG;V+þÂ1$!/,#%1þxu/2# '""*7à1$!/-"%1MÿNÃ2=I2#".547&'73254'"&5473&546>54&#"2654&#"o$9 PK ':D1#3 V"F>]xK%#G9+O"==/%#*"!!+!Á$, 7\<02D*" @6<mMT6#+=@W?PMDþâL-)75+Kþ¶##$MÿÃ7BNg2;2#"&547&'73254'"&5473&546>54&#"2654.'2>54&'#".=o$9 PK *= 7#=U!`%F>]xK%#G9+O"==/%#*):"*-83%$&#Á$, 7\$5+ ,#V=6(E6<mMT6#+=@W?PMDþâL-)75+KþÆ/[$ %35!- ' *MþÊÃ&MX^gp2#"'73254'"&5473&5462#"/32654&+#"'#"&54632>32>54&#"4&"325#32=#"o$9 PK ?4c%F>]xK%#G9+O†1),! !*8.5)%2782*Z :==/%#*1%6 "A}j(?Á$, 7\+3F6<mMT6#+=@W?PMDý¸6$%0 # !CS226)0!:E*L-)75+Kþš%30(1'5t%=7FþÉÃ&U`hpy2#"'73254'"&5473&5462#"/3254+53254+#"'#"&54634632>54&#"4.#"325#32=#"o$9 PK ?4c%F>]xK%#G9+O— #G"*8.5)(/6O4*%30==/%#*' !A}k(?Á$, 7\+3F6<mMT6#+=@W?PMDý¸ 6!CR226)1 7G55*L-)75+Kþš#&2%9 #%s3%=69þ6 Ã&hs{„2#"'73254'"&5473&5462#".54732654&+532654+#"'#"&54634632>54&#".#"327#32=#"o$9 PK ?4c%F>]xK%#G9+O‘+-Y>*PO181(CF(bT !$*"!(/?,#$@==/%#*= 0 3eY 3Á$, 7\+3F6<mMT6#+=@W?PMDý±"30;uPUI>MC`1B, .1007)1!6H-%1L-)75+Kþ“ !U2 !q1-<5þëÃ#]hu{‚‹2#"'73254'"&5473&5462'654&#"32#".547##"'#"&546;46323>'>54&#"2654+'."327#32=#"«BVOL ?4c% H>_vK%#G9+O–-B S$=?.8 E7*$) 8.5*%3994** # $+e==/%#*V 1'  %6!!A~k(?ÁY<7[*4F6<oKT6#+=@W=RNCþ5&7,UE4K5H/(&5&/11CS227(0!9E.")8­L-)75+Kþ<#‰'00'1)3s3$=6(þÇÓÃ#p{‡Ž•ž2#"'73254'"&5473&5462#"/3254+572654&#"32#"&5465##"'#"&546;>3267>54&#"2654&+'4&#"325#32=#"ÉBVPK >5c% H>]xK%#G9+O¥*? ,05' .% - ' 3*$, %28.5*%28:3** #==0$#*E(%&!B~k'?ÁY<7\*4F6<mMT6#+=@W=RMDþ5$ ('$/ (1*%# 4 (1?4CS226).#9E/!€­K.+55+Kþ" $,‰$3+,1)3s3%=6&þ`ÆÃ#ny„‹’›2#"'73254'"&5473&5462#!"3!!"&5463!254&+532654#"32#"&547##"'#"&54;>323>'>54&#"2654&+'4&#"325#32=#"¡BVOL >5c% H>]xK%#G9+OÎ:N10fþ !!Xý¨&'ÈY N7F)&-,!3/75*&1o2+Z  \g==0$#*`!^$ !B~k'?ÁY<7[*4F6<mMT6#+=@W=RMDþ31)&0S1#%8$!53&#,.4 0O++.#D0;k/>¯K.+55+Kþ5 Cs+.)#+a* 4-MÿÃ&BM2#"'73254'"&5473&546233!532654#"#&5467>54&#"o$9 PK ?4c%F>]xK%#G9+OV-6"•9þ[%1 3ž==/%#*Á$, 7\+3F6<mMT6#+=@W?PMDþ 6*/ þÝ(9$ %0ÖL-)75+KMþMÃ&P[h2#"'73254'"&5473&546233##"&547#532654#"#&5467>54&#"2>54&#"o$9 PK ?4c%F>]xK%#G9+OV-6"•9&! /A%ù%1 3ž==/%#*] -$%Á$, 7\+3F6<mMT6#+=@W?PMDþ 6*/ þÝ0*A/0(9$ %0ÖL-)75+Kýª "%$Mþ.Ã&Q\g{2#"'73254'"&5473&546233##".547#532654#"#&5467>54&#"2654'#2654'#"&547o$9 PK ?4c%F>]xK%#G9+OV-6"•9"2-# $5 2ð%1 3ž==/%#*E##1))'"1Á$, 7\+3F6<mMT6#+=@W?PMDþ 6*/ þÝ#<$5 -# <#(9$ %0ÖL-)75+KýÓ ""P9 ,4 &$,Mþ¾%Ã&OZd2#"'73254'"&5473&5462'654&#""&547&#"&5463267>54&#"2654'o$9 PK ?4c%F>]xK%#G9+O54&#"2654'o$9 PK ?4c%F>]xK%#G9+O9ITB0þø((vþŠ"**"í#2C7  G9T6B /:AIO>(!"==/%#*$!7A"Á$, 7\+3F6<mMT6#+=@W?PMDþ,UFAT3$$D39G3C099-F+A,F (O:P¶L-)75+Kþ2&;(-:$KþXÃ&hs}2#"'73254'"&5473&5464632632#!"3!!"&546;254&+532654#"#"&547&#"&>54&#"2654'o$9 PK ?4c%F>]xK%#G9+OñP:+!$@ˆ./*0þá''sþ ,#)êWL.E6-+5C/:@H==/%#*'!7B"Á$, 7\+3F6<mMT6#+=@W?PMDýª;IS$/#73%0;!%: 1C-<:-?/>/F %L-)75+Kþ6&:(-9$CþÛ#Ã#ju~‡2#"'73254'"&5473&5462'654&#"#"&547&#"#54&#"#"&547&#"&546326326326'>54&#"3254'2654'yBVOL >5c% H>]xK%#G9+O{)70#-$ + ")   * ) *% *0%*(@==/%#*#%"(» "'ÁY<7[*4F6<mMT6#+=@W=RMDþ-SBT* (E6L8I2?3;N- )¦Ÿ#.6I2?>0L/C4L% +Y?O87µK.*65+Kþj*MC,3‰+"C,2ADþ Ã&|‡—2#"'73254'"&5473&5462#!"3!!"5463!27654&#"#"&547&#"#54#"#"&547&#"&546326326326'>54&#"4'32'4'32o$9 PK ?4c%F>]xK%#G9+Ou0)5þ¬œþd)B"' &!$  3 %!$  % ),"'$;==/%#*f# !Ì# !Á$, 7\+3F6<mMT6#+=@W?PMDþ1Q2NC,:"$%.+D)C2-2+C$ "‹…C(C3-3+B%6*G#O4B-.±L-)75+Kþ=@;!%;>Kþƒ$Ã&‹–ž¦2#"'73254'"&5473&5462#!"'#"3!!"&5463!254&'#53254&#"#"&547&#"#54&#"#"&547&#"&546326326326'>54&#"4'32'4'32o$9 PK ?4c%F>]xK%#G9+O“2 $þ“¨þX "U5 '!% !  '!% $& *,$(%K==/%#*s$! Ð#! Á$, 7\+3F6<mMT6#+=@W?PMDþ0$(1#0,"5(# )A)6+2@%"‹…$ )B)6./C%8+E#N3D.-²L-)75+Kþ; $;>?54&#"o$9 PK ?4c%F>]xK%#G9+OO6H'$?(.!9"(1KUJ;9$$==/%#*Á$, 7\+3F6<mMT6#+=@W?PMDþ.WB,F *Z+Fѵ,A0[$.hAZ10´L-)75+KFþÅ(Ã&JU_2#"'73254'"&5473&5462#"&547&#"#54#"&5463267>54&#"2654'o$9 PK ?4c%F>]xK%#G9+OMCZ6+*7D!)97'4MYI96%.==/%#*„6B$Á$, 7\+3F6<mMT6#+=@W?PMDþ3gL7ED6R6 ѵHB4Y"-hBY0/¯L-)75+Kþ)"O.4E$+Mþ…Ã&^iv2#"'73254'"&5473&546462632#"'732>54'#"&54>7&#"#54#"&>54&#"2654'o$9 PK ?4c%F>]xK%#G9+OïN+*D G6C\ $4,H#A93*(5(¸¥A47Q)L-)75+Kþ&+#(5 Mþè Ã&S^2#"'73254'"&5473&5462'654&#"#54&#"#54#"&546326326'>54&#"o$9 PK ?4c%F>]xK%#G9+Ot&4F2#)()('&7 @5'(,).==/%#*Á$, 7\+3F6<mMT6#+=@W?PMDþ-L8^$!S,:.´$+´>9-N%]7M,,))µL-)75+KKþðÃ&Wbk2#"'73254'"&5473&5462#"&547&#"#54&#"#54#"&546326326'>54&#"3254'o$9 PK ?4c%F>]xK%#G9+Os !&&&0 4'!)&&%5 ?4&%*)(==/%#*n(&/Á$, 7\+3F6<mMT6#+=@W?PMDþ)<(.;8,E+ -¬•"(¬•<7*I$W7H**((¹L-)75+Kþu#?@(,Bþ‡Ã&kv~2#"'73254'"&5473&5464632632632#"'732>54'#"&54>7&#"#54&#"#54#"&>54&#"4'32e$9 NM ?4a' H>`uK%#G9+Oò.!"'#$/! *;-$) !""$"" / 7==/%#*’ 8 #Á$, 4^*4F6<nLT6#)?@W=RNCý˜9J,,)(@ C6>T !1(G 1=0'#.& ´š$)²š>:+M&¤L-)75+Kþb,A=MÿÃ&CN2#"'73254'"&5473&546233!5654&#"&5467>54&#"o$9 PK ?4c%F>]xK%#G9+Os- ´5þÌ+!& *;Ã==/%#*Á$, 7\+3F6<mMT6#+=@W?PMDþ ' # þÚ 2$*"*#;2>ÂL-)75+KMþ[ Ã&NYe2#"'73254'"&5473&546233##"&547#5654&#"&5467>54&#"2654&#"o$9 PK ?4c%F>]xK%#G9+Os- µ4":*,9#“* & ):Ã==/%#*o!(*Á$, 7\+3F6<mMT6#+=@W?PMDþ' ! þÛ31?@02 2$)"+ =2=ÃL-)75+Ký¸%"!.Mþ8Ã&R]i}2#"'73254'"&5473&546233##".547#5654&#"&5467>54&#"2654&#"2654'"&547o$9 PK ?4c%F>]xK%#G9+Os, ´5&0 0 !0 0+!& *;Ã==/%#*\ #.%8&+Á$, 7\+3F6<mMT6#+=@W?PMDþ ( # þÛ&@ $--$ @& 2$*"+#;2>ÂL-)75+Kýß Q-$ *) &"/MþÐÃ&.9EL2#"'73254'"&5473&5464632!>54&#"354&'4#"6o$9 PK ?4c%F>]xK%#G9+Oa9T‘þâƒ==/%#*a$¡-/*2,AmÁ$, 7\+3F6<mMT6#+=@W?PMDýwc]°xÓL-)75+Kþ¯),gM<!"6TNMþ Ã&<GSZe2#"'73254'"&5473&5464632##"&547#>54&#"354&'4#"62654'#o$9 PK ?4c%F>]xK%#G9+Oa9T‘'! /A&rƒ==/%#*a$¡-/*2,Am1"11%Á$, 7\+3F6<mMT6#+=@W?PMDýwc]°x0*A/0ÓL-)75+Kþ¯),gM<!"6TNç.2 2$MýõÃ&=HT[fz2#"'73254'"&5473&5464632##".547#>54&#"354&'4#"62654&#"2654'#"&547o$9 PK ?4c%F>]xK%#G9+Oa9T‘(4-# $5 4gƒ==/%#*a$¡-/*2,Am 0?!'&#0Á$, 7\+3F6<mMT6#+=@W?PMDýwc]°x">$5 -# >"ÓL-)75+Kþ¯),gM<!"6TNÀe') 44 (#-Mþ»ÃAL233!5654&#"&5462#"'73254'"&5473&546>54&#"ç=R59þûF8-,7C UOË$9 PK ?4c%F>]xK%#G9+O"==/%#*QBA; þÝ1A2=@/O!0eBYÖ$, 7\+3F6<mMT6#+=@W?PMDþâL-)75+KMþ Ã%1Xc233##"&547#5654&#"&5462654&#"2#"'73254'"&5473&546>54&#"ñ=R59")B./A)UF:+-6C UOî$!$%$9 PK ?4c%F>]xK%#G9+O"==/%#*QBA; þÝ41??141A2=@/O!0eBYþS&.&$ƒ$, 7\+3F6<mMT6#+=@W?PMDþâL-)75+KMýëÃ&OZez2#"'73254'"&5473&546233##"&547#5654&#"&5467>54&#"2654'#2654'#"&547o$9 PK ?4c%F>]xK%#G9+OL=R59'3$ 4H3MF:+,7C UO±==/%#*P$&4330Á$, 7\+3F6<mMT6#+=@W?PMDþ*QBA; þÝ <.G4< 1A2=@/O!0eBY¸L-)75+Ký P." '"#& '!/Mþó Ã&U`2#"'73254'"&5473&5462654'7#"&=4#"#54#"&54632632>54&#"o$9 PK ?4c%F>]xK%#G9+O€9B,% /4(),6=4%((!.H==/%#*Á$, 7\+3F6<mMT6#+=@W?PMDýV4&R$c5?4+)W ®—<+.R%b4C(&6(."*ŒL-)75+KMþeÃ&[fq2#"'73254'"&5473&5462654'7"&547&=4#"#54#"&5462632>54&#"2654&'#o$9 PK ?4c%F>]xK%#G9+O}9B%%8.7!$4 ()$6=3L%8I==/%#*m& &Á$, 7\+3F6<mMT6#+=@W?PMDýZ2%N"_A/0)*/.3'S¦:0&O$]1A'%*0,'"ˆL-)75+Ký¶,MþCÃ&do{2#"'73254'"&5473&5462654'7#".547&=4#"#54#"&54>32632>54&#"#"&#"32542654'#".547o$9 PK ?4c%F>]xK%#G9+O{9B)1%# -)3 ((6=  &' .G==/%#*}52& $ Á$, 7\+3F6<mMT6#+=@W?PMDýX2&Q$aH?'1 +<;(V«•;&P$a"3 '&4).("ŠL-)75+Kþ$##€%   LÿEÀ(5%#".547'654&#".546322654&#"´3E/ "*5bXADY0#*.b]tŒ2#+ ' 7.2B 2!A!2vK\]M(82 5P/iƒ~flç# !LþúÀ'2E%#"&5467'654&#".546322654&#"2>54'#"&'¢33U<>R>,bXADY0#*.b]t®.%"C&0 5$1/ I,DWV@8F 2vK\]M(82 5P/iƒ~f|Îv+'  '3"! CLþÇÀ72'654&#".5462'654&".546/]t"4-bXADY0#*.U>L*(A6X9H $&VÀ~f3V6)2vK\]M(82 5P/iƒþ5QE.G M0;<1VD+DWLþÀAM2'654&#".5462#"&547'654&".546322654&#"/]t"4-bXADY0#*.®.BB./A5 A6X9H $&V?>L8&."$À~f3V6)2vK\]M(82 5P/iƒý!?01?@0?  M0;<1VD+DWQEN0£$"-&LýëÀEPd2'654&#".5462#"&547'654&".546322654&#"2654'#"&547/]t"4-bXADY0#*.­#4 -# 4HC A6X9H $&V?>L9 &4350À~f3V6)2vK\]M(82 5P/iƒý!,$ $5 G4K" M0;<1VD+DWQEN0rP." '"#& '!/ 2.7".5463&'632À/G#£x+¿'504 ;VJ€«2CÃ*@"!5 $3ÿ½ 2&5432#.54?654&#".547373Ô(=e1C i<H11$JBP1ü!ú (5# "6 <>Z@rp? 1$#B8þúWG,%þú!,ÕWÕÏþÏÿzÿµ£'50.''6?2'¶-=G( +`%-H E–¼,M(! ,+ÿöwà.+'675#5!#2#"&546326=4.#/.'å=B%--×{\ïêÈ54'"&547>7Ë!Q=—P5/6%G7(1!% 0H6"+UQ!& "*?¼b*,'&#632'6?>57654&#"#"&5>Ÿ$<&! $A6((()53)1   *!L* <#6)-"\); .1Uÿôsƒ.(27#""&547#5!#/.+"'767Ž(*>H-{3 1HZ-3' ª) =H )22þw():4)ÿòdz. <&#"326326#"&'2654'#"&547#5!2"&'26J (%;  )[P:c| 1T4(2 -8)´g!2)-æa$m.TÅ­LcG7&!A4@F2I 0!,)ÿûp8. ""'"'"&/3>'"&5#5!é:)=z.=<)7/A .8'>#ÇKë.5  _9K(22ÿþ:w. 3265.'7./32654''.=#5!!72_48 å5>7E,0¬C%"$2rAQ&/fþí! 0";K5o &5B,:HG C.!B¤22 DÿñÙŽ.4327#"&'367#".52654'#"&54?67#5!Â$*&-: 4+#11:+L' G9 ( '") ˆü%, //&>+D`z3f_&22ÿÿ|Ñw-'#"'6?675#5!;#'.'/.ì!3˜ 4. 4'Eí$4A '"]¡  3%@@!2Ç/R"2þ­2´#>CƒB0h%274&'"&46332674&+37#&''.#"+"&547;25'&#632+"'#"=46;>32ì4   6?H%X">Q  [ 8F!‘L4Q$>  þ* $K): 'W¡   M=8,(_&ý LC.l V-=1$* ÿÜ­Oá?23!;3267+"&=>;+"&/5#536=4&+"".547¦2=:ÿV #Ai:&-ò,13 !›;22þýS">9u,ô2 '! •E87>54'#".547>=4'#53.=473{$0/,!{,$ 0( 0 'S‹s8(.6 ¶'7(== *R 9D0tV@,% `#!2 l!/' &A2¥¥.%&'5#5!#67+.'2654'#Í&˜¥ç13 &M;.F(&@( Q >-.ž22•MH%=U?bd6 *LK/-/6¬J.7"'#5!#>7#"&5432}&9Jì&> #1&X¬=22þü D%85Rw,×.+#"&54636;2,]+ &(%H(E-%Y$42,$9/ }yv53#.+'2674&#+"&54>;2) CA 0(A# = 't" ( :6&7$ OV 3þ‚;P82 &0 @!- @"›Ý:.'5#5!#>7'&54Ð+C+':á .,@)— 7#%¦33p#*@=((;4%fb.*3273753#&/./7#"&54632#"'ûJ@]-Ÿ `gA !c8-a") &  ¨;/J8@2þj6G=H%&  ÿò$/.&+"+.54632%3#*;;!0(.WþÃøø$e$ )2K2ß2ðŽ(%'&'"'7654'""&5>327'&#"ÊrR 2+<  p5M&c#%/(: §!* 3^x%o +uâ.34&#"/.#'6?.'&'#5!!632#".'4622Ÿ+$ ,A%-9P âþž43_!P76=4&+5!#2654&'#t+","'<z&#g£,2¦ #,,+ %22 h0 8/qp. .'#5!#'.+#'67s30KAk>( pCb5 4ü<]&C 22þu=VA!þúWG,%þú!,ÕWÕÏÿòÈ~.+/.#"&#"&5462#".5463254632'!5~$-N-809+:>34!'-#þvV !  `%,0'" ><4?#4 22=p&&#"#"&'"&54>74/6;2>;2d67 !!-+*,- o *$S|m,0$2""#">%Sÿì*h. %32?4'72654&#"7#"&547#5!Š   '}_B+<8y|º %"2^G&1422ÿîH¼.!.".5#"&'7326=4+5!#'2654&+3b(=7<  4–Î0 .3% 4X*" &S 1D22 #(/:%  83p.14&'#5!#&/32654&#"#"&=>76oY´) l"C'‡ª*0C(S&  9ß22 "I* :.5“"h$-$.¤. 6%#"&54>72'"'5#5!#>7+.'32654'  5-š¤ä #'CN>1M* )C*1A7#"&4632¹> :Oì!> "g_%Cõ22ûD'*"$;vny. .2#"&546'.+"'67.'&'#5!#{' /X3v ¨b644> &yKü*-U)þÞ l=XA5.  22þúWG,%þú!,ÕWÕÏÿþ[c. !7.'"5467'675#5!#'.'N"j[3´54/&=467#53ÛT b0!(! &$‹öü`-²,'[+ L8-I/22ÿèÿòæ.U!!"'.'&#"#"&54732632'&'7#"&5>7>32#"&5463232654&þýF.C$(| )9*C0J  ":(2E?<H"e D),*.2•3þ¾; YJN<#9=5!  A, . ...M,,;&o#D%$ $ÿðÿ¶Š.AJ%25&/675!5!#2#"&546326=4&+"/�"1".547;6=H‹Eœ|þŒšôBy1#% X0/e%JCOT" jIj##+J4E‚ Us#'22&vU(4,$3Hþ$&=N)!   4#GL 5$ÿº‰G3#/&+""#".547325&/32>54'#"&54726?67¥VV"J " /B ]{865°S6>+B])30!>F(Z=d%2ý¾&,+))3&Dn!g +O"=- 4B#N +^õÿÿÿÖ N3#/&+###".54732.#"632'7674&#"#"&5>32/&5&=— V[$J /B `zg h9*5(2, :X  *!Q>£: c!2ýÚ&.+)&2';G_*6!2-AZ .2S½=*  ‹ÿïÿ®ô.F267#"'47#5!#/&#""##".547325.+"'>?67#"&µ- 6RfA­"$xL^!3# -> Xt54 l9B% +<Š 5 Njx,B22ý²'.,$,4&D2BD' ?ÿñÿsß.87>7&'"&5#5!!/&#".547;25® +dy+ 9‹îþÎ*,7a/B qFZA  cK&Vþ†Dq22   $:@þÇ%***,V<§Bÿóÿcç.U3265&'&/./.#"#".547;2725&/32654.'.=#5!!3632m CR/EQJV; "8H33 ' =Dš-o¨10%Zs(#)Hæþ” 9& ,Q2 E-2M"T:' - =*&!  1DHL\j#  2K&Ó22 Sÿñÿ}d..j%#"'2:32/&547&+"#"&'&#3>32.54732654&'#"&'47#5!!327./&#"&54Š :&G6J@!p.  8i6%L=þÛ$ dN&K " .DIÕsþç$/";0KP#"#:HZÓ &. 6 $(B::a9HB6+ I!#)\[4Œ4# N•' S+6K22 MVsNYˆ-QC#ÿñÿz÷V23!267#"&54632/&#"#"547325.5#5!754#"".5473$': Lþµ'q-1"25@¢Vr" )>,(.‰‰b6-B % '& » /& 2þ±k+# 454'.5473#/.#"&5473325#".547>54'#53Ð+A=#5/!$+5;Fа&B !„9Mˆ94 90 #-%5j ïÐT,@7gK0R42ç/o"<(3 )[$2,T= þÔ& L?,)X/";% „. '2ÿñÿw.L#"./5#5!!>7'.+"'#".547;25#".'32>54”R% Õ#þã%H*0#x3G" XV*:8/H5U0" #*?$(>RE Í22ÂE!]5@8þø.+-% 5$"ˆGbT$"E6@,+$ "ÿíÿp.=%25"'#5!!>7#"&54632/&#*#".547;6#D2A+,Ï1þÐ2P ) $) !,=ZZAIi& ;¹- Od22þ° X1$&//95þ²&HD&#  ,+ÿñÿòþ.48'.'&#"#"&54732632.'632"&'>%!!k4 $o%:H+<(8b1 0J *1&$09/þ— ýóç.þX; ZHO;/ O6M2(Wn3$("6-+<$2>-O8ü&8+&#&5!;Y2ÿþÿºê‹M3#/&#&#".547;25.+'232654&##"&54>32‚WT( s0E TR)45%GOC, #+?3+Q*"`#b,2ý¾&.+-%3$%@MhS7   (%7 N8$:( N2 ÿó.0'#5!!767'.#"#".=4737&54{=j Eoþ‘4^NU(,%*|,,!9.yR[dDJ22Ó,R@EmKR= !E1%- (MTDÿÿÿºÌ4A32?53#/&+""#"&547;225./7#"&'4632#"'FeN}6Î! }†Ta  J@NP! 1 5gH;~+3*10 ‘+H@]T&IB2ý¾%Q6(*5$4BCO^1( 0 ÿôÿÎ.6%25&'#"&54632!5!#/&#*#".547327%D 2r#*.(M:/]þkV0_9OKNe b;†Ž &':$5?bA 22ýÒ&9R&#  ,+ÿê.G%25#"&'#"&54632>54&#!5!#/&#*#".547327"D "X$!$0(#I  þ†2s!1=ZQJMf °;ÒS-.#,%(226'!þ·&=N$%  ,+ÿÈ#pH.#"272'53#/&#&#".547;:32&''764&#""&54>;4Q %!5'   DO+ x3G" ”NQ"'«G+ " +NÌ@9 Ï!/,~“ 2ýÌ&.+)) X6ÿVª.*  ,3$ÿ½ž.I".'#5!!72#"'46725674&#"'.#"&5473725.+'6?&¤*'žþ%@E{Vÿìÿû./32'.#".547;25"&546322676%!!n<  ‹;:# £3]2$,/#O*!%T þ‚/ýÑÈ3þ} "$G1:( y7ð"02'3&Lf2ÿñÿ…".DH%25#./32654'#"&54632767/&#*#".547;6!!"D&*[…- @8C*8NP>,?&1$BnB0^9VEMf% þå1ýÏ;~‹“[ Ot;"\2-!>:./$8#>4.'#5!#./&#"#"547327325.'#"&54>32¦BS9Š);;-G,]"G<­ ' ICAT A 3-'+*ü-vA9+]Æ+722ýÍ-•$! .#%7!64"* ÿñÿ·. <.#""'>7'.'#5!#.'&#"+.547;2ÑO2  ^Y0]:D3C . B4 \)W&yA7C '-2L$bü0C z~þO@FT-3 22ý»NS?! & ÿÎÿʇV3#/&+"""#".547;24&#"#"&'"&547'&+'32>?'5¸"CV$T  /B YU*79 EJ,-F!V  A2gK& !'  K 2ýÎ&-*-% 2';^ 22!-.;('2] =$‹uÿÅ+.E5&'".'#5!#./&##".547;25.#'76?67&#Ý= &+%&hKéY+[")*EH/B ' CD2ƒ? D& %0ü)#ŸÜ0-2_7  22ýÉ -#// #  #!> 'fX   ÿ¬.F>35#.#"/#5!#./&##"547;25.#""/727ì0 Ø$'* f")*@M ' CAŒ7%."0:$! |" ¤< %( 22ý°-#”*  #!=þ.2<3G& @ ÿð!ú.;F%250#"&'"&'732654+5!#/&#".54732?>54&+ D4T"< 3 ½ 9%8=ZQJMf l- x ,µ;ÚO)'7!2 E22.$#þ¶&=N#&  ,+ã!#-ÿ\Þ.I'./&##"547;25&/32674&#""&546765.'#5!#2|EBeq ")*EH ' @ ?Hc«”7?W<_*- 7'!P! Áê-1DB@ 0€D$t -#”""  ((Bˆ‡/<&4!;!%4 22 -ÿ´). 6&'%675!5!#./&##".547;25.'›'906T7{FþÖ˜’þe)]")*HE22 ' ?!?DV ‡EŠ @H)$3p¾k."22ý¸-#=*( (8AWÿE".<4.'"546;%675!5!#'.##".5473:325.'l3U/ Hi$]dwJþÖ—“þl"]-[(-A!.yK[ƒH" *2* "!b9¬H2q¾k."22ýI-01#! )<!¨>Vÿúÿ¬ž.s3275#""&'#4'#5!#632"&=4632654&#"/&#*+""".547325&'#"&546;2654&#""&546;2$R^ i2Z {/8*0!þÜ'H¤ß4[9%0% .5- 0B22PlDG$< )0) "$ ç@P“NE1*L/E"22PN8? $þ@& :(+'4#^W''1 &*+ÿÆL. #O%2?254&#3&546.#'6?5!5!#+#&'4632.#/./)(#E 0 Ph w `  þÓ+ @:M”þ×Lñ573##"&54672654&'3267"&54632".56?&+4/&/7675#5!654##"54732632b#/ùjÀ-Q" #7#',#$[ &'".vJ(4,N +]9ÚF1$ ”!-916@l !R/%Ö 2I;2 '8nFH12*(!G\(1#:(   > 2 X& -ÿD ô …>=73##"&5467265654'3267"&54632/&+###"5473225"56?&'#4/&/7675!5!654&+"#"5467;2î%.5¹jÀ.P$ #ZJ)%] ') !*$( ›Zx7#7z,*' +]9þéƒC(Ž !7T2,JQ(% þ2I6!38MŸ7&33$* 'þÛ&ˆ1"7#:œ s&9$   > 2 P+ 'ø.e!!2#"&547232654&#6"'&'4'32654'"&54632>54&##"&54632>øýPV84(12 .$ (RG¤o" 6;V,/>!%!)? 2%‡D4GC.2db N *! (#   "M4A>XDcM73%! ) " -)!?VJ' ÿðÿ½.KQ%2#".'32654&+#"&547'./675!5!#2#"&54626=4&#632'SB <)3^A' *A<,.;# @)5|[þêÉ:p! !#*?C H@?%1)âJ844 Nvb( Jf-> .*&( AY22XE( ;¾¼.Gÿtø. z5""0!!/&/767&/&/32654'#"&54632>54&##"&54632>?632#"&5467232654&#6)$ (þñøýà  ;,%&$#0.F3"(˜W/>-)!)?2%‡D4G *70:>--2 .$ ,<$Z2þ¡+¯(-  2TYÇ3%!"# "+-)!?VJ'!=.$F#(#   *ÿöÿ+þ. \b35#"#'67.'32654&+#"&547'./675!5!#2#"&54626=4&#6322'.   &)+O4*bw.;# @)5|[þôÉ:p! !#*?C BA M E:%0*v <"-[nO ï> .*&( AY22XE( !;¾J8b+¨7,FÿFø.Š!!#".'32654'"&54>7>54&#"#"&54632>?632#"&'472232654&#6/&#"###".547322øýŠ,&G54 $ " 6;V,/>! !%@2%‡D6A *70:D#(02.$ )$.02Xz7#.2þ% %4WAd+&DcM73%!   "(-)!?VH!=.,>9(#   *$Nð& 9)1"9#:ÿöÿpà.Z`%'&#"#.5473272>73254&#"632#"&5467./675#5!#2#"&546326=4.#2'+ %5J+; P 0 + !2'0$"?55{\ïêȯ )"=(!D/'AZ22[B:! ) ÇÈ0Hÿóþé.dl25#".'32654&+#"&547'./675!5!#2#"&546326=4&#6322'&/&/##"&547Él(&3^A' *bw.; " @)4z\þô Î=n%&!#@C B +0KL ! (!t:E!oD~Nvb( ï> .)') AY22[B8!<¾J8A,þö - BU" $ 0 #ÿúÿŸF. F74&#&/.'"#"&546325./675!5!#72#"&5463*Kh !#ÈY1 . %6B4!G;?#E„”þÐLë ;v1#)# ‘J.‰6Iþ 46  ')%2)L)8 Ug/'22&|Q(4'" ÿõÿˆ¢.E2#72#"&5463274&#/./675!5!#'.'"#".546*Ij+A!‚"7$Î ;v0!+&Y1 4Y5E„”þË­I(   2‘L.(*9+ï&|Q)3%% 6Iþq,,7/Ug/'22ýŒ+I  .ÿúÿµF.X74&#'.#".#"&54632#"&546326325./675!5!#72#"&'4632*Kh+A!ÈY1 #  .*  2,?# ';?#E„”þÐLë ;v2!$$‘J.(*‰6Iþ#+. %+    A)-,-71)8 Ug/'22&|Q*2)$ÿúž. Q"&'#323275#"&'#5!#632#"&'54632654&#"/&'"&546374&#""&54721^ {&|0!iR] »$H¤ß 2]=" & 8+!F6-&' "$3 iNE1uLE?@P322PK6/)  þ˜6f+!# 0. &*3 ÿðÿ~ž.f3275#"&'#7"/.##"546325&'#"&5463654&#"#"&5473254'#5!#632#"&54632654&$#&] i2Z {/8*0![#0%J3=N2$<#%*) "## 'R®ß:U,!%& 8Ý&P‚NE1*L/EÊþ $+7<%I$7QHW$*1 *&/ 22PU+'3  ÿúÿˆ.4l3275#"&'#2#632#"&4632654&#"64&'#5!#'.'"#".=/&'#"&546;654&#"#"&54732$#&] i2Z {/8*0!„"BÅ 0_-"# & 8+þ™ HJ&# !F,$$) "$# Ý&P‚NE1*L/EV'ïPI2'70  þ¦@w 22ýŒ0D#6f'.1 *'/ÿñÿÓƒ.?27#"&546324&'632#3267./7675!5!#'5.#"#"&'œ|Y‡)X& 4$:(ŒÈ+ ,#oF/DuWþ¯’R5;9:"CW&V R=B.4 þó 8ˆþ˜0!@LP&D22ý×.700?*ÿÜêIc%.#"632'767."#"&54632654&#"#"&54632&=&53#'32654.#"632V1C",;?:8'!N7   c4#;%'"C[9k '5 @*- & ¼ J +"4R"A4* .,W 37M6!!S3z  2ýö<=GV<  ÿü.?'5'&#"632'>54#"#"&54>325!!767'&54j>k C!A9  ,=?2M ' #4,6$! µþ4_MWA#+[iFEº 9  ,!0O#; Z3%8  Z2Ó,QAzrLJtcBÿ¾X>SX"'.+#'7'>54#"#"&54632'5;#7'&'54%2>7.#"6Ö  o= B%P %V= 7'!"'³ËO+,þ,<&< O>+îW?MI þà D^S*W 01T!$$ ˜‰/2´2M&aZ *¼™+"%-Ap º 0SÿC? ^3274&#764''./>3'&#'7'764&#"#"&54632'53#7'&'c Z<*RÈ0,.š_@+&c( M0&p*CPB%:/ K !Q8 :-0 š²O5.8e!/ Cw5TG7y)­ þH-<,=S*=3 */-Y%L5˜‰ 2´:%\Xk +ÿ¹ô‹K3#'&/.#"#".54632.#"632'6?654&#"#"&54>32'&=‡W[> $ C3&G e9,8%@:+ K &>) = a* 3ý¿ 7 %3/Ea)%' $$&A- *((/ ¾79'Šÿ††‹T%2#03#'.#"#"&547.'&#632'6?654&#"#"&54>32'&=£64téI  #& ,,*)6:+ K &>)Bp QEîþW) 3ýŒ'&  !-+)" *, $$&A- *((0 ML79'ŠÿÎôŒe>32'&=3#/.#"'&/&#"&5463632#"&54632>32.'&#7632'6?654&#"#"&U-¬= C[#  !(   *4+-, :-  0-[:+ K &¤:L¾79%‹ * 1ýÓ0    +   ';/?#&6B 6­!$v3ì^  < - - # Fl: BF#DŠ 5Wix+=22ý¥ !8 .", &>2BDH 5ÿñÿò.V654/3#".'#22#"546327&/#/.+'674'"#"&546?&'#5! ?EF>  -!1*8 ~+$P $l(3" V s0B~f9*",$/E-0S  & ? 97 0h",0 @þß-PLS'3) %) '22ÿöÿšR. u654'#".'##".'463254.+/&+"".5472;5/&+'674&'"#"&54746?.'#5!e  - 7M(J¢'-5 ~QKGS' (# >$3+,4I85 LCB~f&*#5 t\ü  ì4B!!> 0<`8!- * þ‡' <*-$1"*< FLS'$) ( 22ÿì¡.)6†4.''#26275#"3"&'3265#"&'#%47#5!#632#"&54632654&#"'.'"&5463654&#"#"&'2>54'#"&R <  ! ] þÔ2'$3l732654&#"./&#"'#"&'32747>54'#"&ÙR] þŽ&  4Û?R{07*.þó#+>GX4 47.*( %ý%«¡ß=R# " J "Bus'e}+++  ' '>ü @P’  ,#]61*L/ 7!>:,A%A+!#( 1 %)e2Q22PR-'3   þX-OÏ£`]%)%  *4ÿþ‰ )f"567?>54/#"'"&'3267'2?#/&/#"&'>54'#"&547#5*% '*&(> +8(2 (&80L<*=[< SV <¼ W3b€@-7 ,9%¶ ‰ / (   5Ñ-H4*-<- *_õ2þ!¡6L˧þí 0)8.BS2ÿø.h32654'#"&5?6?37'#5!#+"/#""3376?67/47"&=?376?4/"ð % ¨'f›--? "  +R2  .* ) ;%;()6   ü& ’ % )22 $S '#! 63:)&"FQE7>HX D27 E"74  ÿþÿþ .1D}&'#5##3>3547767"&'"&'326?267#"#"/3272654'#"&=>54?67#5!#/./O(  $ ;2 ('¨, 6S$(I­!$-[/pE  98'6+9 ¶ ^\1÷  k ! &  5- 5 O Lx+¤7K‡1>BT+ @;  8.#  22þ4,Jÿþÿ¦ .1J] &'#5##3>3547767"&'"&'32673335./7267#"!>54?67#5!#./&/#"&'./4?>54'#"&5O(  $ ;2 ('h,) g$(\4#, 6S$(I­!$þ× ¶ ^"4o3?#=+   70'3+9÷  k ! &  5w$; N"PÁ 5 O Lx+  22ýª- E0$1>BT+ :"  2# 8.ÿþÿý./?}27&5/&/#>724&/"'"&'326?>54?67#5!#/&/".'#"/3272654'#"&5ç  &H$  + *&2 ('oC   þ ¶X L  G!pE  98'6+9Ù   x !  /8   5Ÿ9 5%  &\r  22þ-P,    )‡1>BT+ @;  8.ÿˆ;.'h##"'67&#326=##".'32654'"'5&'7>325!#/&/&#&#"#'"/?>3&"5-  |E# ( >0;a/ )P3'6&6S$J8)I   "%S)>!'# ï ,5 ˜( þ¥ x”A9aI(*QQ14 02ýŒ-,  * 20e.'2_5#2636?>?65"'"'"&'26=/&'7#'.=#'.5#5!!h   ¦    Jê#p"^%ô‡> 5  '6eþ× ^ê   þË  CÇEv1 (Iþå¥V˜>Q%   ;(22   !! ÿ´¶.2{;6?65/&/335>?65"'"'"&'326%2&/&/;272>?654/#'&'#'.5#5!!;7;  . Ø  z J _%,(8-'96bt<)910%?* &u%(4  '3žþš2  " : þÆCÇ ÷>)-8"76'h& \  3OM#   ;(22 ÿ¶. +?–5;6?65/&/335>?65"'"'"&'326%2&//.#'76?&/&/;272>?654/#'&'#'.5#5!!;7=?  þù  . Ø  z J _%,(8-'96 M0+<((#3<)910%?* &u%(4  '3žþš'  –K  " : þÆCÇ ÷>)-8"76'ì &/< - \  3OM#   ;(22 ÿ_¶.2©;6?65/&/335>?65"'"'"&'326%2'&'./&/#&#.'&=46?32225&/&/;272>?654/#'&'#'.5#5!!;7;  . Ø  z J _%,(8-'96 "4o/' gDC@<)910%?* &u%(4  '3žþš2  " : þÆCÇ ÷>)-8"76' z-  #>"  E/ \  3OM#   ;(22 ÿ¶ù0,v–©732?32'&#"232"&'#"/&'"&=47'#'3#6?6;7>32#"&/'./""#%2654/".5463263654&#"%32?6565'&/&/+3v "9#  0 !#  > f;G &3Ø0€$" % 41#  P%H' #*f #  iô! " %%i[ýè   ù': )K#'$ #  ¼VFá20* *.&   l 65H.4,:!IÌ11 # O  " +f*V   ÿÿÿK .W726?6?6=/&/&'#'.5#5!!./&+"01+"&546?632x1  "$-‰62 .H¡þ×^  ,/ $-!#H7 /þ¹3Fn22  !  @ þ¸ !V/!, Iÿé.%˜"&'32?22?65254'#"&54?%47#5!!&#"327?6323'&/&5'&54?"/&'326;2+'&/&'#"/./37>54&##"&^f!$' * N) 8 !)7 þì3Ÿýù *+ %/ *16! 54&##"&547#5!!&#"327?6323O" $éf!$' * N) 8 !)7 xN %%& ! +9! (<$ A7 !(3/$$(   *$1":3Ÿýù *+ %/ *16! X<ÙE"& .+-(C3 6,! 5`T.  -  )#HJ&%# % 6I !4#%B<)_&%4'  4;@,22   5  ÿDi. 8%57467'"&/&'326?5'465%467#5!!";267/&//&/&#'2?'./532654/#'.4< %  a %#N %.' ,)   þÄ-½iþý7%9 L*   (:@(L ! /? - >Y#  ³„ P4 & )*„ U‚£'P33 ' OM1&  © ¯%F ?$ C*Ia(-#* $ /?ÿýY¨.$~$274'#"&54>32654&#"'32?/&'467#5!!32?6?6?2#'./#"/&/2654'4#"#"'"/&×l4"`Õ(% 6.3Ë«þŠ N  15! 1 ,R>%  !(L *' Œ3 X3}?+& *-+[22   1 ' 7 7.&I'8ž8.A6&"ÿú`` Z75%4'"32654'#"5463276#"'/./?.#"2#"/&/463256?632‘) "?0_[(/!0$&8(n;\&9;]Œ+ 5 !  ]A(O /9<*2'+÷ !%åF( R0(p#8, µ.9±þÐ:$: a@N" % %#(G5"œ9š"?D4A$ÿ<D-™765'64/%26=4'#"&57>3267'&#"'#"./463?6?2'.'./&/25&/"&'54?6?654&"˜P }5  &Fòm7>((' @4S ( 2. , _)9.!G€;+.®+*3OV0"*C  Ä ! O b %    V„ 3MC)A#  ?R53(#(  "  H$,,)f_  5E#0   !ÿÎ'*+¯2654/&#""#".54632654/"'&/5?"/&'3267#"&/;265'4.'"&54?65654'""&546323?6?32722µ%"  "" #‡Z  (2$($ #GL\ HI  #)  &!Z6(%3 '   $  F>\-/4)5 & 28 9(7nKS8W$92-!  1&4+ , -]&% )2}4I 7"&/74/&'"/46?67226?'4/&/2?6?/&/'./?654/&'""672"/&5&546?256?6?22šr*'ÀD $"/A &    "    *  ,""Š3;4vn        R"$/[4 &", é22/è-I"¬      <8  ÚS ) v j,`H>F  "   /=C=– f  ÿãÒi23!32?6?6?'.5467"&/&532654'#"&/&=#5!7654/#"&5463732ò '. _þÃ% ! Y^a  !23(R&$9 g< &> 1-N . ""1)&  !23'S,9 «€ &>¶ šB )_& ÆIj C[-.-)1 !%!"²U9#8A3T q8C1 !%Â7 EP$Í2Vc79&‹ -2þ-!+"+++$4."%]?K0>K9’"#:;!<}.!a#"'4'5!32?326?674%#"/5#5!!2?+'&/#'./&/326?4&a$,þÄ % '%5#$Cþy_'+É}þê"J#&XHG:. Y,":#   B7K RPCć. 6`"&/& "LO@22¤K a#Rn ZT8"7 !-/:6.,1%A (ÿˆx.U26?7322#"/5#5!#/&/&#&#"#'"/?67#"/&/32675&÷B 0_ #  k_& ÆxI    %$9U9#8A3T üÂ7 ?E|/ ïªP$Í22ýŒ-.  * ]?K0>K9’"#:;!J|d&#"7'4632#.=>;25!74+"#".546?723!3267"&57632#"&/ÿ!A&  %&(5 #0$ /)DO -B   ¦?QLþ³&'e%4"2S3 2 »- 0&5,) $4 ,,2' '    G52þ±$f038.%<U8 ÿ~|’72;25#"&/5&#"7'4632#.=>;25!74+"#".546?723!3267"&57632/&+###".=4674?363Û*7# 2 !A&  %&(5 #0$ /)DO -B   ¦?QLþ³&'e%4"2 "n  024/:‚ 8 ú- 0&5,) $4 ,,2' '    G52þ±$f038.%<û& :)8  'W|&'2>?653#+"&5&54>?6?6?/74/&'"7'4632#'.546?2765'4&'4/&/&5467–- 6 5#£$)ͧ " 2@+,a+/ 4 )   %&#*@%%)5  C !5#&K92&" "%2% Ç1L02/2z+(6J T$    0&5C9N Y/$‚")5Eª4^46;37#".'&573265"'#"&5463263654&''54&#"3274;#".W;*$,1  ?07[<2 /^_%,+  45( %&C! ²,V$P3+7C$01Jn`; ª‹! &  4 O!,# !6$A .^46;25!!;26?#"&/&/./&';2?6?>=&5&'#".#&/&5'*.  XþØ  6%.0\6r   91LZA&   ,!0%  % ¬5™2®&4$m$U2F ( F/ e37L5  1  # % @L@  ÿsª4}%25#".'&573265"'#"&5463263654&''54&#"3274;#".546;37/&#*1".547327>7[<2 /^_%,+  45( %&C! ;*$,1  0i%LDG` <~1Jn`; ª‹! &  4 O!,# !6$A,V$P3+7Cö'?O,.+ÿF /Š2;25#"&/&/./&';2?6?>=&5&'#".#&/&=46;25!!;26?/&+"###".5474?327*6$(6r   91LZA&   ,!0%  % '*.  XþØ  6%. $T  /A 4/%:„F ( F/ e37L5  1  # % @L@   5š2¯&4$m$U ð&-* 8 ÿ[I­.B.#"7'4632#.=>;25!!26?"&57>32"'J98  %&(5 #0$ 5'cþÍ] $ $H;*+-µ/ 0&5,) $4 002þ° Q##  6Bl$Pÿ´Íd7"&546?2'&547'3#'54/./"'432+".54>?254&/"/4632#”5HE2%    D[7 8!/,/'&" $-4&%  C,'5%0&ùZD>L   2= †2ý¸8K .5 #" 8' *"Ù9V 9* '-ÿˆO X32"&546?2'&=7'3#/&/&#&#"#'"/?674&/"/4632#r#  þ¾5HE2%    ÆI    % C,'5%0&üþU ïþýZD>L   2KH 22ýŒ-0 *9V 9* '- .TX4632#"/&/&/&/326?4/"&54>7>54&#"#"&!!–zQ4G+:"# 4" ""!<8+: !! %  +– ýöQ3bJ'I:2 5$B4 'lC+0&!4+   "  $2ÿf . n25#2!!/&/&/>7&/&/&/&/326?4/"&54>7>54&#"#"&54632E  ! þÑ ýöà  "%&-= 4" ""!<8+: !! %  +zQ4G@<h2þ¡"1½-( 5$B4 'lC+0&!4+   "  $&3bJ'Iÿå}P#"/7>?27;#/&/&/./2?6?654/'74&'"’&0  ( $ =0$ 63  >:FS36,!% R"% + 8"†6!")B.".36# #5"4ýë3%$ p  ( A.  ÿýÿe=.h!!.#'.+"0+"&546325#"/&/&/&/&'2>=4/.#""/4?63@ýÀK4 $.D2&F &$$ ' 0.' F9"  + 2=!3x+' j A "(  % 8 O!qÿýÿˆ¬.Hq$2>=4/.#""/4?63#"/&/&/&/&'5!#/&/&#&#"#'"/?6;22F9"  + 2=!3x+' j A Y22ýŒ-.  *) ïÿïÿˆ‘.E2!5!#'.'#"&546324'#".'32654.#"#"&54>C3F0) <ýæ¢XY 3.#H(,P6/ 0YwN !*'ÛTDJ+?D  , 22ýŒ (?5"+) ,3F]@Ï13 32+ÿýÿT=.|!!/&#"/&+"2&5463632#"&5463246;25#"/&/&/&/&'2>=4/.#""/4?63@ýÀ=# (   2,2&4! &$$ ' 0.' F9"  + 2=!3x+' j A "(  % 8 O!qÿó4’ a>?6?!'#5!'&=3#'./&/&#?'>54&"/&/54iEB%& þùÖAmC3ôH4" C[-   *2 .:RB # ) =/ ¡kBE24"S7:%‹ ,2ý÷-)*) **"."AX&F*#5  3'%<*&ÿü. (S767#"'0>754?#267#"'#5!#/.//&/54}% þâQR2 ìf- 6H$(F­!$}AmC3^\0=# 0'! H5 r 5 B$ H"x+/kBE22þ4/G>#5  3'%<*&ÿñ<.?76?6?67'.54754747'&/47'#5!!YC(G ,,$L%&' D , "/( <'<þ?6vC1& ” >> #  "    $J$.(Eo*N*TXþ.  'ª1  ² N $#!-@|D"&" > þ (0$ .2G +,@®44Œ  ÿãÿ”ô.5/&#+"&546326='47'#5!!>? @-S#-08*AmCPþuCC%&~f °$6v&!($7 œ93kBE22Ó ;0ÿòÿÝQ*`2;?/&54?'5#5!!?6?+"'"&/&/;26?5'+'.546?2# #   "*,Ä_þ›B&L /*+)."/`!!  k›#R  "&60      + 0 44|09(2 B:>=PD"306=´,-þÚ(1#!- $+"!ÿòÿ¤×*X2/&/#'.=656?6?325"/&5474?63227&547'5#5!!7676Z % 'W +  - I%)#+'   %!" ):,våþÇ= #L0 )þ¿ "- %2 ´!# +   ,"9*'*0 44|, 9?C ÿòÿQ*ˆ2;25+"'"&/&/;26?5'+'.546?22;?/&54?'5#5!!?6?/&+""#".5474?363â+ 7#@ /`!!  k›#R  "&60  #   "*,Ä_þ›B&L /*?"n /A 4/ X:ˆD"306=´,-þÚ(1#!- $+"!    + 0 44|09(2 B:>e6ü&,* : ÿˆf.F%6;22!>?''#5!#/&/&#&#"#'"/?67&/54b +þ|CC%&W AmC3fI      l  +ïÓ ;0A5F*#5ákBE22ýŒ-0   /<*&'ÿ¡Ì4P'32?53#/.+"0+"&546325'./7"/474632#"'"/1(&WAµ! }†T 3 -D2L,<:;~C+/ y!+d N&IB2ý¥ !"4 0 &1E;!-O^. / 'ÿˆX4Q73232?5!#/&/&#&#"#'"/?67.'&/7"/474632#"'"/1(&WAK2þ™! }I    !`"<;~C+/ y!+d uþU ï'&IB2ýŒ-.  * UO^. / J¦]23!3267"&57632#"&/5.+"1#"&546325!5!74+"#".546?Ê?QLþ³&'e%4"2S3 2 %1&0(3- þ×)DO -B   »G52þ±$f038.%<U8 y% 0+*1- Š22' &   ÿ…¦‰%2;25#"&/5.+"1#"&546325!5!74+"#".546?723!3267"&57632/&+""##".5474?327*6$ 2 %1&0(3- þ×)DO -B   ¦?QLþ³&'e%4"2 $$T /A 4/:‡8 y% 0+*1- Š22' &    G52þ±$f038.1'!þý&-* 8 ÿý'ÕWp.'2?6?653#+"&5&54>57>=&/&/#"&54632>5'4'!53/&5467r)6  /& f; ´’    F4+\&%   "&7); " þýô!&M'C)* "!&' -( 20 /&*6!")L2#6"*!&03  G&2',#)()ÿþ8;.W"&576325!5!!32?#"./&/.'2?4'#"/&/&/   2  þþ=þö +  kW?T'  '  )A*L+X * B 9 ’22º C/!&Yo=.K>9#8G 21.I:    ÿþÿu;.„72;25#"./&/.'2?4'#"/&/&/"&576325!5!!32?/&+"""#".5474?3327Ñ*6$'7?T'  '  )A*L+X *   2  þþ=þö +  7$T  /A 4/ :~=.K>9#8G 21.I:     9 ’22º C/!&V=ø&,* 7 Iƒ.:46325!5!!26?"&57>32"'5'&+"1#"&F0(3- þàƒþÍ`$  $ G<*+--+1&q*1- ~22þ° T # ' @n$P­ : 0+D.[#"'"&/&'3264/##"&/46?&=&/&'#"&54632>5654.#!5!#±(*'  *: ,(  -**D@3)(  )&*2&*g þ”D”!V@9$=&cen +722L>% "+ '#(#,@ 226')ÿqD.n25#27/././>7"'"&/&'3264/##"&/46?&=&/&'#"&54632>5654.#!5!#N% !½3 %%&'" *{< ,(  -**D@3)(  )&*2&*g þ”D”! (*0<ú8L Ê -`hn +722L>% "+ '#(#,@ 226') @ÿÕ'.c/&#""&/&=74?72?254&#"72"&/4?'&'#"&54632>54.#!5!!@3N  A*6 )# 1  &  /!)0(*kþÅ'ü6'"þš =%"   E  !Ò )0 ".  ")#,A 22ÿ]D.c25#".'2654&+#"&5467.##.=654632654'!5!#/.#".547327KE/(5cC< (21M*8L$$3#+*M# 2&FT4.þ”D” R# =ZPKPb ;€AWtF 3!J,'E&/%-#;2.#,T2-22&72$g@+þý& =N(!*-ÿVó.Z6;7&/&'7&/&/&/326=4'7'&#"#"&547"54632>54.#!5!#²$'/à=O $"O/BB; , W28v&T  @!$F0(*kþÅòs!O 33 <7K(B.-B("  w&<% ':"K#,A 226' ÿüØ.A46325!5!!>?/&/547'5'&+"1#"&F0(3- þéØþu FI"&W# BmC "*1&q*1- u22Ó<5A5F*#5 3'%<*&EkAEu * 0+ÿéx.C%'%46325!5!!7>32/&/&#'?'&'"'5'&+"1#"&Æ! þ90(3- þéxþÓ[; #7[7'$-70 "*1&· „’*1- u22¢$7T þ$  ?'"/&#"#"/&/57?3'&/47'5.+"1#"&F0(3- þ×Îþ‘ FI"&U8 )z@ !  K 4- A! .E1&r*1- ‰33Ó<5@¢)8, ,9  $=MG!15JR  0+ÿè2.D7/46325!5!#?6372/&'5/.#'?.#"#"&°Cø6*&Qþá2â  & $  U:0@`< +Ñ7¡f,52"Š22‹ ~wI ú þÂ0@@,33  ÿt2. V25#22'/46325!5!#?6372/&'5./67'.#'?.#"#"&  ! ACø6*&Qþá2â  & $ !(%&QK U:0@`< +2<þ7¡f,52"Š22‹ ~wI ú þN-H @@,33  ÿ¡[.r7'2;25.#'?.#"#"&546325!5!#?6372/&'5/&+"""#".5474?3327ÙC˜%  A50@`< +6*'Pþ¸[â  & $ G  (7 ,(Ñ7¡á  ;&0 @,33  !,51#Š22‹ ~w/9 ú þ{%,* 7 ÿôÿÞ.C746;25&/.##"&/46;35!5!#/&/.##"'E4  &aP'"))G2  %'þ«êb P(& F€2A~¨ 4E" "&4? %= »22ý”*'2E+>ÿôÿˆX.C3246;3!5!#/&/&#&#"#'"/?6;.##'&'{2þ

3253#/&/./&/&5372654/".57463'&/'6?'&,  <Y-  Y$J[-E4:$*# /" $1)9&7(ŒA Ù'?^Ù 2ÀB!:D%2{6)7  2() ) 3#„  ÿÖ#p V'&#"27&&#'&+"0+"&546325&5./'764&#"#"&54?>32'53#/O"> vœ*1 $.D2$F! «G+   ,A)*I,  DOØ @M uþ!V/!&1)ÖEª.* ,$4. ~“  2ÿîy<GU`3#'54/'7654&#"54?>?654&#"#"&54?>32'&=254&//""27&/&#"27&¹ DQ2±6+  D-%    ,A)A} µ);" 7  8H vO"> v`2ýò)c ·.' /  ,E6d{þÏ/.Š'1w  M uð @M uÿˆ¹p d'&#"27&7332"&54?>32'53#/&/&#&#"#'"/?6727675&5./'764&#"/O"> vœ#  þ  ,A)*I,  ÚI     ! «G+ Ø @M u*þV ïŒ,$4. ~“  2ýŒ-0   ÞEª.* ÿÅ#p m'&#"27&"&54?>32'53#/.#"'.+"&546732#"./&54632>;25&5./'764&#"/O"> vò  ,A)*I,  DO# # ' %!, +-&! «G+ Ø @M ub,$4. ~“  2ýÉ0 + $#  A$7çEª.*  ÿû/. ;h27'&/"%76?2'4632'&/#"'7654'""&%.#"/#5!#'5/&#""/&/72?&‚!&c#"/6-ýˆnH'O 2+ < à '* f0  !(.  !  Aƒ,o-d 6  4¤’ r.#:  §!* '  22ýÿ9Ø #:A&%  Wÿâ„k"&'5.#'6?.'&'#5!74+"#".'473723!563#".'4?2067.#">7#"&546;2c: Z0-9P úD@2 *2$% 5¦@PYýü43_i @J'  +#0Q!+)rS,‹)2G. 22 /2   H42"FO*:ýG6$  þ– J*!B=tÿ r.s232?4&/"/.#"&/&+"2&546732#"&5463246;25&/&#'?'&/&/#5!!6;2#".'47æ  ?$  '  $2,1'& #"4H:._" rþ5H={,5" 0;(/%$H ,þ0   +  $C';   .2%S1M 22 & ™C `&+#FQ'.jaÜ=þÏ) 6 S    œžMkC1/OD,22×- ,=$()*V& "9*66ÿ=. ^'/.#'?5#5!!76?67./&/#"&/&54?3337/&5'4º"Ë%Y>Q'.jaÜ=þÏ) 6 S   "4o5' 1g   œžMkC1/OD,22×- ,=$()*V.#ˆ- #= " *  6"9*66ÿ¾L. J%577%>75!5!#72/54&/"/&/&'#'7/#%(6, &?)-þÙK‚ZþºLÕO  , A  ;B!BSã% ¾75<)22´!‘ S ¼ þà %ES2 ÿîÿ®Î./4725./675!5!##/./.+"+"&546ÁI6!uT@—“þ®à\ %  &.C²]dwJjI-:Y[k."22ý²     .#%1 H2qÿöÿ’(.9767#"./32654'#"&'5467&/7675!5!#"2!2%23b[I;mL>! Si,A;+8.:`14UPþÔ2Ô‘.%s.3SOa8QcK˜u09!;7%"RF$822þÈ ÿýÿ Î.O>;25'&/.#'?675!5!#/.#"&/&+"&546732#"&54632ÑRK*" >  !+0#@;25##"&'&/2?4&"ýÞªB#+GH " B:6  #  ( %2,-+&'Dd< 9.0"[+.2†&225;#>2F,0/ þ÷0  +   $C'B#C  *: ,(2J%**D@3(*0*#0­:t.Lˆ$0 0cY1 cen heL>%+!. 4  ,22ÿýÿû ‹m0672654&'#%3#'./7>54&#""'+"/+#"&54727256=4&+5!637632Q Z£ %ÄWT>n+0O&HC- /   *(&*'0<z 16+Q-  R ü ˆ0Lî,2ýÿX4;h!>"  #%4 -2%K;4$  P ÿýÿü. P2654&'#'4&+5!!>?/&/547'5+"/+#"&547272565 £ %’<þu BD&'W# AmC(&*'0t0LI-22Ó ;2A5F*#5   43'%<*&EkBE_#%4 ÿý&£. W2654&'#.#'.+"0+"&546325#"/+#"&54727256=4&+5!# £ %`5 .D2&F&(&*'0<¦R" t0Lþ²!,* /!&1,—#%4 -22$0 *ÿñÿ§ù.BL74>325.'#"&54>324.'&/#5!##&/&/&+*#"01+"&w+" G8;'0-%$ -6A  #]   " $- ?U9 %JH&6,4#$ ,:22ý«   %/+wA9+\ÿýÿúDp _'&#"27&2654&'#7632'53#'&/'764&#"+"/+#"&54727256=4&+5!#PO"> vþ´£ %r3f*I,  DO0  «G+  @(&*'0<z& Ø @M u^0LkG$4. ~“  2ýþ-ÿ` ª.* C#%4 -22ÿÈDp '&#"27&2754754&'#4&#"+"/+#"&54727256=4&+5!#632'53#/&+"""#".5474?332732;2&/'7PO"> vþ·$ £ %ÑA)&*#0<z& 6b*I,  DO$T  /A 4/, 0  «G+Ø @M u` .L6*F#% 4 -22F$4. ~“  1ýÌ&,* 7 ÿ` ª.ÿÅJp š'&#"27&2654&'#+"/+#"&54727256=4.+5!#632'53#/.#"./&+"&546732#"./&54632>;25&5./'764&#"VO"# vþ²£ %v.&)&*#0<z&8cv@  DO# *  *3%&! «G+ Ø @" u_.L-#% 3  22Iƒ ~“  2ýÊ0  #+" $  :%7çEª.* ÿýq. r254/#'4&+5!!6;2#"&'4?232?4&/"/.#'?'&/"&'"'+"/+#"&547272565 3¤ %’<tþ5 &={,6!0;(/%$ ? ":T0:._" 0!(&*'0t<&LI-22 Kg &9X"F/(0(#  ,þx,:#S1M  **#%4 ÿ½‚/ Œ2654'#7+"/+#"&547263656=4.+5!!72#"&'4?232?4&/'./#".54??25'&#'?'&/"&'"'¶ %}20)&*'0 <‚þ%H={$-,)k[0$$! %#?O(9  !FSy:._"u0 '%G#%3  2354'#"/&/4747467#"/"&54?636=&/&+5!#+"'»<µ *&72.4cQ_U& 164SZE!'+ 5!6" f€Ø$> 1.   " µ1;Q;RdI9-6#_>&"1*1  5 "!  22 ,   *  ÿ¨Í.[m/&/#'.=46?325"&=6?632267&/+".54?654&+5!#'2654&+L&  V + - I%)$() &.  $K :0&1 JÍc" 4 « 2)!þ¿ !.5%2 ´!"/$  =!(%*/'22$6 * @%#: #ÿ7€.ˆ %2672/&#*#".547327325#"/&/&/2>54'#"/&/4747467#"/"&54?636=&/&+5!#+"'74&+32?6„2.49,=ZOLNd "D )_U& 164SZE!'+ 5!6" f€Ø$> R<µ *&Ò1;Q;X3ð&:Q(! ,+;y I9-6#_>&"1*1  5 "!  22 ,   *  Ë1.   " ÿýÿ¥F. #]2654&'#7#4'#"/+#"&54727256=4&+5!#/./"/4?672 £ %}  m">&(&*'0<IX -,, 9t0L4  % &´$0²0#%4 -22ý©-+4 ÿý3³.cp%25+"/+#"&54727256=4&+5!#/.#"./&+"&5463632#"&5463246372654&'#ÿ  (&*'0<¶b"# *  2,1'4!£ %ä|#%4 -22$0þØ0  +    B(;? 0Lÿñÿšù.Xb%25.'#"&54>324.'&/#5!#/&/&#"./&+"3&546732#"&546324639 ;'0-%$ -6A  #]%     (+2,,%²?U9KR&6,4#$ ,:22ýž0    %<.A%±+wA9+\ÿû6.k76?2'2654&'#7+"/+#"&54727256=4.+5!#'5/&#""/&/72?/.+"'Ç-þq£ %}20)&*(0<6f0 F   !  A 'ü 6  4¤ˆ.LH#%4  22ýÿ9Ø #b&%  W ÿš6.“76?2'2654&'#2;2/&#""/&/72?/.+"'+"/+#"&54727256=4.+5!#/&+""##".5474?327Ç-þq£ %ì*0 F   !  A '20)&*(0<6f$T /B 4/ü 6  4¤ˆ.Lþ» #b&%  W H#%4  22ýž&-) 8 ÿùÿëY. m%5'246725!5!#32#"/46?274&#/&#'?4&'#"'4&#"&5432#&/&574>748 Àþœ`Ê  E* G¥1fj #%N  /4 $(  û+  $¬Æ  ˆ33±Q<6 %2þÞ'^HI7 ) .!  *.   ÿòÿí2Œj26?!5!>32/&=3#'.'.#?'>54&#"+.'&+.#"&5462#"&546326.þŠ$W8" W[- ! / *1 +!:S K   7()#80:)N?2/%!  2) 8"S77‹ * 2ýñ-) %*($4."AY*+ 7)1 0'#P?4? #;Jn25!5!74+"#".546?723!3267"&57632#"&/5.+."&5462#"&546326<+þvŠDO-B   ¦@PLþ³&%h%4"2Q5 3  ! 7R#80#! )N@15!  k22( '    H42þ±$f039-&<U8 ™ + 5+1 0&  Q>4?#;ÿwœ%2;25#"&/5.+."&5462#"&546326325!5!74+"#".546?723!3267"&57632/&+"""#".5474?363]+ 6$  3  ! 7R#80#! )N@15! -+þvŠDO-B   ¦@PLþ³&%h%4"2 $T  /A 4/ :…8 ™ + 5+1 0&  Q>4?#; k22( '    H42þ±$f039-&<û&,* 9 ÿþ8~.x#&/&574>?246?25!5!#32?#"&/54?2?4'#"&57'654&'#"'&/&+"&5432Ä $0    !þ¦€ø +  kW7p D*L+V# !   3 /45    " .{22º C/#$YoG7)  %1.F /  & $*ÿþÿf~.¡2;25#"&/54?2?4'#"&57'654&'#"'&/&+"&5432#&/&574>?246?25!5!#32?/&+"#".5474?363*7# /7p D*L+V# !   3 /4 $0    !þ¦€ø +  '"n /A 4/:† G7)  %1.F /  & $*.    " .{22º C/#$1Vú&,* 9 ÿßG/y632767325!5!##"'"&/././.'3264/##"&/467>3735&#"'&/"&'4632#"/.5t Y4   þBGY 5B -j$   (  ;7**D@3&( &# +:/ ,$p`&  t33þû%8O!T#5 #  (d)L>%"+   A<**%$1ÿüD.Q6325!5!!>?6?/&/547'5&+."&5462#"&54632 - þ}DþuJ$'W#AmC 7R#80#! )N@15‡;`22ÓB A5F*#5 !?3($<*&EkBE„+ 5+1 0&  Q>4?ÿÝ/ s%46725!5!#7632/754#"./6?6754&#'./"&54632#"/.57>32€ &,“, þ`    +79" )! 1  % )&(9?"$ Å!  l)'‡33þö +J0$  ^ë  /&(F,3"$ &" + C7!1;ÿòÿúJp Z'&#"27&'!5.+.#"&5462#"&5463263262'53#'&5./'764&#VO"# vâþvŒ*  7()#80:)N?2/%! ->ì@  DO0! «G+ /Ø @" u\22Ø+ 7)1 0'#P?4? #; mƒ ~“  2ýþ-ÿEª.*ÿòO.i6327'&/&/!5!!6;2#"&'4?232?4&/"/.#'?&+.#"&5462#"&54632ø -  5" þø]þ5H={,6!0;(/%$ ? ":U0:. 7()#80:)N?2/%‡;  + 22754&#".'"&54632#".5>32Ó'9fÈ,$þa²I *) )/ 7&%?)&+.#ERDïo+"2‡32ýŒ 2-$ <ö, 4##**S+ :',< ÿÒ/u25!5!#/.#"'&/"&'4632#"/.=632767325'&/&+/&'"/"&54632+/&57>3246*8þzY % +:/  %" Y5  0 !&"AMF($ ,É4€33ýú #**% : `& BÎ  > 5 0' 7 -P3;)ÿÎÿª‡~4&#"#"/"/4?67/&+'32>?2'5#+"/./&'32>54./##"&/4636732‘D % /# &'  A2g#  1  MS*%J3  -I 4 >>**$8 4!$8  gZ  # !"  .* 1 E'#‹u   2þ¿*>75 H: 2 ‡2&H%! ! %"%6 0¸0 R%26=/&'76325!!#'.5&#""#"/#"&54?4/¤#p".-þ¬+&)0 Yþ×^‡> 517 !!&0,- sv1 /þåµ'0 J2   !! V˜>c'5"+"ÿ´ 0t;6?65/&/2&/&/;2726?654/#'.='&+""#"/#"&54?4/376325!!;7‘  . ³%,(8-'46bt<)910%+J1 &u%' // !!&0,- :+&?”þš >2  "   >)-8"46'h& \+, 3O"qP'5"+"'%+N2 ÿÎÿ½‡f.#'.+"0#"&546324&#"#"/#"&/46?67/&+'32>?2'53#Ç5 '$D2#BD % +#  1  A2g#  1 CVC!,* 8&1''Z  #"   * 2 E'#‹u  2ÿÎÿˆ¬‡ m3324&#"#"/#"&/46?67/&+'32>?2'53#/&/&#&#"#'"/?67Ç  ¢D % +#  1  A2g#  1 ÒI    !üþV ï•Z  #"   * 2 E'#‹u  2ýŒ-.  * ÿÎÿ؇…4&#"#"/#"&/46?67/&+'32>?2'53#/.#"./&+"&5463632#"./&5463246;2‘D % +#  1  A2g#  1 CV#  *  "!1'4! gZ  #"   * 2 E'#‹u  2ýÜ0   +"    ;?ÿê . ",\2654/&'"#"32?654/&7#"&/46?274&#/.#'?'&547#5!#   '    Be8! B É*G cO016,8Š   N$  2‹+=W6  $3þ¼/-GG%$ !81422 &,ÿãÿÕ¬.!«2>54/&'""32?654/&#7>;2+"/&'4>72326=4&'#/&#""&/&=74?72?254&#"72"&/4>7#"'".547#5!!3  '" B´ (      2 (%$@3N  A*6 )#D' ()8¤Éþ›      2F         ( !þ­ =%#   E  !Ò&S "4'4122 ÿæM½ …2654/7>54/"3723#3?>5.5467#'"&547474?'#"/.=76?#5!656574&/#".547¶$H z( %#ê f=?Sk   š+ !H 4-'+5)   8  T(%9 K [  #;&+,s (2|" ' !!   .$ / & &2% *ÿp °>54/"2654/2;25#'"&5474?'#"/&=76?67#5!67574&/#".54673723#3?>5.5467/&+###"&'&5474?327R( %# B%H *6#-'+5>   Ä| T)%9   f=@Sk  ¯  !H  #l  G%4.†&+,R [  #þ¹:­ .$!8) % 2% '  (2 Œ & #!  þÜ%%? 8 $ôN -c7265'4''2?65&7#6?'43##'.'&=?&/&'465'&+53/&567Ü1f.8=6   ‰ 0!" #2Ĩ D8.$J 69ú(#(TwMDBWc&!%6     œ ("'&J##22<2'F4!.#$6#  -:  X 22<>D+%w/:o5'&'?46327654&+"";2654/&'#.72#"&'/.#&+'?/#".'4.'#5!#>—8)(# /'/‹!  (0SU!&#  1*5  7#'W{3 D|&µ+ Yü'$%Ÿ± 1!ž( !o!c,  Ø?/ $  5)V%þú4(^Xk  33ZPÿìÿú p%0k0672654/&'""32?654/&#%'&#"27&47#5!632'53#'&5./'764&#"#"'#"'".% _   '" BO"= vþ8y|&8v@  DO0! «G+ 6()ü _   2 @M u;142ƒ ~“  2ýþ-ÿEª.* &4ÿÈp$/“072654/&'""32?654/&#%'&#"27&"#"'#"'".547#5!632'53#/&+"""#".5474?332732;2&/'764&9 [   '"  BŒO"= v²6()8y|)2*I,  DO$T  /A 4/*0  «G+ û_ # 2 @M uO &4'142$4. ~“  2ýÍ&,* 8 ÿ` ª.*ÿìJ. n2654/&'""32?654/&#47#5!!6;2#"&'4?232?4&/"/.#'?'&/&'#"'".é   '" B[8y^þ5H={,6! 0;(0$$? %9U/:._"  #()   2$1422?2732/&5472326?'4&//.#"#'".5474?32?24'672"54>7"/.5#"/&5732654'#5!o% 5(N  " :,  #-    1#5..B! -%#$K9 !(  3`$/  0 µmš#"Ac-  6R:)   )$  $ þÝ+"  58 &5#4D   3 , f," < !#D22ÿ¶Ž‰ e3?654#'&/./37>54&'#"&5432?.5#"/&5732654+5!ö)+ !< %(:@ SV  `;PL$%< (   $!0/&6K  $ 0 –ãü;  $-% (/& +$_2ýº 7+Q ' ! "3$Y !#D22M ‡3?654&'3723#3?>5.5467#'"&5474746?67&/&5#"/&5732654'#5!2574&/#".5467ö)+ !þù f=@Sj  ¯  !H 2-'+5)6  D  $ 0 ™  T)%9 ü;   & (2    Œ & #!   .$ ;#4/!#D2 % 'ÿ~. ­2654&'#"&5474?36;2;25#'"&54746?67&/&5#"/&5732654'#5!2574&/#".54673723#3?>5.5467#/&+##x *{**¨SH4/*7# -'+5)6  D  '0 ³©  T)%9   f=?Sj  ¯  !H "n  ˜ &; þ6Q7 8 :” .$;#4.!#D2 % *  +2    Œ & #!  þû&@. f2654&+7#"'"&/./3264/##"&/4672637'.5#"/&5732654+5!ž )x)+`DC  -i$  0(  <6*+D@3&1 ;  $ 0 Ö@˜$; d-%  "bW3S$5   (e(L>%%. F !#D22ÿx@.s25#22654&+/./>?"&/./3264/##"&/4672637'.5#"/&5732654+5!#}  ! 7 )x)+‚D  ; %&50i$  0(  <6*+D@3&1 9  $ 0 Ö@VD.<À$; ÎY2Ç -( P(5   (e(L>%%. D!#D22-%  "ÿÕ. p3?654/&#""&/&=74?72?254&#"72"&/4?>7.5#"/&5732654+5!ö)+ !< @3O  A*6 )#   )     $ 0 –ü;  $-% þš =%"   E  !Ò )  ".*!#D22ÿJ@.z…250#"'"&/./3264/##"&/4672637'.5#"/&5732654+5!#/&#*#".5473272654&+:F -i$  0(  <6*+D@3&1 ;  $ 0 Ö@VD=1i.QJMf † )x)+";ƒS$5   (e(L>%%. F !#D22-%  "bT1û&=N$% ,+º$; ÿ`. e3?654&#>7327327.5#"/&5732654+5!#+&/&/326=4'7'&#"#"&54ö)+ !ÿ 00'   $ 0 –V$&!?M$ b/BB;:=W26x&T! A $ü;  $ä& & !#D22-% = 8K'  Q.-B(""w&<% ':/. R3?654./&/&+"01+"&546?6325#"&5#"/&5732654+5!ö(, ! <   $-!#&F6M  $ 0 –þ=  &-'  þÐ ! %/!, ,³X!#D00ÿúpc67#3?654&#'&#"27&%4+5!632'53#'./'764&#"#&#&##"&5#"/&57326ª×)+ !. !O"# výü –ã)?v@  DO0$ «G+ .6M  $ 0ü ;  $$ @! u2#ƒ ~“  2ýþ-ÿ Wª.* Y !#DÿÈ‹p>7#'3?654&#'&#"27&2;2&5./'7654&#"##"&'#"/&5732654+5!632'53#/&+"""#".5474?3327´ º)+ !) O"# vO*1 ! «G+    !]  $ 0 –ã):v@  DO$T  /A 4/è  ;  $$ @" uþ‹ÿEª.  ?5!#D2 ƒ ~“  2ýÌ&,* 8 ÿņp7264&+%'&#"27&%4+5!632'53#/.#"'.+"&546732#"./&54632>;25&5./'764&#"##"&5#"/&57326ªe *x)+HO"> vþ –ã%9*I,  DO# $ * %!, +-&! «G+   6M  $ 0üd"$; @ @M u2$4. ~“  2ýÉ0 +" $#  A$7çEª.*  X!#DÆ. e3?654/4+5!!06;2#"&'4?232?4&/"/.#'?'&/&'#"&5#"/&57326ö)+ !Ï –Æþ5H={,6! 0;(0$$? #:T/:._" $&6M  $ 0ü;  221F  HD" Ö6v&!(1*7Q 4‡ &$&1  22Sÿ¬¢.{272?6;2+"/&'4>72326=4&'#'&/&/;726?654&#"#"&=46?654&'#5!!ò[ ,2.   2 (%$?D2, D6I6Xh7!V = @)"& ¢þ5Ó=9!#5   (  +:  HD80 4‡ &$&1  22ÿþÿý†.#0r5"/&'"''3275#"&546?674/#5!#754747/.'+&#&5463654&+  !B/ <  3%ƒ  MˆÖX48W"3$ &"' ( C   Æ2   #Ÿ*F®"0 22F5< |Lý  þ€!D!E  *1 "+  ÿ¬T.g25!66;2467>7.#""&5>?654'#5!#'.+.'"&54632+"''&/3lþ/ !4 9%þ]$2#)- 7''1&*Ta3,!4)D!$,R&!Seq³Â7!["É'‡   @" -Ù '1!; #) 22ýÿ1&. 0'F  @?* 0€D­$‡ÿPÞ.w//&#"'.#"'6=>32#"&=>3226325/&/;726?654&#"#"&=46?654&'#5!#2|AK2, D( '!+;3*- ".Xh7!V = @)"& Áê!i>1F  HD‘(3  @ #:!344‡ &$&1  22SÿŽ_Œ +†4&#"76#"&54>7254?>7#76?%3#'.'.#?'+"'#"&/&/326?654'#"/5#5!'&=/ !;Ó#%§ &˜W[- ! / *1 !%!`5>P2  $D#)M",5È"I0" p %-@þb    ² "$ £#ó,2þ- %*+$4." IGNb%&$JK)3B2) %"K »20"S79&‹ÿúÿaF. P%4&#/.#&#'>7./76?6?675!5!#72#"/4?2*!) ! 6@?P$ÈP:  J+#"7L8E,2 *'þÐLë :w0!   T   )  Æ-G?}-RýÏ &1<$ " U  '22&wV)3 ÿ·ôH%4>32/&=7#'&#'76375./&#?'>54&#"#"&l4*<"þ¢>)W8% C[!2Z$5Y.-*1 !%  :R K &ž-*‡(/ 8%P77‹ -2ý» h?(Gi4+*+ ."AY*)ÿýÿ`é.7%7267#""&54?#5!#'&#'>7&/7673> ª, 61J$(E­!$#B 3ì^!0\$45Òþš   $–@  "  >)-8"76'à &0<(  \0' 3O"Ó22 ÿöÿ3d.€25#2/./6?>?67'&5467'"&/&#"376?632#"./&/5732>54&'#"&546?#5!!3732?©" $ž7& %%&    "^ 3 % :  :&'D,   _/01  *2@Ðnþç/2  /n<âe*&7UÒ -   {2Y &C& # G &. 4++3a 93R " T,&22)ÿÏÿ‹´M777'&#'767./#5!74+"#".546?723!3267"&57632ê ?^-!0\$ #;;DO -B   ¦@PLþ³%h%4"2Z(ÄQ1þÚ h? 2;22' %    H42þ±f038ÿ’#.B25""#"/5#5!!26?/./>7#"/&/32675&ö< #w_& Æ#þÔB 0N  >%&H U9#8A3T <<P$Í22Â7 ?Et.À -0]?K0>K9’"#:;!ÿÊÐH%5'"&546?2'&=7'3#'&#'>?6754&/"/4632# <"‹5HE2%    G^!0\$/(C,'5%0&*€VZD>L   2KH 22ýÎ h?%  c9V 9* '-ÿýÿ—=. a25""!!#/./&/>?67#"/&/&/&/&'2>=4/.#""/4?632< #þ¤@ýÀ  ,%&3 $$ ' 0.' F9"  + 2=!3&Ì-&>x+' j A "(  % 8 O!q ÿHê‹J%73#'&#'6?./7>54&#""&5?>32@ <"!WT!2Z$k \60O&ID, /  $ .5)+Q- R *1,2ýL h?Q ': h?# ))K;!8+   P ÿé.+7/7>32/&/&#'?'&'"'5#5!!Þ! Â[; #7[7'$-70/þÓ· „{&5T þ$  ?675#%32?5!#/.#'/.'&/7"/474632#"'"/x 4V(1øf1(&WAÔRK*" >þF! }¸] "ˆL  n"<;~C+/ c *"ƒ!+d ,5 * -a&IB2ýû&Jfþô3!dO^. / ÿòø.<'&#'76?&=&/&'#"&54632>5654&#!5!#AL!0 R &32'53#'&#'635&5./'764&#"~ <"pO"> vò  ,A)*I,  DO!2Z$Ž! «G+ ˜*+ @M ub,$4. ~“  2ýÆ h?oBEª.* ÿüÿòü0!-8/./&#'/&/&#'?5!5!?5#25 B6" /+ "7X©þ¼þvi‘úÃ8R U+ þ½ K!2"þýô&.: × 9#P6R022¤8@,Ž55*1 !9Úÿñÿ²'. =A%"25"./6?&'32654'#"&54632767'!!k   >%& ©P @8C*8NP>,?&1$Bn/) þ\6ýÊ6 :./$8#>%"œ ,&1 Lϱ  ­  )",# &ü$6  þ±!"[e"%*/ 22™%#*%   ©&2§ÿ….s%5'254&'#0"&5474?;2325/&#'7#&/+".54?'4/&+5!#7/&+"##,# &: ­ $(¥I>.)# 3  1F"œ ,&1 }e"J º&2§}H*%  þqP7 9    #:[e"%*0  22"8  þU%ÿÇ1/J%46725!5!#'&#'?6754&#'./"&54632#"/.57>32% <"”, þc1`!2Z$[*)! 0  %!)&)8>#$ ´ *Z)'‡33ýË h?E Y-2!"$ ?+ A8!0<ÿÎÿ²‡V%574&#"#"/#"&/46?67/&+'32>?2'53#'.#'7671>""AD % +#  1  A2g#  1 CV M,,Y7d+áZ  #"   * 2 E'#‹u  2ý¶,5LA$ ÿþÿÿ'./:@2654'#5!#'&/&#'73.5#"/&57%2654&'#35q0 «)c$! 1F#º>A   % 5(C,!"&ŽD22*)þ§:]x D% !# #"AÁ'2§ÿ¬.M%?675!4&'#5!#/&/�"#''&/;>54&#""&5>?6 RK*" >þ¡3+PV(1þ_ ] %2!"/)feq³Â7![" CH*- 7''  &[5 * -~ "./*"$ 22ýû&P!'=' 0€D­$‡ ;3!; ' ÿ.Þ. Y%5'.'/.#'>?'&/;726?654&#"#"&=46?654&'#5!#2+? % LAK2, D? K3+*/# Xh7!V = @)"& Áê!i' –)1F  HD 0é &0<" 4‡ &$&1  22Sÿõÿº¼‰…4>72"/&//&+"#".547474?36;2;25&/&/&/?>54/#"&=632?3!2?4'#"&Ê"%!"n /A 4/*6  MvS*%&)= +C'!+0L< = - SÈþâ +4, €:6þ{&,* 8 5D   Lg / ( *0-H4 3<- #(õ2‘7 /$ÿõÿº‰y2?3##7/&=4'4'/&+"#".547474?36;2;25&/&/&/?>54/#"&=6C0L< = -ãV:   : 8"n /A 4/*6  MvS*%&)= +C'! -H4 3<- #(õ 0 *_T 5%$0 ‰ þ¦&,* 8 5D   Lg / ( *03Ý.b46327#"&'./3265'#".'4632>54&'.#"?32'7674#"'XL+ ,\ 5/"=3%Ia$ <1&('/ '  ( 3=   %>M*­'L &n©0*$/1*ÌQZ ,503( YQ1H >5?   ÿÖÌ…4>72"/&//&+###".5474?32732;2.'.#?'>54&#"#"&54>32'&=73!2?4'#"&Ú"%!$n  /A 4/ *7# %)4 )1 !%!:R J &>)¡< 3ØþÝ5, €:6þ’&-* 7 :%-!++$4."AX*)(/ ½79&‹ -2Š)/$ ÿÖ‰v4>32'&=353#7/&=4'4'/&+###".5474?32732;2.'.#?'>54&#"#"&>)¡< Àà7   :3$n  /A 4/ *7# %)4 )1 !%!:R J &¤(/ ½79&‹ -2œ *_T 5%$‰ þÂ&-* 7 :%-!++$4."AX*)ÿμ‘4>32/&=73!2?4'#"&54>72"/&//&"'&/&+"&5463632#"&54632>;2./&#?'>54&#"#"&>)W8% 3ØþÝ+4, "%!# (   +33%4!.-*1 !%  :R K &¤(/ 8%P77‹ -2Š7 /$:6þŠ0)   +    :0:?<4+*+ ."AY*)ÿÎ{ƒ3#7/&=4'4'/&"'&/&+"&5463632#"&54632>;2./&#?'>54&#"#"&54>32/&=‡Þâ9   :6# (   +33%4!.-*1 !%  :R K &>)W8% c* 2 *_&@ 5%$0 ‰þº0)   +    :0:?<4+*+ ."AY*)(/ 8%P77‹ÿöÿ}J.9µ%#"'333/&5467'"&/&#"376?63274>72"/&/./&/#"&/&54?&/&/5732>54&'#"&546?#5!!3732?2?4'#"&‹ :&G61g    "^ 3 % :  Í"%! !&"4o5   _/01  *2@ÐTþ/2  /K 5, Ó &.6 )  :{2Y &C& # G˜:6 L &7Uˆ- )8 " "+3a 93R " T,&22)M )/$ ÿöÿ}ä.9¢%#"'333/&5467'"&/&#"376?632/&=4'4'./&/#"&/&54?&/&/5732>54&'#"&546?#5!!3732?‹ :&G61g    "^ 3 % :  í :6&"4o5   _/01  *2@Ðîþg/2  /F  Ó &.6 )  :{2Y &C& # G:&@ 5%$0 ‰ $&7Uˆ- )8 " "+3a 93R " T,&22)I *ÿòá.y!!4>72"/&/'.'&++".546?3237632'&'7#"&54746?6?22?4'#"&áýï"%! $o 6D C  '<%4   021( @5, .2|:6þ®;  6D*: Y&!  $% (4>*/()/$ ÿò›.i!!'.'&++".546?3237632'&'7#"&54746?6?27/&=4'4›ýeý/ $o 6D C  '<%4   021( @4   :.2Ê þÝ;  6D*: Y&!  $% (4>*/9 *_T 5%$0 ‰ÿÿÿº¼‹†4>72"/&//&+""#"&5474?36;2;25'./7>54&#""&5?>32!!2?4'#"&Ê"%!#i PD2-(2 e;0O&ID, /  $ .5)+Q- R )þÚ+4, €:6þs&Q7 : 2%(D h?# ))K;!8+   P ,2†7 /$ÿÿÿºj‹z%/&=4'4'/&+""#"&5474?36;2;25'./7>54&#""&5?>323#7þ : +#i PD2-(2 e;0O&ID, /  $ .5)+Q- R ×Ô+  ®&@ 5%$0 ‰ þ¢&Q7 : 2%(D h?# ))K;!8+   P ,2– *ÿš. U7654'5.#"&/./#"&/46?2325>54'#"&547#5!!>76ú3 c8 48 >!#6'  2)19ES722W(:7ÿóò/k7?3'&/47'#5!!>?2?4'#"&54>72"/&/'"/&#"#"/&/57)  K 4- A! .Eoòý³ FI"&U 6, #%!& ({@ Æ  $=GM!15J33Ó<5@*/$ :6n)8, ,9ÿó”/]7?3'&/47'#5!!>?7/&=4'4''"/&#"#"/&/57)  K 4- A! .Eo”þ FI"&U   : 5 ({@ Æ  $=GM!15J22Ô<5@  *_S 5%$0 ‰9)8, ,9ÿºœ4ƒ74672"/&//&+""#".547474?23;25'./7"/474632#"'"/32?5!!2?4'#"&541(&WA~*"%!a  *-.* I <:;~C+/ ! }VþÜ0/, y!+d !:6þu% 9)  9 4!-O^. / &IB2‰:/$ÿºP4w/&=4'4'/&+""#".547474?23;25'./7"/474632#"'"/32?5!#71(&WA· : .a  *-.* I <:;~C+/ ! } Ø/  y!+d Ù&@ 5%$‰þ¤% 9)  9 4!-O^. / &IB2˜ *ÿß1.##"/&/./&'3;2?674&'"&5463273265./##"&467'&'#"&54632>5654.#!5!›! )  /. <.,-"%. '( !!  #)D>)&*2&*g þ©1ü6'5#,&  - aƒ\)(" )"  $#JI'#(#,@ 22ÿó¥/ˆ4>72"/./'"/&#"#"/&/57?3'&/47'5.+"1#"&546325!5!!>?2?4'#"&³#% !0$ )z@ !  K 4- A! .E1&0(3- þ×¥ýº FI"&U 6,  :5-i)8, ,9  $=MG!15JR  0+*1- Š22Ô<5@ */$ÿóU/y46325!5!!>?7/&=4'4''"/&#"#"/&/57?3'&/47'5.+"1#"&F0(3- þ×Uþ FI"&U   : ; )z@ !  K 4- A! .E1&r*1- Š22Ô<5@ *_S 5%$0 ‰7)8, ,9  $=MG!15JR  0+ÿÈôp Š'&#"27&4>72"/&'/&+"""#".5474?332732;2&5./'764&#"#"&54?>32'5!!2?4'#"&/O"> vÊ#%!&$T  /A 4/*1 ! «G+   ,A)*I,  þà9, Ø @M uZ:6þ&-* 8 ÿEª.* ,$4. ~“  2–-/$ ÿÈ´p ~'&#"27&"&54?>32'53#7/&=4'4'/&+"""#".5474?332732;2&5./'764&#"/O"> vò  ,A)*I,  Õà7   :3$T  /A 4/*1 ! «G+ Ø @M ub,$4. ~“  2œ *_T 5%$‰ þ´&-* 8 ÿEª.* ÿÅïp ‘'&#"27&"&54?>32'5!!2?4'#"&54>72"/&//.#"'.+"&546732#"./&54632>;25&5./'764&#"/O"> vò  ,A)*I,  þå /0, "%!# # ' %!, +-&! «G+ Ø @M ub,$4. ~“  2œ :/$ :6þ‘0 + $#  A$7çEª.* ÿÅ´p …'&#"27&"&54?>32'53#7/&=4'4'/.#"'.+"&546732#"./&54632>;25&5./'764&#"/O"> vò  ,A)*I,  Õà7   :3# # ' %!, +-&! «G+ Ø @M ub,$4. ~“  2œ *_T 5%$‰ þ±0 + $#  A$7çEª.* ÿýÿº”.q74>72"/&//&+"#".547474?36;2;235'&/.#'?675!5!!2?4'#"&ÑRK*" > #%!`  )9 -)&    !+0#@  !+0#@;25'&/.#'?675!5!!2?4'#"&54>72"/&//.#"&/&+"&546732#"&54632ÑRK*" >  !+0#@;25'&/.#'?675!5!#7/&=4'4'/.#"&/&+"&546732#"&54632ÑRK*" >  !+0#@72"/&//./#".=46?725#"/&54?6322?6322?4'#"&áýï"%! €3L' )g'; 0 =C"  89  5 5, .2|:6þµ!56& 0 &ð 1+  :?  +  )/$ ÿûž.a!!/./#".=46?725#"/&54?6322?6327/&=4'4žýb6 €3L' )g'; 0 =C"  89  5 9   :.2Êþç!56& 0 &ð 1+  :?  +  *_T 5%$‰ÿÈp °'&#"27&2754754&'#%472"/&'/&+"""#".5474?332732;2&/'764&#"+"/+#"&54727256=4&+5!#632'5!!2?4'#"&PO"> vþ·$ £ %.M%!1$T  /A 4/, 0  «G+ A)&*#0<z& 6b*I,  þÞ6, Ø @M u` .L 2:6'þ†&,* 7 ÿ` ª.*F#% 4 -22F$4. ~“  2Œ*/$ ÿÈÓp ¥'&#"27&2754754&'#7632'53#7/&=4'4'/&+"""#".5474?332732;2&/'764&#"+"/+#"&54727256=4&+5!#PO"> vþ·$ £ %p6b*I,  ÓÞ5   :1$T  /A 4/, 0  «G+ A)&*#0<z&Ø @M u` .LnF$4. ~“  2› *_S 5%$0 ‰ þ´&,* 7 ÿ` ª.*F#% 4 -22ÿÿÿÉâ.‹4>72"/&/./&/#&#.'&=46?32225'./"/4?6724&/&/&/#5!!2?4'#"&¦D   a"%!"4o/' gH 3 , 9+ *-  8ãþÝ5, ü: %  &]|:6þ…-  #>"  7 ,   /8 22Š)/$ ÿÿÿÉ›.{./&/#&#.'&=46?32225'./"/4?6724&/&/&/#5!#7/&=4'4¦D   n."4o/' gH 3 , 9+ *-  8œÜ3   :ü: %  &]Ê þ´-  #>"  7 ,   /8 22š *_T 5%$0 ‰{. T72#"&54674>72"/&//./&#'76?675!5!!2?4'#"&¡'‰5,'D4*V"%! -4.%-AZ U(1þÍ{þê40, ‘$#õ4- :6 þÊS6Y; (!22š> /$ ?. H72#"&5467/&=4'4'/./&#'76?675!5!#7¡'‰5,'D4*  : /-4.%-AZ U(1þÍ?Ú1  ‘$#õ4- ã&@ 5%$0 ‰ þëS6Y; (!22™ *ÿ˜/'•463275.#"'&/"&725!5!##".'&/3265'#"'46;3>54&'.#"73'7674#".54>7.=632767‰   (%* +:/ ­/þzY 1*-7P<#$!# 3-$$#-5  & /7 !   $7:G A() Y4  2%    R8‡%** ©Bt33þ˜ + </+)7EC 69$%  0  A=&4 1(/    9 `& ÿùYØU†2?674&'&/&/+"/+&54?67//724?6;37#"&/&/&/&/32>?'#"&'4>n%.    1+ ?    + #  ^  ; $ RK", )f HR    &  '   0h& ; 2E&(,.#NEF+b0'K "ÿÎÿÊæ‡—4>72"/&//&+"""#".5474?36;2;24&#"#"/#"&/46?67/&+'32>?2'5!!2?4'#"&ô"%!$T  /A 4/ *3D % +#  1  A2g#  1  þá4, €:6þŠ&,* 8 1;Z  #"   * 2 E'#‹u  2)/$ ÿÎÿÊ¡‡‰%/&=4'4'/&+"""#".5474?36;2;24&#"#"/#"&/46?67/&+'32>?2'53#75 :-$T  /A 4/ *3D % +#  1  A2g#  1 ÇÚ1  ®&@ 5%$‰ þ´&,* 8 1;Z  #"   * 2 E'#‹u  2™ *ÿÎÿØá‡­4&#"#"/#"&/46?67/&+'32>?2'5!!2?4'#"&54>72"/&//.#"./&+"&5463632#"./&5463246;2‘D % +#  1  A2g#  1 þæ 5, "%!#  *  "!1'4! gZ  #"   * 2 E'#‹u  2• )/$ :6þ0   +"    ;?ÿÎÿؤ‡ž4&#"#"/#"&/46?67/&+'32>?2'53#7/&=4'4'/.#"./&+"&5463632#"./&5463246;2‘D % +#  1  A2g#  1 ÊÝ4   :.#  *  "!1'4! gZ  #"   * 2 E'#‹u  2› *_&@ 5%$‰ þÃ0   +"    ;?ÿÈèp$/¹072654/&'""32?654/&#%'&#"27&4>72"/&//&+"""#".5474?332732;2&/'764&#"#"'#"'".547#5!632'5!!2?4'#"&549 [   '"  BŒO"= vÆ %%!$T  /A 4/*0  «G+ 6()8y|)2*I,  þå .1, û_ # 2 @M uH:6þ&,* 8 ÿ` ª.* &4'142$4. ~“  2” :/$ÿÈ«p$/«072654/&'""32?654/&#%'&#"27&'632'53#7/&=4'4'/&+"""#".5474?332732;2&/'764&#"#"'#"'".547#5!9 [   '"  BŒO"= vµ)2*I,  ÓÞ5   :1$T  /A 4/*0  «G+ 6()8y|û_ # 2 @M uA$4. ~“  2› *_S 5%$0 ‰ þ´&,* 8 ÿ` ª.* &4'142ÿã:. ~2654&+7###"&'3;2>74&'"&5463273265./#"#"&5467&5#"/&5732654+5!Ž *x**`$  ‰/Y‚C,- 1-, '!! 4"'QC4  '0 Æ:˜$; d-%  1# i Ÿ¶\ /( " -""*(N -(!#D22ÿÿÿ¬Ö.„76?2'4>72"/&'./&/#"&/.54?3225/&#""/&/72?&5.#"/#5!!2?4'#"&®-^#%!(""4o5' KgA&  (.  !  A '* Öþá6,  ü7  4¤|:6þl- < " 0!þ #:A&%  W  22*/$ÿÿÿ¬“.x76?2'/&=4'4'./&/#"&/.54?3225/&#""/&/72?&5.#"/#5!#7®-¡ : 3""4o5' KgA&  (.  !  A '* “Ü3  ü7  4¤þ²&@ 5%$0 ‰þ—- < " 0!þ #:A&%  W  22š *ÿÁÝ.—76?2'.#"/#5!!2?4'#"&54>72"/&//.#"/&+"&5463632#".5&5463246;25/&#""/&/72?&®-µ '* ÝþÚ6, #%!#  '  )-+4!  (.  !  Aü7  4¤{  22†*/$ :6þz0   +   !  B?*Ô #:A&%  WÿÁŒ.ˆ76?2'.#"/#5!#7/&=4'4'/.#"/&+"&5463632#".5&5463246;25/&#""/&/72?&®-µ '* ŒÕ,   : +#  '  )-+4!  (.  !  Aü7  4¤{  22— *_T 5%$‰ þª0   +   !  B?*Ô #:A&%  WÿÈ\p³>7#'3?654&#'&#"27&4>72"/&//&+"""#".5474?332732;2&5./'7654&#"##".'#"/&5732654+5!632'5!!2?4'#"&´ º)+ !) O"# vÌ"%!$T  /A 4/*1 ! «G+    67  $ 0 –ã):v@  þà+4, è  ;  $$ @" uR:6þ‡&,* 8 ÿEª.  8% !#D2 ƒ ~“  2Ž7 /$ÿÈp£>7#'3?654&#'&#"27&"#"#".'#"/&5732654+5!632'53#72/&=4'4'/&+"""#".5474?332732;2&5./'7654&#"´ º)+ !) O"# vî"67 < $ 0 –ã):v@  Õà76 :3$T  /A 4/*1 ! «G+  è  ;  $$ @" ub 8%*VD2 ƒ ~“  2œ-‰&@ 5%$0 ‰ þ´&,* 8 ÿEª. ÿÅ\pµ7264&+%'&#"27&%4+5!632'5!!2?4'#"&54>72"/&//.#"'.+"&546732#"./&54632>;25&5./'764&#"##"&5#"/&57326ªe *x)+HO"> vþ –ã%9*I,  þÛ+4, "%!# $ * %!, +-&! «G+   6M  $ 0üd"$; @ @M u2$4. ~“  2ˆ7 /$:6þ0 +" $#  A$7çEª.*  W!#DÿÅp¨7264&+%'&#"27&%4+5!632'53#7/&=4'4'/.#"'.+"&546732#"./&54632>;25&5./'764&#"##"&5#"/&57326ªe *x)+HO"> vþ –ã%9*I,  ÓÞ5   :1# $ * %!, +-&! «G+   6M  $ 0üd"$; @ @M u2$4. ~“  2› *_T 5%$‰ þ°0 +" $#  A$7çEª.*  W!#Dÿwñ.GK'&/&/&/32?6?654&//674&/"2+&#.5?6?27%!!›HW$>…"EH&M31FF&%  I  -  KINþeÍþ3;K! +u= 10 }   0 _    > XI¶2ÿ¬X.W27/&=4'4''&/&/;726?654&#"#"&=46?654&'#5!!òV8   :7 ?82, D6I6Xh7!V = @)"& XþÓ:9 *_T 5%$0 ‰%.  HD80 4‡ &$&1  22ÿýÿ÷—.N&/.'574>72"/&'/&/.#'?675!5!!2?4'#"&@(81' &7K*" e#%! + %2!+0#@72"/&//&/.#'?675!5!!2?4'#"&= >1B%'”RK*" >ž"%! %2!+0#@!B%'”RK*" >â :2 %2!+0#@72"/&/./&/#&#&5?35'&/.#'?675!5!!2?4'#"&‘ >!!S:”RK*" > #%! (ƒy. %8g82  !+0#@!!S:”RK*" >þä%8g82  !+0#@54'#"&547#5!K$.?4Mi /þH '7(/ }[*FJ)<,$9S2 %,9E?!5!#"+&+"#"&#"'546?65'&/.+"#"&54: *  /P!,óPS/þƒtE*3')-*!'$3n3$? B&!g P;§>+: B222& h !"'@&  $3n   -)ÿê‚.'…#326?65'&546?#76325!#"#*+&+"#"&#"'546?65'&5467.'#5"'#""#"/#"&54?4/‹A  / *  /P!,þÇ,% ‚B*() -*    !!&0,- ü þA$3n1&? B&!g P8'22& h !"8@ $3n3$8  '5"+"ÿìÿê3.$G72654/&'""32?654/&#326?65'&546?#47#5!#"#*+&+"#"&/"'546?65'&5#"'".% S   '" B / *  /P" ì8yGB*()-* 8()ü_   2þU$3n3$> B& h P|14213&!g # 8@$3n()4ÿê¾.-g7#3?654&#4>7#32>5'&/&7"#"'"'54>5/&=#"&5#"/&5732654+5!ªÑ)+ !›0P!$) &.   Z (AB"0 !(!  6M  $ 0 –¾ü ;  $©*8?& –+@> 2! 25×[+>Q%2J% ."n1&Y !#D22ÿ¬ª.U3274&=4>7!2%"#"'./;726?654&#"#"&546?654'#5!|7-A*$þ¬!i *#[EJE KBÍ}7W) 9+/!%&&*ª>B' 7S %U~ V7C[^DH‹‡ 4!2 22ÿúÿ^F. <3#4&#/./76?6?675!5!#72#"/4?2[N›3þø 6@?P$ÈP: 4W4E,2 *'þÐLë :w0!   !&-G?}-Rþq,-6-U  '22&wV)3 ÿ^‡‰>3#2?#/&/&/?>54/#"&=6žN›3ýï0L< = - SV   MvS*%&)= +C'!!«-H4 3<- #(õ2þ Lg / ( *0ÿE‚?3#3#'./&#?'>54&#"#"&54>32/&=™N›3ÈW[-.-*1 !%  :R K &>)W8% :-2ýñ-)4+*+ ."AY*)(/ 8%P77‹ÿýÿLt..3#267#""&54?#5!#/./767‹N›3þi, 61J$(E­!$#B 3ì^]0B03> 5W G#x+"4) 22þ4.HD2ÿG`3#4#"37>#"'#'./32654'4#"&'5./7632#"'2?,N›3‘ 0 '- "2'%'_# Lt7D , ;CJ) (U3K;"8†0 g 19,+? GK-50vD;›7-  9y :M b %2 Z"ÿÿÿ^±.63#26?6?6=/&/&'#'.5#5!!ÈN›3þú1  "$-ó“? .H¡þ×^!1 /ŒC«Fn22  !  ÿýÿ3.P3#;6?65/&/2&/&/;272?654/#'.=#5!!;7,N›3þŠ  . ³%,(8-'96btÒþšLÿ  "  >)-8"76'h& \0' 3O"Ó22 ÿöÿ^Ý.k3#"&546?#5!!3732?"/&5467'"&/&#"376?632#"./&/5732>54&'ôN›3þG2@Ðpþå/2  /K7&(   "^ 3 % :   :&'D,   _/01  *!ŸT,&22)Me*&7U z2Y &C& # G &. 4++3a 93R " ÿÿÿ^Ÿ‹73#/&/&'/.'&/76?5!5!;#¶N›3þÇ U#5!· l6Ce.,[þÌd 9S!7 4074/"&46327654&+"7#"&//./#+"&/&=?32'&#"72+"5463>32¶N›3 #  #&  !u L®' #*e!?(LeMB+9 !+ TŽD9c0$I8V  .!##f. &Qæ4,: HÒ, -#+- &&4""H 0( \> &p!jHÿÏÿ^·I3#23!3267"&57632#"&/#5!74+"#".546?ÈN›3¦@POþ°%h%4"2 /( 4 ;;DO -B   !]H42þ±f038.6#  +/);22' %   ÿ^ß_O3#4'32>3##'.547>54'#535./.547öN›3|=…  '2#y '$а  @7$617& µ–5!ÀRM*ŒA #)UF )413 D'A%*; #- .E%'3  #Z:*ÿ^#.53##"/5#5!!26?#"/&/32675&,N›3N_& Æ#þÔB 0'TK9’"#:;!ÿ^±.$3#26?"&57>32"'#5!!ÈN›3þü] $ $H;*+-J­þÍ!N Q##  6Bl$Pc22ÿ^$;3#"&546?2'&=7'3#'4&/"/4632#;N›3þ£5HE2%    G^6C,'5%0&!›ZD>L   2KH 22þ89V 9* '-ÿýÿ^y.P3#!!2>=4/.#""/4?63#"/&/&/&/&'N›3ý·@ýÀF9"  + 2=!3x+' j A  ÿXN‹?3#3#'./7>54&#""&5?>32eN›3™WT>e;0O&ID, /  $ .5)+Q- R ' ,2ýÿX(D h?# ))K;!8+   P ÿ[I.-3#'#5!!>?/&/54`N›3×AmC3ôþuCC%&W# $kBE22Ó ;0A5F*#5  3'%<*&'ÿ=/4 73#'32?53#/.'&/7"/474632#"'"/FN›3ê1(&WAµ! }†T  n"<;~C+/ B<!+d N&IB2ýò3!dO^. / ÿôÿD3.)3#46;3!5!#'74.##'&'JN›3þH1  %'þ«ÞW1^4 "8 ;Ü3@ %=  22ýö8p % #@ÿDp@3#'&#"27&"&54?>32'53#'&5./'764&#"¤N›3þÕO"> vò  ,A)*I,  DO0! «G+ ;” @M ub,$4. ~“  2ýþ-ÿEª.* ÿNr.C3#232?4&/"/&/&#'?'&/&/#5!!6;2#".'47_N›3/  ?#24H:._" rþ5H={,5" 0;(/%$1ú ,þx?)%S1M 22N›3þÝRK*" >o %2!+0#@2F,0/  MÍC %=X(]'!ÿNU.93#/&/"/4?6724&/&/&/#5!#lN›3þbC   0 L , 9+ *.  ôX1®9 5%  &\þ-P,   /8 22ÿDA.+3#'.'&#'?'&/#5!#XN›3þ‡ " ! & 5)2X99D+k.&"ÞW;¸ &! * !3~ýÿ/n T-U  22ÿN.43#02#"&546/./&#'76?675!5!#3N›3Ø5,'D4*’'Ý-4.%-AZ U(1þͽX184- ÿ$#S6Y; (!22ÿHj/B3#46725!5!#'4&#'./"&54632#"/.57>32N›3þ¶, þ`4)! 1  % )&(9?"$ 7F)'‡33ýÿ1,3"$ &" + C7!1;ÿÎÿN{‡M3#4&#"#"/#"&/46?67/&+'32>?2'53#'’N›3·D % +#  1  A2g#  1 CV61Z  #"   * 2 E'#‹u  2þ.ÿLC/73#'&'7'54.'#5!#/.#&+'?/#".ZN›3ß# /'/Ä8)þÇå[{3 D|&3ÿ 1!žÜ'$%Ÿ 33þ4(^Xk ÿHq.?3#76?2'.#"/#5!#'5/&#""/&/72?&ˆN›3þp-µ '* f0  (.  !  A7´7  4¤{  22ýÿ9Ø #:A&%  Wÿ[ã.D3#'&/&/;726?654&#"#"&=46?654&'#5!#2úN›34AK2, D6I6Xh7!V = @)"& Áê!i$ã1F  HD80 4‡ &$&1  22Sÿ^y.P3#'#"&54>72+"'#"&/&/326?654'#"/5#5!!76?63N›3ê#%‰eH>P2  $D#)M",5È"þ× &# A!n    YqNb%&$JK)3B2) %"K »22£#- qÿ^.13#'#"&54632'326?"&5763"/#5!!/N›3õ! * o W$ 1! eA,$K³þÎ!†)!$!¸ M'!4H6sX>22ÿK?.23##"&54632'&#'76?.'&'#5!#VN›3þ” J $, b'b #'”OªC.7$?êb4±M 2;HþT'$sÁU,+*22ÿýÿK). -3#&/.'5/&/.#'?675!5!#@N›3¶(81' &7K*" 1 %2!+0#@!B%'”RK*" >o %2!+0#@72>54.5632%ö2u,"E%+4+    -&,I «.`)"$23<3 ä??þM3Jn)$& !4 H.[ /! 3B<)7ÿ|;¡3a7530##"/&/&'46?27654/./57672"&54?>3632#"&/2654.'4öX"*   $2 G" ! $G  4,1] L*+6 ä??™R$/  ": ý¬1  PB!2E,0@…D#'/ +ÿo!§  Kg7"7654&#"4&#"#32753'27654/./57632#"/&'467"&5467&54>372š&1"/O=6 .ºö. $[+, L $V(- /;'%B8)&5$®#î. &"1??Ê 'H   '->% þ€.'': 1>+,0" 'ÿt@»+X7"&54>32#"&';2654.'2'#53.'&'23254.54>3232±!% (.7i $!(+7  ,K"0P öæ/e- ;9 8+5+  )0  !J4&0#¢~:U'E"(f]5 W, ,?)= .?9/(%ÿøÿn!  Pl7"7654&#"4&#"#327534?>;2#"&/2654.'"&"&5467&54>372š&1"/O=6 .ºöÉ $E  7+._ K,2/  |(- %E'%B8)&5$®#î. &"1??W MD!5~F,0'† J( 2þ.''4'1>+,0" 'þhÿ'ÿ¹L732?654/"723275'7&/"&/4?67þ• ++* 4  3=*!,7  +' 12*1 " ÿ¦éÔ.'+4>72"/&/52?4'#"&73##%!# 6, ØØ€:6#5*/$ Ã2þŽÿÿÈW'%27&#"2?67'"/"&5746þñ 7 Œ‹  ';!;! ' vy+ 2ÿµœ.7/&=4'4'573#0 :;>  \ÀÀ®&@ 5%$0 ‰J *!2þ{þõÿ|=&/?Ÿ@8n’)q*#ð0!?k2QP! $ÿ¹Äí.594&'#'72?6;2+"/&'4>723265!!€(%$  ,2.   2 Ç4þÌ(  !!#5   (2þ6/C3#26373#"'"&/./&/.'32>54/##"&/4666² &*M* .j$   (  <6*+ '/!3&1/2¨  !:'FRT#5 ;#  (e( -%%.ýðÿå60T3##"/&'3;2>74'"&54636;65./#"#"&54>72#66:‰/FB3K,- 1,- '!  4")"J45N 02þYi ;<Æ\/( " - ##%"-!:.$ þ1ÿÖ6/93#2/&#".5473263254&#"632#"&5467266’.@ U .3 793$ > ,+TD/2‡!þš =  ;*/142!Ò *+)-8gÿEÿ05«&/47'5376?   $& <80).8!  4&+,>B#!R&Ф4)?6þwÿEÿ¶«-8'4#"./6?6=37632/7'p + @9" * % ^&,0ë / /( EQ -+J0$  U !  ÿò4ø.,"=&/&'#"&54632>5654.#!5!#":+ )&*2&*g þŇ!I'#(#,@ 226' %þÿjÿ*|%257/&/.#+"&546þp6F0 '$-0_7Xþî6( &!(#8þ˜ÿÔÿ¸ª.#'&+"0#"&5463257H*1 $(#B4G8+,!V 9%2IPþáÿÿ§Q 25""&/&/6?637'Ú<   X 4%& 6" !<d -Òþfÿxÿ7µ%7&#'763767þå <"2Z$[9 G* Ñh?E* þÃÿ–ÿ÷N. !/./�"#'?675#5!#‰8RK*" L 6,"/)@3þÊ.# (  *43%4!n<3Ä0)  #+    :0:?þfÿÃÿ³0'25/&#".#"'6=>32#"&=>;6°.(  9 %!,:3*) Œ)"‡(30 7@ #:%3ð/;25!5!#/.#"'&/"&'4632#"&'.=6327679/þzY * +:/  : Y4  ÊBt33è  ** %  `& . /';267'&'"6?4467#53##"/&¬F  : HÀ6mÌ)  T7 +fD  x  H >$J33 2"UHã. .3?654#"&5#"/&5732654+5!ö)+ !<$&6M  $ 0 –ãü;  $-% Z !#D22þeÿa6/73#2&/&/326=4'7'&#"#"&546?363666«%P>N$ b/BB;:=W26x&T! @!$6"'/2‘J75P%  Q.-B(""w&<% &;?-&( B%2674#""&546323#"=4#"#"=4#6232>7>32¸0,+"&;;.$:8µ $& ""%F  %í"'3.$*1)9"'1CI8Sõd+0 Oî&6Hü-0 :! K-ß' (732?>74#""&546323#"54#6323#"54#632E ) +4&;;.*48´ &(&%‹ &(&% 3.l*1)9(!4@K9TG&7Nþ²9TG&7N/T'+32?>74#""&546323#"54#632º ) 4':;.*48´ &(&% 3 m*1)9(!1CH9TG&7N ÷&.(7"&546?2&/&/"/4632#‰5H;<% '5%*,÷ZD2V  =9* '1.ÿêâr +2#"/46?274&#/.#'6?F07'* G cO0-`i 8!!! r#E+6 %2þ¼/-GG#@!>+ÿæM½_7"&54747467>7!5!656574&/#".5473723#3?>5.5467#¡+5)\hþ¶8  T(%9  f=?Sk   š+ !H 4-'N.$ ;8nG2% * (2|" ' !!   ÿýÿê‚.D232>5'&/&'546?3#"'"'54>5&/&54?#5!ÇB  N &.   /VY +84/!!(! /‹‚üN<.;9e( 2! % 35- 8 BC)X@#)@& ."4B'82B22L.0%"#"'>54'#"&547#5!!>767  7@,2)19ES722W(:7 "8 ?rÿòÿ´Š.FX"=&/&'#"&54632>5654.#!5!#/&/&/"/4?>724'"7#:+ )&*2&*g þŘX > )  #6  ‘!I'#(#,@ 22ý¸-*%     8" . %  &¦6'%ÿÄÿ‹; 04&#".546323?632#"5špZec% TBš|&DK6#" &GøfxB.   O6J\ $8dAýñ&# $YÿÄt•« %323254&#"&54632#"&54õ&@A-j@XxW6Nš¶4;6D*N;*3 T([!Z@1l*8;1(ÿÿ4Š'Eþ$ÿÿCŠ'ED%ÿÿÚŠ'EÂ&ÿÿÿÿþÍ,Š'EL(ÿÿÊ'E@)ÿÿÿýùŠ'E¡*ÿÿþ»CŠ'E|+ÿÿþÈŸŠ'E,ÿÿ)Š'EÑ.ÿÿòŠ'E"/ÿÿ#Š'ET0ÿÿ'EŽ:ÿÿÿÿÿþŠ'Ee3ÿÿzŠ'E¢6ÿÿþ” Š'E¨5ÿÿØŠ'EPFÿÿþÁŠ'E»2ÿÿÿý_Š'E¾-þÀÜ\/:%+#"'>?67!"&54>73!.54632"7654&Ü Å F:# 9A þÄ=))GRq\68"@)Q9Fb8'.=2/(¬!% FVP&/5¶ þ #hUNd D0 „NcMrLV=2BÜ\0@%#!"&54>7;.54>32#".54546732>7454&#"Ü ýÀ=))Ú7>L~jhTP:50%Kq2+h/))2//5¶ þ 2?6bHQJLI7$G aL>„)!2+/ 0-GÿÿþÍX W%3276=!"%547#2>54&+#".54;547!"#32#"'&54547632.hMP;þó)TÏrb™\<PM`ðOp4|8 › ‡$@<$þßàÓ”°p F(8J5{¿=K2Do-_•++•ý£.G_Y.p`‚¬(CA$•W 0 '•1]AÄã˜Ðçq  dÄE}UJ%Dÿ •[X7#"547!"#>3232654>732?2#"=!"54;>54&#""#"547#32?2¡.,G8÷ › D-+3#M+Ü!.,Gþ#$¨5G7) #-%'²!fMYœW 0 '­>4#I0Um° ý&MYšeA6H ,0&$&+*þr&øX/7C+32741#"=47##".54;547!"+#547#3276=!"ø (Dsð@b8# |8 ‡ OφhMP;þó)`0µ##+*Rº ‚¬):4•W 2 '••++•¡=K2Do-þ¶Xx327!32>54#"".543!654.#"3267#"&5463#"632#".54>3!+"6323254>7+bªyødýÎ[7)% VH&ZŠN1‚v33!+!1 Þ1O, 'd &bJ,E$-BqEŸ V ;FUV%^$)>…+——‘L:†N58(.r.ýÇ&4,49BCa2w1!-<3<.=S3S#;%bn/@O5LcR9â.ˆwbR7= ý‚>,EVÿ@ÛlZ2#"'&54>7632327632#"54&#"32>54&#"3267#"&54>76OAQ/G{N½ƒR)P_AX‘'p‹$G "4!DÆ¢.JQ*<9i´?D3!8/F&' *!1)/‚u`-ZfM3¨g×uµ}R!,I4ioþs&(2RšŽ­5*<ØyT"²'326326323254>7+! '&543!6=4#"#".54>7&#"#".5467&#">32%"32654'&32>7!""32654'&»E 0)# )!¥fEOj1J‰WknVk[mTrº6µ$*=ä¢ýÛþËTq‚TpV4kP7P#9+M[&(kP7P#?:IUAi=*[5 &g!I 6$.:oüž²âo¦«†1üBMÊ!I 6$/9o.3 &- G(/'Nel•lJgS<..//þürQº47= ý‚?+·&3\4n¿oî Y¼pŠ@^INo'& Y¼o‹@^IK‡0$*=L::#;à™C7+#"'&543!6!"32Úψ#9; R9þóJ^&"BðKm7|8 › i¤N•$ ))>ÅGÎs…Fq‚Fmþ3M>WN¨]•++•‡.C"2Do›4B ‚¬)BC"•U2 '• £z7= ý‚>,Va&=R4g™&( þ¸ÈYKT23254>7+#".543!654&#"#"547#3262#"547!"+>!"326;:^›$ ))>À7ÈqHr@)‚öC+*.%*²!.,G8÷ › ZIþEM¡5f¢creB7= ý‚>,Wb-6'4;K_K )!X($Ó+*þr&(MYœW 2 'þÎ/-þR&)8Cÿ^\'"=#!"&54>73!2654>732741D þÂ=))D(òR£/5¶ þ ° ý##+)ÿÿþZ\I%265#"#432+#"'&<54>7632332765!"&54>73Ž7M RN C^2€dU,JzT±‘Œ4" Z-Ò_„\*þù=)2žRvþ‚r´'IV8—ÃDfb>&€{ *F73274>7;2654>767326?ÒDþÒ4,;Xh)AB))þ( -òR "%Gd¶ þKeI þ ° ý#  ,&þÍÃXP%262#"547!"+632#"'&54763232654&#"#"547#±.,G8÷ › )rBVCgƒv6ºŒ¤i.Z;ui˜Ë6" #-%*²A(LYœW 2 'þ×krN^˜]?˜Ð»£ ,<}N>aV^$EÈG7-X($Ó+*þr&þ·X Zc%4#"3267#".54763232=4./632!254>7#!!"'&543!65&=4#">32!"326Z& :6)#Of=/J(HXÍR/tX%$*ACŒ$)>þØBþÿ…Fq‚¸†vqƒ [51TÎþyM®9gp¨q!_GKhi,>N9ji5"„Ç­¤BI ^t{ëF7= ý‚?+·&>Q4+8؇£‰z:KþM&,7Fÿ¯[LX"=!"54>54.#">32#".54>32!2654>7327414#"326pEþ@080*V91F:/G01U#99-F$/J\Z(;]7# -(7 )(ýY'0 :7)"òR  )3pIKU: %:jD7,KV;V,/@P3BsM8#5HC#8dG-° ý##+)žr)'$\FþŸ ]T%265#"2>54&#""=!"&54>7;432+632#".54>32>7M R£#]lH-&%4þø=)ø D^1€dV6Bu×µN“˜qG!.2"W!7NSaU3žRvþ‚þ£=)))(3r05¶ þ!r´(JU7–ÅV32#".54>32>3!+"632#".547632! 7654&#"ùZ+ /)#C.,G ˜_!.,Gq]¤ [5*,#998N! 2L^W$u#22sV/U@WN‚®¹cn»‡jC,i S;ƒv*09­r" '- GD(LYvþ¸&(LZZrŽu:!C.;V,BaGFvL6K&$, û=pPc¡iG#:RZf]0øf ,<}Nßþï†y1O[5þ½È]BK623254326323254>7+#"'&543!>54#"#"54#"#".53267!"OŸ`%'N¦ •$ ))>¾‚å‡Dq‚ü \*2&(QLF - ¡5[©/þDMh(0h…44¦þÀL[*7= ý‚>,·&>Q4!Qk:;þ…43yxwþ¦[/* þé)8DCþºœY ]lv%4&#"32>6=4#"#".5467&#">32#".54>326323254>7+# 543"32654'&!"3 +/E7&% TpV4qP5L#=8JZBi<*[5 &iS8P 1J‰WpoUnºY¼$ ))>îLâ‹þt‚À"G 6$/9o ¶ý©MFkR#¬2>.377(/ðˆ¥oî Z»o‹@^IJ…0'+,X_µ40—D>H1iU¢Býž&*êZ[547#"3276="+32>32!"#!"&54>7654&#""=&+#".54;547”»>)$. .>E2 ‡ KgT.9T44‚þ”""-6*-DVQ$.=7<`9%|8b•++•25_2Co*2 '•U83VD1L-  ("$$A>HoDPwi‚*@%+:5•W þ”‚[†"=!"54;>54&#"#"547#32?2#"547!"+>3232654>7632#".546;2+"3 7654.#"32741mDþ#$¨5G7) #-%*²!.,G8÷ › D-+3#M+Ü>U$4 OzÊ‚·ï{.DP¥3-¥?Jºæ[V," &,(˜RFeA6H ,0($&+*þr&MYœW 2 '­>4#I0Um° ýä@41/WZA*3=-(>!7 3(‡F6* B##+)þžXbjv€%# '&54>32#"'32>54&#"32741#"=47##".54;547!"+!+632%547#3276=!"%2654#"#^ò™þù´º%>C%)*JBQ,cB%š\œkU1! 2$7&Ds,LK,Op4|8 ‡  -R>RýóφhMP;þô)þþ%7M*;51eqW9 ¦ÕbI! 8(HK<+&Œ—cŽ0??A.&G"2.Rº ‚4H"(CA$•W 2 '•0~Jbá•++•¡=K2Eo-)(4^V"Bþ´»X„‘˜2632#"5467#"+#".5463!654.#"3267#"&5463#"632#".54>3!+"632325463!+"32>54#"!"32>--H ¬-)>…!dvu?ZŠN1AAv 9',(+!1 Þ1O, 'd &bJ,E$-BqEŸ V 9S%:#%^$#³Pû97)% VHýÎMªyøS)MY06ýè>,4K(&3*9B$IK.&]1! -<3<.=S3S#;%bn/@O5LcR9ò= 2FC%aR7,!4, ýÏ'58(.r.þL:ÿ6/^JZ46323&#"32>54&#"32673#"&54>7632#"'&5%632#"74&#"#"326 V8L€±Õµ“+PO/9.<' .!10^EM,D]T-»…RMVªÉ ?.DŽ% 0('$+pSIþëáÉÿ:rNI`v0=83=ª þÔK~^U„L0¨g׈’(–g)8%–A<%& &þºÚX‘§µ%4&#"326262#"545463#"+! '&543!6=4#"#".5467&#"#".5467&#">32#"&54>32632632325463!+"4&#"32632$7!""32654&(-.& 7'#)5--H ¬-)>ä¢ýÛþ¦Wq‚8QXU!(?=-E$?:HV†[8 W8;KhDOj 7LxIipWj^mVmº6µ$$³Pý"[%"GH9,<ûÿKǪè1^üMñ"F 6$+<\ª4>68?Ë)MY-6ýë>,·&3\4mÀoî Y¼q‰@^IJ†1&Z»Gh4-=N5Jˆ1#d>c9XHfl•l;QMC)..00þürV¶37&9, ýÒ'A\†™CF…rþ­!(6Qb˜CÆFÌu…Fq‚F0FBðKm7|8 › i¤N•$$³Pýþ3M=WN§a•++•‡.C"2Doþ‚)+-Y-6ýë>,Va&=R4gˆOM‚­)CC"•W 2 '• ¢{7&9, ýÒ'?&( þ»nYir%4&#"#"547#3262#"547!"+>3232547!+"3262#"5463#"+#"'&543!6!"326ˆ;2*.%*²!--G8÷ › Z!10›$B³ P#,H¬-)>À2V‚K…Fq‚ø%þEM¡5d¡jU )!X'#Ó+*þr&(NZœW 2 'þÎ/--Z>d@7W ýÒ')+-Y-6ýë>,5@(&=R40b&)8Cþœk\\3 7654.#"326?#"=!"&54>73!2654>7>3:32!"'.5<56;2+"[7[^4X#" .: -Dþ‹=)D) 9)< O‹þüÉR%1 †¥3-¥!à . œ?/)4.#  ,&R<04¶ þ!° ýâ#$ 59\S’&#" ^!þ¸…\CM%265#"%32767!"&54>7;432+#".54632#"'72654#"¹7M RüôùÈuU1þú=)ø D^1€dU.^¼1[jYU;$_VHJR:G-f$9M)92žRvþ‚u»þþL,ž04¶ þ!r´(JU7•Å 7q 2Tmœ_´D@PD= +2^O.>þœ \_3 7654.#"32>7#"=!"&'#"54>73274>7;2654>7>3:32#".54;2+"\?Ê»V#" ), (DþÒ4,;XhAB)þ ('3þñάàv,•¥3-¥?Á(.œ?/)#I# +*RF"%Gd¶ þKeI þ!° ýõ%¤Œ¾,7(s!þÊX W2654#""'32654&#"#"547#3262#"547!"+632#"$&54>32¬$9M)7MI* .Ur­h’Ò5$ $-%*²!.,G8÷ › *u4WüÑ¥þõ%>C%ƒU)+2^N/>-=f*Zg[J,Ë¡C9-X($Ó+*þr&(LYœW 2 'þ×lZcÁðyä’bI!@IþººXx†2632#"5463#"#!#"&'&543!65&=4&#">32#".54>3232=4./632!25463!+"%4&#"32>!"326=--H ¬-)>þØEZ[2@uq‚¸…;P7W/! [5 &$99:V%=ds=2F&tW $*G=Œ$$³Pü+/E7&% þzMagepP)MY-6ýë?+4J(=R4*7؇XQ-=Q3:#;%;V,Ws:VˆP("?9-Ç­¤$3& aq{ë>#7$;, ýÒ'ü2>.377(/þÞ&0Fþ”…[ ‰%4#"3264>54.#">32#".547632!2654>7>3:32#"$&546;2+"3 7654.#"326?3#"=!"Y'0 :7)"a -, *V91F:/G01U#99-F$?m«;\8# Y-7(&4+; OzË‚æþõ_FO¥3-¥? ·ì\V#" &, ,DþA¬r)'$\Fs):`:KU: %:jD7,KV;V,/@P3eV™"6KG&Už#° ýí$53-UZB*+F8)I!7"(œ=0( B# ++RFþ”“\P\%265#"4&#""=!"&54>7;432+632# 54>32#"'3262654#"Ç7M R—.#%4þø=))ø €h€dV6NiwÀ‚þæþ%>B&)*ICJ* e(†‹v)¤Íü¼$9M( 2Svþ‚Þ6&(3}.6¶ þ r´†vœÀaþ—ÔXŠ”%32>54&#"%"3262#"5467#"3262#"54#"632#"&547632>3!+"632#".54>32#"'! $54&%2654#"í7'% &0, 45!"/+G ˜_!.,Es5L?3;^;K$K5SdCd³s%14sV /N>-!/GrÈv—ø¥xB*92)*N>Q,¡rÊP5ûb%7M*;¾68'-.E#1&^7*LXžxþ¸(*MY\r $8gAYXH!AE*’mha‘J%%,øCF3K/]eYR:"1Vk~u54#"#"54#"#".542325432632325463!+"3267!"ñ,H¬-)>¾GÈiqIq‚ú\*2&(QLF ,!a$&O¦”$#³ Pû¡5\¤0þGMQ)+-Y-6ýë>,aX(=R4"Ir“>;þ43vuþ¦[0+ (0h…42ªþÆŽC7)7 ýÒ'e)8AFþ¼BZ |Š”%4#"3267#"&54>32632325463!+"32632#"5463#"+# 543!6=4&#"#".5467&#">324.#"326!"3 ZE 0)#OmONZ1J‰WpoUnºY¼$#³ P%,H ¬-)>îLâ‹þt‚¡UEC@2(?=-E$=8JZBi<*[5 &a)+"GH8-=:ý«MFkR#­q.3 &- GKR~¤\JgS<11þür·ˆ7'7ýÔ')+-Y56ýí>,X_µ4‡¦o…j!Z»Gh4-=N5I…1'+7;254326;.54>32#"&5473+">32#".546;2.+"!32>54&#"3254&ÿ, H Yc &(QL*Eþú=))î3n!CL=$$BrC¶[16D*AWI³ u'>+,@!8[}‚‘u8/8nGa?<DQ¥`B"x&¥"Ò `ʹwP*,4(BA-E( +.Y—@Uþ¬43yvuþ¦4(/6¶ þ ?h…E?R1;:'”F?D8.9b/L+ þÈ)'@C$MYE)  $5 .?<<&+ !s-U•]:Q,$'2%/]D0;þ¼X (4¤±%4&#"326">54&547#3276=!"%+#"'676?#"54>54.#"632#"&547##".54;547!"+36323767.54>323254.9+/+ 0)#&8 O7 - Aü3φjKP;þó(   $5Q< ." ƒd 0!.D*6,ð>'=;H4( 4H" bML^Gð@b8# |8 › [Eœ$?F2 Fí(1='/E8-G'œ" b; ©3@# &- F¦#3)Bc ,&)=MÊ—++—¡=K2Do.¬(H'2 16'ò"&€l#)P/:U*Q1.\pya$0‚¬):4—V 2 '—Š #8b@M`*70 6Q.5M$*3%þû468  ÿÿþFŠ'Eh'ÿÿþ¿$Š'Eä7ÿÿ(Š'EÐ8ÿÿþ³$Š'E,9ÿÿþ¼Š'E¼XþbªY%7262#"54'&#"#"&54632y.,G:q‘&% IQ|vA]D!A(LYØq#]n =  MGN[BoQþ-&þbªD$7262#"54'&#"#"&54632y.,G:^TQ!"Objuc€A(LYØ]#^;(0 E=J^……þ-&V9t ÂÚ&/ l¯ ßñ +M F$˜, r ®  Ì Lá V 6w Ë é Võ Œy HN X½$D$ †T$HÜ$T&Copyleft 2002, 2003, 2005, 2008 Free Software Foundation.Copyleft 2002, 2003, 2005, 2008 Free Software Foundation.FreeSerifFreeSerifMediumMediumFontForge 2.0 : Free Serif : 14-4-2008FontForge 2.0 : Free Serif : 14-4-2008Free SerifFree SerifVersion $Revision: 1.121 $ Version $Revision: 1.121 $ FreeSerifFreeSerifGNUGNUhttps://savannah.gnu.org/projects/freefont/https://savannah.gnu.org/projects/freefont/The use of this font is granted subject to GNU General Public License.The use of this font is granted subject to GNU General Public License.http://www.gnu.org/copyleft/gpl.htmlhttp://www.gnu.org/copyleft/gpl.htmlThe quick brown fox jumps over the lazy dog.The quick brown fox jumps over the lazy dog.navadnoDovoljena je uporaba v skladu z licenco GNU General Public License.http://www.gnu.org/copyleft/gpl.html`erif bo za vajo spet kuhal doma e ~gance.ÿƒ2`  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`a¬£„…½–膎‹©¤ŠÚƒ“òóˆÃÞñžªõôö¢­ÉÇ®bcdËeÈÊÏÌÍÎéfÓÐѯgð‘ÖÔÕhëí‰jikmln oqprsutvwêxzy{}|¸¡~€ìîº ýþ    ÿøù !"#$%&'()*+,ú×-./0123456789:;âã<=>?@ABCDEFGHIJ°±KLMNOPQRSTûüäåUVWXYZ[\]^_`abcdefghij»klmnæçopqrstuvwxyz{|}~€¦‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘Øá’“”•–—˜™š›œžŸ ¡ÛÜÝàÙߢ£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmno›pqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ                           ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~  € ‚ ƒ „ … † ‡ ˆ ‰ Š ‹ Œ Ž ‘ ’ “ ” • – — ˜ ™ š › œ ž Ÿ   ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ ­ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ ¿ À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß à á â ã ä å æ ç è é ê ë ì í î ï ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ                           ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~  € ‚ ƒ „ … † ‡ ˆ ‰ Š ‹ Œ Ž ‘ ’ “ ” • – — ˜ ™ š › œ ž Ÿ   ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ ­ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ ¿ À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß à á â ã ä å æ ç è é ê ë ì í î ï ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ                  ²³  ¶·Ä ´µÅ ‚‡ «Æ    ! " # $¾¿ % & ' ( ) * + , -¼ . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P÷ Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t uŒ v w x y z { | } ~  € ‚ ƒ „ … † ‡ ˆ ‰ Š ‹ Œ Ž ‘ ’ “ ” • – — ˜ ™ š › œ ž Ÿ   ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ ­ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ ¿ À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß à á â ã ä å æ ç è é ê ë ì í î ï ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ    ˜      š ™ï       ¥   ’      ! " # $ % &œ ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; <§ = > ? @ A B C D E F G H I J K L M N O P”• Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~  € ‚ ƒ „ … † ‡ ˆ ‰ Š ‹ Œ Ž ‘ ’ “ ” • – — ˜ ™ š › œ ž Ÿ   ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ ­ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ ¿ À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß à á â ã ä å æ ç è é ê ë ì í î ï ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ                           ! " # $ % & ' ( ) * + , - . / 0 1 2 3 4 5 6 7 8 9 : ; < = > ? @ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z [ \ ] ^ _ ` a b c d e f g h i j k l m n o p q r s t u v w x y z { | } ~  € ‚ ƒ „ … † ‡ ˆ ‰ Š ‹ Œ ¹ Ž ‘ ’ “ ” • – — ˜ ™ š › œ ž Ÿ   ¡ ¢ £ ¤ ¥ ¦ § ¨ © ª « ¬ ­ ® ¯ ° ± ² ³ ´ µ ¶ · ¸ ¹ º » ¼ ½ ¾ ¿ À Á Â Ã Ä Å Æ Ç È É Ê Ë Ì Í Î Ï Ð Ñ Ò Ó Ô Õ Ö × Ø Ù Ú Û Ü Ý Þ ß à á â ã ä å æ ç è é ê ë ì í î ï ð ñ ò ó ô õ ö ÷ ø ù ú û ü ý þ ÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvÀÁwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸¹º»¼½¾¿ÀÁÂÃÄÅÆÇÈÉÊËÌÍÎÏÐÑÒÓÔÕÖרÙÚÛÜÝÞßàáâãäåæçèéêëìíîïðñòóôõö÷øùúûüýþÿ      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abc softhyphenmicroAmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccent Gcommaaccent gcommaaccent Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonekIJij Jcircumflex jcircumflex Kcommaaccent kcommaaccent kgreenlandicLacutelacute Lcommaaccent lcommaaccentLcaronlcaronLdotldotNacutenacute Ncommaaccent ncommaaccentNcaronncaron napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracute Rcommaaccent rcommaaccentRcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongsuni0180uni0181uni0182uni0183uni0184uni0185uni0186uni0187uni0188uni0189uni018Auni018Buni018Cuni018Duni018Euni018Funi0190uni0191uni0193uni0194uni0195uni0196uni0197uni0198uni0199uni019Auni019Buni019Cuni019Duni019Euni019FOhornohornuni01A2uni01A3uni01A4uni01A5uni01A6uni01A7uni01A8uni01A9uni01AAuni01ABuni01ACuni01ADuni01AEUhornuhornuni01B1uni01B2uni01B3uni01B4uni01B5uni01B6uni01B7uni01B8uni01B9uni01BAuni01BBuni01BCuni01BDuni01BEuni01BFuni01C0uni01C1uni01C2uni01C3uni01C4uni01C5uni01C6uni01C7uni01C8uni01C9uni01CAuni01CBuni01CCuni01CDuni01CEuni01CFuni01D0uni01D1uni01D2uni01D3uni01D4uni01D5uni01D6uni01D7uni01D8uni01D9uni01DAuni01DBuni01DCuni01DDuni01DEuni01DFuni01E0uni01E1uni01E2uni01E3uni01E4uni01E5Gcarongcaronuni01E8uni01E9uni01EAuni01EBuni01ECuni01EDuni01EEuni01EFuni01F0uni01F1uni01F2uni01F3uni01F4uni01F5uni01F6uni01F8uni01F9 Aringacute aringacuteAEacuteaeacute Oslashacute oslashacuteuni0200uni0201uni0202uni0203uni0204uni0205uni0206uni0207uni0208uni0209uni020Auni020Buni020Cuni020Duni020Euni020Funi0210uni0211uni0212uni0213uni0214uni0215uni0216uni0217 Scommaaccent scommaaccent Tcommaaccent tcommaaccentuni021Euni021Funi0226uni0227uni0228uni0229uni022Auni022Buni022Cuni022Duni022Euni022Funi0230uni0231uni0232uni0233uni0235dotlessjuni0250uni0251uni0252uni0253uni0254uni0255uni0256uni0257uni0258uni0259uni025Auni025Buni025Cuni025Duni025Euni025Funi0260uni0261uni0262uni0263uni0264uni0265uni0266uni0267uni0268uni0269uni026Auni026Buni026Cuni026Duni026Euni026Funi0270uni0271uni0272uni0273uni0274uni0275uni0276uni0277uni0278uni0279uni027Auni027Buni027Cuni027Duni027Euni027Funi0280uni0281uni0282uni0283uni0284uni0285uni0286uni0287uni0288uni0289uni028Auni028Buni028Cuni028Duni028Euni028Funi0290uni0291uni0292uni0293uni0294uni0295uni0296uni0297uni0298uni0299uni029Auni029Buni029Cuni029Duni029Euni029Funi02A0uni02A1uni02A2uni02A3uni02A4uni02A5uni02A6uni02A7uni02A8uni02A9uni02AAuni02ABuni02ACuni02ADuni02AEuni02AFhsuper hhooksuperjsuperrsuper rturnsuperrturnrthooksuper Rturnsuperwsuperysuperprimemod primedblmod quoteleftmod apostrophemod apostropherev ringhalfrightringlefthalfsuperglottalstopmod glottalrevfrontedbackedraisedloweredverticallinemodmacronmodifier acutemodifier gravemodifierverticallinelowmod macronsubgravesubacutesubcolontriangularmodcolontriangularhalfmodringrighthalfcenterringlefthalfsupuni02D4uni02D5uni02D6uni02D7 rhotichookuni02DF gammasuperlsuperssuperxsuperglottalrevsuper toneextrahightonehightonemidtonelow toneextralowuni02EAuni02EBuni02ECuni02EDuni02EEuni02EFuni02F0uni02F1uni02F2uni02F3uni02F4uni02F5uni02F6uni02F7uni02F8uni02F9uni02FAuni02FBuni02FCuni02FDuni02FEuni02FF gravecomb acutecombuni0302 tildecombuni0304uni0305uni0306uni0307 diaeresiscomb hookabovecombuni030Auni030Buni030Cuni030Duni030Euni030Funi0310uni0311uni0312 commaabovecmbuni0314uni0315uni0316uni0317uni0318uni0319uni031Auni031Buni031Cuni031Duni031Euni031Funi0320hookpalatalizedbelowcmbuni0322 dotbelowcombuni0324uni0325uni0326uni0327 ogonekcmbuni0329uni032Auni032Buni032Cuni032Duni032Euni032Funi0330uni0331uni0332uni0333uni0334uni0335uni0336uni0337uni0338uni0339uni033Auni033Buni033Cuni033Duni033Euni033F gravetonecmbuni0341uni0342uni0343uni0344uni0345uni0346uni0347uni0348uni0349uni034Auni034Buni034Cuni034Duni034Euni0350uni0351uni0352uni0353uni0354uni0355uni0356uni0357uni0358uni0359uni035Auni035Buni035Cuni035Duni035Euni035Ftildedoublecmbbreveinverteddoublecmbuni0362uni0363uni0364uni0365uni0366uni0367uni0368uni0369uni036Auni036Buni036Cuni036Duni036Euni036Funi0374uni0375uni037Auni037Etonos dieresistonos Alphatonos anoteleia EpsilontonosEtatonos Iotatonos Omicrontonos Upsilontonos OmegatonosiotadieresistonosAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsiuni03A9 IotadieresisUpsilondieresis alphatonos epsilontonosetatonos iotatonosupsilondieresistonosalphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomega iotadieresisupsilondieresis omicrontonos upsilontonos omegatonosuni03D0theta1Upsilon1uni03D3uni03D4phi1omegapiuni03D7uni03DAuni03DBuni03DCuni03DDuni03DEuni03DFuni03E0uni03E1uni03F0uni03F1uni03F2uni03F5uni0400 afii10023 afii10051 afii10052 afii10053 afii10054 afii10055 afii10056 afii10057 afii10058 afii10059 afii10060 afii10061uni040D afii10062 afii10145 afii10017 afii10018 afii10019 afii10020 afii10021 afii10022 afii10024 afii10025 afii10026 afii10027 afii10028 afii10029 afii10030 afii10031 afii10032 afii10033 afii10034 afii10035 afii10036 afii10037 afii10038 afii10039 afii10040 afii10041 afii10042 afii10043 afii10044 afii10045 afii10046 afii10047 afii10048 afii10049 afii10065 afii10066 afii10067 afii10068 afii10069 afii10070 afii10072 afii10073 afii10074 afii10075 afii10076 afii10077 afii10078 afii10079 afii10080 afii10081 afii10082 afii10083 afii10084 afii10085 afii10086 afii10087 afii10088 afii10089 afii10090 afii10091 afii10092 afii10093 afii10094 afii10095 afii10096 afii10097uni0450 afii10071 afii10099 afii10100 afii10101 afii10102 afii10103 afii10104 afii10105 afii10106 afii10107 afii10108 afii10109uni045D afii10110 afii10193FL96FL0461h afii10146 afii10194FL0464hFL0465hFL0466hFL0467hFL0468hFL106FL046ChFL105FL046DhFL046FhFL046EhFL109FL046BhFL0471hFL0472hFL0473hFL0474hFL0475hFL0476hFL0477hFL0478hFL0479hFL047AhFL047BhFL124FL047DhFL126FL047FhFL0480hFL0481hFL0482hFL0483hFL0484hFL0485hFL0486hFL137FL0488hFL0489hFL048Ahuni048Cuni048Duni048Euni048F afii10050 afii10098uni0492uni0493uni0494uni0495uni0496uni0497uni0498uni0499uni049Auni049Buni049Cuni049Duni049Euni049Funi04A0uni04A1uni04A2uni04A3uni04A4uni04A5uni04A6uni04A7uni04A8uni04A9uni04AAuni04ABuni04ACuni04ADuni04AEuni04AFuni04B0uni04B1uni04B2uni04B3uni04B4uni04B5uni04B6uni04B7uni04B8uni04B9uni04BAuni04BBuni04BCuni04BDuni04BEuni04BFuni04C0uni04C1uni04C2uni04C3uni04C4FL04C5hFL198uni04C7uni04C8FL201FL202uni04CBuni04CCFL04CDhFL04CEhFL207uni04D0uni04D1uni04D2uni04D3uni04D4uni04D5uni04D6uni04D7uni04D8 afii10846uni04DAuni04DBuni04DCuni04DDuni04DEuni04DFuni04E0uni04E1uni04E2uni04E3uni04E4uni04E5uni04E6uni04E7uni04E8uni04E9uni04EAuni04EBuni04ECuni04EDuni04EEuni04EFuni04F0uni04F1uni04F2uni04F3uni04F4uni04F5uni04F8uni04F9FL0500hFL0501hFL0502hFL0503hFL0506hFL0507hFL0504hFL0505hFL0508hFL0509hFL050AhFL050BhFL050ChFL050DhFL050FhFL050Eh afii57801 afii57800 afii57793 afii57794 afii57795 afii57798 afii57797 afii57806 afii57796 afii57807 afii57842 afii57658 afii57664 afii57665 afii57666 afii57667 afii57668 afii57669 afii57670 afii57671 afii57672 afii57673 afii57674 afii57675 afii57676 afii57677 afii57678 afii57679 afii57680 afii57681 afii57682 afii57683 afii57684 afii57685 afii57686 afii57687 afii57688 afii57689 afii57690 afii57716 afii57717 afii57718uni05F3uni05F4 afii57388 afii57403 afii57407 afii57409 afii57410 afii57411 afii57412 afii57413 afii57414 afii57415 afii57416 afii57417 afii57418 afii57419 afii57420 afii57421 afii57422 afii57423 afii57424 afii57425 afii57426 afii57427 afii57428 afii57429 afii57430 afii57431 afii57432 afii57433 afii57434 afii57441 afii57442 afii57443 afii57444 afii57445 afii57446 afii57470 afii57448 afii57449 afii57450 afii57451 afii57453 afii57454 afii57455 afii57456 afii57457 afii57458uni0653uni0654uni0655 afii57392 afii57393 afii57394 afii57395 afii57396 afii57397 afii57398 afii57399 afii57400 afii57401uni066Buni0674 afii57506 afii57507 afii57508 afii57509uni06CCuni06D4uni0780uni0781uni0782uni0783uni0784uni0785uni0786uni0787uni0788uni0789uni078Auni078Buni078Cuni078Duni078Euni078Funi0790uni0791uni0792uni0793uni0794uni0795uni0796uni0797uni0798uni0799uni079Auni079Buni079Cuni079Duni079Euni079Funi07A0uni07A1uni07A2uni07A3uni07A4uni07A5uni07A6uni07A7uni07A8uni07A9uni07AAuni07ABuni07ACuni07ADuni07AEuni07AFuni07B0uni0901uni0902uni0903uni0905uni0906uni0907uni0908uni0909uni090Auni090Buni090Cuni090Duni090Funi0911uni0913uni0914uni0915uni0916uni0917uni0918uni0919uni091Auni091Buni091Cuni091Duni091Euni091Funi0920uni0921uni0922uni0923uni0924uni0925uni0926uni0927uni0928uni0929uni092Auni092Buni092Cuni092Duni092Euni092Funi0930uni0931uni0932uni0933uni0934uni0935uni0937uni0938uni0939uni093Cuni093Duni093Euni093Funi0940uni0941uni0942uni0943uni0944uni0945uni0947uni0948uni0949uni094Buni094Cuni094Duni0950uni0958uni0959uni095Auni095Buni095Cuni095Duni095Euni0960uni0961uni0962uni0963uni0964uni0965uni0966uni0967uni0968uni0969uni096Auni096Buni096Cuni096Duni096Euni096Funi0970bn_candrabindu bn_anusvara bn_visargabn_abn_aabn_ibn_iibn_ubn_uubn_ribn_libn_ebn_aibn_obn_aubn_kabn_khabn_gabn_ghabn_ngabn_cabn_chabn_jabn_jhabn_nyabn_ttabn_tthabn_ddabn_ddhabn_nnabn_tabn_thabn_dabn_dhabn_nabn_pabn_phabn_babn_bhabn_mabn_yabn_rabn_labn_shabn_ssabn_sabn_habn_nukta bn_avagraha bn_aakaarbn_ikaar bn_iikaarbn_ukaar bn_uukaar bn_rikaar bn_rrikaarbn_ekaar bn_aikaarbn_okaar bn_aukaar bn_hasanta Khanda_Ta bn_aumarkbn_rrabn_rhabn_yyabn_rribn_lli bn_likaar bn_llikaarbn_zerobn_onebn_twobn_threebn_fourbn_fivebn_sixbn_sevenbn_eightbn_nine bn_asamira bn_asamiba bn_rupeemark bn_rupeesign bn_currency1 bn_currency2 bn_currency3 bn_currency4bn_currencyless bn_currency16 bn_issharuni0A05uni0A06uni0A07uni0A08uni0A09uni0A0Auni0A0Funi0A10uni0A13uni0A14uni0A15uni0A16uni0A17uni0A18uni0A19uni0A1Auni0A1Buni0A1Cuni0A1Duni0A1Euni0A1Funi0A20uni0A21uni0A22uni0A23uni0A24uni0A25uni0A26uni0A27uni0A28uni0A2Auni0A2Buni0A2Cuni0A2Duni0A2Euni0A2Funi0A30uni0A32uni0A33uni0A35uni0A36uni0A38uni0A39uni0A3Cuni0A3Euni0A3Funi0A40uni0A41uni0A42uni0A47uni0A48uni0A4Buni0A4Cuni0A4Duni0A59uni0A5Auni0A5Buni0A5Cuni0A5Euni0A66uni0A67uni0A68uni0A69uni0A6Auni0A6Buni0A6Cuni0A6Duni0A6Euni0A6Funi0A70uni0A72uni0A73uni0A74PulliAyuthamTamlATamlAATaml_ITaml_IITamlUTamlUUTamlETamlEETamlAITamlOTamlOOTamlAUTamlKATamlNGATamlCATamlJATamlNYATamlTTATamlNNATamlTATamlNATamlNNNATamlPATamlMATamlYATamlRATamlRRATamlLATamlLLATamlLLLATamlVATamlSSATamlSATamlHATaml_v_ATaml_v_I Taml_v_IITaml_v_U Taml_v_UUTaml_v_E Taml_v_EE Taml_v_AI Taml_vow_O Taml_vow_OOTaml_AUsTaml_pulTaml_AUuni0C02uni0C03uni0C05uni0C06uni0C07uni0C08uni0C09uni0C0Auni0C0Buni0C0Cuni0C0Euni0C0Funi0C10uni0C12uni0C13uni0C14uni0C15uni0C16uni0C17uni0C18uni0C19uni0C1Auni0C1Buni0C1Cuni0C1Duni0C1Euni0C1Funi0C20uni0C21uni0C22uni0C23uni0C24uni0C25uni0C26uni0C27uni0C28uni0C2Auni0C2Buni0C2Cuni0C2Duni0C30uni0C32uni0D02uni0D03uni0D05uni0D06uni0D07uni0D08uni0D09uni0D0Auni0D0Bl1uni0D0Euni0D0Funi0D10uni0D12uni0D13uni0D14k1k2k3k4ngch1ch2ch3ch4njt1t2t3t4nhth1th2th3th4n1p1p2p3p4m1y1r3rhl3lhzhv1z1shs1h1uni0D3Euni0D3Funi0D40u1u2r1uni0D46uni0D47uni0D48uni0D4Auni0D4Buni0D4Cxxuni0D57r2l2uni0D66uni0D67uni0D68uni0D69uni0D6Auni0D6Buni0D6Cuni0D6Duni0D6Euni0D6Funi0D70uni0D82uni0D83uni0D85uni0D89uni0D8Auni0D8Buni0D91uni0D94uni0D99uni0D9Auni0D9Buni0D9Cuni0D9Euni0DA0uni0DA1uni0DA2uni0DA4uni0DA5uni0DA7uni0DA8uni0DA9uni0DAAuni0DABuni0DADuni0DAEuni0DAFuni0DB0uni0DB1uni0DB3uni0DB4uni0DB5uni0DB6uni0DB7uni0DB8uni0DB9uni0DBAuni0DBBuni0DBDuni0DC0uni0DC1uni0DC2uni0DC3uni0DC4uni0DC5uni0DC6uni0DCAuni0DCFuni0DD0uni0DD1uni0DD2uni0DD3uni0DD4uni0DD6uni0DD8uni0DD9uni0DDFuni0E01uni0E02uni0E03uni0E04uni0E05uni0E06uni0E07uni0E08uni0E09uni0E0Auni0E0Buni0E0Cuni0E0Duni0E0Euni0E0Funi0E10uni0E11uni0E12uni0E13uni0E14uni0E15uni0E16uni0E17uni0E18uni0E19uni0E1Auni0E1Buni0E1Cuni0E1Duni0E1Euni0E1Funi0E20uni0E21uni0E22uni0E23uni0E24uni0E25uni0E26uni0E27uni0E28uni0E29uni0E2Auni0E2Buni0E2Cuni0E2Duni0E2Euni0E2Funi0E30uni0E31uni0E32uni0E33uni0E34uni0E35uni0E36uni0E37uni0E38uni0E39uni0E3Auni0E3Funi0E40uni0E41uni0E42uni0E43uni0E44uni0E45uni0E46uni0E47uni0E48uni0E49uni0E4Auni0E4Buni0E4Cuni0E4Duni0E4Euni0E4Funi0E50uni0E51uni0E52uni0E53uni0E54uni0E55uni0E56uni0E57uni0E58uni0E59uni0E5Auni0E5Buni10A0uni10A1uni10A2uni10A3uni10A4uni10A5uni10A6uni10A7uni10A8uni10A9uni10AAuni10ABuni10ACuni10ADuni10AEuni10AFuni10B0uni10B1uni10B2uni10B3uni10B4uni10B5uni10B6uni10B7uni10B8uni10B9uni10BAuni10BBuni10BCuni10BDuni10BEuni10BFuni10C0uni10C1uni10C2uni10C3uni10C4uni10C5uni10D0uni10D1uni10D2uni10D3uni10D4uni10D5uni10D6uni10D7uni10D8uni10D9uni10DAuni10DBuni10DCuni10DDuni10DEuni10DFuni10E0uni10E1uni10E2uni10E3uni10E4uni10E5uni10E6uni10E7uni10E8uni10E9uni10EAuni10EBuni10ECuni10EDuni10EEuni10EFuni10F0uni10F1uni10F2uni10F3uni10F4uni10F5uni1200uni1201uni1202uni1203uni1204uni1205uni1206uni1208uni1209uni120Auni120Buni120Cuni120Duni120Euni120Funi1210uni1211uni1212uni1213uni1214uni1215uni1216uni1217uni1218uni1219uni121Auni121Buni121Cuni121Duni121Euni121Funi1220uni1221uni1222uni1223uni1224uni1225uni1226uni1227uni1228uni1229uni122Auni122Buni122Cuni122Duni122Euni122Funi1230uni1231uni1232uni1233uni1234uni1235uni1236uni1237uni1238uni1239uni123Auni123Buni123Cuni123Duni123Euni123Funi1240uni1241uni1242uni1243uni1244uni1245uni1246uni1248uni124Auni124Buni124Cuni124Duni1250uni1251uni1252uni1253uni1254uni1255uni1256uni1258uni125Auni125Buni125Cuni125Duni1260uni1261uni1262uni1263uni1264uni1265uni1266uni1267uni1268uni1269uni126Auni126Buni126Cuni126Duni126Euni126Funi1270uni1271uni1272uni1273uni1274uni1275uni1276uni1277uni1278uni1279uni127Auni127Buni127Cuni127Duni127Euni127Funi1280uni1281uni1282uni1283uni1284uni1285uni1286uni1288uni128Auni128Buni128Cuni128Duni1290uni1291uni1292uni1293uni1294uni1295uni1296uni1297uni1298uni1299uni129Auni129Buni129Cuni129Duni129Euni129Funi12A0uni12A1uni12A2uni12A3uni12A4uni12A5uni12A6uni12A7uni12A8uni12A9uni12AAuni12ABuni12ACuni12ADuni12AEuni12B0uni12B2uni12B3uni12B4uni12B5uni12B8uni12B9uni12BAuni12BBuni12BCuni12BDuni12BEuni12C0uni12C1uni12C2uni12C3uni12C4uni12C5uni12C8uni12C9uni12CAuni12CBuni12CCuni12CDuni12CEuni12D0uni12D1uni12D2uni12D3uni12D4uni12D5uni12D6uni12D8uni12D9uni12DAuni12DBuni12DCuni12DDuni12DEuni12DFuni12E0uni12E1uni12E2uni12E3uni12E4uni12E5uni12E6uni12E7uni12E8uni12E9uni12EAuni12EBuni12ECuni12EDuni12EEuni12F0uni12F1uni12F2uni12F3uni12F4uni12F5uni12F6uni12F7uni12F8uni12F9uni12FAuni12FBuni12FCuni12FDuni12FEuni12FFuni1300uni1301uni1302uni1303uni1304uni1305uni1306uni1307uni1308uni1309uni130Auni130Buni130Cuni130Duni130Euni1310uni1312uni1313uni1314uni1315uni1318uni1319uni131Auni131Buni131Cuni131Duni131Euni1320uni1321uni1322uni1323uni1324uni1325uni1326uni1327uni1328uni1329uni132Auni132Buni132Cuni132Duni132Euni132Funi1330uni1331uni1332uni1333uni1334uni1335uni1336uni1337uni1338uni1339uni133Auni133Buni133Cuni133Duni133Euni133Funi1340uni1341uni1342uni1343uni1344uni1345uni1346uni1348uni1349uni134Auni134Buni134Cuni134Duni134Euni134Funi1350uni1351uni1352uni1353uni1354uni1355uni1356uni1357uni1358uni1359uni135Auni1361uni1362uni1363uni1364uni1365uni1366uni1367uni1368uni1369uni136Auni136Buni136Cuni136Duni136Euni136Funi1370uni1371uni1372uni1373uni1374uni1375uni1376uni1377uni1378uni1379uni137Auni137Buni137Cuni1D00uni1D03uni1D05uni1D07uni1D0Buni1D0Cuni1D0Duni1D0Euni1D1Buni1D1Cuni1D20uni1D21uni1D22uni1D29uni1D81uni1D84uni1D85uni1D87uni1D8Duni1E00uni1E01uni1E02uni1E03uni1E04uni1E05uni1E06uni1E07uni1E08uni1E09uni1E0Auni1E0Buni1E0Cuni1E0Duni1E0Euni1E0Funi1E10uni1E11uni1E12uni1E13uni1E14uni1E15uni1E16uni1E17uni1E18uni1E19uni1E1Auni1E1Buni1E1Cuni1E1Duni1E1Euni1E1Funi1E20uni1E21uni1E22uni1E23uni1E24uni1E25uni1E26uni1E27uni1E28uni1E29uni1E2Auni1E2Buni1E2Cuni1E2Duni1E2Euni1E2Funi1E30uni1E31uni1E32uni1E33uni1E34uni1E35uni1E36uni1E37uni1E38uni1E39uni1E3Auni1E3Buni1E3Cuni1E3Duni1E3Euni1E3Funi1E40uni1E41uni1E42uni1E43uni1E44uni1E45uni1E46uni1E47uni1E48uni1E49uni1E4Auni1E4Buni1E4Cuni1E4Duni1E4Euni1E4Funi1E50uni1E51uni1E52uni1E53uni1E54uni1E55uni1E56uni1E57uni1E58uni1E59uni1E5Auni1E5Buni1E5Cuni1E5Duni1E5Euni1E5Funi1E60uni1E61uni1E62uni1E63uni1E64uni1E65uni1E66uni1E67uni1E68uni1E69uni1E6Auni1E6Buni1E6Cuni1E6Duni1E6Euni1E6Funi1E70uni1E71uni1E72uni1E73uni1E74uni1E75uni1E76uni1E77uni1E78uni1E79uni1E7Auni1E7Buni1E7Cuni1E7Duni1E7Euni1E7FWgravewgraveWacutewacute Wdieresis wdieresisuni1E86uni1E87uni1E88uni1E89uni1E8Auni1E8Buni1E8Cuni1E8Duni1E8Euni1E8Funi1E90uni1E91uni1E92uni1E93uni1E94uni1E95uni1E96uni1E97uni1E98uni1E99uni1E9Auni1E9Buni1EA0uni1EA1uni1EA2uni1EA3uni1EA4uni1EA5uni1EA6uni1EA7uni1EA8uni1EA9uni1EAAuni1EABuni1EACuni1EADuni1EAEuni1EAFuni1EB0uni1EB1uni1EB2uni1EB3uni1EB4uni1EB5uni1EB6uni1EB7uni1EB8uni1EB9uni1EBAuni1EBBuni1EBCuni1EBDuni1EBEuni1EBFuni1EC0uni1EC1uni1EC2uni1EC3uni1EC4uni1EC5uni1EC6uni1EC7uni1EC8uni1EC9uni1ECAuni1ECBuni1ECCuni1ECDuni1ECEuni1ECFuni1ED0uni1ED1uni1ED2uni1ED3uni1ED4uni1ED5uni1ED6uni1ED7uni1ED8uni1ED9uni1EDAuni1EDBuni1EDCuni1EDDuni1EDEuni1EDFuni1EE0uni1EE1uni1EE2uni1EE3uni1EE4uni1EE5uni1EE6uni1EE7uni1EE8uni1EE9uni1EEAuni1EEBuni1EECuni1EEDuni1EEEuni1EEFuni1EF0uni1EF1Ygraveygraveuni1EF4uni1EF5uni1EF6uni1EF7uni1EF8uni1EF9uni1F00uni1F01uni1F02uni1F03uni1F04uni1F05uni1F06uni1F07uni1F08uni1F09uni1F0Auni1F0Buni1F0Cuni1F0Duni1F0Euni1F0Funi1F10uni1F11uni1F12uni1F13uni1F14uni1F15uni1F18uni1F19uni1F1Auni1F1Buni1F1Cuni1F1Duni1F20uni1F21uni1F22uni1F23uni1F24uni1F25uni1F26uni1F27uni1F28uni1F29uni1F2Auni1F2Buni1F2Cuni1F2Duni1F2Euni1F2Funi1F30uni1F31uni1F32uni1F33uni1F34uni1F35uni1F36uni1F37uni1F38uni1F39uni1F3Auni1F3Buni1F3Cuni1F3Duni1F3Euni1F3Funi1F40uni1F41uni1F42uni1F43uni1F44uni1F45uni1F48uni1F49uni1F4Auni1F4Buni1F4Cuni1F4Duni1F50uni1F51uni1F52uni1F53uni1F54uni1F55uni1F56uni1F57uni1F59uni1F5Buni1F5Duni1F5Funi1F60uni1F61uni1F62uni1F63uni1F64uni1F65uni1F66uni1F67uni1F68uni1F69uni1F6Auni1F6Buni1F6Cuni1F6Duni1F6Euni1F6Funi1F70uni1F71uni1F72uni1F73uni1F74uni1F75uni1F76uni1F77uni1F78uni1F79uni1F7Auni1F7Buni1F7Cuni1F7Duni1F80uni1F81uni1F82uni1F83uni1F84uni1F85uni1F86uni1F87uni1F88uni1F89uni1F8Auni1F8Buni1F8Cuni1F8Duni1F8Euni1F8Funi1F90uni1F91uni1F92uni1F93uni1F94uni1F95uni1F96uni1F97uni1F98uni1F99uni1F9Auni1F9Buni1F9Cuni1F9Duni1F9Euni1F9Funi1FA0uni1FA1uni1FA2uni1FA3uni1FA4uni1FA5uni1FA6uni1FA7uni1FA8uni1FA9uni1FAAuni1FABuni1FACuni1FADuni1FAEuni1FAFuni1FB0uni1FB1uni1FB2uni1FB3uni1FB4uni1FB6uni1FB7uni1FB8uni1FB9uni1FBAuni1FBBuni1FBCuni1FBDuni1FBEuni1FBFuni1FC0uni1FC1uni1FC2uni1FC3uni1FC4uni1FC6uni1FC7uni1FC8uni1FC9uni1FCAuni1FCBuni1FCCuni1FCDuni1FCEuni1FCFuni1FD0uni1FD1uni1FD2uni1FD3uni1FD6uni1FD7uni1FD8uni1FD9uni1FDAuni1FDBuni1FDDuni1FDEuni1FDFuni1FE0uni1FE1uni1FE2uni1FE3uni1FE4uni1FE5uni1FE6uni1FE7uni1FE8uni1FE9uni1FEAuni1FEBuni1FECuni1FEDuni1FEEuni1FEFuni1FF2uni1FF3uni1FF4uni1FF6uni1FF7uni1FF8uni1FF9uni1FFAuni1FFBuni1FFCuni1FFDuni1FFEemquadenspaceemspacethreeperemspacefourperemspace sixperemspace thinspacezerowidthspace afii61664zerojoinuni2010uni2011 figuredash afii00208 underscoredbl quotereverseduni201Funi2023uni2031minuteseconduni2034uni2035uni2036uni2037uni2038uni203B exclamdbluni203Duni203Euni203Ftieuni2041uni2042uni2043uni2045uni2046uni2047uni2048uni2049uni204Auni204B zerosuperioruni2071 foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperioruni207Auni207Buni207Cuni207F zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferioruni208Auni208Buni208Cuni20A0 colonmonetaryuni20A2lirauni20A5uni20A6pesetauni20A8uni20A9Eurouni20AFuni20B2uni20DDuni20E0uni2102uni2103 afii61248uni2109uni210Auni210Buni210Cuni210Duni210Euni210Funi2110Ifrakturuni2112 afii61289uni2115 afii61352uni2117 weierstrassuni2119uni211Auni211BRfrakturuni211D prescriptionuni211Funi2120uni2123uni2124uni2126uni2127uni2128uni212Aangstromuni212Cuni212D estimateduni2130uni2131uni2132uni2133alephuni2136uni2137uni2138uni2139onethird twothirdsuni2155uni2156uni2157uni2158uni2159uni215A oneeighth threeeighths fiveeighths seveneighthsuni215Funi2160uni2161uni2162uni2163uni2164uni2165uni2166uni2167uni2168uni2169uni216Auni216Buni216Cuni216Duni216Euni216Funi2170uni2171uni2172uni2173uni2174uni2175uni2176uni2177uni2178uni2179uni217Auni217Buni217Cuni217Duni217Euni217F arrowleftarrowup arrowright arrowdown arrowboth arrowupdnuni2196uni2197uni2198uni2199uni219Auni219Buni219Cuni219Duni219Euni219Funi21A0uni21A1uni21A2uni21A3uni21A4uni21A5uni21A6uni21A7 arrowupdnbse arrowhookleftarrowhookrightuni21ABuni21ACuni21ADuni21AEuni21B0uni21B1uni21B2uni21B3uni21B4carriagereturnuni21B6uni21B7uni21BAuni21BBuni21BCuni21BDuni21BEuni21BFuni21C0uni21C1uni21C2uni21C3uni21C4uni21C5uni21C6uni21C7uni21C8uni21C9uni21CAuni21CBuni21CCuni21CDuni21CEuni21CF arrowdblleft arrowdblup arrowdblright arrowdbldown arrowdblbothuni21D5uni21D6uni21D7uni21D8uni21D9uni21DAuni21DBuni21DCuni21DDuni21E0uni21E2 universaluni2201 existentialuni2204emptyset Delta.mathgradientelement notelementuni220Asuchthatuni220Cuni220Duni2210uni2213uni2214uni2215uni2216 asteriskmathuni2218uni2219uni221Buni221C proportional orthogonalangleuni2221uni2222dividesnotbarparallel notparallel logicaland logicalor intersectionunionuni222Cuni222Duni222Euni222F thereforeuni2235uni2236uni2237uni2238uni2239uni223Auni223Bsimilaruni223Duni2240uni2241uni2242uni2243uni2244 congruentapproxnotequaluni2247uni2249uni224Auni224Buni224Duni224Euni224Funi2250uni2251uni2252uni2253uni2254uni2255uni2256uni2257uni2259uni225Auni225C equivalenceuni2262uni2263uni2266uni2267uni2268uni2269uni226Auni226Buni226Cuni226Duni226Euni226Funi2270uni2271uni2272uni2273uni2274uni2275uni2276uni2277uni2278uni2279uni227Auni227Buni227Cuni227Duni227Euni227Funi2280uni2281 propersubsetpropersuperset notsubsetuni2285 reflexsubsetreflexsupersetuni2288uni2289uni228Auni228Buni228Cuni228Duni228Euni228Funi2290uni2291uni2292uni2293uni2294 circleplusuni2296circlemultiplyuni2298uni2299uni229Auni229Buni229Cuni229Duni229Euni229Funi22A0uni22A1uni22A2uni22A3uni22A4 perpendicularuni22A6uni22A7uni22A9uni22AAuni22ABuni22ACuni22ADuni22AEuni22AFuni22B2uni22B3uni22B4uni22B5uni22B6uni22B7uni22B8uni22BAuni22BBuni22BCuni22BDnarylogicaland narylogicalornaryintersection naryunionuni22C4dotmathuni22C6uni22C7uni22C8uni22CBuni22CCuni22CDuni22CEuni22CFuni22D0uni22D1uni22D2uni22D3uni22D4uni22D5uni22D6uni22D7uni22D8uni22D9uni22DAuni22DBuni22DCuni22DDuni22DEuni22DFuni22E0uni22E1uni22E2uni22E3uni22E4uni22E5uni22E6uni22E7uni22E8uni22E9uni22EAuni22EBuni22ECuni22EDuni22EEuni22EFuni22F0uni22F1uni2300uni2301 ceilingleft ceilingright floorleft floorright revlogicalnotuni231A integraltp integralbtfrown slurbelow angleleft anglerightuni2347uni2348uni2350uni2357uni235Euni239Buni239Cuni239Duni239Euni239Funi23A0uni23A1uni23A2uni23A3uni23A4uni23A5uni23A6uni23A7uni23A8uni23A9uni23AAuni23ABuni23ACuni23ADuni23AEuni2423uni2460uni2461uni2462uni2463uni2464uni2465uni2466uni2467uni2468uni2469SF100000uni2501SF110000uni2503uni2504uni2505uni2506uni2507uni2508uni2509uni250Auni250BSF010000uni250Duni250Euni250FSF030000uni2511uni2512uni2513SF020000uni2515uni2516uni2517SF040000uni2519uni251Auni251BSF080000uni251Duni251Euni251Funi2520uni2521uni2522uni2523SF090000uni2525uni2526uni2527uni2528uni2529uni252Auni252BSF060000uni252Duni252Euni252Funi2530uni2531uni2532uni2533SF070000uni2535uni2536uni2537uni2538uni2539uni253Auni253BSF050000uni253Duni253Euni253Funi2540uni2541uni2542uni2543uni2544uni2545uni2546uni2547uni2548uni2549uni254Auni254BSF430000SF240000SF510000SF520000SF390000SF220000SF210000SF250000SF500000SF490000SF380000SF280000SF270000SF260000SF360000SF370000SF420000SF190000SF200000SF230000SF470000SF480000SF410000SF450000SF460000SF400000SF540000SF530000SF440000uni256Dupblockuni2581uni2582uni2583dnblockuni2585uni2586uni2587blockuni2589uni258Auni258Blfblockuni258Duni258Euni258Frtblockuni2594uni2595 filledboxH22073triaguptriangleuni25B6triagdn triangleinvuni25C0uni25C6 whitediamondcircleuni25CCH18533uni25D0uni25D1uni25D2uni25D3uni25D4uni25D5uni25D6uni25D7uni25E2uni25E3uni25E4uni25E5uni25E7uni25E8uni25E9uni25EA largecircleuni2605uni2606uni260Cuni260Duni260Euni2610uni2611uni2612uni2619uni261Auni261Buni261Cuni261Duni261Euni261Funi2620uni2622uni2623uni2626uni2628uni262Auni262Cuni262Euni262Funi2630uni2631uni2632uni2633uni2634uni2635uni2636uni2637uni2638uni2639 smileface invsmilefacesununi263Duni263Euni263Ffemaleuni2641maleuni2643uni2644uni2645uni2646uni2647uni2648uni2649uni264Auni264Buni264Cuni264Duni264Euni264Funi2650uni2651uni2652uni2653uni2654uni2655uni2656uni2657uni2658uni2659uni265Auni265Buni265Cuni265Duni265Euni265Fspadeuni2661uni2662clubheartdiamonduni2669 musicalnotemusicalnotedbluni266Cuni266Duni266Euni266Funi2670uni2671uni2701uni2702uni2703uni2704uni2706uni2707uni2708uni2709uni270Cuni270Duni270Euni270Funi2710uni2711uni2712uni2713uni2714uni2715uni2716uni2717uni2718uni2719uni271Auni271Buni271Cuni271Duni271Euni271Funi2720uni2721uni2722uni2723uni2724uni2725uni2726uni2727uni2729uni272Auni272Buni272Cuni272Duni272Euni272Funi2730uni2731uni2732uni2733uni2734uni2735uni2736uni2737uni2738uni2739uni273Auni273Buni273Cuni273Duni273Euni273Funi2740uni2741uni2742uni2743uni2744uni2745uni2746uni2747uni2748uni2749uni274Auni274Buni274Duni274Funi2750uni2751uni2752uni2756uni2758uni2759uni275Auni275Buni275Cuni275Duni275Euni2761uni2762uni2763uni2764uni2765uni2766uni2767uni2776uni2777uni2778uni2779uni277Auni277Buni277Cuni277Duni277Euni277Funi2780uni2781uni2782uni2783uni2784uni2785uni2786uni2787uni2788uni2789uni278Auni278Buni278Cuni278Duni278Euni278Funi2790uni2791uni2792uni2793uni2794uni2798uni2799uni279Auni279Buni279Cuni279Duni279Euni279Funi27A0uni27A1uni27A2uni27A3uni27A4uni27A5uni27A6uni27A7uni27A8uni27A9uni27AAuni27ABuni27ACuni27ADuni27AEuni27AFuni27B1uni27B2uni27B3uni27B4uni27B5uni27B6uni27B7uni27B8uni27B9uni27BAuni27BBuni27BCuni27BDuni27BEuni27F5uni27F6uni27F7uni27F8uni27F9uni27FAuni27FBuni27FCuni2A00uni2A01uni2A02uni2A03uni2A04uni2A09uni2E17uni3001uni3002uni3003uni3005uni3007uni3008uni3009uni300Auni300Buni300Cuni300Duni300Euni300Funi3010uni3011uni3012uni3014uni3015uni3041uni3042uni3043uni3044uni3045uni3046uni3047uni3048uni3049uni304Auni304Buni304Cuni304Duni304Euni304Funi3050uni3051uni3052uni3053uni3054uni3055uni3056uni3057uni3058uni3059uni305Auni305Buni305Cuni305Duni305Euni305Funi3060uni3061uni3062uni3063uni3064uni3065uni3066uni3067uni3068uni3069uni306Auni306Buni306Cuni306Duni306Euni306Funi3070uni3071uni3072uni3073uni3074uni3075uni3076uni3077uni3078uni3079uni307Auni307Buni307Cuni307Duni307Euni307Funi3080uni3081uni3082uni3083uni3084uni3085uni3086uni3087uni3088uni3089uni308Auni308Buni308Cuni308Duni308Euni308Funi3090uni3091uni3092uni3093uni3094uni3099uni309Buni30A1uni30A2uni30A3uni30A4uni30A5uni30A6uni30A7uni30A8uni30A9uni30AAuni30ABuni30ACuni30ADuni30AEuni30AFuni30B0uni30B1uni30B2uni30B3uni30B4uni30B5uni30B6uni30B7uni30B8uni30B9uni30BAuni30BBuni30BCuni30BDuni30BEuni30BFuni30C0uni30C1uni30C2uni30C3uni30C4uni30C5uni30C6uni30C7uni30C8uni30C9uni30CAuni30CBuni30CCuni30CDuni30CEuni30CFuni30D0uni30D1uni30D2uni30D3uni30D4uni30D5uni30D6uni30D7uni30D8uni30D9uni30DAuni30DBuni30DCuni30DDuni30DEuni30DFuni30E0uni30E1uni30E2uni30E3uni30E4uni30E5uni30E6uni30E7uni30E8uni30E9uni30EAuni30EBuni30ECuni30EDuni30EEuni30EFuni30F0uni30F1uni30F2uni30F3uni30F4uni30F5uni30F6uni30F7uni30F8uni30F9uni30FAuni30FBuni30FCuniF639uniF63AuniF63BuniF63CuniF63DuniF63EuniF63FuniF640uniF641 onefittedffffiffluniFB06 afii57694 afii57695uniFB2CuniFB2DuniFB2EuniFB2FuniFB30uniFB31uniFB32uniFB33uniFB34 afii57723uniFB36uniFB38uniFB39uniFB3AuniFB3BuniFB3CuniFB3EuniFB40uniFB41uniFB43uniFB44uniFB46uniFB47uniFB48uniFB49uniFB4A afii57700uniFB4CuniFB4DuniFB4EuniFB56uniFB57uniFB58uniFB59uniFB7AuniFB7BuniFB7CuniFB7DuniFB8AuniFB8BuniFB92uniFB93uniFB94uniFB95uniFBFCuniFBFDuniFBFEuniFBFFuniFDF2uniFDFCuniFE70uniFE74uniFE76uniFE78uniFE7AuniFE7CuniFE80uniFE81uniFE82uniFE83uniFE84uniFE8CuniFE8DuniFE8EuniFE8FuniFE90uniFE91uniFE92uniFE95uniFE96uniFE97uniFE98uniFE99uniFE9AuniFE9BuniFE9CuniFE9DuniFE9EuniFE9FuniFEA0uniFEA1uniFEA2uniFEA3uniFEA4uniFEA5uniFEA6uniFEA7uniFEA8uniFEA9uniFEAAuniFEABuniFEACuniFEADuniFEAEuniFEAFuniFEB0uniFEB1uniFEB2uniFEB3uniFEB4uniFEB5uniFEB6uniFEB7uniFEB8uniFEB9uniFEBAuniFEBBuniFEBCuniFEBDuniFEBEuniFEBFuniFEC0uniFEC1tahfinalarabictahinitialarabicuniFEC4uniFEC5zahfinalarabiczahinitialarabiczahmedialarabicuniFEC9uniFECAuniFECBuniFECCuniFECDuniFECEuniFECFuniFED0uniFED1uniFED2uniFED3uniFED4uniFED5uniFED6uniFED7uniFED8uniFED9uniFEDAuniFEDBuniFEDCuniFEDDuniFEDEuniFEDFuniFEE0uniFEE1uniFEE2uniFEE3uniFEE4uniFEE5uniFEE6uniFEE7uniFEE8uniFEE9uniFEEAuniFEEBuniFEECuniFEEDuniFEEEuniFEF1yehfinalarabicyehinitialarabicyehmedialarabicuniFEF5uniFEF6uniFEF7uniFEF8uniFEF9uniFEFAuniFEFBuniFEFCuniFFFD uni0937091Fr4xxx1y2y2u1y2u2v2 FIXME195550 FIXME195551k1xxnhxxn1xxl3xxlhxxr3xxk1u1k1u2k1r1k1r2k1l1k1k1k1k1u1k1k1u2k1k1r1k1k1r3k1k1r3u1k1k1r3u2k1t1k1t1u1k1t1u2k1t1r3k1t1r3u1k1t1r3u2k1t1nhk1nhu1k1nhu2k1th1k1th1u1k1th1u2k1th1r1k1th1r2k1th1r3 k1th1r3u1 k1th1r3u2k1n1k1n1u1k1n1u2k1m1k1m1u1k1m1u2k1r3k1r3u1k1r3u2k1l3k1l3u1k1l3u2k1shk1shu1k1shu2k1shr1k1shnhk1shnhu1k1shnhu2k1shm1k1shm1u1k1shm1u2k1shm1r1k1s1k1s1u1k1s1u2k1s1r1k1rhrhk1rhrhu1k1rhrhu2k2u1k2u2k2r1k3u1k3u2k3r1k3r2k3k3k3k3u1k3k3u2k3k3r1k3k4k3k4u1k3k4u2k3k4r1k3th3k3th3u1k3th3u2k3th3r1k3th3th4 k3th3th4u1 k3th3th4u2 k3th3th4r1 k3th3th4r3 k3th3th4r3u1 k3th3th4r3u2k3n1k3n1u1k3n1u2k3m1k3m1u1k3m1u2k3r3k3r3u1k3r3u2k3l3k3l3u1k3l3u2k4u1k4u2k4r1k4r2k4n1k4n1u1k4n1u2k4r3k4r3u1k4r3u2ngu1ngu2ngk1ngk1u1ngk1u2ngk1r1ngngngngu1ngngu2ch1u1ch1u2ch1ch1ch1ch1u1ch1ch1u2ch1ch2ch1ch2u1ch1ch2u2ch1ch2r1ch1ch2r3 ch1ch2r3u1 ch1ch2r3u2ch2u1ch2u2ch2r1ch2r3ch2r3u1ch2r3u2ch3u1ch3u2ch3r1ch3r2ch3ch3ch3ch3u1ch3ch3u2ch3ch3r1ch3njch3nju1ch3nju2ch3r3ch3r3u1ch3r3u2ch4u1ch4u2ch4r1ch4r2ch4r3ch4r3u1ch4r3u2nju1nju2njch1njch1u1njch1u2njch1r1njch2njch2u1njch2u2njch2r1njch3njch3u1njch3u2njnjnjnju1njnju2t1u1t1u2t1r1t1r2t1t1t1t1u1t1t1u2t1r3t1r3u1t1r3u2t2u1t2u2t3u1t3u2t3r1t3t3t3t3u1t3t3u2t3t4t3t4u1t3t4u2t3m1t3m1u1t3m1u2t3m1r1t3r3t3r3u1t3r3u2t4u1t4u2t4r1t4r3t4r3u1t4r3u2nhu1nhu2nht1nht1u1nht1u2nht1r3nht1r3u1nht1r3u2nht2nht3nht3u1nht3u2nht3r1nht3r3nht3r3u1nht3r3u2nht4nht4u1nht4u2nht4r1nhnhnhnhu1nhnhu2nhm1nhm1u1nhm1u2th1u1th1u2th1r1th1r2th1th1th1th1u1th1th1u2th1th1r1th1th1r2th1th1r3 th1th1r3u1 th1th1r3u2th1th2th1th2u1th1th2u2th1th2r1th1n1th1p4th1p4u1th1p4u2th1p4r1th1m1th1m1u1th1m1u2th1m1r1th1r3th1r3u1th1r3u2th1l3th1l3u1th1l3u2th1s1th1s1u1th1s1u2th1s1r1th1s1r2th1s1th2 th1s1th2u1 th1s1th2u2 th1s1th2r1th1s1n1 th1s1n1u1 th1s1n1u2th1s1m1 th1s1m1u1 th1s1m1u2 th1s1m1r1th1s1r3 th1s1r3u1 th1s1r3u2th2u1th2u2th2n1th2n1u1th2n1u2th2m1th2m1u1th2m1u2th2m1r1th3u1th3u2th3r1th3r2th3th3th3th3u1th3th3u2th3th3r1th3th3r2th3th4th3th4u1th3th4u2th3th4r1th3th4r2th3th4n1 th3th4n1u1 th3th4n1u2th3th4m1 th3th4m1u1 th3th4m1u2 th3th4m1r1th3th4r3 th3th4r3u1 th3th4r3u2th3r3th3r3u1th3r3u2th4u1th4u2th4r1th4r2th4n1th4n1u1th4n1u2th4m1th4m1u1th4m1u2th4m1r1th4r3th4r3u1th4r3u2n1u1n1u2n1r1n1r2n1th1n1th1u1n1th1u2n1th1r1n1th1r2n1th1r3 n1th1r3u1 n1th1r3u2n1th2n1th2u1n1th2u2n1th2r1n1th2r2n1th3n1th3u1n1th3u2n1th3r1n1th3r3 n1th3r3u1 n1th3r3u2n1th4n1th4u1n1th4u2n1th4r1n1th4r3 n1th4r3u1 n1th4r3u2n1n1n1n1u1n1n1u2n1n1r1n1n1r3n1n1r3u1n1n1r3u2n1m1n1m1u1n1m1u2n1m1r1n1m1r3n1m1r3u1n1m1r3u2n1r3n1r3u1n1r3u2n1rhn1rhu1n1rhu2p1u1p1u2p1r1p1r2p1t1p1t1u1p1t1u2p1th1p1th1u1p1th1u2p1th1r1p1th1r2p1n1p1n1u1p1n1u2p1p1p1p1u1p1p1u2p1p1r1p1p2p1p2u1p1p2u2p1r3p1r3u1p1r3u2p1l3p1l3u1p1l3u2p1s1p1s1u1p1s1u2p1s1r1p1s1r3p1s1r3u1p1s1r3u2p2u1p2u2p2k1p2k1u1p2k1u2p2t1p2t1u1p2t1u2p2th1p2th1u1p2th1u2p2th1r1p2n1p2n1u1p2n1u2p2p1p2p1u1p2p1u2p2m1p2m1u1p2m1u2p2r3p2r3u1p2r3u2p2l3p2l3u1p2l3u2p2s1p2s1u1p2s1u2p2s1r1p2rhrhp2rhrhu1p2rhrhu2p3u1p3u2p3r1p3k3p3k3u1p3k3u2p3k3r1p3ch3p3ch3u1p3ch3u2p3ch3r1p3th3p3th3u1p3th3u2p3th3r1p3th4p3th4u1p3th4u2p3th4r1p3th4r2p3n1p3n1u1p3n1u2p3p3p3p3u1p3p3u2p3p4p3r3p3r3u1p3r3u2p3l3p3l3u1p3l3u2p4u1p4u2p4r1p4r2p4r3p4r3u1p4r3u2m1u1m1u2m1r1m1r2m1n1m1n1u1m1n1u2m1p1m1p1u1m1p1u2m1p1r1m1p1r3m1p1r3u1m1p1r3u2m1m1m1m1u1m1m1u2m1m1r1m1r3m1r3u1m1r3u2m1l3m1l3u1m1l3u2y1u1y1u2y1r1y1k1y1k1u1y1k1u2y1k1r1y1k1k1y1k1k1u1y1k1k1u2y1ch1y1ch1u1y1ch1u2y1th1y1th1u1y1th1u2y1th1r1y1th1th1 y1th1th1u1 y1th1th1u2 y1th1th1r1y1n1y1n1u1y1n1u2y1p1y1p1u1y1p1u2y1p1r1y1m1y1m1u1y1m1u2y1m1r1y1y1y1y1u1y1y1u2r3u1r3u2r3r1l3u1l3u2l3r1l3k1l3k1u1l3k1u2l3k1r1l3k1k1l3k1k1u1l3k1k1u2l3k3l3k3u1l3k3u2l3k3r1l3ch1l3ch1u1l3ch1u2l3th1l3th1u1l3th1u2l3th1r1l3th1th1 l3th1th1u1 l3th1th1u2l3p1l3p1u1l3p1u2l3p1r3l3p1r3u1l3p1r3u2l3p2l3p2u1l3p2u2l3p3l3p3u1l3p3u2l3m1l3m1u1l3m1u2l3l3l3l3u1l3l3u2v1u1v1u2v1r1v1r3v1r3u1v1r3u2v1l3v1l3u1v1l3u2v1v1v1v1u1v1v1u2z1u1z1u2z1r1z1ch1z1ch1u1z1ch1u2z1ch1r1z1ch2z1ch2u1z1ch2u2z1ch2r1z1n1z1n1u1z1n1u2z1m1z1m1u1z1m1u2z1m1r1z1r3z1r3u1z1r3u2z1l3z1l3u1z1l3u2z1z1z1z1u1z1z1u2z1z1r1z1z1r3z1z1r3u1z1z1r3u2shu1shu2shr1shk1shk1u1shk1u2shk1r1shk1k1shk1k1u1shk1k1u2shk1k1r1shk1r3shk1r3u1shk1r3u2sht1sht1u1sht1u2sht1r1sht1r2sht1r3sht1r3u1sht1r3u2sht2sht2u1sht2u2shnhshnhu1shnhu2shp1shp1u1shp1u2shp1r1shp1r3shp1r3u1shp1r3u2shp2shp2u1shp2u2shm1shm1u1shm1u2shm1r3shm1r3u1shm1r3u2s1u1s1u2s1r1s1r2s1k1s1k1u1s1k1u2s1k1r1s1k1k1s1k1k1u1s1k1k1u2s1k1k1r1s1k1r3s1k1r3u1s1k1r3u2s1k2s1k2u1s1k2u2s1t1s1t1u1s1t1u2s1t1r3s1t1r3u1s1t1r3u2s1th1s1th1u1s1th1u2s1th1r1s1th1r2s1th1r3 s1th1r3u1 s1th1r3u2s1th2s1th2u1s1th2u2s1th2r1s1n1s1n1u1s1n1u2s1p1s1p1u1s1p1u2s1p1r1s1p1r3s1p1r3u1s1p1r3u2s1p2s1p2u1s1p2u2s1m1s1m1u1s1m1u2s1m1r1s1r3s1r3u1s1r3u2s1l3s1l3u1s1l3u2s1s1s1s1u1s1s1u2s1s1r1s1s1r3s1s1r3u1s1s1r3u2s1rhrhs1rhrhu1s1rhrhu2s1rhrhr3 s1rhrhr3u1 s1rhrhr3u3h1u1h1u2h1r1h1n1h1n1u1h1n1u2h1m1h1m1u1h1m1u2h1m1r1h1r3h1r3u1h1r3u2h1l3h1l3u1h1l3u2lhu1lhu2lhlhlhlhu1lhlhu2zhu1zhu2zhk1zhk1u1zhk1u2zhk1k1zhk1k1u1zhk1k1u2zhch1zhch1u1zhch1u2zhth1zhth1u1zhth1u2zhth1th1 zhth1th1u1 zhth1th1u2zhn1zhn1u1zhn1u2zhn1n1zhn1n1u1zhn1n1u2zhp1zhp1u1zhp1u2zhm1zhm1u1zhm1u2zhv1zhv1u1zhv1u2zhs1zhs1u1zhs1u2rhu1rhu2rhrhrhrhu1rhrhu2 bn_initekaar bn_initaikaarbn_reph bn_baphala bn_raphala bn_half_ka bn_half_kha bn_half_ga bn_half_gha bn_half_nga bn_half_ca bn_half_cha bn_half_ja bn_half_jha bn_half_nya bn_half_tta bn_half_ttha bn_half_dda bn_half_ddha bn_half_nna bn_half_tha bn_half_da bn_half_dha bn_half_na bn_half_pa bn_half_pha bn_half_ba bn_half_bha bn_half_ma bn_half_ya bn_half_ra bn_half_la bn_half_sha bn_half_ssa bn_half_sa bn_half_ha bn_half_rra bn_half_rha bn_half_yyabn_half_asamirabn_half_asamiba bn_yaphalabn_k_rabn_k_ra1bn_kh_rabn_g_rabn_gh_rabn_c_rabn_ch_rabn_j_rabn_tt_ra bn_tth_rabn_dd_ra bn_ddh_rabn_t_rabn_t_ra1bn_th_rabn_d_rabn_dh_rabn_n_rabn_n_ra1bn_p_rabn_ph_rabn_b_rabn_bh_ra bn_bh_ra1bn_m_rabn_y_rabn_sh_rabn_ss_rabn_s_rabn_s_ra1bn_h_ra bn_asamir_ra bn_asamib_ra bn_k_ss_rabn_k_kabn_k_tta bn_k_tt_rabn_k_tabn_k_ta1 bn_k_t_ba bn_k_t_ba1 bn_k_t_ra bn_k_t_ra1 bn_k_t_ra2bn_k_nabn_k_mabn_k_labn_k_ssa bn_k_ss_nna bn_k_ss_mabn_k_sabn_g_gabn_g_dabn_g_dha bn_g_dh_babn_g_nabn_g_mabn_g_labn_gh_nabn_ng_ka bn_ng_k_ra bn_ng_k_ssa bn_ng_k_ss_ra bn_ng_khabn_ng_ga bn_ng_gha bn_ng_gh_rabn_ng_ma bn_ng_ma1bn_c_cabn_c_cha bn_c_ch_ba bn_c_ch_rabn_c_nyabn_c_nabn_j_ja bn_j_j_babn_j_jhabn_j_nyabn_ny_ca bn_ny_chabn_ny_ja bn_ny_jha bn_tt_tta bn_tt_tt_rabn_tt_mabn_dd_ga bn_dd_ddabn_dd_ma bn_nn_tta bn_nn_tt_ra bn_nn_ttha bn_nn_dda bn_nn_dda1 bn_nn_dd_ra bn_nn_dd_ra1 bn_nn_ddha bn_nn_nnabn_nn_mabn_t_ta bn_t_t_babn_t_thabn_t_nabn_t_mabn_t_ma1bn_t_labn_d_gabn_d_ghabn_d_da bn_d_d_ba bn_d_d_rabn_d_dha bn_d_dh_babn_d_nabn_d_bha bn_d_bh_ra bn_d_bh_ra1bn_d_mabn_dh_nabn_dh_mabn_n_tta bn_n_tt_ra bn_n_tthabn_n_dda bn_n_dd_ra bn_n_ddhabn_n_ta bn_n_t_ba bn_n_t_ra bn_n_t_ra1bn_n_thabn_n_da bn_n_d_ba bn_n_d_rabn_n_dha bn_n_dh_ba bn_n_dh_rabn_n_nabn_n_mabn_n_sabn_p_ttabn_p_tabn_p_nabn_p_pabn_p_mabn_p_labn_p_sa bn_ph_ttabn_ph_labn_b_jabn_b_da bn_b_d_rabn_b_dhabn_b_nabn_b_bhabn_b_labn_bh_labn_m_tabn_m_thabn_m_dabn_m_nabn_m_na1bn_m_pa bn_m_p_ra bn_m_p_labn_m_pha bn_m_ph_rabn_m_bha bn_m_bh_ra bn_m_bh_ra1bn_m_mabn_m_labn_m_la1bn_m_sa bn_m_s_rabn_l_kabn_l_gabn_l_tta bn_l_tt_rabn_l_dda bn_l_dd_rabn_l_tabn_l_dabn_l_dhabn_l_pabn_l_pha bn_l_ph_rabn_l_mabn_l_labn_sh_tabn_sh_ca bn_sh_chabn_sh_nabn_sh_mabn_sh_labn_ss_ka bn_ss_k_ra bn_ss_tta bn_ss_tt_ra bn_ss_ttha bn_ss_nnabn_ss_pa bn_ss_p_ra bn_ss_pha bn_ss_ph_rabn_ss_mabn_s_ka bn_s_k_rabn_s_khabn_s_tta bn_s_tt_rabn_s_ta bn_s_t_ba bn_s_t_ra bn_s_t_ra1bn_s_thabn_s_nabn_s_pa bn_s_p_ra bn_s_p_labn_s_pha bn_s_ph_rabn_s_mabn_s_labn_s_la1bn_h_nnabn_h_nabn_h_mabn_h_labn_h_la1bn_rr_gabn_k_babn_g_babn_gh_babn_c_babn_ch_babn_j_babn_tt_babn_dd_babn_nn_babn_t_babn_th_babn_d_babn_dh_babn_n_babn_p_babn_b_babn_bh_babn_m_ba bn_m_b_rabn_l_babn_sh_babn_s_babn_h_babn_h_ba1 bn_kh_r_ukaarbn_kh_r_uukaar bn_g_ukaar bn_g_r_ukaar bn_g_r_uukaar bn_g_l_ukaar bn_g_l_uukaar bn_j_r_ukaar bn_j_r_uukaar bn_t_r_ukaar bn_t_r_uukaar bn_th_r_ukaarbn_th_r_uukaar bn_d_ukaar bn_d_r_ukaar bn_d_r_uukaar bn_dh_r_ukaarbn_dh_r_uukaar bn_n_t_ukaarbn_n_d_r_ukaarbn_n_d_r_uukaar bn_p_r_ukaar bn_p_r_uukaar bn_p_l_ukaar bn_p_l_uukaar bn_b_r_ukaar bn_b_r_uukaar bn_b_l_ukaar bn_b_l_uukaar bn_bh_r_ukaarbn_bh_r_uukaarbn_m_p_r_ukaarbn_m_p_r_uukaar bn_m_r_ukaar bn_m_r_uukaar bn_r_ukaar bn_r_uukaar bn_l_g_ukaar bn_sh_ukaar bn_sh_r_ukaarbn_sh_r_uukaar bn_sh_l_ukaarbn_sh_l_uukaarbn_ss_p_r_ukaarbn_ss_p_r_uukaar bn_s_t_ukaar bn_s_r_ukaar bn_s_r_uukaar bn_s_l_ukaar bn_s_l_uukaarbn_s_p_r_ukaarbn_s_p_r_uukaarbn_s_p_l_ukaarbn_s_p_l_uukaar bn_h_ukaar bn_h_rikaarbn_asamir_ukaarbn_asamir_uukaarbn_asamib_ukaarbn_asamib_uukaarbn_asamib_r_ukaarbn_asamib_r_uukaarbn_d_yabn_n_yabn_sh_yabn_ss_yabn_s_yabn_h_ya bn_k_hasanta bn_kh_hasanta bn_g_hasanta bn_gh_hasanta bn_ng_hasanta bn_c_hasanta bn_ch_hasanta bn_j_hasanta bn_jh_hasanta bn_ny_hasanta bn_tt_hasantabn_tth_hasanta bn_dd_hasantabn_ddh_hasanta bn_nn_hasanta bn_t_hasanta bn_th_hasanta bn_d_hasanta bn_dh_hasanta bn_n_hasanta bn_p_hasanta bn_ph_hasanta bn_b_hasanta bn_bh_hasanta bn_m_hasanta bn_y_hasanta bn_r_hasanta bn_l_hasanta bn_sh_hasanta bn_ss_hasanta bn_s_hasanta bn_h_hasanta bn_rr_hasanta bn_rh_hasanta bn_yy_hasantabn_asamir_hasantabn_asamib_hasanta bn_one_two bn_one_three bn_one_four bn_two_three bn_three_four bn_ukaar1 bn_ukaar2 bn_uukaar1 bn_uukaar2 bn_rikaar1 bn_post_ka bn_below_tabn_below_t_ukaar bn_below_t_ra bn_below_da bn_below_dha bn_above_na bn_below_na1 bn_below_na bn_below_ba1 bn_below_ba bn_post_ba bn_maphala bn_maphala1 bn_raphala1 bn_raphala2 bn_raphala3 bn_below_la bn_below_la1 bn_above_la bn_pre_ssa1 bn_pre_sa1 bn_below_tha bn_glyph571 bn_glyph572 bn_glyph573 bn_glyph574 bn_glyph575 bn_glyph576 bn_yaphala1 bn_glyph578bn_above_na.001 taml_v_i_2 taml_v_ii_2TamlKA_Taml_pul.halfTamlNGA_Taml_pul.halfTamlCA_Taml_pul.halfTamlNYA_Taml_pul.halfTamlTTA_Taml_pul.halfTamlNNA_Taml_pul.halfTamlTA_Taml_pul.halfTamlNA_Taml_pul.halfTamlPA_Taml_pul.halfTamlMA_Taml_pul.halfTamlYA_Taml_pul.halfTamlRA_Taml_pul.halfTamlLA_Taml_pul.halfTamlVA_Taml_pul.halfTamlLLLA_Taml_pul.halfTamlLLA_Taml_pul.halfTamlRRA_Taml_pul.halfTamlNNNA_Taml_pul.halfTamlTTA_Taml_v_I.abvsTamlTTA_Taml_v_II.abvsTamlKA_Taml_v_U.pstsTamlNGA_Taml_v_U.pstsTamlCA_Taml_v_U.pstsTamlNYA_Taml_v_U.pstsTamlTTA_Taml_v_U.pstsTamlNNA_Taml_v_U.pstsTamlTA_Taml_v_U.pstsTamlNA_Taml_v_U.pstsTamlPA_Taml_v_U.pstsTamlMA_Taml_v_U.pstsTamlYA_Taml_v_U.pstsTamlRA_Taml_v_U.pstsTamlLA_Taml_v_U.pstsTamlVA_Taml_v_U.pstsTamlLLLA_Taml_v_U.pstsTamlLLA_Taml_v_U.pstsTamlRRA_Taml_v_U.pstsTamlNNNA_Taml_v_U.pstsTamlKA_Taml_v_UU.pstsTamlNGA_Taml_v_UU.pstsTamlCA_Taml_v_UU.pstsTamlNYA_Taml_v_UU.pstsTamlTTA_Taml_v_UU.pstsTamlNNA_Taml_v_UU.pstsTamlTA_Taml_v_UU.pstsTamlNA_Taml_v_UU.pstsTamlPA_Taml_v_UU.pstsTamlMA_Taml_v_UU.pstsTamlYA_Taml_v_UU.pstsTamlRA_Taml_v_UU.pstsTamlLA_Taml_v_UU.pstsTamlVA_Taml_v_UU.pstsTamlLLLA_Taml_v_UU.pstsTamlLLA_Taml_v_UU.pstsTamlRRA_Taml_v_UU.pstsTamlNNNA_Taml_v_UU.pstsTamlSA_pul_half_RA_v_II.pstsTamlCA_TamlSSATamlJA_Taml_pul.halfTamlSSA_Taml_pul.halfTamlSA_Taml_pul.halfTamlHA_Taml_pul.halfTamlCA_TamlSSA.half taml_v_i_3 taml_v_i_4ÿÿ J_óôõöžŸ¸¹º»¿ÀÁÂõöö÷ùú ®¯¯° x y ‚ ƒoptu§¨¨© !""#)*+,`abc‹ŒŒ—˜˜™œž¡¢¢£§¨¨©©ªª«°±±²²³³´´µ¶·ÀÁÁÂÌÍÍÎÎÏÏÐÓÔÔÕçèèééêêëòóóôûüüýþÿÿ    #$$%+,,-34456778`aabjkkloppq{||}ƒ„„…ˆ‰‰Š÷øWXXY]^_ÿü@ |DFLT2arab>bengRbng2tdev2„latnmlymâtamlòÿÿÿÿÿÿ  ÿÿ ÿÿ@ AFK JDAN JDEU JENG JESP JFRA JHRV JITA JLAT JSVE Jÿÿÿÿÿÿ ÿÿ aalt¶abvs¼akhnÂakhnÈblwfÐblwsÖdligÜfinaâfracèfracîhalfôhalfúhalnhalnhaln initinitligaliga$liga*liga0medi6pres>€D±³¶º¾ÂÆÊÎÐÒÔÖÚÞâæêîòöúþ ¦¥¦ª«­ÅÇÇââD±³¶»¿ÃÇËÏÐÒÔÖÛßãçëïó÷ûÿ §¥¦ª«­ÅÇÇââD²´·¹½ÁÅÉÍÑÓÕ×ÙÝáåéíñõùý  ¥¥¦ª«­ÅÇÇââ ·ª«> $³² ·³²!·º®ž0 $N±±›©5³^±œœ%º%P\0ÜB¦6rJübt " ^ ˜ nÀTÌ\æVš¬Pjˆ‚¶bâH!v% %[Y8r€Žœª¸ÆÔâðþ &2>JVblv€Š”ž¨²¼ÆÐÚäîø  *4>HRZbjrz‚В𢍮´l±œ±œ©k±œ±œ¨e±¢±™ªd±¢±™©c±¢±™¨a±¢±©`±¢±¨M±±›¨C±‹±›©B±‹±›¨=±±›©<±±›¨_±¢±j±œ±œA±‹±›b±¢±™L±±›;±±›V±›¨T±™©S±™¨Q±”©P±”¨h±£©g±£¨i±£ªK±³J±ªI±©H±¨F±©^±¢ª]±¢©\±¢¨@±‹©?±‹¨Z±©Y±¨W±›©:±ª9±©8±¨O±”X±>±‹G±f±£D±R±™[±¢U±›7±6z4ª3©2¨oªn©m¨#HZl|Š˜¦²¼ÆÐÚäîø  *4>HR\dlt|„Œ”𠦆±’±“±›©…±’±“±›¨„±’±“±›ƒ±’±“ª‚±’±“©±’±“¨€±’±“ˆ±”¨’±©‘±¨±›©Ž±›¨Œ±™©‹±™¨‰±”©±’ª~±’©}±’¨{±„ªz±„©y±„¨w±ƒªv±ƒ©u±ƒ¨‡±”б™x±„±|±’±›t±ƒs³rªq©p¨  *4>FNTZ`œ±›©›±›¨™±”©˜±”¨š±›—±”–³•ª”©“¨  *4>HPX^¢±±ª¤±…¨¥±…©¡±© ±¨£±…Ÿ±ž©¨ (6BLV`jt|„᱇±›©°±‡±›¨¯±‡±›®±‡ª­±‡©¬±‡¨ª±†©©±†¨«±‡¨±†§©¦¨"*06·±›©¶±›¨µ±›´ª³©²¨(2<FPZdlt|‚ˆŽÅ±›©Ä±›¨Â±Š©Á±Š¨¿±ˆª¾±ˆ©½±ˆ¨À±ŠÃ±›¼±ˆ»³ºª¹©¸¨$,28>̱›©Ë±›¨Ê±›É³ÈªÇ©Æ¨",6@JT^hr|†Ž–ž¦¬Ü±Š©Û±Š¨Ù±ˆ©Ø±ˆ¨Ö±‡ªÕ±‡©Ô±‡¨Ò±†ªÑ±†©Ð±†¨×±ˆÚ±ŠÓ±‡Ï±†Î©Í¨  *4>FNTZ`æ±›©å±›¨ã±‹©â±‹¨ä±›á±‹à³ßªÞ©Ý¨ è©ç¨",6@JT^hr|„Œ”œ¢¨ø±›©÷±›¨õ±™ªô±™©ó±™¨ñ±Ž©ð±Ž¨î±©í±¨ï±Žö±›ò±™ì±ëªê©é¨"*06þ±›©ý±›¨ü±›ûªú©ù¨6DR`nz†š¤®¸ÂÌÖàêôþ&.4±±›© ±±›¨±‹±›©±‹±›¨ ±±›±‹±›±Ž¨±™©±™¨±© ±ª ±© ±¨±¨±Žª±Ž©±‹©±‹¨±±™±Ž±±Œ±‹©ÿ¨2ft‚ž¬ºÈÖäò&2>JT^hr|†š¤®¸ÂÌÖàêôþ$,4<DLT\bhnJ±£±›©I±£±›¨G±£±™ªF±£±™©E±£±™¨C±£±”©B±£±”¨@±£±‘ª?±£±‘©>±£±‘¨$±±›©#±±›¨A±£±”=±£±‘H±£±›D±£±™"±±›9±£¨7±©6±¨4±›©3±›¨1±™ª0±™©/±™¨-±˜ª,±˜©+±˜¨(±‘ª'±‘©&±‘¨<±£³;±£ª:±£©!±³ ±ª±©±¨2±›*±˜)±”.±™8±£5±%±‘±³ª©¨ (2<FNV\S±™ªR±™©Q±™¨O±”©N±”¨P±™M±”L©K¨8FTbp~Œš¦²¾ÈÒÜæðú"*2:@FLk±“±›©j±“±›¨h±“±™ªg±“±™©f±“±™¨d±“±”©c±“±”¨i±“±›e±“±™b±“±”n±›©m±›¨a±“³`±“ª_±“©^±“¨\±’³[±’ªZ±’©Y±’¨l±›]±“X±’W³VªU©T¨(2<FPZdlt|‚ˆŽ|±›©{±›¨y±™ªx±™©w±™¨u±”©t±”¨z±›v±™s±”r³qªp©o¨3hv„’ ®¼ÊØæô $0:DNXblv€Š”ž¨²¼ÆÐÚäîø  (08@HPX`flr©±™±›©¨±™±›¨¢±”±›©¡±”±›¨›±“±›©š±“±›¨”±’±›©“±’±›¨ˆ±±›©‡±±›¨ ±”±›’±’±›™±“±›§±™±›†±±›±”¨¬±›©¦±™ª¥±™©˜±“ª—±“©–±“¨¤±™¨«±›¨¯±œ©‘±’ª±’©±’¨±‘³Œ±‘ª‹±‘©Š±‘¨®±œ¨Ÿ±”ªž±”©…±³„±ªƒ±©‚±¨£±™Ž±’œ±”­±œª±›•±“‰±‘±€³ª~©}¨#HVdpz„Ž˜¢¬¶ÀÊÔÞèòü$.8@HPX`hpx~„ŠÒ±£±›©Ñ±£±›¨Ð±£±›Ï±£ªÎ±£©Í±£¨Ë±©Ê±¨È±›©Ç±›¨Å±–©Ä±–¨Â±•ªÁ±•©À±•¨¾±”©½±”¨»±³º±ª¹±©¸±¨¶±‹©µ±‹¨Ì±£É±¿±•ñ–·±Æ±›¼±”´±‹³³²ª±©°¨"FTbnx‚Œ– ª´¾ÈÒÜæðú",6>FNV^fnv~„ô±œ±œ©ó±œ±œ¨ò±œ±œñ±£ªð±£©ï±£¨í±©ì±¨ê±›©é±›¨ç±™©æ±™¨ä±•©ã±•¨á±”©à±”¨Þ±ªÝ±©Ü±¨Ú±‹©Ù±‹¨×±©Ö±¨î±£â±•Û±ë±å±™Ø±‹ß±”è±›Õ±Ô©Ó¨!DNXblv€Š”ž¨²¼ÆÐÚäîø &.6>FNV^dj±©±¨±›©±›¨±—© ±—¨ ±”© ±”¨±“³±“ª±“©±“¨±’ª±’©±’¨ÿ±ˆªþ±ˆ©ý±ˆ¨û±ƒªú±ƒ©ù±ƒ¨±’±˜±±“ü±ˆ ±”±› ±—ø±ƒ÷ªö©õ¨$,28>±›©±›¨±›³ª©¨2@NZdnx‚Œ– ª´¾ÈÒÚâêòú *±•±›©)±•±›¨(±•±›0±›¨.±™ª-±™©,±™¨4±©3±¨1±›©'±•ª&±•©%±•¨#±”©"±”¨+±™$±•/±›2±!±” ³ª©¨#HVdr€Žš¦°ºÄÎØâìö (2<FPZbjrz‚Š’˜žI±±ªH±±©G±±¨>±±©=±±¨F±±<±±N±•¨L±”©K±”¨W±š©V±š¨T±™ªS±™©E±ªD±©C±¨A±†©@±†¨R±™¨P±•ªO±•©;±ª:±©9±¨Q±™U±šB±J±”M±•?±†8±7ª6©5¨ZªY©X¨_±œ¨]©\¨*Vdr€Žœª¶ÂÎØâìö (2<FPZdnx‚Œ– ¨°¸ÀÈÐØàèîôx±•±›©w±•±›¨r±±©q±±¨d±±©c±±¨v±•±›p±±b±±ƒ±¨±™©u±•©t±•¨€±™¨~±—©}±—¨o±ªn±©m±¨k±†©j±†¨h±ƒªg±ƒ©f±ƒ¨{±–©z±–¨„±©a±ª`±©_±¨‚±e±ƒl±±™y±–i±†|±—s±•^±]ª\©[¨  (.8±ž©7±ž¨6±ž5©4¨#HVdr€Žœ¨´ÀÊÔÞèòü$.8BLV`hpx€ˆ˜ ¦O±”±”©N±”±”¨I±±©H±±¨@±±©?±±¨M±”±”G±±>±±Z±£¨X± ©L±”©K±”¨W± ¨U±™©T±™¨F±©E±¨C±†©B±†¨R±•©Q±•¨[±£©=±©<±¨V± A±†P±•S±™J±”D±Y±£;±:©9¨ $.8BLV^fntz± ©± ¨±©Œ±¨Š±›©‰±›¨Ž± ‹±ˆ±›‡ª†©…¨@N\hr|†š¤®¸ÂÌÖàêôþ$,4<DLTZ`¯±¡±›©®±¡±›¨­±¡±›¬±¡ª«±¡©ª±¡¨¨±©§±¨¥±›©¤±›¨¢±™ª¡±™© ±™¨ž±”©±”¨›±‡ªš±‡©™±‡¨—±†ª–±†©•±†¨Ÿ±™©±¡˜±‡¦±œ±”£±›”±†“ª’©‘¨,Zhv„’ ®¼ÊØæô $0:DNXblv€Š”ž¨²¼ÆÐÚäìôü "(Û±™±›©Ú±™±›¨Ò±•±›©Ñ±•±›¨Å±‹±›©Ä±‹±›¨½±±›©¼±±›¨º±±ª¹±±©¸±±¨»±±›Ã±‹±›Ù±™±›Ð±•±›·±±Ç±Œ¨Ô±–¨Ø±™©×±™¨Â±‹³Á±‹ªÀ±‹©¿±‹¨Õ±–©Ï±•©Î±•©Í±•¨Ë±©Ê±¨È±Œ©¶±ªµ±©´±¨É±¾±‹Ì±•Ö±™Æ±ŒÓ±–³±²ª±©°¨H’¤¶ÆÔâðþ (6DR`n|ˆ” ¬¸ÄÐÜèòü$.8BLV`jt~ˆ’œ¦°ºÄÎØâìö &.6>FNV^fnv~„Š#±œ±œ±›©"±œ±œ±›¨!±œ±œ±›±£±›©±£±›¨ ±•±›©±•±›¨û±±›©ú±±›¨ó±‹±›©ò±‹±›¨ê±±›©é±±›¨ç±±ªæ±±©å±±¨ ±œ±©ñ±‹±›±•±›±œ±¨è±±›±£±›ù±±›±œ±œä±±±•©±•¨±”©±”¨ÿ±‘ªþ±‘©ý±‘¨±©±¨±›©ø±³÷±ªö±©õ±¨±›¨±™ª±™©ð±‹©ï±‹¨í±‚©ì±‚¨±™¨ ±–© ±–¨±£ª±£©±£¨±•ªã±ªâ±©á±¨ë±‚±›ô±ü±‘±• ±™±£±”± ±–à±ß³ÞªÝ©Ü¨",6@JT^hr|„Œ”œ¢¨3±©2±¨0±›©/±›¨-±™ª,±™©+±™¨)±”©(±”¨*±™.±›1±'±”&ª%©$¨YY¤$tIOrOpIIsILqLI#/F¨ª c®c®›Â ô-õM,L*  d®e®e®—›Â4>HR\fpz„Ž˜¢¬¶ÀÊÔÞèòüE E!EYE"E#E$E%E&E0E'E(E)E*E/E+E.E-E,EZE[E\E]E$9XXÂ%PZdnx‚Œ– ª´¾ÈÒÜæðú",6@JT^hr|†š¤®¸f®g®h®i®j®k®l®m®n®o®p®q®r®s®t®¯®u®v®w®x®y®z®{®|®}®~®®€®®‚®ƒ®„®…®†®‡®ˆ®‰® ±³ ÂÃ#D ,8õ¼ô»óºö»÷¼¹º»Š®šædz¦Ð"*2:BJ €  €    }  } y  y z  z {  { |  | " ~  ~    ‚  ‚V>HR\fpz„Ž˜¢¬¶ÀÊÔÞèòü$.8BL‹eeŽeee‘e’e“e”e•e–e—e™eše›eœežeŸe e¡e£e¤e¥e¦e§e©e«e¬e„†ˆ‹Žš  Ãúºš:d®àê,NhФ¾BTÖ"T^ØJ|ÖXz„ $ôœò™ñ”ð‘î  &,28>D½Ÿ¹œ¸™·”´—°¯“®‹­ &,ĜٔÀ“¿’¾ƒÅ”$*06<Î™Ì„ËƒÊ‚É¬ÈºÇ‹Æ Õ”Ó‘Ñ‡Ð†ÙŠØ‰Öˆ ݉܈ۇچà™ß“Þ‹ã™âáƒ$*06<í™ìëŽé•çæŒå“ä‹$*06<™þ¡ý˜ú“ùš÷’ö„õƒ ™”"(.4:@FLRX^djpv|Ÿ™”›“š’ ‘ — Ž•Œ“‹"(.4Ÿœ™•”‹ œ‹ &,&œ%˜#“"š!’ ˆ'œ &,28>DJPV\bhnt9§8Ÿ6œ5™3¡2˜1Ÿ0–/.ž-•+”*’)‘($*06<BHNTZ`flGœF™EŸD–C•B“A’@?•>=“<‹;ƒ: &,MœL™K”J‡I†H $*06<BHNTX™WŸV–UžT•SRŒQ“P‹O‹N"(.4:@FLRX^djpv|jœi™hŸg–fežd•c”b‘`—^]“\‹[‚Z‹Y oœn™m”lqƒ¼®™»®¯fhijkmoprtvwxyz{|}€‚ƒ„…ºÎ:z„– ª´¾ÈÒÜæø  *4FPbl†˜ª¼Îàò(:L^p‚”¦°ÂÌÖàêô"4FXbt†˜ª¼rd Œ¦sdtdudvdwdxdydzd{d —¦}d~dd€dd‚dƒd ®§­¦…d °¦†d‡dÁ¨À¦ˆd ç¦ ŧĦ ‹§Š¦ ާ¦ ’§‘¦ ”§“¦ –§•¦ ™§˜¦ ›§š¦  §Ÿ¦ ¤§£¦ ¨§§¦ ¬§«¦ ²§±¦ ¹§¸¦ ǧƦ²d §¦Òd×dïdødûd œ¦ dd ž§¦ ¢§¡¦ ¦§¥¦ ª§©¦¯¦ ´§³¦ ¶§µ¦ ·¦_d ½§¼¦ ¿§¾¦ »§º¦:ƒ„†‡ˆ‹’“”•—˜™›œŸ ÂÃŽ’—™š›ž ¡£¥§«°ÄÑÖî÷ú &.;MU^efj 2<1;)|,>Pbt†˜ª¼Îàò(:L^p E>3= F>4= G>5= H>6= I>7= J>8= K>9= L>:= V>D= M>;= N><= O>== P>>= U>C= Q>?= T>B= S>A= R>@=W1<$&(6[[Z*6BNÈ ðŠÉ ðŠÊ ðŠË ðŠÌ ðŠÍ ðŠ’”žŸ .  (š©'š¨) &š±$[\\4>HR\fpz„Ž˜¢¬¶ÀÊÔÞèòüE E!EYE"E#E$E%E&E0E'E(E)E*E/E+E.E-E,EZE[E\E]E$9XXÂ%PZdnx‚Œ– ª´¾ÈÒÜæðú",6@JT^hr|†š¤®¸Î®Ï®Ð®Ñ®Ò®Ó®Ô®Õ®Ö®×®Ø®Ù®Ú®Û®Ü®Ý®Þ®ß®à®á®â®ã®ä®å®æ®ç®è®é®ê®ë®ì®í®î®ï®ð®ñ®ò® ±³ ÂÃ#^(2<JT,±-±.±1±`±œ©/±0±”›œž ·ª« ’¸DFLT2arab>bengHbng2Rdev2\latnfmlymttaml~ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿkernkernmark òVàf ;PV\bhntz€†Œ’˜ž¤ª°¶¼ÂÈÎÔÚàæìòøþ "(.4:@FLRX^djpv|‚ˆŽ”𠦬²¸¾ÄÊÐÖÜâèîôú $*06<BHNTLcžjÿþcžî2ÿü6ž†ÿþ¤ÿþ§žiÿüPΖQ,ÿüMÿüpdBfÿþj¢Hÿü!ÿü.ÿü²|žîcžbÔÿüâÊÙÿüôÌÔÿüìʉ‰ÿü„¦ÿüÊÌfŽÿüûÿüöêúùÈxÿüÒÿüΟÿü^ÿýáìÊIÿÿúÊQÊùÈ}È-¢cžôÌ+ž¢§žj¢j¢ùÈõž|žìÊæÍÜÈÿÈÿÈÞÌæÍæÍÚÍÝÍŽÍùÈìÊÁ¤¤ô›Á¤¤;$&(*,./125678<DFHLNOQRUVWX\¨ºHIJPRYabchqrŸïðñó÷øúû (346@AŸ¸»¿Âõ÷ùS Vcޔ𠦬²¸¾ÄÊÐÖÜâèîôú $*06<BHNTZ`flrx~„Š–œ¢¨®´ºÀÆÌÒØÞäêðöü &,28>DJPV\bhntz€†Œ’˜ž¤ª°¶¼ÂÈÎÔÚÿZÈÿXÈÿ\Ìÿ\Ìÿ\ÌÿÌÿ\Ìÿ\Ìÿ\Ìÿ\Ìÿ\ÌÿtÌÿ\Ìÿ\ÌÿzÌÿ\Ìÿ\Ìÿ\Ìÿ\Ìÿ\Ìÿ\ÌÿúÈÿWÿWÿWÿWÿ8ÿ!ÿ/ÿ*ÿ0þðÿÿ/ÿ5ÿNÿ<ÿ#ÿÿÿÿÿÿÿÿ.ÿ ÿ.ÿÿÿHúÿÜÿÜþýÚþèüÿ,ÿ#ÿ-ÿBÿIÌþþÌÿ ÌÿZÈÿXÈÿ¹Ìÿ\Ìÿ5ÌÿQÿÌÿÿ-ÿFÿBÌÿ2Ïÿ3Ìÿÿ+ÿcÌÿYÌÿ\Ìÿÿ?ÿ þìÿ3Ìÿÿ ÿÌÿ Ìÿ5ÌÿCÌÿ Ìÿ$ÌÿÌÿ$Ìÿ2Ëÿ-ÌÿEÌÿ#ÌÿÌÿÌ ðM¤6|¦ÜR„–à6 Ê –Àv¬>ÐúŒ–¬ºÄÞ,V`j°ºÌæ    Ò Ü   ‚ ì  p ž p p  ‚ ø þ þ þ " < B H B f ˆ ˆ ˆ ˆ – – – ¤ ¤ ² ¸ κ Ø êŒ$ÿýÿéÿö&ÿÍ*ÿÇ2ÿÄ4ÿÄ7ÿÊ8ÿÂ9ÿ}:ÿ<ÿ¯DÿúEÿìFÿãGÿäHÿåJÿìRÿØTÿëWÿìXÿäYÿ¯Zÿ·\ÿ­mÿÀ‰ÿǘÿÄ›ÿœÿÂÿžÿ©ÿã ùÿŒ ýÿ¥ ÿ¶$ÿÍ2ÿè9ÿ¿:ÿÅ<ÿ¼ƒÿÍ„ÿÍ…ÿ͆ÿ͇ÿ͈ÿÔ”ÿè•ÿè–ÿè˜ÿèšÿéÿî $ÿé+ÿþ.ÿö2ÿôƒÿé†ÿé‡ÿéˆÿñ•ÿô˜ÿô $ÿ½-ÿ×7ÿö9ÿ¹:ÿÇ;ÿÀ<ÿ¶‚ÿ½ƒÿ½„ÿ½…ÿ½†ÿ½‡ÿ½ÿÍÿÆ$ÿ¹-ÿó2ÿöDÿÞHÿíLÿóMÿìRÿëUÿöXÿõ‚ÿ¹ƒÿ¹„ÿ¹…ÿ¹†ÿ¹‡ÿ¹˜ÿö£ÿÞ¦ÿö§ÿÞ¨ÿÜ«ÿíµÿë¸ÿëºÿëÿë $ÿæ7ÿë9ÿé:ÿî<ÿæ‚ÿæƒÿæ„ÿæ…ÿæ†ÿæ‡ÿæˆÿí$ÿˆÿˇÿˈÿÒÿÁ&ÿÕ*ÿÏ2ÿÍ6DHÿíRÿáXÿí\ÿª•ÿ͘ÿͦ§µÿá¸ÿá¾ÿíÿÔ&2ÿý67ÿ·8ÿæ9ÿ:ÿ§<ÿœXÿö\ÿȈ”ÿý•ÿý–ÿý—ÿý˜ÿýžÿæ¾ÿö ùÿƒ ýÿœÿòÿë$ÿä&ÿð*ÿí2ÿìDÿåHÿïRÿëXÿçƒÿä†ÿä‡ÿäˆÿë‰ÿð•ÿì˜ÿì£ÿå¦ÿå§ÿå¨ÿå«ÿïµÿë¸ÿëºÿì¾ÿç $ÿÆ7ÿ÷9ÿ»:ÿÊ;ÿÉ<ÿ¸ƒÿƆÿƇÿƈÿÎÿ¢ÿÛÿ›$ÿ¦-ÿÌDÿïHÿéRÿçƒÿ¦†ÿ¦‡ÿ¦ˆÿ¥£ÿï¦ÿï§ÿï¨ÿî«ÿéµÿç¸ÿçºÿçÿçÿÌ&ÿ×*ÿÔ2ÿÓ7ÿÞ8ÿÈ9ÿ·:ÿ½<ÿ´DÿþHÿéRÿÜXÿè\ÿÛ‰ÿוÿÓ˜ÿÓžÿÉ£ÿþ¦ÿþ§ÿþ¨ÿû«ÿéµÿܸÿܼÿè¾ÿèÿÙÿá $ÿÛ7ÿí9ÿå:ÿë<ÿâWÿìƒÿÛ†ÿÛ‡ÿÛˆÿâ-ÿ¶ÿ·ÿ®ÿ©ÿ©$ÿË&ÿø*ÿõ-ÿî2ÿö6ÿö9:< Dÿ³Fÿ©HÿªJÿ¥LÿîMÿçRÿ¦UÿÎVÿ·Xÿ£Yÿ—Zÿ–\ÿšmÿŽ‚ÿ˃ÿË„ÿË…ÿˆÿˇÿˈÿÓ”ÿö•ÿö–ÿö—ÿö˜ÿöšÿö¨ÿ°ºÿ§ÿü ÿƒ ÿáÿÛ$ÿ¿PÿßQÿáSÿäUÿåƒÿ¿„ÿ¿…ÿ¿†ÿ¿‡ÿ¿ˆÿÆ$ÿ—ÿ»ÿÿ¦ÿ§$ÿ„&ÿÁ*ÿ¾2ÿ½6ÿÑ7 Dÿ¨Hÿ«Jÿ›LÿìRÿ§UÿÈXÿÍ\ÿÊmÿ“‚ÿ„ƒÿ„„ÿ„…ÿ„†ÿ„‡ÿ„ˆÿ˜”ÿ½•ÿ½–ÿ½—ÿ½˜ÿ½šÿ¿¨ÿ§ºÿ¨ ÿ‰$ÿ§ÿÈÿ ÿ¯ÿ¯$ÿ&ÿË*ÿÈ2ÿÈ6ÿ×7Dÿ°Hÿ¸Jÿ¥LÿóRÿ´UÿÑXÿÕ\ÿÓmÿŸ‚ÿƒÿ„ÿ…ÿ†ÿ‡ÿˆÿž”ÿÈ•ÿÈ–ÿÈ—ÿȘÿÈšÿɨÿ¯ºÿµ ÿ• ÿÊ&ÿÌ2ÿÃ4ÿÃDÿùHÿäRÿ×Xÿã\ÿ ˜ÿÃ$ÿ ÿžÿ™ÿ“ÿ”$ÿ¶&ÿ¼*ÿ¹2ÿ»6ÿÔ7 DÿHÿ™JÿLÿïRÿ•Sÿ¨Xÿ²Yÿªmÿy‚ÿ¶ƒÿ¶„ÿ¶…ÿ¶†ÿ¶‡ÿ¶ˆÿ½”ÿ»•ÿ»–ÿ»—ÿ»˜ÿ»šÿ»¨ÿšºÿ– ÿoYÿÐ\ÿÎMÿæYÿâZÿá\ÿà ùÿØYÿãZÿâ\ÿàKÿñNÿíWÿöYÿåZÿä[ÿÝ\ÿâ ùÿâDÿçHÿÞILMO,RÿÚVÿëW £ÿç¦ §ÿú¨ÿç«ÿÞµÿÚ¸ÿÿºÿÛÿÜ ù DÿïHÿçOÿùU ¦ÿï§ÿï¨ÿî«ÿçµÿæ¸ÿæ\ÿâ ùÿÚ7ÿäMÿÜÿ¿ÿþDHÿíJÿôRÿàVX£¦§¨ÿÿ«ÿíµÿà¸ÿà¾Yÿä\ÿçSÿ÷YÿâZÿá\ÿá7ÿÉSÿóYÿâZÿá\ÿá ùÿÙ7ÿ¥Wÿ÷YÿÜZÿÜ[ÿÜ\ÿ× ùÿÞWÿú\ÿäFÿùXÿô.ÿ×ÿÒÿÐÿùÿùDÿÿFÿøGÿöHÿúIJÿñKÿúLMNÿöOÿîPQRÿøSTÿöUWXYZ[\]¢ÿÿ£ÿÿ¤ÿÿ¦ÿÿ§ÿÿ¨ÿý©ÿøªÿú«ÿú¬ÿú´ÿøµÿø¶ÿø¸ÿøºÿùÿù ùÿíWÿñ ùÿÚ ÿøÿø6D K Rÿø£ ¦ § ¨ µÿø¸ÿø ùÿã ùÿÜÿ»ÿäÿ´ÿìÿìDÿèFÿÛHÿÜJÿ×OÿáRÿÚVÿë¢ÿè£ÿè¤ÿè¥ÿè¦ÿè§ÿè¨ÿèªÿÜ«ÿܬÿÜ´ÿÚµÿÚ¸ÿÚºÿÚÿÀÿèÿ¹ÿéÿéDÿåFÿßHÿáJÿÕOÿßRÿÝVÿé¢ÿå£ÿå¤ÿå¥ÿå¦ÿå§ÿå¨ÿåªÿá«ÿá¬ÿá´ÿݵÿݸÿݺÿÞDÿõFÿÞHÿàRÿÓTÿæ«ÿàÿ¾ÿåÿ·ÿéÿéDÿàFÿÛHÿÝJÿÐOÿàRÿÙVÿæ¢ÿà£ÿà¤ÿà¥ÿà¦ÿà§ÿà¨ÿáªÿÝ«ÿݬÿÝ´ÿÙµÿÙ¸ÿÙºÿÚ ÿýÿö&ÿÍ*ÿÇ2ÿÄ4ÿÄ7ÿÊ8ÿÂ9ÿ}:ÿ<ÿ¯ÿýÿéÿö&ÿÍ*ÿÇ2ÿÄ4ÿÄ7ÿÊ8ÿÂ9ÿ}:ÿ<ÿ¯DÿúEÿìFÿãGÿäHÿåJÿìRÿØTÿëWÿìXÿäYÿ¯Zÿ·\ÿ­mÿÀ ùÿŒ ÿ¶ÿýÿéÿö&ÿÍ*ÿÇ2ÿÄ4ÿÄ7ÿÊ8ÿÂ9ÿ}:ÿ<ÿ¯DÿúEÿìFÿãGÿäJÿìRÿØTÿëWÿìXÿäYÿ¯Zÿ·\ÿ­mÿÀ ùÿŒ ýÿ¥ ÿ¶ÿýÿéÿö&ÿÍ*ÿÇ2ÿÄ4ÿÄ7ÿÊ8ÿÂ9ÿ}:ÿ<ÿ¯DÿúEÿìFÿãGÿäHÿåJÿìRÿØTÿëWÿìXÿäYÿ¯Zÿ·\ÿ­mÿÀ ùÿŒ ýÿ¥ ÿ¶$ÿå7ÿ÷9ÿ»<ÿ¸$ÿÆ7ÿ÷9ÿ»:ÿÊ<ÿ¸$ÿÆ7ÿ÷9ÿ»:ÿÊ;ÿÉ<ÿ¸$ÿÆ$ÿ¿ÿáÿÛ$ÿ¿PÿßQÿáSÿäUÿåÿáÿÛ$ÿ¿EPÿßQÿáSÿäUÿåYÿâZÿá\ÿàYÿåZÿä\ÿâYÿÜZÿÜ\ÿ×Wÿ÷Wÿ÷YÿÜZÿÜ[ÿÜ\ÿ×$ÿé2ÿô$ÿÛ7ÿí9ÿåWÿìWÿñ$')*-/13 5= DFHLN\‚‡,‰‰2”˜3šž8¢£=¦¨?«¬B´¶D¸¸GÎÏH"#J??LJ2@ftšÀþ$F`†”ž¨¶ÄÒ  ùÿË ýÿãoÿÌ $ÿæ7ÿ³9ÿ®:ÿÅ<ÿ”ƒÿæ†ÿæ‡ÿæˆÿç ùÿÆ ýÿßoÿà $ÿÂ7ÿŽ9ÿ‹:ÿ¡<ÿvƒÿ†ÿ‡ÿˆÿà $ÿ’7ÿ÷9ÿé:ÿï<ÿæƒÿ’†ÿ’‡ÿ’ˆÿÿ¹ÿ²$ÿ~GÿÈRÿÊUÿÔVÿÑWÿÕYÿÑZÿÑ\ÿÓƒÿ~†ÿ~‡ÿ~ˆÿy $ÿª79:<ÿÿƒÿª†ÿª‡ÿªˆÿ¥$ÿ¢7 :<ÿþƒÿ¢†ÿ¢‡ÿ¢ˆÿ$ 7ÿÄ9ÿ˜:ÿ´<ÿ©ˆ $ÿ¸7ÿ„9ÿ€:ÿ—<ÿkƒÿ¸†ÿ¸‡ÿ¸ˆÿ¹i lÿûoÿÉlÿðoÿÄiÿúlÿäilÿÖoÿµiÿølÿÜoÿºi lÿãoÿ¶ ÿ¸ÿ±ÿ¼gÿáhÿÝiÿÁjÿÅkÿÒlÿìmÿØoÿÈlÿñoÿÀiÿùlÿúoÿÁ ÿÐÿÉfÿÊgÿÞhÿ×iÿ¸jÿÛkÿ¾lÿ²mÿ¼nÿÃoÿ²}} ø ù ü þ   fo ÄiÃÞ]˜Ä ülogstalgia-1.0.3/data/ball.tga0000644000203100020310000002775011526610646016015 0ustar andrewcandrewc @@ ¿¿–RQRÿQQPÿQPQÿPPPÿOOOÿNNNÿMMMÿLLLÿKKKÿIJJÿIHHÿGGGÿEEEÿBBDÿAAAÿ@==ÿ˜“TWTÿWTTÿTWTÿVVVÿVSSÿUUUÿTUTÿTSTÿSRSÿRQRÿPPPÿOOOÿMNNÿMMLÿKKKÿIJIÿFFHÿFFFÿBDBÿBB?ÿ???ÿ===ÿ•[XXÿ[[XÿX[[ÿ‚[[[ÿXX[ÿWZZÿYYYÿXXXÿWWWÿVVVÿTUTÿTTTÿRRRÿQQPÿOOOÿNMMÿLLKÿJIIÿFFHÿDDFÿCCCÿAAAÿ???ÿ<<<ÿ:::ÿ’Ž^^^ÿ___ÿ`^`ÿ^^`ÿ```ÿ^`^ÿ___ÿ^\^ÿ\^\ÿ][]ÿ\Y\ÿZZZÿYYYÿXXXÿWTTÿUUUÿSTSÿRQQÿPPPÿMNNÿKLKÿIIJÿFHFÿEEEÿC@Cÿ@@@ÿ==>ÿ;;;ÿ989ÿbb`ÿcacÿcccÿbddÿdbdÿ‚dddÿbdbÿdbbÿcccÿcaaÿ`bbÿaaaÿ```ÿ___ÿ^\\ÿ][[ÿX[XÿYYYÿXUXÿSVVÿTTTÿRRQÿOOOÿMNMÿKKKÿIHIÿEGEÿDDDÿAAAÿ???ÿ<<<ÿ999ÿ‹%eccÿdfdÿfffÿgggÿhggÿhhhÿhhiÿhhhÿhiiÿiihÿhiiÿhhhÿhhgÿgfgÿgffÿeeeÿcceÿdbbÿbbbÿ__aÿ___ÿ]]]ÿY\\ÿZZZÿXXXÿVVVÿTSTÿQRQÿOOOÿMMMÿKKJÿHHHÿEEEÿC@Cÿ@@@ÿ=<=ÿ:::ÿ775ÿŠhghÿhiiÿjjiÿkjkÿllkÿlmlÿllmÿmmmÿnnmÿƒmmmÿlllÿkllÿkkkÿjjiÿiiiÿghhÿffgÿcecÿcccÿ`bbÿ``^ÿ^^^ÿ\\\ÿZWZÿXXXÿVSVÿSSSÿPQQÿNNNÿLLKÿHIIÿFFFÿCCCÿA>>ÿ=>=ÿ;;;ÿ686ÿŒ‰jkkÿlllÿnnmÿnnoÿoooÿpppÿppqÿqqqÿqrrÿ‚rrrÿrqqÿqqqÿqqpÿpppÿoooÿnnnÿmmmÿlllÿjjkÿiiiÿhghÿfffÿdddÿbbbÿ```ÿ^^^ÿ\Y\ÿWWZÿWWWÿTTUÿRQRÿPOPÿLMLÿJIJÿGEGÿDDBÿA>>ÿ==>ÿ;:;ÿ777ÿ‹ˆmmmÿoooÿpppÿrrrÿsrsÿtttÿuuuÿuvuÿ„vvvÿuvvÿuuuÿttuÿtstÿsssÿrqqÿpppÿoooÿnnnÿlllÿjjjÿhhhÿfffÿdddÿbb`ÿ```ÿ^\\ÿ[[[ÿXXXÿSVVÿSSSÿPPPÿMMMÿJJJÿFHFÿDDDÿAAAÿ>>>ÿ;::ÿ668ÿЇ pppÿqrqÿsssÿuuuÿvvvÿwwwÿxxxÿyyyÿzyyÿzzzÿ{{{ÿz{{ÿ{{{ÿ{z{ÿzzzÿyyyÿxxxÿwwwÿvvvÿuutÿttsÿrrrÿpppÿnonÿmllÿjjkÿhhhÿfddÿcccÿaaaÿ___ÿ\\\ÿYYYÿWTTÿSTTÿPQQÿNNMÿKJJÿGGGÿDDDÿ>AAÿ==>ÿ:;:ÿ577ÿ‰† ssrÿtutÿvvvÿxxxÿyyyÿz{{ÿ|||ÿ|}}ÿ}}}ÿ~~~ÿ‚ÿ€}}ÿ}€€ÿÿ~~~ÿ}}}ÿ|||ÿ{{|ÿ{{{ÿzyyÿwwwÿvvvÿtttÿsrrÿqqpÿnnoÿlllÿjjjÿgggÿceeÿccaÿ^^`ÿ][[ÿZZZÿWWWÿTTTÿQPQÿMNMÿKKKÿHFFÿDDDÿA>Aÿ===ÿ:::ÿ557ÿˆ… uttÿvwvÿxxxÿzzzÿ{||ÿ}}}ÿ~ÿ€€€ÿÿ‚‚‚ÿƒ€€ÿƒƒƒÿƒ„„„ÿ!„„ÿ„„ÿƒƒƒÿ‚‚‚ÿÿ€}€ÿÿ}}~ÿ|||ÿzzzÿxxxÿwvwÿtuuÿsrrÿpppÿmmmÿlkkÿhiiÿfdfÿbdbÿaaaÿ^\\ÿXX[ÿXUXÿTUUÿQQQÿNMNÿKKKÿGGGÿDDDÿA>>ÿ===ÿ99:ÿ555ÿ‡„vvwÿyyyÿ{{zÿ|||ÿ~~~ÿ€€€ÿ‚ÿƒƒƒÿ………ÿ†ƒ†ÿ„‡‡ÿ‡‡‡ÿˆˆˆÿ††‰ÿ‰†‰ÿ‚ˆˆˆÿ!ˆˆ…ÿ…ˆ…ÿ‡„‡ÿƒ†ƒÿ……‚ÿ„ÿ‚ÿ~~ÿ~~ÿ||}ÿz{zÿxyyÿvwvÿtttÿqrrÿoooÿmmmÿiijÿffgÿbddÿaaaÿ^^^ÿX[[ÿXXXÿTTTÿQQQÿNNMÿJJJÿGGEÿCCCÿ==@ÿ<<<ÿ888ÿ255ÿ†ƒxxxÿ{zzÿ||}ÿ~~~ÿ€€€ÿƒƒƒÿ‚…‚ÿ†††ÿ‡‡‡ÿ†‰‰ÿŠŠŠÿˆ‹‹ÿŒŒŒÿŠŠÿŠŠÿ‚ÿ#ŠŠÿŒŒŒÿ‰ŒŒÿ‹‹‹ÿŠŠ‡ÿ‰‰‰ÿ…ˆ…ÿ†††ÿ…‚‚ÿƒƒ€ÿÿÿ}|}ÿzz{ÿxxxÿuuuÿrrsÿpppÿmnmÿkjjÿgghÿdddÿaaaÿ^^^ÿ[[[ÿXXUÿTTTÿPPPÿMMMÿJJJÿFFFÿ@@Cÿ>??ÿ;;;ÿ777ÿ411ÿ…ƒ |{|ÿ~~~ÿ~ÿ€ƒƒÿ‚……ÿ‡‡‡ÿ‰†‰ÿŠŠŠÿŒŒ‰ÿÿŒŒÿÿŽ‘Žÿ‘Ž‘ÿ‘‘‘ÿ%’’’ÿ’’ÿ’ÿ‘‘‘ÿÿÿŽŽŽÿ‹‹ŽÿŒŒŒÿŠŠŠÿ††‰ÿ„‡‡ÿ………ÿƒ€ƒÿ~ÿ~~ÿ{||ÿyyyÿvvvÿttsÿpqpÿnmnÿkjkÿghhÿdddÿaaaÿ^^^ÿ[XXÿWWWÿSSTÿPPPÿMMLÿIIIÿEEEÿB??ÿ===ÿ:9:ÿ666ÿ…‚7}}}ÿ}€}ÿ‚‚‚ÿ‚…‚ÿ‡‡‡ÿ‰‰‰ÿ‹ˆ‹ÿÿÿÿ’’ÿ‘“‘ÿ”””ÿ•••ÿ””–ÿ–”–ÿ–––ÿ—••ÿ–––ÿ”–”ÿ•••ÿ•““ÿ”””ÿ“““ÿ’ÿÿŒŒÿŠÿ‹‹‹ÿ‰‰‰ÿ„‡‡ÿ…‚…ÿ‚‚‚ÿÿ|}|ÿzyzÿwwwÿtttÿqqqÿnnnÿkjkÿhhhÿdddÿ_aaÿ^\\ÿZZZÿTWTÿSSSÿOOOÿLLKÿHHFÿDDDÿ>>Aÿ=<<ÿ888ÿ525ÿ„‚ €€€ÿƒƒƒÿƒƒ†ÿ‰‰‰ÿ‹ˆ‹ÿÿÿ‘‘Žÿ“‘“ÿ““•ÿ–”–ÿ–˜–ÿ˜˜˜ÿš˜šÿšššÿ'›™›ÿ››™ÿ›™™ÿ™›™ÿš˜šÿ™™™ÿ—™—ÿ———ÿ–––ÿ“•“ÿ‘‘“ÿ‘‘‘ÿÿÿ‹‹‹ÿ††‰ÿ†ƒƒÿƒƒƒÿ~~ÿ}~~ÿ{{{ÿxwwÿtttÿrqqÿnnnÿkkkÿgggÿdbdÿ_aaÿ][[ÿWWZÿUUUÿRRRÿNNNÿKJJÿEGEÿ@C@ÿ>??ÿ;;;ÿ775ÿ„ÿ„„ÿ‡‡‡ÿ‡ŠŠÿŒŒŒÿŽŽŽÿ‘‘‘ÿ“““ÿ•••ÿ•——ÿ—™—ÿšššÿœœœÿ›ÿœžœÿŸÿŸŸÿž žÿžž ÿŸŸŸÿŸŸÿžžžÿ"›ÿšœœÿ›™™ÿ™™™ÿ—•—ÿ•••ÿ“““ÿ‘‘‘ÿŒŒÿŒŒŒÿЇ‡ÿ‡‡‡ÿ„ÿÿ~~~ÿ{{zÿxxxÿutuÿqqqÿnmmÿjkjÿgggÿcccÿ```ÿY\\ÿXXXÿTUUÿQQPÿMMMÿIIIÿEEEÿAAAÿ===ÿ999ÿ664ÿƒ………ÿ…ˆ…ÿˆ‹ˆÿÿÿ‘“‘ÿ•••ÿ———ÿš˜˜ÿ›››ÿÿŸÿ   ÿ ¢ ÿ¢¢¢ÿ£££ÿ¤¢¢ÿ¤¤¢ÿ¤¤¤ÿ£££ÿ#¢¢¢ÿ¡¡¡ÿ   ÿŸÿ›ÿ›››ÿ™™™ÿ———ÿ•““ÿ“‘‘ÿÿÿˆ‹ˆÿ‡‡‡ÿ‚‚…ÿ‚‚ÿ~~~ÿ{{{ÿwxwÿtttÿqqpÿmmmÿjjjÿfdfÿacaÿ___ÿ[[XÿWWWÿSSTÿOOOÿLKKÿFFHÿDBDÿ???ÿ;;;ÿ777ÿƒ<‚‚…ÿˆˆˆÿ‹‹‹ÿŽŽŽÿŽ‘Žÿ”’’ÿ••—ÿ—™™ÿ›››ÿœœžÿŸŸŸÿ¡¡¡ÿ£¡£ÿ££¥ÿ¦¤¤ÿ§¥¥ÿ¦¦¨ÿ¨¨¨ÿ©©§ÿ¨¨¨ÿ§©§ÿ¨¨¨ÿ§§§ÿ¦¦¦ÿ¤¦¦ÿ¤¤¤ÿ£££ÿ ¢ ÿŸŸŸÿÿ›››ÿ™™—ÿ—•—ÿ’’”ÿ‘‘ŽÿŽŽŽÿ‹‹‹ÿˆˆˆÿ…‚‚ÿ‚ÿ~~~ÿ{z{ÿwwwÿsttÿpppÿllmÿihhÿeeeÿaaaÿ]]]ÿWZWÿVVSÿRRRÿMNMÿJIJÿEEEÿB??ÿ>>=ÿ:9:ÿ446ÿ‚…ˆˆÿ‹‹‹ÿŒŒÿ‘‘‘ÿ”””ÿ———ÿšš˜ÿœœœÿŸŸÿ¢ ¢ÿ¤¢¢ÿ¥¥¥ÿ§§§ÿ§§©ÿªªªÿ«««ÿ¬«¬ÿ¬¬­ÿ‚­­­ÿ¬¬¬ÿ$«««ÿªªªÿ©§§ÿ§§§ÿ¦¤¦ÿ£££ÿ ¢ ÿŸŸŸÿ››ÿšššÿ———ÿ”””ÿ’’ÿŽŽŽÿ‹‹‹ÿˆˆˆÿ‚……ÿÿ~~~ÿzzzÿwvvÿssrÿoooÿkkkÿghhÿbddÿ^^`ÿ[[[ÿXXXÿSTTÿPOPÿLLKÿHHFÿDBBÿ@@@ÿ<;<ÿ777ÿ‚‹‹‹ÿŽŽŽÿ’’ÿ“••ÿ———ÿ™™›ÿžœœÿ   ÿ£££ÿ¥¥¥ÿ¨¨¦ÿª©ªÿ«««ÿ¬­¬ÿ®¯®ÿ¯¯°ÿ±°°ÿ±±±ÿ±±²ÿ²±²ÿ±±±ÿ%°±±ÿ¯°¯ÿ®¯¯ÿ¬­­ÿ«««ÿªªªÿ¨¨¦ÿ¥¥¥ÿ¡££ÿ   ÿžœœÿ›››ÿ˜˜˜ÿ“••ÿ’’’ÿŒŒÿ‹‹‹ÿ…ˆ…ÿ„„ÿ~~ÿ}|}ÿyyyÿuuvÿrqrÿmnnÿjjjÿfffÿbbbÿ^^\ÿZZWÿVVVÿRRQÿNNNÿJJJÿDFFÿ?BBÿ===ÿ999ÿ‚=ŠŠŠÿŽŽŽÿ’’ÿ•••ÿ˜˜˜ÿ›››ÿžžžÿ¢  ÿ¤¤¤ÿ§§§ÿ©©©ÿ«««ÿ®­®ÿ°¯¯ÿ±±±ÿ²²³ÿ³´´ÿ´µ´ÿ¶¶µÿ¶¶¶ÿ¶¶·ÿ¶¶¶ÿ¶¶µÿ´µµÿ´´´ÿ²³³ÿ±±±ÿ°¯°ÿ­­­ÿ¬««ÿ©©©ÿ§¥¥ÿ¤¢¢ÿ¡¡¡ÿžžžÿ›››ÿ˜˜˜ÿ•••ÿ’’ÿŽŽŽÿ‹‹ˆÿ‡‡‡ÿƒƒƒÿÿ{|{ÿxxxÿtttÿpqpÿlllÿhhhÿdddÿ```ÿ\\\ÿXXUÿTTSÿOOOÿKKLÿFFHÿCCCÿ???ÿ;:;ÿ755ÿ=ÿ‘Ž‘ÿ”””ÿ———ÿ›››ÿŸŸŸÿ¢ ¢ÿ¥¥£ÿ¨¨¦ÿªª«ÿ­­¬ÿ¯¯¯ÿ±²²ÿ´´³ÿµµ¶ÿ···ÿ¹¸¹ÿ¹¹ºÿºººÿ»»»ÿ»»ºÿºº»ÿºººÿº¹ºÿ¸¸¸ÿ···ÿµ¶µÿ³´´ÿ²²±ÿ¯¯°ÿ­­­ÿªª«ÿ¨¦¦ÿ¥£¥ÿ¢  ÿžžžÿ›››ÿ˜––ÿ““•ÿ‘Ž‘ÿÿ‡Š‡ÿƒƒ†ÿ‚‚‚ÿ~~ÿzzzÿvvwÿrsrÿnnnÿkkjÿfffÿbbbÿ^^^ÿZZZÿVVVÿRRQÿMNMÿIIIÿEEEÿA>Aÿ<<=ÿ888ÿ=ÿ’’”ÿ———ÿ™™›ÿŸÿ  ¢ÿ¥¥¥ÿ¨¨¨ÿ«««ÿ®®®ÿ±°±ÿ³³³ÿµµµÿ··¸ÿ¹¹ºÿ»¼¼ÿ½½½ÿ¾½¾ÿ¿¾¿ÿ¿¿¿ÿ¿¿Àÿ¿À¿ÿ¿¿¾ÿ½½¾ÿ½½½ÿ»»¼ÿ¹¹¹ÿ¸¸¸ÿ¶¶¶ÿ³³³ÿ±°±ÿ®®®ÿ«««ÿ¨¨¨ÿ¥¥£ÿ¡¡¡ÿžžžÿ›››ÿ———ÿ’””ÿÿŒŒŒÿˆˆˆÿ„„„ÿ~~ÿ}||ÿxyyÿtttÿpqqÿlmmÿhhhÿdddÿ```ÿYY\ÿXUXÿSSSÿOOOÿKJKÿGGGÿBBBÿ>>>ÿ9::ÿ“‘“ÿ–––ÿšššÿžœžÿ¡¡¡ÿ£¥¥ÿ¨¨¨ÿ¬¬¬ÿ®®¯ÿ±²²ÿµ´µÿ···ÿ¹ººÿ¼¼¼ÿ¾½¾ÿÀÀÀÿÁÁÁÿÂÂÂÿÃÃÃÿÃÄÃÿÃÄÄÿÄÃÄÿÃÃÃÿ%ÁÁÁÿÀ¿¿ÿ½½½ÿ¼¼¼ÿ¹¹¹ÿ···ÿ´µµÿ±±±ÿ®¯®ÿ¬«¬ÿ¨¨¨ÿ¤¤¤ÿ¢  ÿžœžÿšššÿ–––ÿ’’’ÿÿ‹‹‹ÿ„‡„ÿƒ€ƒÿ~~~ÿ{{{ÿwvvÿssrÿnnnÿjjjÿfffÿbbbÿ\\^ÿYYYÿUUUÿPPPÿLLLÿHHHÿDDDÿ@==ÿ;;;ÿ•••ÿ—™—ÿœœœÿŸŸ¡ÿ¢¤¤ÿ§§§ÿ«««ÿ®¯®ÿ²±±ÿµµµÿ¸¸¸ÿ»º»ÿ½¾¾ÿÀ¿ÀÿÂÂÂÿÄÄÄÿÅÅÅÿÇÇÇÿÈÈÈÿ‚ÈÉÈÿ'ÇÇÈÿÇÆÇÿÅÅÆÿÄÄÄÿÂÂÂÿÀ¿¿ÿ¾½½ÿ»»ºÿ¸¸¸ÿµµ´ÿ±²²ÿ¯®¯ÿ«««ÿ¨¨¨ÿ¤¤¤ÿ   ÿ›ÿ—™™ÿ“•“ÿ‘‘‘ÿÿ‰‰‰ÿ………ÿ~ÿ|||ÿxxxÿtutÿpppÿkllÿhhhÿddbÿ___ÿX[[ÿWWTÿRRRÿNNNÿIIJÿEEEÿAA>ÿ=<<ÿ———ÿ›››ÿŸŸŸÿ£££ÿ§§§ÿªªªÿ®®®ÿ±²±ÿµµµÿ¸¸¸ÿ¼»»ÿ¾¿¾ÿÁÁÁÿÃÃÃÿÆÆÆÿÈÈÇÿÉÊÊÿËËËÿÌÌÌÿ‚ÍÍÍÿ'ÌÌÌÿËËËÿÊÊÊÿÈÈÈÿÆÆÆÿÃÄÃÿÁÁÁÿ¾¾¾ÿ¼»»ÿ¸¸¸ÿµµ´ÿ±²±ÿ®®®ÿªªªÿ§¥¥ÿ£££ÿŸŸŸÿ›››ÿ———ÿ“““ÿÿ‹‹‹ÿ‡‡‡ÿ€ƒƒÿ~ÿz{zÿvvvÿqqrÿnmnÿiijÿeceÿa__ÿ\\\ÿXXXÿSSSÿOOPÿKKKÿEGEÿ@C@ÿ>>>ÿ=˜˜šÿÿ ¢ ÿ¥¥¥ÿ©©©ÿ­­­ÿ±±°ÿµ´´ÿ¸¸¸ÿ»»»ÿ¾¾¿ÿÁÂÁÿÅÄÅÿÇÈÇÿÊÊÊÿÌÌÌÿÎÎÎÿÐÏÏÿÐÐÑÿÑÑÑÿÒÑÑÿÑÑÑÿÑÐÑÿÏÏÏÿÎÎÎÿÌÌÌÿÊÊÊÿÈÇÇÿÅÅÄÿÂÂÁÿ¾¾¾ÿ¼¼»ÿ·¸·ÿ´´´ÿ±±±ÿ­­­ÿ©©©ÿ¤¦¦ÿ¡¡¡ÿÿ™™™ÿ•••ÿ‘‘‘ÿÿ‰‰†ÿ……‚ÿ€€€ÿ|||ÿxxxÿstsÿoooÿkkjÿgffÿbbbÿ^^\ÿYYYÿTUTÿQPPÿLLLÿFHHÿBBDÿ?>>ÿ=ššœÿŸŸŸÿ¢¤¢ÿ¦¦¨ÿ¬«¬ÿ°¯¯ÿ³´³ÿ···ÿ»»»ÿ¿¾¾ÿÂÁÁÿÅÅÅÿÈÉÉÿËËËÿÎÍÍÿÐÐÐÿÒÒÓÿÓÔÔÿÕÕÕÿÖÖÕÿÖÖÖÿÕÕÖÿÕÕÕÿÔÓÔÿÒÒÒÿÐÐÐÿÎÎÎÿËËËÿÈÈÈÿÅÅÅÿÁÂÁÿ¿¾¾ÿ»»ºÿ···ÿ³³³ÿ¯°¯ÿ««¬ÿ¦¦¨ÿ£££ÿŸŸŸÿ›››ÿ——•ÿ“““ÿŒÿˆˆ‹ÿ†††ÿ‚‚‚ÿ}}}ÿyyyÿtuuÿpqpÿlllÿgghÿcccÿ__]ÿZZZÿVVSÿQRRÿMMNÿIIHÿCECÿ@=@ÿ=ÿ¡¡¡ÿ¥¥¥ÿª©ªÿ®®­ÿ±±±ÿ¶¶¶ÿº¹ºÿ½¾½ÿÁÁÁÿÅÅÅÿÈÉÈÿÌÌËÿÏÏÎÿÑÒÑÿÔÔÔÿÖÖ×ÿØØØÿÚÚÙÿÚÚÚÿÛÚÛÿÛÚÚÿÙÙÚÿØØØÿ×ÖÖÿÔÔÔÿÒÑÑÿÎÎÏÿËËËÿÉÈÈÿÄÅÄÿÁÁÁÿ½½½ÿº¹¹ÿ¶¶µÿ²±±ÿ®®­ÿ©©ªÿ¤¦¤ÿ  ¢ÿÿ™™™ÿ”””ÿŽ‘ŽÿŒŒŒÿˆ……ÿƒƒƒÿ~ÿzz{ÿvvvÿqrqÿmmmÿiiiÿcecÿ```ÿ\Y\ÿWWWÿSRRÿNNNÿJJJÿEEEÿ>A>ÿŸŸŸÿ£££ÿ§§§ÿ«««ÿ¯°°ÿ´´´ÿ·¸¸ÿ»¼»ÿÀÀÀÿÄÄÄÿÇÇÈÿËËËÿÏÏÎÿÒÒÒÿÕÕÕÿØØØÿÚÚÚÿÜÜÜÿÞÞÞÿßßÞÿßßßÿ'ÝÞÞÿÜÜÜÿÚÚÚÿØØØÿÕÕÕÿÒÒÑÿÏÎÏÿËËÌÿÇÇÇÿÃÃÄÿÀÀÀÿ¼¼»ÿ¸·¸ÿ³³³ÿ°°¯ÿ«««ÿ§§§ÿ¡£¡ÿŸŸÿšššÿ”––ÿ’ÿÿ‰‰‰ÿ‚‚…ÿ€€}ÿ{{{ÿwwwÿsssÿnonÿjjiÿddfÿaaaÿ\\\ÿXXXÿSSSÿOOOÿJKJÿFFFÿ?BBÿ=   ÿ¤¤¤ÿ©§©ÿ­­­ÿ±±²ÿµ¶µÿºººÿ¾½¾ÿÂÂÂÿÆÆÆÿÊÊÊÿÍÎÎÿÑÑÑÿÕÕÕÿØÙØÿÜÜÛÿÞßÞÿáààÿââãÿãããÿãääÿääãÿâââÿááàÿÞÞÞÿÜÜÛÿØØÙÿÕÕÕÿÑÒÒÿÎÍÎÿÊÊÊÿÅÆÆÿÂÂÂÿ¾¾¾ÿ¹¹ºÿµµ¶ÿ²±±ÿ­­­ÿ§§©ÿ¤¤¤ÿ   ÿœššÿ———ÿ“““ÿŒŒÿŠŠŠÿƒƒ†ÿÿ}||ÿxxxÿsstÿoooÿkkkÿffgÿbbbÿ^^\ÿVVYÿTTTÿPPPÿKKKÿGGGÿ@@Cÿ=¡¡¡ÿ¤¦¦ÿ©©ªÿ®¯®ÿ³³²ÿ···ÿ»»¼ÿÀ¿¿ÿÄÄÃÿÈÈÈÿÌÌÌÿÐÐÐÿÔÔÔÿØØØÿÜÛÛÿßÞÞÿâââÿäåäÿçæçÿçèèÿèéèÿèèçÿæææÿåäåÿâââÿßßßÿÛÛÛÿØØØÿÔÕÔÿÐÐÐÿÌÌÌÿÈÈÈÿÃÄÄÿ¿¿¿ÿ¼»¼ÿ···ÿ²³³ÿ®¯®ÿªªªÿ¦¦¦ÿ¡¡¡ÿ››ÿ˜˜˜ÿ’”’ÿÿ‹‹‹ÿ„„‡ÿ‚‚ÿ}~}ÿyyyÿtttÿpppÿkllÿgggÿccaÿ^^^ÿYYYÿUUUÿPPPÿLLLÿGGGÿ@CCÿ=¢¢¢ÿ¥§§ÿ«««ÿ¯°¯ÿ´³´ÿ¸¸¸ÿ½¼¼ÿÁÁÁÿÆÆÆÿÊÉÊÿÎÎÎÿÒÓÒÿÖ×ÖÿÚÚÚÿÞÞÞÿâáâÿæåæÿèèèÿëëêÿìììÿíììÿìììÿëêëÿèèèÿåææÿâââÿßÞÞÿÚÚÛÿ×Ö×ÿÓÒÒÿÎÎÎÿÊÉÊÿÆÅÆÿÁÁÁÿ½¼¼ÿ¸¸¹ÿ´´´ÿ¯¯¯ÿ«««ÿ¥§§ÿ¢¢¢ÿœžžÿ˜š˜ÿ“••ÿŽŽ‘ÿŒŒŒÿˆˆ…ÿ€ƒƒÿ~~~ÿyyyÿuuuÿqqqÿmllÿgggÿbdbÿ]]_ÿZWZÿVSSÿQQQÿLLLÿHHHÿCCCÿ=£££ÿ¨¦¦ÿ¬¬¬ÿ°°°ÿµµµÿ¹º¹ÿ¾¾½ÿÃÂÂÿÆÇÇÿËËËÿÐÏÏÿÔÔÓÿØÙØÿÜÝÜÿáààÿäåäÿéèèÿëììÿîïïÿñññÿññòÿññðÿîîîÿììëÿèèéÿåäåÿáááÿÜÜÜÿØØØÿÔÔÓÿÏÐÏÿËËËÿÇÇÇÿÂÂÂÿ¾¾¾ÿ¹¹¹ÿµ´µÿ±°±ÿ¬¬¬ÿ¨¨¦ÿ£££ÿŸŸÿ˜š˜ÿ•••ÿ‘‘‘ÿŒŒŒÿˆ……ÿƒƒƒÿÿ{zzÿvuuÿrqqÿmmmÿhhhÿdbbÿ___ÿX[XÿVVSÿRQQÿMMMÿHHHÿDDDÿ=¤¤¢ÿ¨¨¨ÿ¬­­ÿ±±±ÿµ¶¶ÿºººÿ¾¾¿ÿÃÃÃÿÈÇÇÿÌÌÌÿÐÐÐÿÕÕÕÿÙÙÚÿÞÝÞÿãâãÿææçÿëêêÿïïïÿòòòÿõõõÿöööÿõõõÿòóòÿïïîÿëëêÿçææÿâââÿÞÞÞÿÚÙÚÿÕÕÕÿÐÐÑÿÌÌÌÿÈÈÈÿÃÃÃÿ¿¾¿ÿºººÿ¶¶µÿ±±±ÿ­¬¬ÿ¨¨¨ÿ£££ÿŸŸŸÿ›™™ÿ–––ÿ‘‘‘ÿŠŠÿ‰††ÿ„„„ÿÿ{zzÿvvvÿrqqÿmmmÿiihÿdddÿ``^ÿZZZÿVVVÿRRRÿMMMÿHIHÿDDDÿ<©§©ÿ­¬­ÿ±²±ÿ¶¶¶ÿº»»ÿ¿¿¿ÿÃÄÃÿÈÉÈÿÍÌÌÿÑÑÑÿÖÖÖÿÚÛÛÿßßßÿäããÿççèÿíììÿñññÿõõõÿøøùÿúúûÿøøøÿõôõÿñññÿìììÿèèèÿäääÿßßßÿÛÛÚÿÖÖÖÿÑÒÑÿÌÍÍÿÈÈÈÿÄÄÄÿ¿¿¿ÿ»»ºÿ¶µ¶ÿ²±²ÿ­¬­ÿ¨¨¨ÿ¤¢¤ÿžž ÿ›™›ÿ–––ÿ’’ÿÿ††‰ÿ„„„ÿ}€€ÿ{{{ÿvvvÿrrrÿmmmÿhhiÿdddÿ`^`ÿ[[[ÿWWTÿQRRÿMMMÿIIIÿ‚<¨¨¨ÿ­­­ÿ±±±ÿ¶¶¶ÿ»»ºÿ¿¿¿ÿÃÄÄÿÉÈÈÿÍÍÍÿÒÑÑÿÖÖÖÿÛÚÚÿßßßÿäääÿèèèÿìíìÿñòñÿöööÿûûúÿÿÿÿÿûûûÿöööÿññòÿíìíÿèéèÿãäãÿßßßÿÚÛÚÿÖÖÖÿÑÑÑÿÌÍÍÿÉÈÈÿÄÄÄÿ¿¿¿ÿ»»»ÿ¶¶¶ÿ²±²ÿ­­­ÿ©©©ÿ¤¤¤ÿŸŸŸÿ›™™ÿ–––ÿ’’ÿÿ‰‰†ÿ„„„ÿ€}€ÿ{{{ÿvwvÿqqrÿmnmÿhiiÿdddÿ`^^ÿ[[[ÿTWTÿRRRÿMMNÿIIHÿ‚<©§§ÿ­­­ÿ²±²ÿ¶¶¶ÿº»»ÿ¿¿¿ÿÄÃÄÿÈÈÉÿÍÌÍÿÑÒÒÿÖÖÕÿÚÚÚÿßßßÿãäãÿèèèÿììíÿðññÿõõõÿùùøÿúûûÿøùøÿôõõÿððñÿìììÿçèèÿäããÿßßÞÿÚÛÚÿÖÖÖÿÒÑÑÿÍÍÍÿÈÈÈÿÃÄÃÿ¿¿¿ÿ»º»ÿ¶¶¶ÿ±±±ÿ­­­ÿ§©§ÿ¤¤¤ÿžž ÿ›››ÿ–––ÿ’’’ÿÿˆˆˆÿ„„„ÿÿ{{{ÿvvvÿrqrÿmmmÿihiÿdddÿ`^^ÿ[[[ÿVVVÿRRRÿMMMÿHIHÿ‚9¬¬¬ÿ±±±ÿ¶¶¶ÿºººÿ¿¿¿ÿÃÃÃÿÇÇÇÿÌÌÌÿÐÑÑÿÕÕÕÿÚÙÚÿÞÝÞÿâãâÿççæÿëëêÿïïîÿòòòÿôõõÿöööÿõõõÿóòòÿîîîÿêëëÿççæÿãââÿÞÞÞÿÚÙÙÿÕÕÕÿÑÐÐÿÌÌÌÿÈÇÇÿÃÃÃÿ¾¾¾ÿºººÿ¶¶µÿ±±±ÿ¬­¬ÿ¨¨¨ÿ¢¢¤ÿŸŸÿ›™™ÿ–”–ÿ’ÿŠŠÿˆˆˆÿ„„ÿ}€}ÿzz{ÿvvvÿrqqÿmmmÿihhÿddbÿ^``ÿ[[XÿTWTÿQRRÿMMMÿƒ9¬¬¬ÿ°±°ÿµ´µÿ¹¹ºÿ¾¾¾ÿÂÂÂÿÇÇÇÿËËËÿÏÐÐÿÔÓÔÿØØØÿÝÝÜÿáááÿäåäÿèèèÿìììÿîïîÿñððÿññòÿññðÿîîïÿìììÿéèèÿåääÿáàáÿÜÜÝÿØÙØÿÔÓÔÿÏÏÏÿËÌËÿÇÇÇÿÂÂÂÿ¾¾½ÿ¹¹¹ÿµµµÿ°±°ÿ¬¬«ÿ§§§ÿ¡£¡ÿžžžÿšššÿ•••ÿŽ‘‘ÿŒŒŒÿˆˆˆÿ„ÿ~~ÿ{zzÿvvvÿqqqÿmmmÿhhhÿdbdÿ___ÿ[[XÿVVVÿQQRÿLLMÿƒ‚7¯¯°ÿ´´´ÿ¸¸¸ÿ¼½¼ÿÁÁÁÿÅÆÅÿÉÊÊÿÎÎÎÿÒÒÒÿÖÖ×ÿÚÛÚÿÞÞÞÿâáâÿåååÿèéèÿêëêÿììíÿíííÿìììÿêëëÿèèèÿåååÿâââÿÞßÞÿÚÚÛÿ×ÖÖÿÒÒÓÿÎÎÎÿÉÉÊÿÅÅÅÿÁÁÁÿ½½¼ÿ¸¸¹ÿ³´´ÿ°¯¯ÿ«««ÿ¥§§ÿ£¡¡ÿžžžÿ™™™ÿ•“•ÿÿŒ‰Œÿ‡‡‡ÿƒ€€ÿ~~~ÿzzyÿuuuÿqqpÿlllÿhhgÿcccÿ]__ÿZZZÿVVSÿQQQÿ„‚¯¯®ÿ³³²ÿ···ÿ»¼»ÿÀÀÀÿÄÄÄÿÈÈÈÿÌÌÌÿÐÐÐÿÔÔÔÿ×רÿÛÜÜÿßßßÿââáÿäååÿæççÿèçèÿèèèÿ$æçæÿääåÿâáâÿßßÞÿÜÛÛÿØØ×ÿÔÔÔÿÐÐÑÿÌÌÌÿÈÈÈÿÃÃÃÿÀÀÀÿ»»»ÿ···ÿ³²³ÿ®®®ÿªªªÿ¦¦¤ÿ¢  ÿÿ——™ÿ’””ÿÿ‹‹‹ÿ„„‡ÿ‚‚‚ÿ}}}ÿyyyÿutuÿpopÿlllÿgggÿcaaÿ^^^ÿWZWÿUUUÿPQQÿ„ƒ5±±²ÿ¶µµÿºººÿ¾½¾ÿÂÂÂÿÆÆÆÿÊÊÊÿÎÍÎÿÑÑÒÿÕÕÕÿÙÙØÿÜÜÛÿÞÞÞÿàáàÿâââÿäããÿäääÿäããÿâââÿàáàÿÞÞßÿÛÛÜÿÙØÙÿÕÕÕÿÑÒÑÿÎÍÍÿÊÊÊÿÆÆÆÿÂÂÂÿ¾¾¾ÿ¹º¹ÿ¶¶¶ÿ±±²ÿ­­­ÿ©§©ÿ¤¤¤ÿ ž ÿšœšÿ———ÿ“‘“ÿŒŒÿŠŠŠÿ††ƒÿÿ|}|ÿxxxÿtssÿopoÿkkkÿfffÿb`bÿ]]]ÿYYYÿTTTÿ…ƒ5¯°¯ÿ´´³ÿ·¸¸ÿ¼¼¼ÿÀÀ¿ÿÄÄÃÿÈÇÇÿËËËÿÎÏÏÿÒÒÒÿÕÕÕÿØØ×ÿÛÛÛÿÜÝÜÿÞÝÝÿÞßßÿßßàÿßßßÿÞÝÝÿÝÜÜÿÚÚÚÿØØØÿÕÕÕÿÒÒÒÿÎÏÎÿËËËÿÈÈÈÿÃÄÄÿ¿ÀÀÿ»»¼ÿ·¸·ÿ³´´ÿ°°°ÿ«««ÿ§§§ÿ£¡£ÿŸÿ™›™ÿ–”–ÿ’’ÿŽ‹‹ÿ†‰†ÿ„„„ÿ€€€ÿ||{ÿxwwÿsssÿonnÿjjjÿddfÿaa_ÿ[[]ÿXXXÿSTSÿ…„3²²²ÿ¶µ¶ÿ¹¹ºÿ½½¾ÿÁÂÁÿÄÅÅÿÈÈÉÿËËÌÿÏÎÎÿÒÑÒÿÔÔÔÿÖÖÖÿØØØÿÙÙÙÿÚÚÚÿÚÛÚÿÚÚÚÿÙÙÙÿÙØØÿÖÖÖÿÔÔÔÿÑÒÑÿÎÎÎÿËÌËÿÈÈÈÿÅÄÅÿÁÁÁÿ½¾¾ÿ¹¹¹ÿµ¶µÿ²²²ÿ®­®ÿ©©©ÿ¦¤¤ÿ¡¡¡ÿÿ—™™ÿ““•ÿÿ‰‰Œÿˆ……ÿƒƒƒÿ~~ÿ{z{ÿuvvÿqqqÿmmmÿhhiÿeccÿ```ÿY\YÿWWWÿ†…1³´³ÿ···ÿ»»»ÿ¾¾¾ÿÂÁÁÿÅÅÅÿÈÈÈÿËËËÿÎÎÎÿÐÐÑÿÒÒÒÿÔÔÔÿÕÕÕÿÖÕÖÿÖÖÖÿÕÖÖÿÕÕÕÿÔÓÔÿÒÒÒÿÑÐÐÿÎÎÎÿËËËÿÈÈÈÿÅÅÅÿÂÁÂÿ¾¾¾ÿ»»»ÿ···ÿ´³³ÿ¯°¯ÿ¬««ÿ¨¦¦ÿ¢¤¢ÿž žÿ›››ÿ———ÿ“““ÿŒÿˆˆ‹ÿ†††ÿ‚‚‚ÿ~}}ÿyyyÿtutÿpppÿlllÿhggÿbbdÿ]__ÿ[[Xÿ‡† µµ´ÿ¸¸¸ÿ»¼»ÿ¿¾¿ÿÁÁÂÿÄÄÅÿÈÇÈÿÊÊÊÿÌÌÌÿÎÎÎÿÏÏÏÿÑÑÐÿÑÑÑÿ!ÒÒÑÿÑÑÐÿÐÐÏÿÎÎÎÿÌÌÌÿÊÊÊÿÈÇÈÿÅÅÅÿÁÁÂÿ¾¾¾ÿ»»»ÿ¸··ÿ´´´ÿ±°±ÿ­­­ÿ©©©ÿ¥¥¥ÿ ¢¢ÿÿš˜˜ÿ•••ÿ‘‘‘ÿŠÿ†‰‰ÿ„„„ÿ€€€ÿ||{ÿwwxÿtssÿoooÿkjjÿffgÿbbbÿ\^^ÿˆ‡-µµµÿ¸¸¸ÿ»¼¼ÿ¿¾¾ÿÁÁÁÿÄÄÃÿÆÆÆÿÈÈÈÿÊÊÊÿËËËÿÌÌÌÿÍÍÌÿÍÍÍÿÌÍÍÿÌÌÌÿËËÌÿÊÊÉÿÈÇÈÿÆÆÆÿÄÄÃÿÁÁÁÿ¾¾¿ÿ»»»ÿ¸¹¸ÿµµµÿ±²±ÿ®®®ÿª«ªÿ§§§ÿ£££ÿŸŸÿ›››ÿ———ÿ“““ÿŒÿ‹‹‹ÿ‡‡‡ÿƒ€ƒÿ~~~ÿzzzÿvvvÿrrrÿmmnÿiiiÿeccÿa__ÿ‰ˆ´µµÿ¸¸¸ÿ»º»ÿ½¾½ÿÀÀ¿ÿÂÂÂÿÄÄÄÿÅÆÆÿÇÇÇÿÈÈÈÿ ÈÉÉÿÈÈÈÿÈÇÈÿÆÇÇÿÅÆÅÿÄÄÄÿÂÂÂÿ¿ÀÀÿ½½½ÿºº»ÿ¸¸¸ÿ´µµÿ±²²ÿ¯¯¯ÿ«««ÿ¨¦¨ÿ¤¤¤ÿ¡ŸŸÿ››ÿ™——ÿ““•ÿŽ‘‘ÿÿ‰†‰ÿ……‚ÿ~~ÿ||}ÿxyyÿtttÿpppÿklkÿhhhÿbdbÿЉ)´´´ÿ···ÿ¹¹ºÿ¼»¼ÿ¾½¾ÿÀ¿¿ÿÁÁÂÿÂÃÂÿÃÃÄÿÃÄÃÿÄÃÄÿÃÄÄÿÃÃÃÿÃÃÂÿÁÁÁÿÀ¿¿ÿ¾¾¾ÿ¼»¼ÿ¹º¹ÿ···ÿ´´´ÿ±±²ÿ®¯®ÿ«««ÿ¨¨¨ÿ¥¥¥ÿ¡¡¡ÿœžœÿšššÿ–––ÿ“‘‘ÿŒŒÿˆˆ‹ÿ„‡‡ÿƒƒ€ÿ~ÿ{{{ÿvwwÿrsrÿnnoÿjjjÿfffÿ‹Š³³´ÿ¶µ¶ÿ·¸¸ÿº¹ºÿ»»»ÿ¼¼½ÿ¾¾½ÿ¿¿¿ÿÀ¿¿ÿ¿¿¿ÿ¾¾¿ÿ¾¾½ÿ½¼½ÿ»»»ÿºººÿ¸¸¸ÿ¶µ¶ÿ³³³ÿ°±±ÿ­­®ÿ«««ÿ¨¨¨ÿ¥¥¥ÿ¢¢¢ÿŸÿ›››ÿ———ÿ”’’ÿÿŒŒŒÿˆˆˆÿ‚‚…ÿÿ||}ÿxyyÿuttÿqppÿlllÿihhÿŒ‹±²±ÿ´³´ÿµ¶¶ÿ···ÿ¹¹¸ÿ¹ººÿºººÿº»»ÿº»ºÿ»ººÿ¹¹¹ÿ¸¸¸ÿ···ÿ¶¶µÿ´´³ÿ²²²ÿ°°°ÿ­­­ÿªª«ÿ¦¦¨ÿ£¥¥ÿ¢  ÿŸÿ›››ÿ˜˜˜ÿ•““ÿŽ‘‘ÿÿ‡‡Šÿƒ††ÿ‚‚‚ÿ~~~ÿzzzÿwvvÿrrrÿoooÿkjjÿ±±²ÿ³²³ÿ´´´ÿµµ´ÿƒ¶¶¶ÿµµµÿ´´´ÿ²³²ÿ±²±ÿ¯¯¯ÿ®®®ÿ«««ÿ©©©ÿ§§¥ÿ¤¤¤ÿ¡¡¡ÿŸÿ›››ÿ˜˜˜ÿ•••ÿ‘‘‘ÿŽŽŽÿ‹ˆˆÿ‡‡‡ÿ„ÿ}€}ÿ{{{ÿxxxÿtttÿpppÿŽ®®®ÿ¯°°ÿ°°°ÿ±±±ÿ±±²ÿ±²±ÿ±±±ÿ°°°ÿ°¯¯ÿ¯®®ÿ¬­¬ÿ¬««ÿª©©ÿ¦¨¦ÿ¤¤¦ÿ£££ÿŸ¡Ÿÿžœžÿ›››ÿ–˜˜ÿ•••ÿ’ÿŒŒÿ‹‹‹ÿ…ˆˆÿ„„„ÿ~~ÿ}|}ÿyyyÿuvvÿrqqÿ¬¬«ÿ¬­­ÿ‚­­­ÿ­¬¬ÿ¬¬¬ÿ«««ÿªªªÿ§©©ÿ§§§ÿ¤¤¦ÿ¤¤¢ÿ¢  ÿŸŸŸÿ›ÿšššÿ———ÿ“•“ÿ’ÿŒŒÿ‹‹‹ÿˆˆ…ÿ‚…‚ÿÿ}~}ÿzzzÿvvvÿ’“§§©ÿ¨¨¨ÿ¦¨¨ÿ¥§§ÿ¤¦¤ÿ¤¤¤ÿ£¡£ÿ ¢ ÿ  žÿÿ›››ÿ—™™ÿ—••ÿ“““ÿ‘‘Žÿ‹ŽŽÿ‹‹ˆÿˆˆˆÿ…‚…ÿÿ~~~ÿ•–£££ÿ¢¢¢ÿ¡¡¡ÿ   ÿŸÿÿ›››ÿ˜˜šÿ———ÿ••“ÿ“‘“ÿÿŽ‹‹ÿŠŠŠÿˆˆˆÿ‚‚…ÿ˜¿¿¿TRUEVISION-XFILE.logstalgia-1.0.3/data/glow.tga0000644000203100020310000051730311526610646016051 0ustar andrewcandrewc þþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþî£þîþæ³þæþà¿þàþÛÉþÛþÖÓþÖþÒÛþÒþÎãþÎþ˲ƒ²þËþȤ¥¤þÈþÅ ³ þÅþ¿þÂþ¿›É›þ¿þ½˜§ƒ§˜þ½þº˜š£š˜þºþ¸––³––þ¸þ¶•“¿“•þ¶þ³•‘‘•þ³þ±”•¥•”þ±þ¯“’³’“þ¯þ­’¿’þ­þ«’Ž“¡“Ž’þ«þ©‘±‘þ©þ¨‹Žš…šŽ‹þ¨þ¦Œ‹Œ£Œ‹Œþ¦þ¤‹‹‹±‹‹‹þ¤þ¢‹ŠŠ‹’—’‹ŠŠ‹þ¢þ¡‹‰‰ŠŽ©ŽŠ‰‰‹þ¡þŸŠ‰‰‰‹•‹•‹‰‰‰ŠþŸþžŽŠ‰ˆ‰‰¥‰‰ˆ‰ŠŽþžþœŽŠˆˆˆ‰Š³Š‰ˆˆˆŠŽþœþšŽŠˆˆ‡ˆ‰¡ ‰ˆ‡ˆˆŠŽþšþ™Ž‰ˆ‡‡‡ˆ‹¯ ‹ˆ‡‡‡ˆ‰Žþ™þ˜‰ˆ‡†‡‡‰Œ ¡ Œ ‰‡‡†‡ˆ‰þ˜þ–‰ˆ†‡†‡‡Š “ ‡ “ Š ‡‡†‡†ˆ‰þ–þ•ˆˆ†††‡†ˆ ‹ £ ‹ ˆ †‡†††ˆˆþ•þ“‰‡†††††‡ ˆ ˆ ‡ †††††‡‰þ“þ’ˆ‡††…†…‡ ‡ Š ¥ Š ‡ ‡ …†…††‡ˆþ’þ‘Œˆ‡†…†……† ‡ ‡ — ‡ ‡ † ……†…†‡ˆŒþ‘þˆ††…………† † † ‰ © ‰ † † † …………††ˆþþŽŒˆ‡……………… … † ‡ Š ŸŠ ‡ † … … ……………‡ˆŒþŽþŒˆ†…………„… … … † ˆ ‘ˆ † … … … „…………†ˆŒþþŒ‹ˆ††„…„…„ … … … † ‰¥‰† … … … „ …„…„††ˆ‹þŒþ‹‹ˆ†……„„„… „ „ … † ‡‰‰‡† … „ „ … „„„……†ˆ‹þ‹þ‰Œ‡†……„„„„ „ … „ … †‡ŽŽ‡†… „ … „ „ „„„……†‡Œþ‰þˆŒ‡†…„„„„„ „ „ „ „ …†‰£‰†…„ „ „ „ „ „„„„…†‡Œþˆþ‡‹‡†…„„„„„ ƒ „ „ „ ……†‰‰†……„ „ „ ƒ „ „„„„…†‡‹þ‡þ†‹‡†…„„ƒ„„ ƒ „ ƒ „ „……‡‹“‹‡……„„ ƒ „ ƒ „ „ƒ„„…†‡‹þ†þ…‹‡……„„„ƒ„ ƒ ƒ „ ƒ „„…†‡…‡†…„„ƒ „ ƒ ƒ „ ƒ„„„……‡‹þ…þ„‹‡……„ƒ„ƒ„ ƒ ƒ ƒ „ ƒ„„…†‡¡‡†…„„ƒ„ ƒ ƒ ƒ „ ƒ„ƒ„……‡‹þ„þƒŠ‡†„„„ƒ„ƒ ƒ ƒ ƒ ƒ „ƒ„„…†ˆ›ˆ†…„„ƒ„ƒ ƒ ƒ ƒ ƒ „ƒ„„„†‡Šþƒþ‚Ї……„ƒ„ƒƒ ƒ ƒ ƒ ƒ ƒƒ„„„…†‰•‰†…„„„ƒƒƒ ƒ ƒ ƒ ƒ ƒ„ƒ„……‡Šþ‚þЇ…„„„ƒƒƒ ƒ ƒ ƒ ƒ ƒƒƒƒ„„…‡‹‹‡…„„ƒƒƒƒƒ ƒ ƒ ƒ ƒ ƒƒ„„„…‡ŠþþЇ…„„ƒƒ„‚ ƒ ƒ ƒ ‚ ƒƒƒƒ„„„…†£†…„„„ƒƒƒƒ‚ ƒ ƒ ƒ ‚ „ƒƒ„„…‡ŠþþІ……ƒ„ƒƒƒ ‚ ƒ ƒ ‚ ƒƒƒƒƒƒ„„…‡Ÿ‡…„„ƒƒƒƒƒƒ‚ ƒ ƒ ‚ ƒ ƒƒ„ƒ……†ŠþýІ…„„ƒ„‚ƒ ƒ ‚ ƒ ‚ ƒƒ‚ƒƒƒƒ„„†‡›‡†„„ƒƒƒƒ‚ƒƒ‚ ƒ ‚ ƒ ƒ ‚„ƒ„„…†ŠýüІ…„„ƒƒƒƒ ‚ ƒ ‚ ƒ ‚‚ƒƒ‚ƒƒ„ƒ……ˆ—ˆ……ƒ„ƒƒ‚ƒƒ‚‚ƒ ‚ ƒ ‚ ƒ ƒƒƒ„„…†ŠüûІ…„„ƒƒ‚ƒ ƒ ‚ ‚ ƒ ‚‚ƒ‚ƒƒ‚ƒ„ƒ……‰“‰……ƒ„ƒ‚ƒƒ‚ƒ‚‚ƒ ‚ ‚ ƒ ƒ ‚ƒƒ„„…†ŠûúІ…„ƒƒƒƒƒ ‚ ‚ ƒ ‚ ‚‚ƒ‚ƒ‚ƒ‚ƒ„ƒ……ŠŠ……ƒ„ƒ‚ƒ‚ƒ‚ƒ‚‚‚ ƒ ‚ ‚ ƒ ƒƒƒƒ„…†ŠúùІ…„ƒƒƒƒ‚ ‚ ƒ ‚ ‚ ‚‚ƒ‚‚ƒ‚ƒ‚ƒƒ„……‹‹‹……„ƒƒ‚ƒ‚ƒ‚‚ƒ‚‚‚ ‚ ƒ ‚ ‚ ƒƒƒƒ„…†ŠùøŠ†…ƒ„ƒƒ‚ƒ ‚ ‚ ‚ ‚ ƒ‚‚‚‚‚ƒ‚‚ƒƒƒ„„†ŽƒŽ†„„ƒƒƒ‚‚ƒ‚‚‚‚‚ƒ‚ ‚ ‚ ‚ ƒ ‚ƒƒ„ƒ…†Šø÷І„„„ƒ‚ƒ‚ ƒ ‚ ‚ ‚ ‚‚‚‚‚‚‚ƒ‚‚ƒƒƒ„„†Ÿ†„„ƒƒƒ‚‚ƒ‚‚‚‚‚‚‚‚ ‚ ‚ ƒ ‚ ƒ‚ƒ„„„†Š÷öІ„„ƒƒƒƒ‚ ‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚ƒ‚ƒƒƒƒ…††…ƒƒƒƒ‚ƒ‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚ ƒƒƒƒ„„†ŠöõІ„„ƒƒƒ‚ƒ ‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚ƒ‚ƒƒ„„‡› ‡„„ƒƒ‚ƒ‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ƒ ‚ƒƒƒ„„†ŠõôІ„„ƒƒƒ‚‚ ‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚‚‚ƒƒƒ„„‡ ™!!!‡ „„ƒƒƒ‚‚‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚ ‚ƒƒƒ„„†Šôô‰†„„ƒƒ‚ƒ‚ ‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚‚‚ƒ‚ƒ„… ‡!!!—"""‡!!!… „ƒ‚ƒ‚‚‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚ ƒ‚ƒƒ„„†‰ô󉆄„ƒƒ‚ƒ‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚‚ƒ‚ƒƒ„ „!!!‡"""—###‡"""„!!!„ ƒƒ‚ƒ‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚ ƒ‚ƒƒ„„†‰óò‰†„„ƒƒ‚‚ƒ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚‚‚ƒ‚ƒ „!!!…"""†###—$$$†###…"""„!!!ƒ ‚ƒ‚‚‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ƒ ‚‚ƒƒ„„†‰òñ‰†„„ƒƒ‚‚‚ ‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚ƒ‚ƒ ƒ!!!ƒ"""…###‡$$$•%%%‡$$$…###ƒ"""ƒ!!!ƒ ‚ƒ‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚ ‚‚ƒƒ„„†‰ñð‰†„„ƒƒ‚‚‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚‚‚ƒ ‚!!!ƒ"""„###„$$$‡%%%•&&&‡%%%„$$$„###ƒ"""‚!!!ƒ ‚‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚ ‚‚ƒƒ„„†‰ð„„ƒƒ‚‚‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚ƒ ‚!!!‚"""ƒ###„$$$„%%%‡&&&•'''‡&&&„%%%„$$$ƒ###‚"""‚!!!ƒ ‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒ„„…Šï…ƒƒƒ‚‚‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚ ‚!!!‚"""ƒ###ƒ$$$ƒ%%%„&&&‡'''•(((‡'''„&&&ƒ%%%ƒ$$$ƒ###‚"""‚!!!‚ ‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒƒ……‰ï…ƒƒƒ‚‚‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚ ‚!!!‚"""‚###ƒ$$$ƒ%%%ƒ&&&„'''‡(((•)))‡(((„'''ƒ&&&ƒ%%%ƒ$$$‚###‚"""‚!!!‚ ‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒƒ……‰î퉆„ƒƒƒ‚‚‚ ‚ ‚ ‚‚‚‚‚‚‚‚ ‚!!!"""‚###ƒ$$$‚%%%ƒ&&&ƒ'''„(((†)))—***†)))„(((ƒ'''ƒ&&&‚%%%ƒ$$$‚###"""‚!!!‚ ‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒƒ„†‰í쉆„ƒƒƒ‚‚‚ ‚ ‚ ‚‚‚‚‚‚‚ !!!‚"""‚###‚$$$‚%%%‚&&&ƒ'''ƒ(((„)))†***—+++†***„)))ƒ(((ƒ'''‚&&&‚%%%‚$$$‚###‚"""!!!‚ ‚‚‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒƒ„†‰ì쉅„ƒƒƒ‚‚‚ ‚ ‚ ‚‚‚‚‚ ‚!!!‚"""###‚$$$‚%%%‚&&&‚'''ƒ(((ƒ)))„***†+++—,,,†+++„***ƒ)))ƒ(((‚'''‚&&&‚%%%‚$$$###‚"""‚!!! ‚‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒƒ„…‰ì뉅„ƒƒƒ‚‚‚ ‚ ‚ ‚‚‚‚ ‚!!!"""‚###$$$‚%%%‚&&&‚'''‚(((ƒ)))ƒ***„+++…,,,™---…,,,„+++ƒ***ƒ)))‚(((‚'''‚&&&‚%%%$$$‚###"""‚!!! ‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒƒ„…‰ëꉅ„„‚ƒ‚‚‚ ‚ ‚ ‚‚‚ ‚!!!"""‚###$$$‚%%%&&&‚'''‚(((‚)))ƒ***ƒ+++„,,,…---™...…---„,,,ƒ+++ƒ***‚)))‚(((‚'''&&&‚%%%$$$‚###"""‚!!! ‚‚‚‚ ‚ ‚ ‚‚ƒ‚„„…‰êꈆƒ„‚ƒ‚‚‚ ‚ ‚ ‚‚‚ !!!"""###‚$$$%%%‚&&&'''‚(((‚)))‚***ƒ+++ƒ,,,„---…...™///…...„---ƒ,,,ƒ+++‚***‚)))‚((('''‚&&&%%%‚$$$###"""!!!‚ ‚‚‚ ‚ ‚ ‚‚ƒ‚„ƒ†ˆê鈆„ƒƒ‚‚‚‚ ‚ ‚ ‚‚ !!!"""###‚$$$%%%&&&‚'''‚((()))‚***‚+++ƒ,,,ƒ---ƒ...…///›000…///ƒ...ƒ---ƒ,,,‚+++‚***)))‚(((‚'''&&&%%%‚$$$###"""!!! ‚‚‚ ‚ ‚ ‚‚‚ƒƒ„†ˆé艅„ƒƒ‚‚‚‚ ‚ ‚ ‚ !!!"""###‚$$$%%%&&&‚'''(((‚)))***‚+++‚,,,ƒ---ƒ...ƒ///…000›111…000ƒ///ƒ...ƒ---‚,,,‚+++***‚)))(((‚'''&&&%%%‚$$$###"""!!! ‚‚ ‚ ‚ ‚‚‚ƒƒ„…‰è牅„ƒƒ‚‚‚‚ ‚ ‚ ‚ ‚!!!"""###$$$%%%&&&'''‚((()))‚***‚+++,,,‚---ƒ...ƒ///ƒ000…111‰222‡333‰222…111ƒ000ƒ///ƒ...‚---,,,‚+++‚***)))‚((('''&&&%%%$$$###"""‚!!! ‚‚ ‚ ‚ ‚‚‚ƒƒ„…‰ç爅„ƒƒ‚‚‚‚ ‚ ‚ ‚ !!!"""###$$$%%%&&&'''‚((()))***‚+++‚,,,---‚...ƒ///ƒ000ƒ111„222ˆ333‹444ˆ333„222ƒ111ƒ000ƒ///‚...---‚,,,‚+++***)))‚((('''&&&%%%$$$###"""!!! ‚‚ ‚ ‚ ‚‚‚ƒƒ„…ˆç扅„ƒ‚ƒ‚‚ ‚ ‚  !!!"""###$$$%%%&&&'''‚((()))***‚+++,,,‚---...‚///ƒ000‚111„222„333‡444555‡444„333„222‚111ƒ000‚///...‚---,,,‚+++***)))‚((('''&&&%%%$$$###"""!!! ‚ ‚ ‚ ‚ƒ‚ƒ„…‰ææˆ…„ƒƒ‚‚‚ ‚ ‚  !!!"""###$$$%%%&&&‚'''((()))***+++‚,,,---‚...///‚000ƒ111‚222ƒ333„444‡555666‡555„444ƒ333‚222ƒ111‚000///‚...---‚,,,+++***)))(((‚'''&&&%%%$$$###"""!!!  ‚ ‚ ‚‚‚ƒƒ„…ˆæåˆ…„ƒƒ‚‚‚ ‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,‚---...‚///‚000111ƒ222‚333ƒ444„555†666‘777†666„555ƒ444‚333ƒ222111‚000‚///...‚---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ ‚‚‚ƒƒ„…ˆå䉅ƒƒƒ‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---‚...///‚000111‚222‚333ƒ444ƒ555ƒ666†777“888†777ƒ666ƒ555ƒ444‚333‚222111‚000///‚...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ ‚‚‚ƒƒƒ…‰ä䈅„ƒ‚‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---‚...///000‚111222‚333‚444ƒ555‚666„777…888•999…888„777‚666ƒ555‚444‚333222‚111000///‚...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ ‚‚‚‚ƒ„…ˆä㈅„ƒ‚ƒ‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...‚///000111‚222333‚444‚555‚666ƒ777„888„999—:::„999„888ƒ777‚666‚555‚444333‚222111000‚///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ ‚ƒ‚ƒ„…ˆã≅ƒƒƒ‚‚‚ ‚ ‚ !!!"""###$$$%%%&&&'''((()))***+++,,,---...‚///000111222‚333444‚555‚666‚777ƒ888ƒ999…:::—;;;…:::ƒ999ƒ888‚777‚666‚555444‚333222111000‚///...---,,,+++***)))((('''&&&%%%$$$###"""!!! ‚ ‚ ‚‚‚ƒƒƒ…‰â∅„ƒ‚‚‚‚ ‚ ‚ !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333‚444555‚666‚777‚888‚999„:::„;;;‹<<<===‹<<<„;;;„:::‚999‚888‚777‚666555‚444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!! ‚ ‚ ‚‚‚‚ƒ„…ˆâህ„ƒ‚‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444‚555666‚777‚888‚999‚:::ƒ;;;„<<<ˆ===‰>>>ˆ===„<<<ƒ;;;‚:::‚999‚888‚777666‚555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!! ‚ ‚ ‚‚‚‚ƒ„…ˆáህƒƒƒ‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555‚666777‚888999‚:::ƒ;;;ƒ<<<„===‡>>>‹???‡>>>„===ƒ<<<ƒ;;;‚:::999‚888777‚666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ ‚‚ƒƒƒ…ˆáàˆ…„ƒ‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666‚777888‚999:::‚;;;ƒ<<<‚===„>>>†???@@@†???„>>>‚===ƒ<<<‚;;;:::‚999888‚777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚ƒ„…ˆààˆ„„ƒ‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777‚888999:::‚;;;‚<<<‚===ƒ>>>„???†@@@AAA†@@@„???ƒ>>>‚===‚<<<‚;;;:::999‚888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚ƒ„„ˆà߈…ƒƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999‚:::;;;‚<<<‚===‚>>>ƒ???ƒ@@@†AAA‘BBB†AAAƒ@@@ƒ???‚>>>‚===‚<<<;;;‚:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚ƒƒƒ…ˆßÞˆ…„ƒ‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::‚;;;<<<‚===‚>>>‚???ƒ@@@ƒAAA…BBB“CCC…BBBƒAAAƒ@@@‚???‚>>>‚===<<<‚;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ ‚‚‚ƒ„…ˆÞÞˆ…ƒƒ‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;‚<<<===‚>>>???ƒ@@@‚AAAƒBBB…CCC•DDD…CCCƒBBB‚AAAƒ@@@???‚>>>===‚<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚ƒƒ…ˆÞ݈…„‚ƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<‚===>>>‚???@@@‚AAAƒBBBƒCCC„DDD—EEE„DDDƒCCCƒBBB‚AAA@@@‚???>>>‚===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚ƒ‚„…ˆÝ݈„„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===‚>>>???‚@@@AAA‚BBBƒCCCƒDDD„EEE‰FFFƒGGG‰FFF„EEEƒDDDƒCCC‚BBBAAA‚@@@???‚>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ„„ˆÝ܈…ƒƒ‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???‚@@@AAA‚BBB‚CCC‚DDDƒEEE„FFFˆGGG‡HHHˆGGG„FFFƒEEE‚DDD‚CCC‚BBBAAA‚@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚ƒƒ…ˆÜ܈„„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???‚@@@AAABBB‚CCC‚DDD‚EEEƒFFFƒGGG‡HHH‹III‡HHHƒGGGƒFFF‚EEE‚DDD‚CCCBBBAAA‚@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ„„ˆÜÛˆ…ƒƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAA‚BBBCCC‚DDD‚EEE‚FFF‚GGG„HHH†IIIJJJ†III„HHH‚GGG‚FFF‚EEE‚DDDCCC‚BBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒƒ…ˆÛÛˆ„„‚ƒ‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBB‚CCCDDD‚EEEFFFƒGGG‚HHHƒIII†JJJKKK†JJJƒIII‚HHHƒGGGFFF‚EEEDDD‚CCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚ƒ‚„„ˆÛÚˆ…ƒƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCC‚DDDEEEFFF‚GGG‚HHHƒIIIƒJJJ…KKK‘LLL…KKKƒJJJƒIII‚HHH‚GGGFFFEEE‚DDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒƒ…ˆÚÚˆ„„‚ƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDD‚EEEFFFGGG‚HHH‚III‚JJJ„KKK„LLL“MMM„LLL„KKK‚JJJ‚III‚HHHGGGFFF‚EEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚„„ˆÚÙˆ…ƒƒ‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFF‚GGGHHH‚III‚JJJ‚KKKƒLLL…MMM“NNN…MMMƒLLL‚KKK‚JJJ‚IIIHHH‚GGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒƒ…ˆÙÙˆ„„‚‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGG‚HHHIII‚JJJ‚KKK‚LLLƒMMM„NNN•OOO„NNNƒMMM‚LLL‚KKK‚JJJIII‚HHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚‚„„ˆÙÙ‡…ƒƒ‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHH‚IIIJJJ‚KKK‚LLL‚MMMƒNNN„OOO•PPP„OOOƒNNN‚MMM‚LLL‚KKKJJJ‚IIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒƒ…‡Ù؈„„‚‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIII‚JJJKKK‚LLLMMMƒNNN‚OOO…PPP•QQQ…PPP‚OOOƒNNNMMM‚LLLKKK‚JJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚„„ˆØØ‡…ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJ‚KKKLLLMMM‚NNN‚OOOƒPPP„QQQ‰RRRƒSSS‰RRR„QQQƒPPP‚OOO‚NNNMMMLLL‚KKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒƒ…‡Ø×ˆ„„‚‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKK‚LLLMMMNNN‚OOO‚PPPƒQQQ„RRR‡SSS‡TTT‡SSS„RRRƒQQQ‚PPP‚OOONNNMMM‚LLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚„„ˆ×ׇ…ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLL‚MMMNNNOOO‚PPP‚QQQƒRRRƒSSS‡TTT‰UUU‡TTTƒSSSƒRRR‚QQQ‚PPPOOONNN‚MMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒƒ…‡×Öˆ„„‚‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMM‚NNNOOOPPP‚QQQ‚RRRƒSSSƒTTT†UUU‹VVV†UUUƒTTTƒSSS‚RRR‚QQQPPPOOO‚NNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚„„ˆÖÖ‡…ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNN‚OOOPPPQQQ‚RRR‚SSSƒTTTƒUUU†VVV‹WWW†VVVƒUUUƒTTT‚SSS‚RRRQQQPPP‚OOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒƒ…‡ÖÖ‡…ƒ‚‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOO‚PPPQQQRRR‚SSS‚TTTƒUUUƒVVV…WWWXXX…WWWƒVVVƒUUU‚TTT‚SSSRRRQQQ‚PPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚ƒ…‡ÖÕˆ„ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSS‚TTT‚UUU‚VVV„WWW…XXXYYY…XXX„WWW‚VVV‚UUU‚TTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒƒ„ˆÕÕ‡…ƒ‚ƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTT‚UUU‚VVV‚WWW„XXX…YYYZZZ…YYY„XXX‚WWW‚VVV‚UUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ƒ‚ƒ…‡ÕÔˆ„ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTT‚UUUVVV‚WWW‚XXX„YYY…ZZZ[[[…ZZZ„YYY‚XXX‚WWWVVV‚UUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒƒ„ˆÔÔ‡…ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUU‚VVVWWW‚XXX‚YYY„ZZZ…[[[\\\…[[[„ZZZ‚YYY‚XXXWWW‚VVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚ƒƒ…‡ÔÔ‡„„‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVV‚WWWXXX‚YYY‚ZZZ„[[[…\\\]]]…\\\„[[[‚ZZZ‚YYYXXX‚WWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚„„‡ÔÓˆ„ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWW‚XXXYYY‚ZZZƒ[[[ƒ\\\…]]]^^^…]]]ƒ\\\ƒ[[[‚ZZZYYY‚XXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚ƒƒ„ˆÓÓ‡…ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWW‚XXXYYYZZZ‚[[[ƒ\\\ƒ]]]…^^^___…^^^ƒ]]]ƒ\\\‚[[[ZZZYYY‚XXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ…‡ÓÓ‡„ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWW‚XXXYYYZZZ‚[[[\\\ƒ]]]ƒ^^^…___```…___ƒ^^^ƒ]]]\\\‚[[[ZZZYYY‚XXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒƒ„‡ÓÒˆ„ƒƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[‚\\\‚]]]‚^^^ƒ___†```‹aaa†```ƒ___‚^^^‚]]]‚\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„ˆÒÒ‡…ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\‚]]]‚^^^‚___„```…aaa‹bbb…aaa„```‚___‚^^^‚]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ…‡ÒÒ‡„ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\‚]]]^^^‚___ƒ```ƒaaa†bbb‰ccc†bbbƒaaaƒ```‚___^^^‚]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚ƒƒ„‡Òш„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]‚^^^___ƒ```‚aaaƒbbb‡ccc‡ddd‡cccƒbbb‚aaaƒ```___‚^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ„ˆÑч„„‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___‚```‚aaa‚bbb„ccc‡ddd…eee‡ddd„ccc‚bbb‚aaa‚```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚„„‡Ñч„ƒƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111 222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___‚```aaa‚bbbƒcccƒddd•eeeƒdddƒccc‚bbbaaa‚```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<< ;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡ÑЈ„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,--- ...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```‚aaa‚bbb‚ccc‚ddd„eee“fff„eee‚ddd‚ccc‚bbb‚aaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888 777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ„ˆÐЇ…ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((( )))***+++,,,---...///000111222333 444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___‚```aaabbb‚ccc‚dddƒeee„fff‘ggg„fffƒeee‚ddd‚cccbbbaaa‚```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@ ???>>>===<<<;;;:::999888777666555444333 222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ…‡ÐЇ„ƒƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---... ///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbb‚cccddd‚eeeƒfff„ggg‘hhh„gggƒfff‚eeeddd‚cccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>=== <<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Ðψ„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((( )))***+++,,,---...///000111222333444555666 777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbb‚cccddd‚eee‚fffƒggg„hhhiii„hhhƒggg‚fff‚eeeddd‚cccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDD CCCBBBAAA@@@???>>>===<<<;;;:::999888777666 555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ„ˆÏχ…ƒ‚‚‚‚  !!!"""### $$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@ AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeee‚fff‚ggg„hhh…iii‹jjj…iii„hhh‚ggg‚fffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKK JJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000/// ...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ…‡Ïχ„ƒƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999::: ;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeee‚fff‚ggg‚hhhƒiii†jjj‰kkk†jjjƒiii‚hhh‚ggg‚fffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHH GGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Ïχ„ƒ‚‚‚‚  !!!""" ###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccddd‚eeefffggg‚hhhƒiiiƒjjj‰kkklll‰kkkƒjjjƒiii‚hhhgggfff‚eeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000/// ...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ„‡ÏΈ„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>> ???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggg‚hhh‚iiiƒjjjƒkkk“lllƒkkkƒjjj‚iii‚hhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLL KKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ„ˆÎ·„ƒƒ‚‚  !!! """###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefff‚ggghhh‚iii‚jjj‚kkk…lllmmm…lll‚kkk‚jjj‚iiihhh‚gggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///... ---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Î·„ƒƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAA BBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhh‚iiijjjƒkkk‚lll…mmmnnn…mmm‚lllƒkkkjjj‚iiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPP OOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Î·„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++ ,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggg‚hhhiiijjj‚kkk‚lll„mmm†nnn‡ooo†nnn„mmm‚lll‚kkkjjjiii‚hhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMM LLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++ ***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ„‡Î͇…ƒ‚‚‚  !!!"""###!$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFF GGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjj‚kkk‚lll‚mmm„nnn“ooo„nnn‚mmm‚lll‚kkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRR QQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFF!EEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ…‡Í͇„ƒƒ‚‚  !!!"""###$$$%%%&&&'''(((&)))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkk‚lll‚mmm‚nnn„ooo‘ppp„ooo‚nnn‚mmm‚lllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPP&OOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Í͇„ƒƒ‚‚  (!!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJ KKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkk‚lll‚mmm‚nnnƒooo…ppp‹qqq…pppƒooo‚nnn‚mmm‚lllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUU TTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJ(IIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Í͇„ƒ‚‚‚‚  !!!"""###$$$,%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklll‚mmmnnnƒoooƒpppˆqqqƒrrrˆqqqƒpppƒooonnn‚mmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRR,QQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ„‡Í͇„ƒ‚‚‚   !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMM NNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkk‚lllmmm‚nnnoooƒppp„qqq‘rrr„qqqƒpppooo‚nnnmmm‚lllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXX WWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::888777666555444333222111000///...---,,,+++ ***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Í̇„ƒƒ‚‚  3!!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmm‚nnnoooƒpppƒqqq„rrrsss„rrrƒqqqƒpppooo‚nnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUU3TTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Ì̇„ƒƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>@@@ BBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOO PPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnn‚ooo‚ppp‚qqqƒrrrˆsssƒtttˆsssƒrrr‚qqq‚ppp‚ooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZ YYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOO NNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBB@@@>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Ì̇„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000#222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooo‚ppp‚qqq‚rrr„sss‘ttt„sss‚rrr‚qqq‚pppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVV#UUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ„‡Ì̇„ƒ‚‚‚  -!!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEGGGHHHIIIJJJKKKLLLMMMNNNOOOPPP QQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnn‚oooppp‚qqq‚rrrƒsss…ttt‹uuu…tttƒsss‚rrr‚qqqppp‚ooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPP-OOONNNMMMLLLKKKJJJIIIHHHGGGEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Ì̇„ƒ‚‚‚  !!!"""###2$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooo‚pppqqq‚rrrƒsssƒttt“uuuƒtttƒsss‚rrrqqq‚pppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXX2WWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Ìˇ„ƒƒ‚‚ = !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnoooppp‚qqqrrr‚sssƒttt„uuuvvv„uuuƒttt‚sssrrr‚qqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\=[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡ˡ„ƒƒ‚‚ 6 !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@BBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqq‚rrr‚sss‚tttƒuuu‡vvv…www‡vvvƒuuu‚ttt‚sss‚rrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXX6WWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBB@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡ˡ„ƒ‚‚‚  !!!9"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqq‚rrrsss‚tttƒuuu„vvvwww„vvvƒuuu‚tttsss‚rrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]9\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡ˡ„ƒ‚‚‚  !!!"""###$$$0%%%&&&'''((()))***+++,,,---...///000111222444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrr‚ssstttƒuuuƒvvv…www‰xxx…wwwƒvvvƒuuuttt‚sssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXX0WWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡ˡ„ƒ‚‚‚ > !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrsss‚ttt‚uuu‚vvv„www‘xxx„www‚vvv‚uuu‚tttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^>]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡ˡ„ƒ‚‚‚ 3 !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLNNNOOOPPPQQQRRRSSSTTTUUU VVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrsss‚tttuuuƒvvv‚www†xxx‰yyy†xxx‚wwwƒvvvuuu‚tttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa ```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUU3TTTSSSRRRQQQPPPOOONNNLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Ëʇ„ƒƒ‚‚  9!!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrsssttt‚uuu‚vvv‚www„xxx‘yyy„xxx‚www‚vvv‚uuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]9\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Êʇ„ƒ‚‚‚‚  !!!"""###9$$$%%%&&&'''((()))***+++,,,---...///000222333444555666777888999:::;;;<<<===>>>???@@@BBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrsssttt‚uuu‚vvv‚wwwƒxxx…yyy‰zzz…yyyƒxxx‚www‚vvv‚uuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```9___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBB@@@???>>>===<<<;;;:::999888777666555444333222000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ„‡Êʇ„ƒ‚‚‚ ; !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrsssttt‚uuuvvv‚wwwƒxxx„yyyzzz„yyyƒxxx‚wwwvvv‚uuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[;ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>><<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Êʇ„ƒ‚‚‚ ? !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrsssttt‚uuuvvv‚www‚xxxƒyyy‡zzz…{{{‡zzzƒyyy‚xxx‚wwwvvv‚uuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```?___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Êʇ„ƒ‚‚‚ ? !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555777888999:::;;;<<<===>>>???@@@AAABBBCCCEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvv‚www‚xxx‚yyy…zzz{{{…zzz‚yyy‚xxx‚wwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbb?aaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEECCCBBBAAA@@@???>>>===<<<;;;:::999888777555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Êʇ„ƒ‚‚‚  8!!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222444555666777888999:::;;;<<<===>>>???@@@BBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvv‚wwwxxxƒyyyƒzzz“{{{ƒzzzƒyyyxxx‚wwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]8\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPNNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBB@@@???>>>===<<<;;;:::999888777666555444222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Êʇ„ƒ‚‚‚  !!!"""9###$$$%%%&&&'''((()))***+++,,,---///000111222333444555666777888999:::;;;<<<>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvv‚wwwxxx‚yyyƒzzz…{{{‹|||…{{{ƒzzz‚yyyxxx‚wwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```9___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>><<<;;;:::999888777666555444333222111000///---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Êʆ…‚ƒ‚‚ D !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::<<<===>>>???@@@AAABBBCCCDDDEEEFFFHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuu‚vvvwwwxxx‚yyyƒzzz„{{{|||„{{{ƒzzz‚yyyxxxwww‚vvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccDbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHFFFEEEDDDCCCBBBAAA@@@???>>>===<<<:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚…†Êɇ„ƒƒ‚‚ : !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888:::;;;<<<===>>>???@@@AAABBBCCCDDDFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUWWWXXXYYYZZZ[[[ \\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxx‚yyy‚zzz„{{{‡|||ƒ}}}‡|||„{{{‚zzz‚yyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfff eeedddcccbbbaaa```___^^^]]]\\\[[[:ZZZYYYXXXWWWUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFDDDCCCBBBAAA@@@???>>>===<<<;;;:::888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Éɇ„ƒ‚‚‚ > !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555777888999:::;;;<<<===>>>???@@@AAACCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwww‚xxxyyy‚zzzƒ{{{…|||‹}}}…|||ƒ{{{‚zzzyyy‚xxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```>___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPNNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCAAA@@@???>>>===<<<;;;:::999888777555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚ @ !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333555666777888999:::;;;<<<===>>>???AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyy‚zzzƒ{{{„|||}}}„|||ƒ{{{‚zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddccc@bbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA???>>>===<<<;;;:::999888777666555333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚ A !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111333444555666777888999:::;;;<<<===???@@@AAABBBCCCDDDEEEFFFGGGHHHJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxx‚yyyzzzƒ{{{ƒ|||“}}}ƒ|||ƒ{{{zzz‚yyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeeAdddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJHHHGGGFFFEEEDDDCCCBBBAAA@@@???===<<<;;;:::999888777666555444333111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚  B!!!"""###$$$%%%&&&'''((()))***+++,,,---...000111222333444555666777888999:::;;;===>>>???@@@AAABBBCCCDDDEEEFFFHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwww‚xxxyyy‚zzz‚{{{ƒ|||…}}}‰~~~…}}}ƒ|||‚{{{‚zzzyyy‚xxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggBfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHFFFEEEDDDCCCBBBAAA@@@???>>>===;;;:::999888777666555444333222111000...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚  !!!9"""###$$$%%%&&&'''((()))***+++---...///000111222333444555666777888999:::<<<===>>>???@@@AAABBBCCCDDDEEEGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyy‚zzz‚{{{ƒ|||„}}}~~~„}}}ƒ|||‚{{{‚zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```9___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGEEEDDDCCCBBBAAA@@@???>>>===<<<:::999888777666555444333222111000///...---+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚  !!!"""###$$$9%%%&&&'''(((***+++,,,---...///000111222333444555666777888:::;;;<<<===>>>???@@@AAABBBCCCEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwww‚xxxyyyzzz‚{{{ƒ|||ƒ}}}‘~~~ƒ}}}ƒ|||‚{{{zzzyyy‚xxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddccc9bbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEECCCBBBAAA@@@???>>>===<<<;;;:::888777666555444333222111000///...---,,,+++***((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚ F !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777999:::;;;<<<===>>>???@@@AAABBBDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyy‚zzz‚{{{‚|||ƒ}}}“~~~ƒ}}}‚|||‚{{{‚zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeeFdddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOOMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDBBBAAA@@@???>>>===<<<;;;:::999777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚ F !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666888999:::;;;<<<===>>>???@@@AAACCCDDDEEEFFFGGGHHHIIIJJJKKKMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz‚{{{‚|||ƒ}}}†~~~‡†~~~ƒ}}}‚|||‚{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffFeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMKKKJJJIIIHHHGGGFFFEEEDDDCCCAAA@@@???>>>===<<<;;;:::999888666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚ H !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555777888999:::;;;<<<===>>>???@@@BBBCCCDDDEEEFFFGGGHHHIIIJJJLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxx‚yyyzzz‚{{{‚|||‚}}}…~~~‹…~~~‚}}}‚|||‚{{{zzz‚yyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhHgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLJJJIIIHHHGGGFFFEEEDDDCCCBBB@@@???>>>===<<<;;;:::999888777555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚ H !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444666777888999:::;;;<<<===>>>@@@AAABBBCCCDDDEEEFFFGGGHHHIIIKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyy‚zzz{{{‚|||ƒ}}}„~~~„~~~ƒ}}}‚|||{{{‚zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiiHhhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@>>>===<<<;;;:::999888777666444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„‚ƒ‚‚ > !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333555666777888999:::;;;<<<===>>>@@@AAABBBCCCDDDEEEFFFGGGHHHJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz‚{{{‚|||‚}}}„~~~„~~~‚}}}‚|||‚{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```>___^^^]]]\\\[[[ZZZYYYXXXVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJHHHGGGFFFEEEDDDCCCBBBAAA@@@>>>===<<<;;;:::999888777666555333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚„‡Éɇ„‚ƒ‚‚ ? !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222444555666777888999:::;;;<<<===???@@@AAABBBCCCDDDEEEFFFGGGIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{‚|||ƒ}}}ƒ~~~‘ƒ~~~ƒ}}}‚|||{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbb?aaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIGGGFFFEEEDDDCCCBBBAAA@@@???===<<<;;;:::999888777666555444222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚„‡Éɇ„‚ƒ‚‚ @ !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222444555666777888999:::;;;<<<>>>???@@@AAABBBCCCDDDEEEFFFGGGIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyy‚zzz{{{‚|||‚}}}„~~~‘„~~~‚}}}‚|||{{{‚zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddccc@bbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIGGGFFFEEEDDDCCCBBBAAA@@@???>>><<<;;;:::999888777666555444222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚„‡Éɇ„‚ƒ‚‚ A !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111333444555666777888999:::;;;<<<>>>???@@@AAABBBCCCDDDEEEFFFHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyy‚zzz{{{‚|||‚}}}ƒ~~~“ƒ~~~‚}}}‚|||{{{‚zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddAcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHFFFEEEDDDCCCBBBAAA@@@???>>><<<;;;:::999888777666555444333111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚„‡Éɇ„‚ƒ‚‚ B !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111333444555666777888999:::;;;<<<>>>???@@@AAABBBCCCDDDEEEFFFHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz‚{{{‚|||‚}}}ƒ~~~“ƒ~~~‚}}}‚|||‚{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeeBdddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHFFFEEEDDDCCCBBBAAA@@@???>>><<<;;;:::999888777666555444333111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚„‡ÉɆ„ƒƒ‚‚ A !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111333444555666777888999:::;;;<<<>>>???@@@AAABBBCCCDDDEEEGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz‚{{{|||ƒ}}}ƒ~~~“ƒ~~~ƒ}}}|||‚{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeeAdddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGEEEDDDCCCBBBAAA@@@???>>><<<;;;:::999888777666555444333111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„†ÉɆ„ƒƒ‚‚ A !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111333444555666777888999:::;;;===>>>???@@@AAABBBCCCDDDEEEGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz‚{{{|||ƒ}}}ƒ~~~“ƒ~~~ƒ}}}|||‚{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeeAdddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGEEEDDDCCCBBBAAA@@@???>>>===;;;:::999888777666555444333111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„†ÉɆ„ƒƒ‚‚ A !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111333444555666777888999:::;;;===>>>???@@@AAABBBCCCDDDEEEGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz‚{{{|||ƒ}}}ƒ~~~“ƒ~~~ƒ}}}|||‚{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeeAdddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGEEEDDDCCCBBBAAA@@@???>>>===;;;:::999888777666555444333111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„†ÉɆ„ƒƒ‚‚ A !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111333444555666777888999:::;;;<<<>>>???@@@AAABBBCCCDDDEEEGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz‚{{{|||ƒ}}}ƒ~~~“ƒ~~~ƒ}}}|||‚{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeeAdddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGEEEDDDCCCBBBAAA@@@???>>><<<;;;:::999888777666555444333111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„†Éɇ„‚ƒ‚‚ B !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111333444555666777888999:::;;;<<<>>>???@@@AAABBBCCCDDDEEEFFFHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz‚{{{‚|||‚}}}ƒ~~~“ƒ~~~‚}}}‚|||‚{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeeBdddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHFFFEEEDDDCCCBBBAAA@@@???>>><<<;;;:::999888777666555444333111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚„‡Éɇ„‚ƒ‚‚ A !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111333444555666777888999:::;;;<<<>>>???@@@AAABBBCCCDDDEEEFFFHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyy‚zzz{{{‚|||‚}}}ƒ~~~“ƒ~~~‚}}}‚|||{{{‚zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddAcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHFFFEEEDDDCCCBBBAAA@@@???>>><<<;;;:::999888777666555444333111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚„‡Éɇ„‚ƒ‚‚ @ !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222444555666777888999:::;;;<<<>>>???@@@AAABBBCCCDDDEEEFFFGGGIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyy‚zzz{{{‚|||‚}}}„~~~‘„~~~‚}}}‚|||{{{‚zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddccc@bbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIGGGFFFEEEDDDCCCBBBAAA@@@???>>><<<;;;:::999888777666555444222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚„‡Éɇ„‚ƒ‚‚ ? !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222444555666777888999:::;;;<<<===???@@@AAABBBCCCDDDEEEFFFGGGIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz{{{‚|||ƒ}}}ƒ~~~‘ƒ~~~ƒ}}}‚|||{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbb?aaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIGGGFFFEEEDDDCCCBBBAAA@@@???===<<<;;;:::999888777666555444222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚„‡Éɇ„‚ƒ‚‚ > !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333555666777888999:::;;;<<<===>>>@@@AAABBBCCCDDDEEEFFFGGGHHHJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz‚{{{‚|||‚}}}„~~~„~~~‚}}}‚|||‚{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```>___^^^]]]\\\[[[ZZZYYYXXXVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJHHHGGGFFFEEEDDDCCCBBBAAA@@@>>>===<<<;;;:::999888777666555333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚„‡Éɇ„ƒ‚‚‚ H !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444666777888999:::;;;<<<===>>>@@@AAABBBCCCDDDEEEFFFGGGHHHIIIKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyy‚zzz{{{‚|||ƒ}}}„~~~„~~~ƒ}}}‚|||{{{‚zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiiHhhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@>>>===<<<;;;:::999888777666444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚ H !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555777888999:::;;;<<<===>>>???@@@BBBCCCDDDEEEFFFGGGHHHIIIJJJLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxx‚yyyzzz‚{{{‚|||‚}}}…~~~‹…~~~‚}}}‚|||‚{{{zzz‚yyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhHgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLJJJIIIHHHGGGFFFEEEDDDCCCBBB@@@???>>>===<<<;;;:::999888777555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚ F !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666888999:::;;;<<<===>>>???@@@AAACCCDDDEEEFFFGGGHHHIIIJJJKKKMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyyzzz‚{{{‚|||ƒ}}}†~~~‡†~~~ƒ}}}‚|||‚{{{zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffFeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMKKKJJJIIIHHHGGGFFFEEEDDDCCCAAA@@@???>>>===<<<;;;:::999888666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚ F !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777999:::;;;<<<===>>>???@@@AAABBBDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyy‚zzz‚{{{‚|||ƒ}}}“~~~ƒ}}}‚|||‚{{{‚zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeeFdddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOOMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDBBBAAA@@@???>>>===<<<;;;:::999777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚  !!!"""###$$$9%%%&&&'''(((***+++,,,---...///000111222333444555666777888:::;;;<<<===>>>???@@@AAABBBCCCEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwww‚xxxyyyzzz‚{{{ƒ|||ƒ}}}‘~~~ƒ}}}ƒ|||‚{{{zzzyyy‚xxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddccc9bbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEECCCBBBAAA@@@???>>>===<<<;;;:::888777666555444333222111000///...---,,,+++***((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚  !!!9"""###$$$%%%&&&'''((()))***+++---...///000111222333444555666777888999:::<<<===>>>???@@@AAABBBCCCDDDEEEGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyy‚zzz‚{{{ƒ|||„}}}~~~„}}}ƒ|||‚{{{‚zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```9___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGEEEDDDCCCBBBAAA@@@???>>>===<<<:::999888777666555444333222111000///...---+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚  B!!!"""###$$$%%%&&&'''((()))***+++,,,---...000111222333444555666777888999:::;;;===>>>???@@@AAABBBCCCDDDEEEFFFHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwww‚xxxyyy‚zzz‚{{{ƒ|||…}}}‰~~~…}}}ƒ|||‚{{{‚zzzyyy‚xxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggBfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHFFFEEEDDDCCCBBBAAA@@@???>>>===;;;:::999888777666555444333222111000...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚ A !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111333444555666777888999:::;;;<<<===???@@@AAABBBCCCDDDEEEFFFGGGHHHJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxx‚yyyzzzƒ{{{ƒ|||“}}}ƒ|||ƒ{{{zzz‚yyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeeAdddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJHHHGGGFFFEEEDDDCCCBBBAAA@@@???===<<<;;;:::999888777666555444333111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚ @ !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333555666777888999:::;;;<<<===>>>???AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxxyyy‚zzzƒ{{{„|||}}}„|||ƒ{{{‚zzzyyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddccc@bbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA???>>>===<<<;;;:::999888777666555333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒ‚‚‚ > !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555777888999:::;;;<<<===>>>???@@@AAACCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwww‚xxxyyy‚zzzƒ{{{…|||‹}}}…|||ƒ{{{‚zzzyyy‚xxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```>___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPNNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCAAA@@@???>>>===<<<;;;:::999888777555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Éɇ„ƒƒ‚‚ : !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888:::;;;<<<===>>>???@@@AAABBBCCCDDDFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUWWWXXXYYYZZZ[[[ \\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvvwwwxxx‚yyy‚zzz„{{{‡|||ƒ}}}‡|||„{{{‚zzz‚yyyxxxwwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfff eeedddcccbbbaaa```___^^^]]]\\\[[[:ZZZYYYXXXWWWUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFDDDCCCBBBAAA@@@???>>>===<<<;;;:::888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Éʆ…‚ƒ‚‚ D !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::<<<===>>>???@@@AAABBBCCCDDDEEEFFFHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuu‚vvvwwwxxx‚yyyƒzzz„{{{|||„{{{ƒzzz‚yyyxxxwww‚vvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccDbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHFFFEEEDDDCCCBBBAAA@@@???>>>===<<<:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚…†Êʇ„ƒ‚‚‚  !!!"""9###$$$%%%&&&'''((()))***+++,,,---///000111222333444555666777888999:::;;;<<<>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvv‚wwwxxx‚yyyƒzzz…{{{‹|||…{{{ƒzzz‚yyyxxx‚wwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```9___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>><<<;;;:::999888777666555444333222111000///---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Êʇ„ƒ‚‚‚  8!!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222444555666777888999:::;;;<<<===>>>???@@@BBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvv‚wwwxxxƒyyyƒzzz“{{{ƒzzzƒyyyxxx‚wwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]8\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPNNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBB@@@???>>>===<<<;;;:::999888777666555444222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Êʇ„ƒ‚‚‚ ? !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555777888999:::;;;<<<===>>>???@@@AAABBBCCCEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrssstttuuuvvv‚www‚xxx‚yyy…zzz{{{…zzz‚yyy‚xxx‚wwwvvvuuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbb?aaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEECCCBBBAAA@@@???>>>===<<<;;;:::999888777555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Êʇ„ƒ‚‚‚ ? !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrsssttt‚uuuvvv‚www‚xxxƒyyy‡zzz…{{{‡zzzƒyyy‚xxx‚wwwvvv‚uuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```?___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Êʇ„ƒ‚‚‚ ; !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrsssttt‚uuuvvv‚wwwƒxxx„yyyzzz„yyyƒxxx‚wwwvvv‚uuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[;ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>><<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Êʇ„ƒ‚‚‚‚  !!!"""###9$$$%%%&&&'''((()))***+++,,,---...///000222333444555666777888999:::;;;<<<===>>>???@@@BBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrsssttt‚uuu‚vvv‚wwwƒxxx…yyy‰zzz…yyyƒxxx‚www‚vvv‚uuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```9___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBB@@@???>>>===<<<;;;:::999888777666555444333222000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ„‡Êʇ„ƒƒ‚‚  9!!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrsssttt‚uuu‚vvv‚www„xxx‘yyy„xxx‚www‚vvv‚uuutttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]9\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Êˇ„ƒ‚‚‚ 3 !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLNNNOOOPPPQQQRRRSSSTTTUUU VVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrsss‚tttuuuƒvvv‚www†xxx‰yyy†xxx‚wwwƒvvvuuu‚tttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa ```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUU3TTTSSSRRRQQQPPPOOONNNLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡ˡ„ƒ‚‚‚ > !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrrsss‚ttt‚uuu‚vvv„www‘xxx„www‚vvv‚uuu‚tttsssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^>]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡ˡ„ƒ‚‚‚  !!!"""###$$$0%%%&&&'''((()))***+++,,,---...///000111222444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqqrrr‚ssstttƒuuuƒvvv…www‰xxx…wwwƒvvvƒuuuttt‚sssrrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXX0WWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡ˡ„ƒ‚‚‚  !!!9"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqq‚rrrsss‚tttƒuuu„vvvwww„vvvƒuuu‚tttsss‚rrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]9\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡ˡ„ƒƒ‚‚ 6 !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@BBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooopppqqq‚rrr‚sss‚tttƒuuu‡vvv…www‡vvvƒuuu‚ttt‚sss‚rrrqqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXX6WWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBB@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡ˡ„ƒƒ‚‚ = !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnoooppp‚qqqrrr‚sssƒttt„uuuvvv„uuuƒttt‚sssrrr‚qqqpppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\=[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Ë̇„ƒ‚‚‚  !!!"""###2$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooo‚pppqqq‚rrrƒsssƒttt“uuuƒtttƒsss‚rrrqqq‚pppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXX2WWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Ì̇„ƒ‚‚‚  -!!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEGGGHHHIIIJJJKKKLLLMMMNNNOOOPPP QQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnn‚oooppp‚qqq‚rrrƒsss…ttt‹uuu…tttƒsss‚rrr‚qqqppp‚ooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPP-OOONNNMMMLLLKKKJJJIIIHHHGGGEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Ì̇„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000#222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnnooo‚ppp‚qqq‚rrr„sss‘ttt„sss‚rrr‚qqq‚pppooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVV#UUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ„‡Ì̇„ƒƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>@@@ BBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOO PPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmmnnn‚ooo‚ppp‚qqqƒrrrˆsssƒtttˆsssƒrrr‚qqq‚ppp‚ooonnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZ YYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOO NNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBB@@@>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Ì̇„ƒƒ‚‚  3!!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklllmmm‚nnnoooƒpppƒqqq„rrrsss„rrrƒqqqƒpppooo‚nnnmmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUU3TTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Ì͇„ƒ‚‚‚   !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMM NNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkk‚lllmmm‚nnnoooƒppp„qqq‘rrr„qqqƒpppooo‚nnnmmm‚lllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXX WWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::888777666555444333222111000///...---,,,+++ ***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ„‡Í͇„ƒ‚‚‚‚  !!!"""###$$$,%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkklll‚mmmnnnƒoooƒpppˆqqqƒrrrˆqqqƒpppƒooonnn‚mmmlllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRR,QQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ„‡Í͇„ƒƒ‚‚  (!!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJ KKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkk‚lll‚mmm‚nnnƒooo…ppp‹qqq…pppƒooo‚nnn‚mmm‚lllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUU TTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJ(IIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Í͇„ƒƒ‚‚  !!!"""###$$$%%%&&&'''(((&)))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjjkkk‚lll‚mmm‚nnn„ooo‘ppp„ooo‚nnn‚mmm‚lllkkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPP&OOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Í͇…ƒ‚‚‚  !!!"""###!$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFF GGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhhiiijjj‚kkk‚lll‚mmm„nnn“ooo„nnn‚mmm‚lll‚kkkjjjiiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRR QQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFF!EEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒ…‡Í·„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++ ,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggg‚hhhiiijjj‚kkk‚lll„mmm†nnn‡ooo†nnn„mmm‚lll‚kkkjjjiii‚hhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMM LLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++ ***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ„‡Î·„ƒƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAA BBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggghhh‚iiijjjƒkkk‚lll…mmmnnn…mmm‚lllƒkkkjjj‚iiihhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPP OOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Î·„ƒƒ‚‚  !!! """###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefff‚ggghhh‚iii‚jjj‚kkk…lllmmm…lll‚kkk‚jjj‚iiihhh‚gggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///... ---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡ÎΈ„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>> ???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeeefffggg‚hhh‚iiiƒjjjƒkkk“lllƒkkkƒjjj‚iii‚hhhgggfffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLL KKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ„ˆÎχ„ƒ‚‚‚‚  !!!""" ###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccddd‚eeefffggg‚hhhƒiiiƒjjj‰kkklll‰kkkƒjjjƒiii‚hhhgggfff‚eeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000/// ...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ„‡Ïχ„ƒƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999::: ;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeee‚fff‚ggg‚hhhƒiii†jjj‰kkk†jjjƒiii‚hhh‚ggg‚fffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHH GGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Ïχ…ƒ‚‚‚‚  !!!"""### $$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@ AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbbcccdddeee‚fff‚ggg„hhh…iii‹jjj…iii„hhh‚ggg‚fffeeedddcccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKK JJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000/// ...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ…‡Ïψ„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((( )))***+++,,,---...///000111222333444555666 777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbb‚cccddd‚eee‚fffƒggg„hhhiii„hhhƒggg‚fff‚eeeddd‚cccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDD CCCBBBAAA@@@???>>>===<<<;;;:::999888777666 555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ„ˆÏЇ„ƒƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---... ///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```aaabbb‚cccddd‚eeeƒfff„ggg‘hhh„gggƒfff‚eeeddd‚cccbbbaaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>=== <<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡ÐЇ…ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((( )))***+++,,,---...///000111222333 444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___‚```aaabbb‚ccc‚dddƒeee„fff‘ggg„fffƒeee‚ddd‚cccbbbaaa‚```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@ ???>>>===<<<;;;:::999888777666555444333 222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ…‡ÐЈ„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,--- ...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___```‚aaa‚bbb‚ccc‚ddd„eee“fff„eee‚ddd‚ccc‚bbb‚aaa```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888 777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ„ˆÐч„ƒƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111 222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___‚```aaa‚bbbƒcccƒddd•eeeƒdddƒccc‚bbbaaa‚```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<< ;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„‡Ñч„„‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]^^^___‚```‚aaa‚bbb„ccc‡ddd…eee‡ddd„ccc‚bbb‚aaa‚```___^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚„„‡Ñш„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\]]]‚^^^___ƒ```‚aaaƒbbb‡ccc‡ddd‡cccƒbbb‚aaaƒ```___‚^^^]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ„ˆÑÒ‡„ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\‚]]]^^^‚___ƒ```ƒaaa†bbb‰ccc†bbbƒaaaƒ```‚___^^^‚]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚ƒƒ„‡ÒÒ‡…ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[\\\‚]]]‚^^^‚___„```…aaa‹bbb…aaa„```‚___‚^^^‚]]]\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ…‡ÒÒˆ„ƒƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWWXXXYYYZZZ[[[‚\\\‚]]]‚^^^ƒ___†```‹aaa†```ƒ___‚^^^‚]]]‚\\\[[[ZZZYYYXXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒƒ„ˆÒÓ‡„ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWW‚XXXYYYZZZ‚[[[\\\ƒ]]]ƒ^^^…___```…___ƒ^^^ƒ]]]\\\‚[[[ZZZYYY‚XXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒƒ„‡ÓÓ‡…ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWW‚XXXYYYZZZ‚[[[ƒ\\\ƒ]]]…^^^___…^^^ƒ]]]ƒ\\\‚[[[ZZZYYY‚XXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒ…‡ÓÓˆ„ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVVWWW‚XXXYYY‚ZZZƒ[[[ƒ\\\…]]]^^^…]]]ƒ\\\ƒ[[[‚ZZZYYY‚XXXWWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚ƒƒ„ˆÓÔ‡„„‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUUVVV‚WWWXXX‚YYY‚ZZZ„[[[…\\\]]]…\\\„[[[‚ZZZ‚YYYXXX‚WWWVVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚„„‡ÔÔ‡…ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTTUUU‚VVVWWW‚XXX‚YYY„ZZZ…[[[\\\…[[[„ZZZ‚YYY‚XXXWWW‚VVVUUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚ƒƒ…‡ÔÔˆ„ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTT‚UUUVVV‚WWW‚XXX„YYY…ZZZ[[[…ZZZ„YYY‚XXX‚WWWVVV‚UUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒƒ„ˆÔÕ‡…ƒ‚ƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSSTTT‚UUU‚VVV‚WWW„XXX…YYYZZZ…YYY„XXX‚WWW‚VVV‚UUUTTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ƒ‚ƒ…‡ÕÕˆ„ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOOPPPQQQRRRSSS‚TTT‚UUU‚VVV„WWW…XXXYYY…XXX„WWW‚VVV‚UUU‚TTTSSSRRRQQQPPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒƒ„ˆÕÖ‡…ƒ‚‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNNOOO‚PPPQQQRRR‚SSS‚TTTƒUUUƒVVV…WWWXXX…WWWƒVVVƒUUU‚TTT‚SSSRRRQQQ‚PPPOOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚ƒ…‡ÖÖ‡…ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMMNNN‚OOOPPPQQQ‚RRR‚SSSƒTTTƒUUU†VVV‹WWW†VVVƒUUUƒTTT‚SSS‚RRRQQQPPP‚OOONNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒƒ…‡ÖÖˆ„„‚‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLLMMM‚NNNOOOPPP‚QQQ‚RRRƒSSSƒTTT†UUU‹VVV†UUUƒTTTƒSSS‚RRR‚QQQPPPOOO‚NNNMMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚„„ˆÖׇ…ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKKLLL‚MMMNNNOOO‚PPP‚QQQƒRRRƒSSS‡TTT‰UUU‡TTTƒSSSƒRRR‚QQQ‚PPPOOONNN‚MMMLLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒƒ…‡×׈„„‚‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJKKK‚LLLMMMNNN‚OOO‚PPPƒQQQ„RRR‡SSS‡TTT‡SSS„RRRƒQQQ‚PPP‚OOONNNMMM‚LLLKKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚„„ˆר‡…ƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIIIJJJ‚KKKLLLMMM‚NNN‚OOOƒPPP„QQQ‰RRRƒSSS‰RRR„QQQƒPPP‚OOO‚NNNMMMLLL‚KKKJJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚ƒƒ…‡ØØˆ„„‚‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHHIII‚JJJKKK‚LLLMMMƒNNN‚OOO…PPP•QQQ…PPP‚OOOƒNNNMMM‚LLLKKK‚JJJIIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚„„ˆØÙ‡…ƒƒ‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGGHHH‚IIIJJJ‚KKK‚LLL‚MMMƒNNN„OOO•PPP„OOOƒNNN‚MMM‚LLL‚KKKJJJ‚IIIHHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒƒ…‡ÙÙˆ„„‚‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFFGGG‚HHHIII‚JJJ‚KKK‚LLLƒMMM„NNN•OOO„NNNƒMMM‚LLL‚KKK‚JJJIII‚HHHGGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚‚„„ˆÙÙˆ…ƒƒ‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDDEEEFFF‚GGGHHH‚III‚JJJ‚KKKƒLLL…MMM“NNN…MMMƒLLL‚KKK‚JJJ‚IIIHHH‚GGGFFFEEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒƒ…ˆÙÚˆ„„‚ƒ‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCCDDD‚EEEFFFGGG‚HHH‚III‚JJJ„KKK„LLL“MMM„LLL„KKK‚JJJ‚III‚HHHGGGFFF‚EEEDDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚ƒ‚„„ˆÚÚˆ…ƒƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBBCCC‚DDDEEEFFF‚GGG‚HHHƒIIIƒJJJ…KKK‘LLL…KKKƒJJJƒIII‚HHH‚GGGFFFEEE‚DDDCCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒƒ…ˆÚÛˆ„„‚ƒ‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAABBB‚CCCDDD‚EEEFFFƒGGG‚HHHƒIII†JJJKKK†JJJƒIII‚HHHƒGGGFFF‚EEEDDD‚CCCBBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚ƒ‚„„ˆÛÛˆ…ƒƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???@@@AAA‚BBBCCC‚DDD‚EEE‚FFF‚GGG„HHH†IIIJJJ†III„HHH‚GGG‚FFF‚EEE‚DDDCCC‚BBBAAA@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚‚‚‚ƒƒ…ˆÛ܈„„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???‚@@@AAABBB‚CCC‚DDD‚EEEƒFFFƒGGG‡HHH‹III‡HHHƒGGGƒFFF‚EEE‚DDD‚CCCBBBAAA‚@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ„„ˆÜ܈…ƒƒ‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===>>>???‚@@@AAA‚BBB‚CCC‚DDDƒEEE„FFFˆGGG‡HHHˆGGG„FFFƒEEE‚DDD‚CCC‚BBBAAA‚@@@???>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚ƒƒ…ˆÜ݈„„ƒ‚‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<===‚>>>???‚@@@AAA‚BBBƒCCCƒDDD„EEE‰FFFƒGGG‰FFF„EEEƒDDDƒCCC‚BBBAAA‚@@@???‚>>>===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚ƒ„„ˆÝ݈…„‚ƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;<<<‚===>>>‚???@@@‚AAAƒBBBƒCCC„DDD—EEE„DDDƒCCCƒBBB‚AAA@@@‚???>>>‚===<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚ƒ‚„…ˆÝÞˆ…ƒƒ‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::;;;‚<<<===‚>>>???ƒ@@@‚AAAƒBBB…CCC•DDD…CCCƒBBB‚AAAƒ@@@???‚>>>===‚<<<;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚ƒƒ…ˆÞÞˆ…„ƒ‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999:::‚;;;<<<‚===‚>>>‚???ƒ@@@ƒAAA…BBB“CCC…BBBƒAAAƒ@@@‚???‚>>>‚===<<<‚;;;:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ ‚‚‚ƒ„…ˆÞ߈…ƒƒƒ‚‚‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777888999‚:::;;;‚<<<‚===‚>>>ƒ???ƒ@@@†AAA‘BBB†AAAƒ@@@ƒ???‚>>>‚===‚<<<;;;‚:::999888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚ƒƒƒ…ˆßàˆ„„ƒ‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666777‚888999:::‚;;;‚<<<‚===ƒ>>>„???†@@@AAA†@@@„???ƒ>>>‚===‚<<<‚;;;:::999‚888777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚ƒ„„ˆààˆ…„ƒ‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555666‚777888‚999:::‚;;;ƒ<<<‚===„>>>†???@@@†???„>>>‚===ƒ<<<‚;;;:::‚999888‚777666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚‚‚‚ƒ„…ˆàህƒƒƒ‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444555‚666777‚888999‚:::ƒ;;;ƒ<<<„===‡>>>‹???‡>>>„===ƒ<<<ƒ;;;‚:::999‚888777‚666555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ ‚‚ƒƒƒ…ˆáህ„ƒ‚‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333444‚555666‚777‚888‚999‚:::ƒ;;;„<<<ˆ===‰>>>ˆ===„<<<ƒ;;;‚:::‚999‚888‚777666‚555444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!! ‚ ‚ ‚‚‚‚ƒ„…ˆá∅„ƒ‚‚‚‚ ‚ ‚ !!!"""###$$$%%%&&&'''((()))***+++,,,---...///000111222333‚444555‚666‚777‚888‚999„:::„;;;‹<<<===‹<<<„;;;„:::‚999‚888‚777‚666555‚444333222111000///...---,,,+++***)))((('''&&&%%%$$$###"""!!! ‚ ‚ ‚‚‚‚ƒ„…ˆâ≅ƒƒƒ‚‚‚ ‚ ‚ !!!"""###$$$%%%&&&'''((()))***+++,,,---...‚///000111222‚333444‚555‚666‚777ƒ888ƒ999…:::—;;;…:::ƒ999ƒ888‚777‚666‚555444‚333222111000‚///...---,,,+++***)))((('''&&&%%%$$$###"""!!! ‚ ‚ ‚‚‚ƒƒƒ…‰â㈅„ƒ‚ƒ‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---...‚///000111‚222333‚444‚555‚666ƒ777„888„999—:::„999„888ƒ777‚666‚555‚444333‚222111000‚///...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ ‚ƒ‚ƒ„…ˆã䈅„ƒ‚‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---‚...///000‚111222‚333‚444ƒ555‚666„777…888•999…888„777‚666ƒ555‚444‚333222‚111000///‚...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ ‚‚‚‚ƒ„…ˆä䉅ƒƒƒ‚‚‚‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,---‚...///‚000111‚222‚333ƒ444ƒ555ƒ666†777“888†777ƒ666ƒ555ƒ444‚333‚222111‚000///‚...---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ ‚‚‚ƒƒƒ…‰ä刅„ƒƒ‚‚‚ ‚ ‚  !!!"""###$$$%%%&&&'''((()))***+++,,,‚---...‚///‚000111ƒ222‚333ƒ444„555†666‘777†666„555ƒ444‚333ƒ222111‚000‚///...‚---,,,+++***)))((('''&&&%%%$$$###"""!!!  ‚ ‚ ‚‚‚ƒƒ„…ˆå戅„ƒƒ‚‚‚ ‚ ‚  !!!"""###$$$%%%&&&‚'''((()))***+++‚,,,---‚...///‚000ƒ111‚222ƒ333„444‡555666‡555„444ƒ333‚222ƒ111‚000///‚...---‚,,,+++***)))(((‚'''&&&%%%$$$###"""!!!  ‚ ‚ ‚‚‚ƒƒ„…ˆææ‰…„ƒ‚ƒ‚‚ ‚ ‚  !!!"""###$$$%%%&&&'''‚((()))***‚+++,,,‚---...‚///ƒ000‚111„222„333‡444555‡444„333„222‚111ƒ000‚///...‚---,,,‚+++***)))‚((('''&&&%%%$$$###"""!!! ‚ ‚ ‚ ‚ƒ‚ƒ„…‰æçˆ…„ƒƒ‚‚‚‚ ‚ ‚ ‚ !!!"""###$$$%%%&&&'''‚((()))***‚+++‚,,,---‚...ƒ///ƒ000ƒ111„222ˆ333‹444ˆ333„222ƒ111ƒ000ƒ///‚...---‚,,,‚+++***)))‚((('''&&&%%%$$$###"""!!! ‚‚ ‚ ‚ ‚‚‚ƒƒ„…ˆç牅„ƒƒ‚‚‚‚ ‚ ‚ ‚ ‚!!!"""###$$$%%%&&&'''‚((()))‚***‚+++,,,‚---ƒ...ƒ///ƒ000…111‰222‡333‰222…111ƒ000ƒ///ƒ...‚---,,,‚+++‚***)))‚((('''&&&%%%$$$###"""‚!!! ‚‚ ‚ ‚ ‚‚‚ƒƒ„…‰ç艅„ƒƒ‚‚‚‚ ‚ ‚ ‚ !!!"""###‚$$$%%%&&&‚'''(((‚)))***‚+++‚,,,ƒ---ƒ...ƒ///…000›111…000ƒ///ƒ...ƒ---‚,,,‚+++***‚)))(((‚'''&&&%%%‚$$$###"""!!! ‚‚ ‚ ‚ ‚‚‚ƒƒ„…‰è鈆„ƒƒ‚‚‚‚ ‚ ‚ ‚‚ !!!"""###‚$$$%%%&&&‚'''‚((()))‚***‚+++ƒ,,,ƒ---ƒ...…///›000…///ƒ...ƒ---ƒ,,,‚+++‚***)))‚(((‚'''&&&%%%‚$$$###"""!!! ‚‚‚ ‚ ‚ ‚‚‚ƒƒ„†ˆéꈆƒ„‚ƒ‚‚‚ ‚ ‚ ‚‚‚ !!!"""###‚$$$%%%‚&&&'''‚(((‚)))‚***ƒ+++ƒ,,,„---…...™///…...„---ƒ,,,ƒ+++‚***‚)))‚((('''‚&&&%%%‚$$$###"""!!!‚ ‚‚‚ ‚ ‚ ‚‚ƒ‚„ƒ†ˆêꉅ„„‚ƒ‚‚‚ ‚ ‚ ‚‚‚ ‚!!!"""‚###$$$‚%%%&&&‚'''‚(((‚)))ƒ***ƒ+++„,,,…---™...…---„,,,ƒ+++ƒ***‚)))‚(((‚'''&&&‚%%%$$$‚###"""‚!!! ‚‚‚‚ ‚ ‚ ‚‚ƒ‚„„…‰ê뉅„ƒƒƒ‚‚‚ ‚ ‚ ‚‚‚‚ ‚!!!"""‚###$$$‚%%%‚&&&‚'''‚(((ƒ)))ƒ***„+++…,,,™---…,,,„+++ƒ***ƒ)))‚(((‚'''‚&&&‚%%%$$$‚###"""‚!!! ‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒƒ„…‰ë쉅„ƒƒƒ‚‚‚ ‚ ‚ ‚‚‚‚‚ ‚!!!‚"""###‚$$$‚%%%‚&&&‚'''ƒ(((ƒ)))„***†+++—,,,†+++„***ƒ)))ƒ(((‚'''‚&&&‚%%%‚$$$###‚"""‚!!! ‚‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒƒ„…‰ì쉆„ƒƒƒ‚‚‚ ‚ ‚ ‚‚‚‚‚‚‚ !!!‚"""‚###‚$$$‚%%%‚&&&ƒ'''ƒ(((„)))†***—+++†***„)))ƒ(((ƒ'''‚&&&‚%%%‚$$$‚###‚"""!!!‚ ‚‚‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒƒ„†‰ì퉆„ƒƒƒ‚‚‚ ‚ ‚ ‚‚‚‚‚‚‚‚ ‚!!!"""‚###ƒ$$$‚%%%ƒ&&&ƒ'''„(((†)))—***†)))„(((ƒ'''ƒ&&&‚%%%ƒ$$$‚###"""‚!!!‚ ‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒƒ„†‰í…ƒƒƒ‚‚‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚ ‚!!!‚"""‚###ƒ$$$ƒ%%%ƒ&&&„'''‡(((•)))‡(((„'''ƒ&&&ƒ%%%ƒ$$$‚###‚"""‚!!!‚ ‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒƒ……‰î…ƒƒƒ‚‚‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚ ‚!!!‚"""ƒ###ƒ$$$ƒ%%%„&&&‡'''•(((‡'''„&&&ƒ%%%ƒ$$$ƒ###‚"""‚!!!‚ ‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒƒ……‰ï„„ƒƒ‚‚‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚ƒ ‚!!!‚"""ƒ###„$$$„%%%‡&&&•'''‡&&&„%%%„$$$ƒ###‚"""‚!!!ƒ ‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚‚ƒƒ„„…Šïð‰†„„ƒƒ‚‚‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚‚‚ƒ ‚!!!ƒ"""„###„$$$‡%%%•&&&‡%%%„$$$„###ƒ"""‚!!!ƒ ‚‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚ ‚‚ƒƒ„„†‰ðñ‰†„„ƒƒ‚‚‚ ‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚ƒ‚ƒ ƒ!!!ƒ"""…###‡$$$•%%%‡$$$…###ƒ"""ƒ!!!ƒ ‚ƒ‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚ ‚‚ƒƒ„„†‰ñò‰†„„ƒƒ‚‚ƒ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚‚‚ƒ‚ƒ „!!!…"""†###—$$$†###…"""„!!!ƒ ‚ƒ‚‚‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ƒ ‚‚ƒƒ„„†‰ò󉆄„ƒƒ‚ƒ‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚‚ƒ‚ƒƒ„ „!!!‡"""—###‡"""„!!!„ ƒƒ‚ƒ‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚ ƒ‚ƒƒ„„†‰óô‰†„„ƒƒ‚ƒ‚ ‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚‚‚ƒ‚ƒ„… ‡!!!—"""‡!!!… „ƒ‚ƒ‚‚‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚ ƒ‚ƒƒ„„†‰ôôІ„„ƒƒƒ‚‚ ‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚‚‚ƒƒƒ„„‡ ™!!!‡ „„ƒƒƒ‚‚‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚ ‚ƒƒƒ„„†ŠôõІ„„ƒƒƒ‚ƒ ‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚‚ƒ‚ƒƒ„„‡› ‡„„ƒƒ‚ƒ‚‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ƒ ‚ƒƒƒ„„†ŠõöІ„„ƒƒƒƒ‚ ‚ ‚ ‚ ‚ ‚‚‚‚‚‚‚‚‚ƒ‚ƒƒƒƒ…††…ƒƒƒƒ‚ƒ‚‚‚‚‚‚‚‚‚‚ ‚ ‚ ‚ ‚ ƒƒƒƒ„„†Šö÷І„„„ƒ‚ƒ‚ ƒ ‚ ‚ ‚ ‚‚‚‚‚‚‚ƒ‚‚ƒƒƒ„„†Ÿ†„„ƒƒƒ‚‚ƒ‚‚‚‚‚‚‚‚ ‚ ‚ ƒ ‚ ƒ‚ƒ„„„†Š÷øŠ†…ƒ„ƒƒ‚ƒ ‚ ‚ ‚ ‚ ƒ‚‚‚‚‚ƒ‚‚ƒƒƒ„„†ŽƒŽ†„„ƒƒƒ‚‚ƒ‚‚‚‚‚ƒ‚ ‚ ‚ ‚ ƒ ‚ƒƒ„ƒ…†ŠøùІ…„ƒƒƒƒ‚ ‚ ƒ ‚ ‚ ‚‚ƒ‚‚ƒ‚ƒ‚ƒƒ„……‹‹‹……„ƒƒ‚ƒ‚ƒ‚‚ƒ‚‚‚ ‚ ƒ ‚ ‚ ƒƒƒƒ„…†ŠùúІ…„ƒƒƒƒƒ ‚ ‚ ƒ ‚ ‚‚ƒ‚ƒ‚ƒ‚ƒ„ƒ……ŠŠ……ƒ„ƒ‚ƒ‚ƒ‚ƒ‚‚‚ ƒ ‚ ‚ ƒ ƒƒƒƒ„…†ŠúûІ…„„ƒƒ‚ƒ ƒ ‚ ‚ ƒ ‚‚ƒ‚ƒƒ‚ƒ„ƒ……‰“‰……ƒ„ƒ‚ƒƒ‚ƒ‚‚ƒ ‚ ‚ ƒ ƒ ‚ƒƒ„„…†ŠûüІ…„„ƒƒƒƒ ‚ ƒ ‚ ƒ ‚‚ƒƒ‚ƒƒ„ƒ……ˆ—ˆ……ƒ„ƒƒ‚ƒƒ‚‚ƒ ‚ ƒ ‚ ƒ ƒƒƒ„„…†ŠüýІ…„„ƒ„‚ƒ ƒ ‚ ƒ ‚ ƒƒ‚ƒƒƒƒ„„†‡›‡†„„ƒƒƒƒ‚ƒƒ‚ ƒ ‚ ƒ ƒ ‚„ƒ„„…†ŠýþІ……ƒ„ƒƒƒ ‚ ƒ ƒ ‚ ƒƒƒƒƒƒ„„…‡Ÿ‡…„„ƒƒƒƒƒƒ‚ ƒ ƒ ‚ ƒ ƒƒ„ƒ……†ŠþþЇ…„„ƒƒ„‚ ƒ ƒ ƒ ‚ ƒƒƒƒ„„„…†£†…„„„ƒƒƒƒ‚ ƒ ƒ ƒ ‚ „ƒƒ„„…‡ŠþþЇ…„„„ƒƒƒ ƒ ƒ ƒ ƒ ƒƒƒƒ„„…‡‹‹‡…„„ƒƒƒƒƒ ƒ ƒ ƒ ƒ ƒƒ„„„…‡Šþþ‚Ї……„ƒ„ƒƒ ƒ ƒ ƒ ƒ ƒƒ„„„…†‰•‰†…„„„ƒƒƒ ƒ ƒ ƒ ƒ ƒ„ƒ„……‡Šþ‚þƒŠ‡†„„„ƒ„ƒ ƒ ƒ ƒ ƒ „ƒ„„…†ˆ›ˆ†…„„ƒ„ƒ ƒ ƒ ƒ ƒ „ƒ„„„†‡Šþƒþ„‹‡……„ƒ„ƒ„ ƒ ƒ ƒ „ ƒ„„…†‡¡‡†…„„ƒ„ ƒ ƒ ƒ „ ƒ„ƒ„……‡‹þ„þ…‹‡……„„„ƒ„ ƒ ƒ „ ƒ „„…†‡…‡†…„„ƒ „ ƒ ƒ „ ƒ„„„……‡‹þ…þ†‹‡†…„„ƒ„„ ƒ „ ƒ „ „……‡‹“‹‡……„„ ƒ „ ƒ „ „ƒ„„…†‡‹þ†þ‡‹‡†…„„„„„ ƒ „ „ „ ……†‰‰†……„ „ „ ƒ „ „„„„…†‡‹þ‡þˆŒ‡†…„„„„„ „ „ „ „ …†‰£‰†…„ „ „ „ „ „„„„…†‡Œþˆþ‰Œ‡†……„„„„ „ … „ … †‡ŽŽ‡†… „ … „ „ „„„……†‡Œþ‰þ‹‹ˆ†……„„„… „ „ … † ‡‰‰‡† … „ „ … „„„……†ˆ‹þ‹þŒ‹ˆ††„…„…„ … … … † ‰¥‰† … … … „ …„…„††ˆ‹þŒþŒˆ†…………„… … … † ˆ ‘ˆ † … … … „…………†ˆŒþþŽŒˆ‡……………… … † ‡ Š ŸŠ ‡ † … … ……………‡ˆŒþŽþˆ††…………† † † ‰ © ‰ † † † …………††ˆþþ‘Œˆ‡†…†……† ‡ ‡ — ‡ ‡ † ……†…†‡ˆŒþ‘þ’ˆ‡††…†…‡ ‡ Š ¥ Š ‡ ‡ …†…††‡ˆþ’þ“‰‡†††††‡ ˆ ˆ ‡ †††††‡‰þ“þ•ˆˆ†††‡†ˆ ‹ £ ‹ ˆ †‡†††ˆˆþ•þ–‰ˆ†‡†‡‡Š “ ‡ “ Š ‡‡†‡†ˆ‰þ–þ˜‰ˆ‡†‡‡‰Œ ¡ Œ ‰‡‡†‡ˆ‰þ˜þ™Ž‰ˆ‡‡‡ˆ‹¯ ‹ˆ‡‡‡ˆ‰Žþ™þšŽŠˆˆ‡ˆ‰¡ ‰ˆ‡ˆˆŠŽþšþœŽŠˆˆˆ‰Š³Š‰ˆˆˆŠŽþœþžŽŠ‰ˆ‰‰¥‰‰ˆ‰ŠŽþžþŸŠ‰‰‰‹•‹•‹‰‰‰ŠþŸþ¡‹‰‰ŠŽ©ŽŠ‰‰‹þ¡þ¢‹ŠŠ‹’—’‹ŠŠ‹þ¢þ¤‹‹‹±‹‹‹þ¤þ¦Œ‹Œ£Œ‹Œþ¦þ¨‹Žš…šŽ‹þ¨þ©‘±‘þ©þ«’Ž“¡“Ž’þ«þ­’¿’þ­þ¯“’³’“þ¯þ±”•¥•”þ±þ³•‘‘•þ³þ¶•“¿“•þ¶þ¸––³––þ¸þº˜š£š˜þºþ½˜§ƒ§˜þ½þ¿›É›þ¿þ¿þÂþÅ ³ þÅþȤ¥¤þÈþ˲ƒ²þËþÎãþÎþÒÛþÒþÖÓþÖþÛÉþÛþà¿þàþæ³þæþî£þîþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒþþþþƒï Ù4 Paint Shop Pro ºœTRUEVISION-XFILE.logstalgia-1.0.3/data/example.log0000644000203100020310000233545611526610646016553 0ustar andrewcandrewcproxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:51 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:51 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-530.optus.com.au - - [22/Apr/2009:18:52:51 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-465.telstra.com.au - - [22/Apr/2009:18:52:51 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 58636 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:51 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:51 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:51 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:51 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:51 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 4231 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:51 +1200] "GET /latest.php HTTP/1.1" 200 991 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-622.dsl.clear.net.nz - - [22/Apr/2009:18:52:51 +1200] "GET /latest-news.rss HTTP/1.0" 200 7199 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.115.109.123 - - [22/Apr/2009:18:52:51 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 48385 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:51 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:52:52 +1200] "GET /crossdomain.xml HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.30.102.238 - - [22/Apr/2009:18:52:52 +1200] "GET /stories/politics/080201/41.htm HTTP/1.1" 200 73719 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:52:52 +1200] "GET /latest.php?category=business HTTP/1.0" 200 6446 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.126.158.42 - - [22/Apr/2009:18:52:53 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 6850 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:52:53 +1200] "GET /feedback.php HTTP/1.1" 200 48690 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:52:53 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:52:53 +1200] "GET /news.html HTTP/1.1" 200 73021 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:53 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:53 +1200] "GET /faq.html HTTP/1.1" 200 59812 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:54 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:54 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:52:54 +1200] "GET /gallery.php HTTP/1.1" 200 73910 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:54 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:54 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:54 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-257.telstra.com.au - - [22/Apr/2009:18:52:55 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-257.telstra.com.au - - [22/Apr/2009:18:52:55 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.126.158.42 - - [22/Apr/2009:18:52:55 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 6481 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:55 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:55 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:55 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-434.optus.com.au - - [22/Apr/2009:18:52:56 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:56 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:56 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:56 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.comcast.net - - [22/Apr/2009:18:52:56 +1200] "GET /stories.php?date=2005 HTTP/1.0" 200 6776 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-434.optus.com.au - - [22/Apr/2009:18:52:56 +1200] "GET /stories/sport/070922/52.htm HTTP/1.1" 200 57400 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:56 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:56 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-737.telstra.com.au - - [22/Apr/2009:18:52:57 +1200] "GET /news.html HTTP/1.0" 200 47838 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy.aol.com - - [22/Apr/2009:18:52:57 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 67900 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.115.109.123 - - [22/Apr/2009:18:52:57 +1200] "GET /news.html HTTP/1.1" 200 58598 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:57 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-736.paradise.net.nz - - [22/Apr/2009:18:52:58 +1200] "GET /news.html HTTP/1.0" 200 47905 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:58 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.177.170.107 - - [22/Apr/2009:18:52:58 +1200] "GET /stories/science/080325/82.htm HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:58 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:52:58 +1200] "GET /news.html HTTP/1.1" 200 74181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:58 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.48.147.2 - - [22/Apr/2009:18:52:58 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:52:58 +1200] "GET /stories.php HTTP/1.0" 200 6664 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:52:58 +1200] "GET /stories/world/080201/47.htm HTTP/1.0" 200 58002 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:52:58 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 59606 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:58 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:58 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:52:58 +1200] "GET /news.html HTTP/1.1" 200 74179 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-672.paradise.net.nz - - [22/Apr/2009:18:52:58 +1200] "GET /news.html HTTP/1.0" 200 57831 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.234.247.139 - - [22/Apr/2009:18:52:59 +1200] "GET /latest.php?category=national HTTP/1.1" 200 6513 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:59 +1200] "GET /adclick.php?c=10S2 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:59 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:59 +1200] "GET /images/photos/534.jpg HTTP/1.1" 200 1370 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:59 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 1362 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:52:59 +1200] "GET /feedback.php HTTP/1.1" 200 59180 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:59 +1200] "GET /news.html HTTP/1.1" 200 1372 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.aol.com - - [22/Apr/2009:18:52:59 +1200] "GET /gallery.php?section=sport HTTP/1.0" 200 67537 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:52:59 +1200] "GET /stories.php HTTP/1.1" 200 3700 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-454.crawl.yahoo.net - - [22/Apr/2009:18:52:59 +1200] "GET /news.html HTTP/1.0" 200 49705 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:00 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 1004 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:00 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1084 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:53:00 +1200] "GET /latest.php?category=business HTTP/1.1" 200 115828 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:00 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1017 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:00 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:00 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:00 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-476.ihug.co.nz - - [22/Apr/2009:18:53:00 +1200] "GET /latest.php?category=national HTTP/1.1" 206 28853 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:00 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 989 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:01 +1200] "GET /news.html HTTP/1.1" 200 4230 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:01 +1200] "GET /currency.php HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:53:01 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:01 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:53:01 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-487.ask.com - - [22/Apr/2009:18:53:01 +1200] "GET /stories/business/070301/63.htm HTTP/1.0" 200 6545 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.30.102.238 - - [22/Apr/2009:18:53:01 +1200] "GET /feedback.html HTTP/1.1" 404 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:01 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:01 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:01 +1200] "GET /business-news.rss HTTP/1.1" 200 56695 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:01 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-690.optus.com.au - - [22/Apr/2009:18:53:01 +1200] "GET /stories.php HTTP/1.0" 200 50195 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:01 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-719.bellsouth.net - - [22/Apr/2009:18:53:01 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:02 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:53:02 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:02 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:02 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:53:02 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:02 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:53:02 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:02 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:02 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:02 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:02 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:02 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:02 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:02 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.183.136.194 - - [22/Apr/2009:18:53:02 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.209.140.45 - - [22/Apr/2009:18:53:03 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 105216 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.209.140.45 - - [22/Apr/2009:18:53:03 +1200] "GET /news.html HTTP/1.1" 200 107071 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:03 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:53:03 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.196.179.98 - - [22/Apr/2009:18:53:03 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.196.179.98 - - [22/Apr/2009:18:53:03 +1200] "GET /latest.php?category=national HTTP/1.0" 304 - "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:03 +1200] "GET /news.html HTTP/1.0" 200 6971 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:03 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:53:03 +1200] "GET /stories/business/070801/12.htm HTTP/1.1" 200 120794 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:53:03 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:04 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:53:04 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:53:04 +1200] "GET /feedback.html HTTP/1.1" 404 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:04 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:53:04 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:04 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:04 +1200] "GET /adclick.php?c=AG3F HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.169.133.249 - - [22/Apr/2009:18:53:04 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.169.133.249 - - [22/Apr/2009:18:53:04 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:04 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:53:04 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.196.179.98 - - [22/Apr/2009:18:53:04 +1200] "GET /js/adclient.js HTTP/1.0" 200 5993 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:04 +1200] "GET /stories/national/070309/19.htm HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:04 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 2031 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.169.133.249 - - [22/Apr/2009:18:53:04 +1200] "GET /adclick.php?c=AG3F HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.169.133.249 - - [22/Apr/2009:18:53:04 +1200] "GET /latest.php?category=business HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:53:04 +1200] "GET /gallery.php?section=business HTTP/1.0" 200 60660 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:04 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:53:04 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:05 +1200] "GET /adclick.php?c=10S2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.169.133.249 - - [22/Apr/2009:18:53:05 +1200] "GET /news.html HTTP/1.1" 200 2666 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:53:05 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.169.133.249 - - [22/Apr/2009:18:53:05 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:05 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:05 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:53:05 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:05 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.169.133.249 - - [22/Apr/2009:18:53:05 +1200] "GET /stories.php HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:05 +1200] "GET /stories/national/080201/1.htm HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.169.133.249 - - [22/Apr/2009:18:53:05 +1200] "GET /latest.php?category=national HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:53:05 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:05 +1200] "GET /latest.php?category=business HTTP/1.1" 200 630 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:05 +1200] "GET /latest.php HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:53:05 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.196.179.98 - - [22/Apr/2009:18:53:05 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.196.179.98 - - [22/Apr/2009:18:53:05 +1200] "GET /js/menu.js HTTP/1.0" 200 6377 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-427.jetstream.xtra.co.nz - - [22/Apr/2009:18:53:05 +1200] "GET /stories/politics/080201/41.htm HTTP/1.0" 200 55041 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:05 +1200] "GET /styles/ie4.css HTTP/1.1" 200 3387 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-476.ihug.co.nz - - [22/Apr/2009:18:53:05 +1200] "GET /latest.php?category=national HTTP/1.1" 206 14635 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:05 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:06 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:53:06 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 68977 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:06 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:06 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:06 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 997 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.240.42.25 - - [22/Apr/2009:18:53:06 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-739.dialup.xtra.co.nz - - [22/Apr/2009:18:53:06 +1200] "GET /news.html HTTP/1.1" 200 32800 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:06 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1130 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:06 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1012 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:06 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:06 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-632.comcast.net - - [22/Apr/2009:18:53:06 +1200] "GET /stories/national/070309/19.htm HTTP/1.0" 200 59026 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:06 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-569.global-gateway.net.nz - - [22/Apr/2009:18:53:06 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 1817 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:06 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy.googlebot.com - - [22/Apr/2009:18:53:06 +1200] "GET /gallery.php?section=health HTTP/1.0" 200 58165 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:06 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 1405 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:06 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 204 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:53:07 +1200] "GET /adclick.php?c=PBNI HTTP/1.0" 302 368 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:07 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-367.bellsouth.net - - [22/Apr/2009:18:53:07 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.240.42.25 - - [22/Apr/2009:18:53:07 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-476.ihug.co.nz - - [22/Apr/2009:18:53:07 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:53:07 +1200] "GET /stories.php?date=2006 HTTP/1.1" 200 82859 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:53:07 +1200] "GET /stories/world/070801/12.htm HTTP/1.1" 200 98774 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:53:07 +1200] "GET /stories/sport/080314/24.htm HTTP/1.1" 200 48633 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.196.179.98 - - [22/Apr/2009:18:53:07 +1200] "GET /gallery.php HTTP/1.0" 200 3021 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.240.42.25 - - [22/Apr/2009:18:53:08 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:08 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:53:08 +1200] "GET /stories/politics/060301/22.htm HTTP/1.1" 200 99632 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-257.telstra.com.au - - [22/Apr/2009:18:53:08 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:08 +1200] "GET /latest.php?category=business HTTP/1.0" 200 51280 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:08 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:53:08 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.240.42.25 - - [22/Apr/2009:18:53:08 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:53:09 +1200] "GET /adclick.php?c=10S2 HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:53:09 +1200] "GET /adclick.php?c=YI32 HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:09 +1200] "GET /stories/business/070301/63.htm HTTP/1.0" 200 659 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:09 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:09 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:09 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:09 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.196.179.98 - - [22/Apr/2009:18:53:09 +1200] "GET /stories.php HTTP/1.0" 200 3688 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:09 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:10 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:53:10 +1200] "GET /stories.php HTTP/1.0" 200 2019 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:10 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:53:10 +1200] "GET /adclick.php?c=NT4P HTTP/1.0" 302 365 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.86.178.69 - - [22/Apr/2009:18:53:10 +1200] "GET /news.html HTTP/1.1" 200 32800 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:10 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:10 +1200] "GET /news.html HTTP/1.1" 200 107069 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:53:10 +1200] "GET /adclick.php?c=3ERO HTTP/1.0" 302 364 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:10 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:10 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:10 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 68979 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:10 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:53:10 +1200] "GET /adclick.php?c=JAKL HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.196.179.98 - - [22/Apr/2009:18:53:11 +1200] "GET /news.html HTTP/1.0" 200 4217 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.196.179.98 - - [22/Apr/2009:18:53:11 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.0" 200 977 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" crawler.aol.com - - [22/Apr/2009:18:53:11 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:11 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-418.optus.com.au - - [22/Apr/2009:18:53:11 +1200] "GET /stories/sport/070922/52.htm HTTP/1.0" 200 32768 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:11 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:11 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:11 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:11 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:11 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:11 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 3033 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.196.179.98 - - [22/Apr/2009:18:53:11 +1200] "GET /links.html HTTP/1.0" 200 686 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" crawler.aol.com - - [22/Apr/2009:18:53:11 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 88596 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:11 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:12 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:12 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:53:12 +1200] "GET /currency.php HTTP/1.1" 200 62753 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /stories/science/080325/82.htm HTTP/1.1" 200 3700 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /faq.html HTTP/1.0" 200 51422 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-453.googlebot.com - - [22/Apr/2009:18:53:12 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /faq.html HTTP/1.1" 200 1371 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:12 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:12 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:12 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /news.html HTTP/1.1" 200 4232 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-314.bitstream.orcon.net.nz - - [22/Apr/2009:18:53:12 +1200] "GET /gallery.php?section=sport HTTP/1.0" 200 6535 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.30.102.238 - - [22/Apr/2009:18:53:12 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 67900 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-454.crawl.yahoo.net - - [22/Apr/2009:18:53:12 +1200] "GET /latest.php HTTP/1.0" 200 48970 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 989 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /latest.php HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.48.147.2 - - [22/Apr/2009:18:53:12 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:12 +1200] "GET /latest.php?category=national HTTP/1.1" 206 5493 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:12 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:12 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-497.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /stories/politics/080201/49.htm HTTP/1.0" 200 6457 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:53:12 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:13 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-453.googlebot.com - - [22/Apr/2009:18:53:13 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:13 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:13 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:13 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:13 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:13 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-453.googlebot.com - - [22/Apr/2009:18:53:13 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:14 +1200] "GET /news.html HTTP/1.1" 200 78851 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:14 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:14 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:14 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-520.comcast.net - - [22/Apr/2009:18:53:14 +1200] "GET /news.html HTTP/1.0" 200 58994 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.131.128.127 - - [22/Apr/2009:18:53:14 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:14 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:14 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:14 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:14 +1200] "GET /latest.php?category=national HTTP/1.0" 200 6630 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:14 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:14 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-453.googlebot.com - - [22/Apr/2009:18:53:14 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:15 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:15 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:15 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:15 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:15 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:15 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:15 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:15 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:15 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:15 +1200] "GET /styles/site.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:15 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:15 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:15 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:15 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:15 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:15 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:15 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1179 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:15 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:15 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:15 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:15 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:15 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:15 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:15 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:16 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:16 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:16 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:16 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:16 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:16 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-502.crawl.yahoo.net - - [22/Apr/2009:18:53:16 +1200] "GET /adclick.php?c=BDS2 HTTP/1.0" 301 324 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.131.128.127 - - [22/Apr/2009:18:53:16 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:16 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:16 +1200] "GET /images/photos/8834.jpg HTTP/1.1" 200 1642 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:16 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.78.155.100 - - [22/Apr/2009:18:53:16 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6304 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:53:16 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 67900 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:16 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:16 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:16 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:16 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:16 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:16 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:16 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:16 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 4230 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:16 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 989 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-290.optus.com.au - - [22/Apr/2009:18:53:16 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:53:16 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-290.optus.com.au - - [22/Apr/2009:18:53:16 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:53:16 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:16 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:16 +1200] "GET /stories/business/070301/63.htm HTTP/1.1" 200 1370 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:17 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /news.html HTTP/1.1" 200 107071 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:53:17 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:17 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:17 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:53:17 +1200] "GET /latest.php?category=national HTTP/1.1" 200 3700 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:17 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 1610 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:17 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1373 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-290.optus.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-497.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /latest.php?category=business HTTP/1.0" 200 6812 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.240.42.25 - - [22/Apr/2009:18:53:17 +1200] "GET /links.html HTTP/1.1" 200 2726 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:17 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:17 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:17 +1200] "GET /styles/ie4.css HTTP/1.1" 200 3387 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:17 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:53:17 +1200] "GET /stories.php?date=2007 HTTP/1.0" 200 50228 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.240.42.25 - - [22/Apr/2009:18:53:17 +1200] "GET /latest.php?category=national HTTP/1.1" 200 3700 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:53:17 +1200] "GET /stories.php HTTP/1.1" 200 2032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:17 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.aol.com - - [22/Apr/2009:18:53:17 +1200] "GET /latest.php?category=national HTTP/1.1" 200 3700 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:17 +1200] "GET /crossdomain.xml HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:17 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:17 +1200] "GET /news.html HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-476.ihug.co.nz - - [22/Apr/2009:18:53:17 +1200] "GET /latest.php?category=national HTTP/1.1" 206 4798 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:18 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 989 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 1405 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 204 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:18 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:18 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.aol.com - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:53:18 +1200] "GET /latest.php HTTP/1.1" 200 64579 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:18 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:18 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/534.jpg HTTP/1.1" 200 1370 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 1362 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.125.145.131 - - [22/Apr/2009:18:53:18 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-520.comcast.net - - [22/Apr/2009:18:53:18 +1200] "GET /latest.php?category=sport HTTP/1.0" 200 58420 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.131.128.127 - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:53:18 +1200] "GET /stories.php?date=2005 HTTP/1.1" 200 58834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:18 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 979 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:19 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:19 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /news.html HTTP/1.0" 200 1792 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.131.128.127 - - [22/Apr/2009:18:53:19 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:19 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:19 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:19 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:19 +1200] "GET /gallery.php?section=health HTTP/1.1" 200 991 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:19 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 890 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/34.jpg HTTP/1.1" 200 398 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:19 +1200] "GET /latest.php HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:19 +1200] "GET /gallery.php?section=health HTTP/1.1" 200 991 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 445 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:19 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:19 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 1004 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:19 +1200] "GET /stories/weather/070801/33.htm HTTP/1.0" 200 48817 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1084 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:19 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1017 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 979 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:19 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:19 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:19 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 445 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:19 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1179 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-257.telstra.com.au - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:19 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.125.145.131 - - [22/Apr/2009:18:53:20 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:20 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:20 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:20 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.125.145.131 - - [22/Apr/2009:18:53:20 +1200] "GET /stories.php HTTP/1.1" 200 176382 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:53:20 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 62531 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:20 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:20 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:20 +1200] "GET /news.html HTTP/1.1" 200 4231 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:20 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:20 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:20 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:20 +1200] "GET /stories/business/071203/53.htm HTTP/1.0" 200 6546 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:20 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:20 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1373 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:20 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1376 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:20 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:20 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:20 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:20 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:20 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:20 +1200] "GET /styles/ie4.css HTTP/1.1" 200 3387 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:53:20 +1200] "GET /stories.php HTTP/1.1" 200 178008 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.125.145.131 - - [22/Apr/2009:18:53:20 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:21 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:21 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:21 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 1405 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.131.128.127 - - [22/Apr/2009:18:53:21 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 204 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:21 +1200] "GET /news.html HTTP/1.1" 200 4231 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.131.128.127 - - [22/Apr/2009:18:53:21 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:21 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:21 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.125.145.131 - - [22/Apr/2009:18:53:21 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:21 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:21 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.125.145.131 - - [22/Apr/2009:18:53:21 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:21 +1200] "GET /news.html HTTP/1.1" 200 75947 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:21 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:21 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.48.147.2 - - [22/Apr/2009:18:53:21 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:21 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:21 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:21 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:21 +1200] "GET /images/photos/534.jpg HTTP/1.1" 200 1370 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:21 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:22 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 1362 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:22 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:22 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:22 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:22 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:22 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:22 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:53:22 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 62529 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.125.145.131 - - [22/Apr/2009:18:53:22 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-445.aol.com - - [22/Apr/2009:18:53:22 +1200] "GET /news.html HTTP/1.0" 200 63002 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:22 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:22 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 53512 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:22 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:22 +1200] "GET /latest.php HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.paradise.net.nz - - [22/Apr/2009:18:53:22 +1200] "GET /latest.php?category=national HTTP/1.0" 200 6630 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:22 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1179 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:22 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:22 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:22 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.125.145.131 - - [22/Apr/2009:18:53:22 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:22 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1373 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.167.177.176 - - [22/Apr/2009:18:53:22 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:23 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1350 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:23 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1352 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-420.aol.com - - [22/Apr/2009:18:53:23 +1200] "GET /news.html HTTP/1.0" 200 98304 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/favicon.ico HTTP/1.1" 200 860 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-410.bitstream.orcon.net.nz - - [22/Apr/2009:18:53:23 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 49102 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:23 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-420.aol.com - - [22/Apr/2009:18:53:23 +1200] "GET /feedback.html HTTP/1.0" 404 25 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:23 +1200] "GET /images/photos/34.jpg HTTP/1.1" 200 398 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:53:23 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:23 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.167.177.176 - - [22/Apr/2009:18:53:23 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:23 +1200] "GET /stories/science/070922/33.htm HTTP/1.1" 200 699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:23 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 890 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:23 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.125.145.131 - - [22/Apr/2009:18:53:23 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:23 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-257.telstra.com.au - - [22/Apr/2009:18:53:24 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:24 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:24 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 1004 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-569.global-gateway.net.nz - - [22/Apr/2009:18:53:24 +1200] "GET /latest.php?category=business HTTP/1.1" 200 59071 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:24 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1084 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.125.145.131 - - [22/Apr/2009:18:53:24 +1200] "GET /latest.php?category=national HTTP/1.1" 200 3700 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:24 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1017 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:53:24 +1200] "GET /gallery.php?section=health HTTP/1.1" 200 56816 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:24 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:24 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1179 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:24 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:24 +1200] "GET /stories.php?date=2007 HTTP/1.0" 200 59519 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:24 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-434.optus.com.au - - [22/Apr/2009:18:53:24 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:24 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1373 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:24 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.167.177.176 - - [22/Apr/2009:18:53:24 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:24 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1350 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:24 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:24 +1200] "GET /news.html HTTP/1.0" 200 49677 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:24 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1352 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:25 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-257.telstra.com.au - - [22/Apr/2009:18:53:25 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:25 +1200] "GET /stories/business/070801/12.htm HTTP/1.1" 200 120794 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.167.177.176 - - [22/Apr/2009:18:53:25 +1200] "GET /adclick.php?c=10S2 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.167.177.176 - - [22/Apr/2009:18:53:25 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-420.aol.com - - [22/Apr/2009:18:53:25 +1200] "GET /latest.php?category=business HTTP/1.0" 200 50455 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:25 +1200] "GET /news.html HTTP/1.0" 200 6412 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:25 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.167.177.176 - - [22/Apr/2009:18:53:25 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:25 +1200] "GET /stories.php HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:25 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:26 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-258.optus.com.au - - [22/Apr/2009:18:53:26 +1200] "GET /stories.php HTTP/1.0" 200 45283 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy.paradise.net.nz - - [22/Apr/2009:18:53:26 +1200] "GET /crossdomain.xml HTTP/1.0" 200 6864 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:26 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.167.177.176 - - [22/Apr/2009:18:53:26 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:26 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.167.177.176 - - [22/Apr/2009:18:53:26 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.96.84.33 - - [22/Apr/2009:18:53:26 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-257.telstra.com.au - - [22/Apr/2009:18:53:26 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:26 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:26 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:26 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.167.177.176 - - [22/Apr/2009:18:53:27 +1200] "GET /stories/business/071203/53.htm HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:53:27 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 39131 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.bellsouth.net - - [22/Apr/2009:18:53:27 +1200] "GET /news.html HTTP/1.1" 200 6425 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.167.177.176 - - [22/Apr/2009:18:53:27 +1200] "GET /news.html HTTP/1.1" 200 2725 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:27 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy.bellsouth.net - - [22/Apr/2009:18:53:27 +1200] "GET /stories/business/070201/7.htm HTTP/1.0" 200 5880 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:53:27 +1200] "GET /adclick.php?c=GD52 HTTP/1.0" 301 324 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:27 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:27 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-484.aol.com - - [22/Apr/2009:18:53:27 +1200] "GET /stories/business/070801/12.htm HTTP/1.0" 200 58909 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /latest.php HTTP/1.1" 200 991 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.125.145.131 - - [22/Apr/2009:18:53:27 +1200] "GET /currency.php HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:53:27 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.48.147.2 - - [22/Apr/2009:18:53:27 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:27 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.48.147.2 - - [22/Apr/2009:18:53:28 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.crawl.yahoo.net - - [22/Apr/2009:18:53:28 +1200] "GET /news.html HTTP/1.1" 200 58525 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.167.177.176 - - [22/Apr/2009:18:53:28 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:28 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.crawl.yahoo.net - - [22/Apr/2009:18:53:28 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 67902 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.39.35.118 - - [22/Apr/2009:18:53:28 +1200] "GET /news.html HTTP/1.1" 200 6425 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.167.177.176 - - [22/Apr/2009:18:53:28 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:53:28 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 56561 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:28 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:28 +1200] "GET /latest.php HTTP/1.1" 200 58478 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:28 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:28 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:28 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:28 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:28 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:28 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:28 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.167.177.176 - - [22/Apr/2009:18:53:29 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 4231 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:29 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.167.177.176 - - [22/Apr/2009:18:53:29 +1200] "GET /stories.php?date=2006 HTTP/1.1" 200 990 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:29 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.48.147.2 - - [22/Apr/2009:18:53:29 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-521.global-gateway.net.nz - - [22/Apr/2009:18:53:29 +1200] "GET /news.html HTTP/1.0" 200 49220 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.48.147.2 - - [22/Apr/2009:18:53:29 +1200] "GET /currency.php HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:53:29 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 301 336 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:29 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:29 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.167.177.176 - - [22/Apr/2009:18:53:29 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.aol.com - - [22/Apr/2009:18:53:30 +1200] "GET /stories/sport/080420/33.htm HTTP/1.0" 200 94513 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:30 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" crawler.crawl.yahoo.net - - [22/Apr/2009:18:53:30 +1200] "GET /news.html HTTP/1.1" 200 82000 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:30 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.crawl.yahoo.net - - [22/Apr/2009:18:53:30 +1200] "GET /news.html HTTP/1.1" 200 82000 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:30 +1200] "GET /news.html HTTP/1.1" 200 58940 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-533.googlebot.com - - [22/Apr/2009:18:53:30 +1200] "GET /adclick.php?c=TG3A HTTP/1.0" 301 324 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:30 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 376 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.telstra.com.au - - [22/Apr/2009:18:53:30 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 51621 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.crawl.yahoo.net - - [22/Apr/2009:18:53:30 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.167.177.176 - - [22/Apr/2009:18:53:30 +1200] "GET /stories/science/070922/33.htm HTTP/1.1" 200 699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.crawl.yahoo.net - - [22/Apr/2009:18:53:30 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:30 +1200] "GET /news.html HTTP/1.1" 200 1369 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-612.aol.com - - [22/Apr/2009:18:53:31 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 53969 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:31 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:31 +1200] "GET /stories/entertainment/070825/233.htm HTTP/1.1" 200 1372 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:31 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:31 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:31 +1200] "GET /latest.php?category=business HTTP/1.0" 200 7204 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:31 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:31 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:31 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:31 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:31 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:31 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:53:31 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 59372 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:31 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:31 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:31 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:31 +1200] "GET /stories/business/070801/55.htm HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:31 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:31 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:32 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:32 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:32 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:32 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:32 +1200] "GET /latest.php HTTP/1.1" 200 991 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:32 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:32 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-612.aol.com - - [22/Apr/2009:18:53:32 +1200] "GET /news.html HTTP/1.1" 200 90200 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:32 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-487.ask.com - - [22/Apr/2009:18:53:32 +1200] "GET /news.html HTTP/1.0" 200 6909 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:32 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-612.aol.com - - [22/Apr/2009:18:53:32 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:32 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:53:32 +1200] "GET /news.html HTTP/1.1" 200 76536 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:32 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:32 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:32 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:32 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:32 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:32 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:32 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:32 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:33 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:33 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:33 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:33 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:33 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:33 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:33 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:33 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:33 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:33 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:33 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:33 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.55.25.145 - - [22/Apr/2009:18:53:33 +1200] "GET /latest.php HTTP/1.1" 200 53269 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:33 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:33 +1200] "GET /stories.php HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:33 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-273.telstra.com.au - - [22/Apr/2009:18:53:34 +1200] "GET /stories/science/070922/33.htm HTTP/1.0" 200 6756 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:34 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:34 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:34 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:34 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:34 +1200] "GET /news.html HTTP/1.1" 200 3700 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:34 +1200] "GET /stories/national/080201/1.htm HTTP/1.1" 200 1338 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:34 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.223.221.198 - - [22/Apr/2009:18:53:34 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6174 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.48.147.2 - - [22/Apr/2009:18:53:34 +1200] "GET /news.html HTTP/1.1" 200 631 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:34 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:34 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 376 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:53:34 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 59372 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:35 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:35 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:35 +1200] "GET /news.html HTTP/1.1" 200 4230 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:35 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 989 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:35 +1200] "GET /latest.php HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:35 +1200] "GET /images/photos/534.jpg HTTP/1.1" 200 1370 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:35 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 1362 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:35 +1200] "GET /currency.php HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:35 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:35 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 1004 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-672.paradise.net.nz - - [22/Apr/2009:18:53:35 +1200] "GET /adclick.php?c=PBNI HTTP/1.0" 301 324 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:35 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1084 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:35 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1017 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-588.ihug.co.nz - - [22/Apr/2009:18:53:35 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 20819 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:36 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:36 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:53:36 +1200] "GET /news.html HTTP/1.1" 200 58946 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:36 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:36 +1200] "GET /currency.php HTTP/1.1" 200 65331 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:36 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:36 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.48.147.2 - - [22/Apr/2009:18:53:36 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:36 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:36 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:36 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:36 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:36 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:36 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:36 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:36 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:36 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:36 +1200] "GET /stories/business/070201/7.htm HTTP/1.0" 200 6047 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:37 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:37 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:37 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:37 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:37 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:37 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:37 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:37 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-518.crawl.yahoo.net - - [22/Apr/2009:18:53:37 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:37 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 156977 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:37 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:37 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:37 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.223.221.198 - - [22/Apr/2009:18:53:37 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6174 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:53:38 +1200] "GET /news.html HTTP/1.1" 200 74181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:38 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:38 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:38 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:38 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:38 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:38 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:38 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:38 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:38 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:39 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:39 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:39 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:39 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:39 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:39 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.global-gateway.net.nz - - [22/Apr/2009:18:53:39 +1200] "GET /stories/politics/080201/49.htm HTTP/1.0" 200 81202 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:39 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:39 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" proxy.aol.com - - [22/Apr/2009:18:53:39 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 60716 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:39 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.147.202.14 - - [22/Apr/2009:18:53:39 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 301 336 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:39 +1200] "GET /latest.php?category=national HTTP/1.1" 200 3700 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:39 +1200] "GET /latest.php?category=national HTTP/1.1" 200 2031 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:39 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-341.googlebot.com - - [22/Apr/2009:18:53:40 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:40 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:40 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:40 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:40 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:40 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:40 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:40 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:40 +1200] "GET /latest.php HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.147.202.14 - - [22/Apr/2009:18:53:41 +1200] "GET /latest.php HTTP/1.1" 200 58466 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:41 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:41 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:41 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:41 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:41 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:42 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:42 +1200] "GET /news.html HTTP/1.0" 200 6972 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:42 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:42 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:42 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:42 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.48.147.2 - - [22/Apr/2009:18:53:43 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-706.optus.com.au - - [22/Apr/2009:18:53:43 +1200] "GET /currency.php HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.98.136.88 - - [22/Apr/2009:18:53:43 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:43 +1200] "GET /faq.html HTTP/1.1" 200 24600 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.crawl.yahoo.net - - [22/Apr/2009:18:53:43 +1200] "GET /news.html HTTP/1.0" 200 174602 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.98.136.88 - - [22/Apr/2009:18:53:43 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:53:44 +1200] "GET /news.html HTTP/1.0" 200 75863 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.223.221.198 - - [22/Apr/2009:18:53:44 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6174 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:44 +1200] "GET /latest.php?category=business HTTP/1.0" 200 46536 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.98.136.88 - - [22/Apr/2009:18:53:44 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /latest.php?category=national HTTP/1.0" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /js/adclient.js HTTP/1.0" 200 5993 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.98.136.88 - - [22/Apr/2009:18:53:45 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /js/menu.js HTTP/1.0" 200 6377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:45 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:45 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-451.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.49.129.252 - - [22/Apr/2009:18:53:45 +1200] "GET /latest.php?category=business HTTP/1.1" 200 48539 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /adclick.php?c=AW2M HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:45 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:53:45 +1200] "GET /stories/politics/060301/22.htm HTTP/1.1" 200 6522 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:45 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 1004 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /stories.php?date=yesterday HTTP/1.0" 200 3020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-365.aol.com - - [22/Apr/2009:18:53:45 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.0" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.0" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.0" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:45 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:45 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:45 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:45 +1200] "GET /latest.php HTTP/1.1" 200 991 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:53:45 +1200] "GET /latest.php HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /adclick.php?c=10S2 HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /adclick.php?c=AW2M HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /gallery.php?section=sport HTTP/1.0" 200 3687 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:45 +1200] "GET /stories/entertainment/070825/233.htm HTTP/1.0" 200 1358 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:53:45 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.48.147.2 - - [22/Apr/2009:18:53:46 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1084 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:46 +1200] "GET /images/photos/824.jpg HTTP/1.0" 200 445 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:53:46 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:46 +1200] "GET /adclick.php?c=H34K HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:46 +1200] "GET /images/photos/355.jpg HTTP/1.0" 200 1404 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:46 +1200] "GET /images/photos/34.jpg HTTP/1.0" 200 1136 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.87.247.241 - - [22/Apr/2009:18:53:46 +1200] "GET /news.html HTTP/1.1" 200 7127 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:46 +1200] "GET /adclick.php?c=X41R HTTP/1.0" 302 365 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:46 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:46 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:46 +1200] "GET /adclick.php?c=ABTJ HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:46 +1200] "GET /gallery.php?section=health HTTP/1.0" 200 4218 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:46 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" crawler.telstra.com.au - - [22/Apr/2009:18:53:46 +1200] "GET /faq.html HTTP/1.0" 200 66462 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:46 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:46 +1200] "GET /stories/weather/070801/33.htm HTTP/1.0" 200 978 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:46 +1200] "GET /faq.html HTTP/1.1" 200 49810 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:53:46 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.0" 200 686 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.48.147.2 - - [22/Apr/2009:18:53:46 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1017 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:46 +1200] "GET /latest.php?category=national HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:47 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:47 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:47 +1200] "GET /stories/business/070801/55.htm HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:47 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:47 +1200] "GET /adclick.php?c=AG3F HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.245.112.114 - - [22/Apr/2009:18:53:47 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:53:47 +1200] "GET /adclick.php?c=JAKL HTTP/1.0" 302 367 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:47 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:47 +1200] "GET /styles/site.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:47 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:47 +1200] "GET /gallery.php?section=business HTTP/1.1" 200 1340 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:47 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:47 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 4232 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:47 +1200] "GET /latest.php HTTP/1.1" 200 991 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:47 +1200] "GET /news.html HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:47 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:53:47 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:53:47 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:53:47 +1200] "GET /adclick.php?c=AG3F HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:53:47 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:53:47 +1200] "GET /links.html HTTP/1.0" 200 686 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:47 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:53:47 +1200] "GET /news.html HTTP/1.1" 200 2666 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:47 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:47 +1200] "GET /stories/business/070801/37.htm HTTP/1.0" 200 7353 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:53:48 +1200] "GET /latest.php?category=business HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:53:48 +1200] "GET /stories.php HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:48 +1200] "GET /gallery.php HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:48 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:53:48 +1200] "GET /latest.php?category=national HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:48 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.49.129.252 - - [22/Apr/2009:18:53:48 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" proxy-333.aol.com - - [22/Apr/2009:18:53:48 +1200] "GET /currency.php HTTP/1.0" 200 6648 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:48 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:48 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-454.crawl.yahoo.net - - [22/Apr/2009:18:53:48 +1200] "GET /latest.php HTTP/1.0" 200 67450 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:48 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:48 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-647.ask.com - - [22/Apr/2009:18:53:48 +1200] "GET /stories/business/070201/7.htm HTTP/1.1" 200 6565 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:53:48 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:48 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:49 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:53:49 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.85.238.10 - - [22/Apr/2009:18:53:49 +1200] "GET /news.html HTTP/1.1" 200 171913 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:49 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:49 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:53:49 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.48.147.2 - - [22/Apr/2009:18:53:49 +1200] "GET /styles/ie4.css HTTP/1.1" 200 3387 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:53:50 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:50 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:53:50 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.245.112.114 - - [22/Apr/2009:18:53:50 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:50 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:53:50 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:50 +1200] "GET /stories/sport/070922/52.htm HTTP/1.1" 200 59620 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:50 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:50 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:50 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.49.129.252 - - [22/Apr/2009:18:53:50 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.21.27.9 - - [22/Apr/2009:18:53:50 +1200] "GET /adclick.php?c=LME2 HTTP/1.0" 302 366 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:50 +1200] "GET /styles/site.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy.optus.com.au - - [22/Apr/2009:18:53:51 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 7084 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.223.221.198 - - [22/Apr/2009:18:53:51 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6174 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:53:51 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.48.147.2 - - [22/Apr/2009:18:53:51 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:53:51 +1200] "GET /latest.php HTTP/1.0" 200 979 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:51 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:51 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:51 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:53:51 +1200] "GET /stories/national/080201/1.htm HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:53:51 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 332 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:51 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:51 +1200] "GET /latest.php HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:53:51 +1200] "GET /news.html HTTP/1.1" 200 2666 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:51 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.49.129.252 - - [22/Apr/2009:18:53:51 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:53:51 +1200] "GET /stories.php HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:51 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:51 +1200] "GET /crossdomain.xml HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:51 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:52 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 204 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.209.140.45 - - [22/Apr/2009:18:53:52 +1200] "GET /stories/science/080325/82.htm HTTP/1.1" 200 26417 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.209.140.45 - - [22/Apr/2009:18:53:52 +1200] "GET /stories/science/080325/82.htm HTTP/1.1" 200 22976 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:52 +1200] "GET /adclick.php?c=JAKL HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:52 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:52 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.49.129.252 - - [22/Apr/2009:18:53:52 +1200] "GET /adclick.php?c=JAKL HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.54.56.253 - - [22/Apr/2009:18:53:52 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 54047 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-282.bitstream.orcon.net.nz - - [22/Apr/2009:18:53:52 +1200] "GET /stories/world/070801/12.htm HTTP/1.0" 200 48311 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:52 +1200] "GET /latest.php?category=business HTTP/1.1" 200 1380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:52 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:52 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:52 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:52 +1200] "GET /feedback.php HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:52 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:52 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:52 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:52 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:52 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:53:52 +1200] "GET /news.html HTTP/1.1" 200 6984 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:52 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 1405 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:52 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:53:52 +1200] "GET /latest-news.rss HTTP/1.0" 200 7006 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-668.ihug.co.nz - - [22/Apr/2009:18:53:52 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:52 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-668.ihug.co.nz - - [22/Apr/2009:18:53:52 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:52 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:53 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.57.241.67 - - [22/Apr/2009:18:53:53 +1200] "GET /stories/national/070309/19.htm HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:53 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 1371 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:53 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1179 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.48.147.2 - - [22/Apr/2009:18:53:53 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.57.241.67 - - [22/Apr/2009:18:53:53 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:53 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:53 +1200] "GET /latest.php?category=national HTTP/1.1" 200 3700 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:53:53 +1200] "GET /adclick.php?c=PBNI HTTP/1.0" 302 367 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:53 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:53 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:53 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.54.56.253 - - [22/Apr/2009:18:53:53 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:53 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:53 +1200] "GET /news.html HTTP/1.0" 200 6157 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.49.129.252 - - [22/Apr/2009:18:53:53 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:53 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1376 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:53 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1373 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:53:53 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 4219 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:53 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.57.241.67 - - [22/Apr/2009:18:53:54 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 445 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:54 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.49.129.252 - - [22/Apr/2009:18:53:54 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:54 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:54 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:54 +1200] "GET /stories/world/070801/12.htm HTTP/1.1" 200 48692 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:54 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:54 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-365.aol.com - - [22/Apr/2009:18:53:54 +1200] "GET /latest.php?category=business HTTP/1.1" 200 59385 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:54 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:54 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-668.ihug.co.nz - - [22/Apr/2009:18:53:54 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:54 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:54 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:54 +1200] "GET /latest.php?category=national HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:54 +1200] "GET /stories/science/080325/82.htm HTTP/1.1" 200 59050 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:54 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:54 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 4232 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:54 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.57.241.67 - - [22/Apr/2009:18:53:54 +1200] "GET /stories/science/080325/82.htm HTTP/1.1" 200 697 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:54 +1200] "GET /stories/national/070309/19.htm HTTP/1.1" 200 990 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:54 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:54 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.49.129.252 - - [22/Apr/2009:18:53:54 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.57.241.67 - - [22/Apr/2009:18:53:55 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:55 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.87.247.241 - - [22/Apr/2009:18:53:55 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 50666 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:55 +1200] "GET /styles/site.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-365.aol.com - - [22/Apr/2009:18:53:55 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:55 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.57.241.67 - - [22/Apr/2009:18:53:55 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:55 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.49.129.252 - - [22/Apr/2009:18:53:55 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:55 +1200] "GET /latest.php HTTP/1.1" 200 991 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.57.241.67 - - [22/Apr/2009:18:53:55 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:53:55 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 1438 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.57.241.67 - - [22/Apr/2009:18:53:55 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:55 +1200] "GET /crossdomain.xml HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:55 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.paradise.net.nz - - [22/Apr/2009:18:53:55 +1200] "GET /stories/politics/080201/41.htm HTTP/1.1" 200 73721 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:55 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:53:55 +1200] "GET /stories/business/070201/7.htm HTTP/1.1" 200 6695 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:55 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:55 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:53:55 +1200] "GET /adclick.php?c=AW2M HTTP/1.0" 302 366 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.57.241.67 - - [22/Apr/2009:18:53:55 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:55 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.57.241.67 - - [22/Apr/2009:18:53:55 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:55 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:55 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:55 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-483.dialup.xtra.co.nz - - [22/Apr/2009:18:53:56 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:56 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:56 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:56 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-483.dialup.xtra.co.nz - - [22/Apr/2009:18:53:56 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:56 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.49.129.252 - - [22/Apr/2009:18:53:56 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.21.27.9 - - [22/Apr/2009:18:53:56 +1200] "GET /stories.php HTTP/1.0" 200 3687 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:53:56 +1200] "GET /stories.php HTTP/1.1" 200 6698 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:56 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:56 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:56 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:56 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.49.129.252 - - [22/Apr/2009:18:53:56 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:56 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:56 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:56 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:56 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:56 +1200] "GET /latest.php HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-502.crawl.yahoo.net - - [22/Apr/2009:18:53:56 +1200] "GET /latest.php?category=national HTTP/1.0" 200 59279 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:56 +1200] "GET /latest.php HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:53:57 +1200] "HEAD /stories/business/071203/53.htm HTTP/1.1" 200 0 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:57 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:57 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:57 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:57 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:57 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:57 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:57 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:57 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:57 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:57 +1200] "GET /latest.php?category=national HTTP/1.1" 200 3700 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:53:57 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.49.129.252 - - [22/Apr/2009:18:53:57 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:57 +1200] "GET /latest.php?category=weather HTTP/1.1" 200 1370 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:57 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:57 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:57 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:53:57 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:53:57 +1200] "GET /stories/politics/080201/49.htm HTTP/1.0" 200 6457 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:57 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:57 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:57 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-483.dialup.xtra.co.nz - - [22/Apr/2009:18:53:57 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:58 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-483.dialup.xtra.co.nz - - [22/Apr/2009:18:53:58 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:58 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:58 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:58 +1200] "GET /latest.php HTTP/1.0" 200 64510 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:53:58 +1200] "GET /latest-news.rss HTTP/1.1" 200 46684 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:58 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:58 +1200] "GET /stories/business/070801/55.htm HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-497.telstra.com.au - - [22/Apr/2009:18:53:58 +1200] "GET /sport-news.rss HTTP/1.0" 200 26330 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:58 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:58 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.54.56.253 - - [22/Apr/2009:18:53:58 +1200] "GET /js/adclient.js HTTP/1.0" 200 5993 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:58 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:58 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.49.129.252 - - [22/Apr/2009:18:53:58 +1200] "GET /stories/business/071203/53.htm HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:58 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:53:58 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:53:58 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:58 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:58 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:58 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:58 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:58 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 1340 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:53:58 +1200] "GET /faq.html HTTP/1.1" 200 50789 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:59 +1200] "GET /feedback.php HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:59 +1200] "GET /latest.php HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:59 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:59 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:53:59 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:53:59 +1200] "GET /stories/business/070801/55.htm HTTP/1.0" 200 6465 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:53:59 +1200] "GET /images/favicon.ico HTTP/1.1" 200 860 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:59 +1200] "GET /gallery.php HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:59 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.49.129.252 - - [22/Apr/2009:18:53:59 +1200] "GET /news.html HTTP/1.1" 200 1340 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:59 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:59 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-646.crawl.yahoo.net - - [22/Apr/2009:18:53:59 +1200] "GET /news.html HTTP/1.1" 200 107093 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-547.dialup.xtra.co.nz - - [22/Apr/2009:18:53:59 +1200] "GET /stories/science/080325/82.htm HTTP/1.1" 200 697 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:59 +1200] "GET /adclick.php?c=JAKL HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:59 +1200] "GET /latest.php HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:53:59 +1200] "GET /news.html HTTP/1.0" 200 1856 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-471.ask.com - - [22/Apr/2009:18:53:59 +1200] "GET /news.html HTTP/1.0" 302 271 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:59 +1200] "GET /latest.php?category=business HTTP/1.1" 200 1380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:53:59 +1200] "GET /feedback.php HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:53:59 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:54:00 +1200] "GET /news.html HTTP/1.0" 200 61696 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:00 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.145.92.21 - - [22/Apr/2009:18:54:00 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:00 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:00 +1200] "GET /latest.php HTTP/1.1" 200 991 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:54:00 +1200] "GET /adclick.php?c=PBNI HTTP/1.0" 302 368 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:00 +1200] "GET /links.html HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:00 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:54:00 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 59834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:54:00 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:00 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:00 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.49.129.252 - - [22/Apr/2009:18:54:00 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 4231 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:00 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:00 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:00 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:54:00 +1200] "GET /gallery.php HTTP/1.0" 200 3021 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:00 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:00 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:00 +1200] "GET /latest.php?category=national HTTP/1.1" 200 3700 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:00 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:00 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:54:00 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:00 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:01 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.49.129.252 - - [22/Apr/2009:18:54:01 +1200] "GET /stories.php?date=2006 HTTP/1.1" 200 990 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-365.aol.com - - [22/Apr/2009:18:54:01 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:01 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:01 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-454.crawl.yahoo.net - - [22/Apr/2009:18:54:01 +1200] "GET /stories.php?date=2005 HTTP/1.0" 200 48993 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-443.jetstream.xtra.co.nz - - [22/Apr/2009:18:54:01 +1200] "GET /latest.php HTTP/1.0" 200 58492 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:01 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.49.129.252 - - [22/Apr/2009:18:54:02 +1200] "GET /latest.php HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.245.112.114 - - [22/Apr/2009:18:54:02 +1200] "GET /crossdomain.xml HTTP/1.1" 200 1369 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:02 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.crawl.yahoo.net - - [22/Apr/2009:18:54:02 +1200] "GET /stories/business/071203/53.htm HTTP/1.0" 200 6973 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:02 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-365.aol.com - - [22/Apr/2009:18:54:02 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:02 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:02 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:03 +1200] "GET /images/photos/84.jpg HTTP/1.1" 304 - "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:03 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:03 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:03 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:03 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:03 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:03 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:03 +1200] "GET /latest.php HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:03 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.245.112.114 - - [22/Apr/2009:18:54:03 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:03 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:03 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:03 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-397.aol.com - - [22/Apr/2009:18:54:03 +1200] "GET /stories.php?date=2006 HTTP/1.0" 200 6901 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:03 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:04 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:04 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:54:04 +1200] "GET /stories/world/080201/47.htm HTTP/1.0" 200 6291 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:04 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:04 +1200] "GET /stories/business/071203/53.htm HTTP/1.1" 200 2031 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:54:04 +1200] "GET /news.html HTTP/1.1" 200 54199 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:04 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:04 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:04 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:54:04 +1200] "GET /feedback.php HTTP/1.0" 200 66437 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:04 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:04 +1200] "GET /feedback.php HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:04 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:04 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:54:04 +1200] "GET /news.html HTTP/1.0" 200 6609 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:54:04 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:04 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:04 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-433.telstra.com.au - - [22/Apr/2009:18:54:04 +1200] "GET /latest.php HTTP/1.1" 200 991 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:04 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy.aol.com - - [22/Apr/2009:18:54:04 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 131200 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:05 +1200] "GET /adclick.php?c=AG3F HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:05 +1200] "GET /news.html HTTP/1.1" 200 57228 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:05 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:05 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:05 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:05 +1200] "GET /news.html HTTP/1.1" 200 3700 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:06 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:06 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:06 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:06 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-383.bellsouth.net - - [22/Apr/2009:18:54:06 +1200] "GET /stories/world/080201/47.htm HTTP/1.0" 200 2965 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:06 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:06 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:06 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:06 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:06 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:06 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy.aol.com - - [22/Apr/2009:18:54:06 +1200] "GET /stories/sport/070922/52.htm HTTP/1.1" 200 59620 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:06 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 3033 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-586.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:06 +1200] "GET /latest.php HTTP/1.0" 200 50790 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:06 +1200] "GET /latest.php?category=business HTTP/1.1" 200 2032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:06 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:06 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:06 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:07 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:54:07 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:07 +1200] "GET /business-news.rss HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:07 +1200] "GET /images/photos/534.jpg HTTP/1.1" 200 1370 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:07 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 1362 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:07 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.223.221.198 - - [22/Apr/2009:18:54:08 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6174 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:08 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:08 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:08 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:08 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:08 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:08 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:08 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:54:08 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:08 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:08 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 58476 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:08 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:08 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:08 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:08 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:08 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:08 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:08 +1200] "GET /stories/business/070201/7.htm HTTP/1.1" 200 1380 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:54:08 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 76038 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:09 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:09 +1200] "GET /latest.php?category=business HTTP/1.1" 200 4231 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" cache.optus.com.au - - [22/Apr/2009:18:54:09 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:09 +1200] "GET /adclick.php?c=10S2 HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:09 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:54:09 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:09 +1200] "GET /stories/world/070801/12.htm HTTP/1.1" 200 629 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" cache.optus.com.au - - [22/Apr/2009:18:54:09 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:54:09 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:54:09 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-725.googlebot.com - - [22/Apr/2009:18:54:09 +1200] "GET /latest.php HTTP/1.1" 200 699 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" proxy-471.ask.com - - [22/Apr/2009:18:54:09 +1200] "GET /news.html HTTP/1.0" 200 106979 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:09 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:09 +1200] "GET /images/photos/534.jpg HTTP/1.1" 200 1370 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:54:09 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-637.aol.com - - [22/Apr/2009:18:54:09 +1200] "GET /stories/sport/080420/33.htm HTTP/1.0" 200 6536 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.optus.com.au - - [22/Apr/2009:18:54:09 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:09 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:09 +1200] "GET /gallery.php HTTP/1.0" 200 51185 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:09 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 1373 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:10 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:10 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:10 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:54:10 +1200] "GET /stories/business/070301/63.htm HTTP/1.0" 200 6545 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:10 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:10 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:10 +1200] "GET /stories/science/070922/33.htm HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.32.127.27 - - [22/Apr/2009:18:54:10 +1200] "GET /news.html HTTP/1.1" 200 107093 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:10 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 990 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:10 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:10 +1200] "GET /js/adclient.js HTTP/1.0" 200 5993 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:10 +1200] "GET /latest.php HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:10 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:10 +1200] "GET /js/menu.js HTTP/1.0" 200 6377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:10 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 1362 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:10 +1200] "GET /adclick.php?c=ABTJ HTTP/1.0" 302 368 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:10 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:10 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:10 +1200] "GET /latest.php HTTP/1.0" 200 3021 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:11 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 1004 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.optus.com.au - - [22/Apr/2009:18:54:11 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:11 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1084 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /adclick.php?c=TG3A HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /adclick.php?c=AW2M HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:11 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:11 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1017 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /currency.php HTTP/1.0" 200 3687 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 1360 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-451.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:11 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:11 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1012 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:11 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1099 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:11 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:54:11 +1200] "GET /news.html HTTP/1.1" 200 57226 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:54:11 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:11 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1048 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /images/photos/5332.jpg HTTP/1.0" 200 1084 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.0" 200 1004 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:11 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /adclick.php?c=EB2Q HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /adclick.php?c=TG3A HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /adclick.php?c=2ER3 HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:11 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:11 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.0" 200 1017 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.32.127.27 - - [22/Apr/2009:18:54:11 +1200] "GET /currency.php HTTP/1.1" 200 62753 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /latest.php?category=business HTTP/1.0" 200 618 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:11 +1200] "GET /news.html HTTP/1.0" 200 4218 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-484.aol.com - - [22/Apr/2009:18:54:11 +1200] "GET /stories/business/070801/12.htm HTTP/1.0" 200 60510 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:11 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-291.dialup.xtra.co.nz - - [22/Apr/2009:18:54:12 +1200] "GET /stories/science/080325/82.htm HTTP/1.0" 200 685 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:12 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:12 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:12 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:12 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:12 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:12 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:12 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:12 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:12 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:12 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:12 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:12 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:12 +1200] "GET /news.html HTTP/1.1" 200 4230 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:12 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:12 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:12 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:12 +1200] "GET /latest.php HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:13 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.optus.com.au - - [22/Apr/2009:18:54:13 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:13 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:13 +1200] "GET /spacer.gif HTTP/1.1" 404 37 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.245.112.114 - - [22/Apr/2009:18:54:13 +1200] "GET /latest.php HTTP/1.1" 200 4232 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:13 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:13 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:13 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-328.comcast.net - - [22/Apr/2009:18:54:13 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:13 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-589.aol.com - - [22/Apr/2009:18:54:13 +1200] "GET /news.html HTTP/1.0" 200 6944 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:13 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:54:13 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:13 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.optus.com.au - - [22/Apr/2009:18:54:13 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:13 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:13 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:14 +1200] "GET /news.html HTTP/1.1" 200 2031 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:14 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:14 +1200] "GET /adclick.php?c=AG3F HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:14 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:14 +1200] "GET /stories/business/071203/53.htm HTTP/1.1" 200 1371 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:14 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 989 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:14 +1200] "GET /stories/science/070922/33.htm HTTP/1.1" 200 699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:14 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:14 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.87.247.241 - - [22/Apr/2009:18:54:14 +1200] "GET /stories/business/070801/37.htm HTTP/1.1" 200 61065 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:14 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:14 +1200] "GET /latest.php HTTP/1.1" 200 3033 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:15 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:15 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:15 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:15 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:15 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:15 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:15 +1200] "GET /stories/science/070922/33.htm HTTP/1.1" 200 4231 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:15 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:15 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:15 +1200] "GET /news.html HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:15 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:15 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:54:15 +1200] "GET /stories.php HTTP/1.0" 200 6685 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:15 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:15 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 990 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:15 +1200] "GET /stories/science/070922/33.htm HTTP/1.1" 200 699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:15 +1200] "GET /adclick.php?c=JAKL HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:15 +1200] "GET /adclick.php?c=AG3F HTTP/1.1" 302 376 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.optus.com.au - - [22/Apr/2009:18:54:16 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:16 +1200] "GET /business-news.rss HTTP/1.1" 200 4232 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:16 +1200] "GET /stories/politics/080201/41.htm HTTP/1.1" 200 989 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.32.127.27 - - [22/Apr/2009:18:54:16 +1200] "GET /latest.php HTTP/1.1" 200 64579 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:16 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:16 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-432.paradise.net.nz - - [22/Apr/2009:18:54:16 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:16 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:16 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-432.paradise.net.nz - - [22/Apr/2009:18:54:16 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:16 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.comcast.net - - [22/Apr/2009:18:54:16 +1200] "GET /news.html HTTP/1.0" 200 59616 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-435.dialup.xtra.co.nz - - [22/Apr/2009:18:54:16 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.optus.com.au - - [22/Apr/2009:18:54:16 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:54:16 +1200] "GET /stories.php?date=2005 HTTP/1.0" 200 70275 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:54:16 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:16 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.78.155.100 - - [22/Apr/2009:18:54:17 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6304 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:17 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:17 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:17 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:17 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:17 +1200] "GET /images/photos/534.jpg HTTP/1.1" 200 1370 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:18 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 1362 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:18 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1012 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:18 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:18 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:18 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:18 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:18 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1099 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:18 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:18 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1048 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-750.dsl.clear.net.nz - - [22/Apr/2009:18:54:18 +1200] "GET /gallery.php?section=business HTTP/1.0" 200 6285 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy.bellsouth.net - - [22/Apr/2009:18:54:18 +1200] "GET /news.html HTTP/1.0" 200 6775 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:18 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-521.global-gateway.net.nz - - [22/Apr/2009:18:54:18 +1200] "GET /news.html HTTP/1.1" 200 0 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:18 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:18 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:19 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:19 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:19 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:19 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:54:19 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:19 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:19 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.32.127.27 - - [22/Apr/2009:18:54:19 +1200] "GET /news.html HTTP/1.1" 200 78851 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:19 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:19 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-432.paradise.net.nz - - [22/Apr/2009:18:54:19 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:54:19 +1200] "GET /gallery.php?section=health HTTP/1.1" 200 56814 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:19 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:19 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-432.paradise.net.nz - - [22/Apr/2009:18:54:19 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:54:19 +1200] "GET /adclick.php?c=2ER3 HTTP/1.0" 302 366 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:19 +1200] "GET /news.html HTTP/1.1" 200 98257 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:19 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:20 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.optus.com.au - - [22/Apr/2009:18:54:20 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:20 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:20 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:20 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:54:20 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:20 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:20 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:20 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:20 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:20 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:20 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:20 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:54:20 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.optus.com.au - - [22/Apr/2009:18:54:21 +1200] "GET /latest.php HTTP/1.0" 200 46362 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.32.127.27 - - [22/Apr/2009:18:54:21 +1200] "GET /stories/sport/080420/33.htm HTTP/1.1" 200 76230 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:21 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:21 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:22 +1200] "GET /latest.php?category=national HTTP/1.1" 200 3700 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:54:22 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:54:22 +1200] "GET /stories/science/080325/82.htm HTTP/1.0" 200 685 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:22 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:22 +1200] "GET /links.html HTTP/1.1" 200 2726 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:22 +1200] "GET /images/photos/455.jpg HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:54:22 +1200] "GET /news.html HTTP/1.0" 200 7007 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:23 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /latest.php HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:23 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:23 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:54:23 +1200] "GET /adclick.php?c=X41R HTTP/1.0" 302 365 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy.aol.com - - [22/Apr/2009:18:54:23 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 53738 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:23 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1179 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /images/photos/824.jpg HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /images/photos/84.jpg HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:54:23 +1200] "GET /stories/weather/070801/33.htm HTTP/1.0" 200 978 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:23 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1376 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:24 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1373 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:24 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:24 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:24 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:24 +1200] "GET /images/favicon.ico HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:24 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:24 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:24 +1200] "GET /styles/ie4.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:24 +1200] "GET /styles/site.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.32.127.27 - - [22/Apr/2009:18:54:24 +1200] "GET /news.html HTTP/1.1" 200 75945 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-620.ihug.co.nz - - [22/Apr/2009:18:54:24 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy.aol.com - - [22/Apr/2009:18:54:24 +1200] "GET /stories/business/070801/55.htm HTTP/1.1" 200 50951 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-531.dialup.xtra.co.nz - - [22/Apr/2009:18:54:25 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 51952 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.41.145.69 - - [22/Apr/2009:18:54:25 +1200] "GET /latest.php HTTP/1.1" 200 51404 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:54:25 +1200] "GET /adclick.php?c=AW2M HTTP/1.0" 302 366 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:25 +1200] "GET /news.html HTTP/1.1" 200 2666 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:25 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 332 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:25 +1200] "GET /stories.php HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" www.aol.com - - [22/Apr/2009:18:54:25 +1200] "GET /latest.php HTTP/1.0" 200 6582 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:26 +1200] "GET /stories/national/080201/1.htm HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.21.27.9 - - [22/Apr/2009:18:54:26 +1200] "GET /stories/science/070922/33.htm HTTP/1.0" 200 4218 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:54:26 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 51266 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-476.ihug.co.nz - - [22/Apr/2009:18:54:26 +1200] "GET /feedback.php HTTP/1.0" 200 47184 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.32.127.27 - - [22/Apr/2009:18:54:27 +1200] "GET /latest.php HTTP/1.1" 200 74099 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:54:27 +1200] "GET /gallery.php?section=health HTTP/1.1" 200 54484 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.245.112.114 - - [22/Apr/2009:18:54:28 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:54:28 +1200] "GET /news.html HTTP/1.0" 200 6608 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:54:28 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-468.aol.com - - [22/Apr/2009:18:54:28 +1200] "GET /stories.php?date=yesterday HTTP/1.0" 200 46750 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.21.27.9 - - [22/Apr/2009:18:54:29 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 1438 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:54:29 +1200] "GET /stories/business/070801/55.htm HTTP/1.1" 200 6478 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:54:29 +1200] "GET /adclick.php?c=LME2 HTTP/1.0" 302 366 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:54:29 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.32.127.27 - - [22/Apr/2009:18:54:30 +1200] "GET /stories.php?date=2005 HTTP/1.1" 200 70352 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:54:30 +1200] "GET /stories/national/070309/19.htm HTTP/1.0" 200 3687 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-454.crawl.yahoo.net - - [22/Apr/2009:18:54:30 +1200] "GET /stories.php?date=2006 HTTP/1.0" 200 56726 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:54:30 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-648.comcast.net - - [22/Apr/2009:18:54:31 +1200] "GET /crossdomain.xml HTTP/1.0" 200 46302 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.245.112.114 - - [22/Apr/2009:18:54:31 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.bellsouth.net - - [22/Apr/2009:18:54:31 +1200] "GET /news.html HTTP/1.0" 200 7149 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.21.27.9 - - [22/Apr/2009:18:54:32 +1200] "GET /news.html HTTP/1.0" 200 1856 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:54:32 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:32 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:54:32 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-481.telstra.com.au - - [22/Apr/2009:18:54:33 +1200] "GET /stories/business/070801/55.htm HTTP/1.0" 200 51791 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.245.112.114 - - [22/Apr/2009:18:54:33 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:34 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1373 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:54:34 +1200] "GET /latest.php HTTP/1.0" 200 6582 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.32.127.27 - - [22/Apr/2009:18:54:34 +1200] "GET /stories/politics/060301/22.htm HTTP/1.1" 200 69909 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:54:34 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:54:35 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 6892 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.245.112.114 - - [22/Apr/2009:18:54:35 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:35 +1200] "GET /styles/ie4.css HTTP/1.1" 200 3387 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:35 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy.aol.com - - [22/Apr/2009:18:54:35 +1200] "GET /links.html HTTP/1.1" 200 58384 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:36 +1200] "GET /stories.php HTTP/1.1" 200 56102 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:36 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.32.127.27 - - [22/Apr/2009:18:54:36 +1200] "GET /stories/politics/080201/41.htm HTTP/1.1" 200 73719 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:36 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:36 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:36 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:36 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:36 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-634.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:36 +1200] "GET /stories/sport/070922/52.htm HTTP/1.0" 200 60747 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.47.82.88 - - [22/Apr/2009:18:54:36 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:36 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:36 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:36 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:37 +1200] "GET /gallery.php HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:54:37 +1200] "GET /adclick.php?c=ABTJ HTTP/1.0" 302 368 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:54:37 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:37 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:37 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-314.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:37 +1200] "GET /stories/sport/080223/15.htm HTTP/1.0" 200 7212 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:54:37 +1200] "GET /latest.php HTTP/1.0" 200 3021 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:37 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:37 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:54:37 +1200] "GET /stories/world/080201/47.htm HTTP/1.0" 200 52246 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:54:37 +1200] "GET /latest.php?category=national HTTP/1.0" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:37 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:37 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 1004 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:54:38 +1200] "GET /js/adclient.js HTTP/1.0" 200 5993 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:38 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:38 +1200] "GET /stories.php HTTP/1.1" 200 50632 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:54:38 +1200] "GET /js/menu.js HTTP/1.0" 200 6377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.aol.com - - [22/Apr/2009:18:54:38 +1200] "GET /adclick.php?c=EB2Q HTTP/1.0" 301 324 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:54:38 +1200] "GET /adclick.php?c=ABTJ HTTP/1.0" 302 368 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.251.30.23 - - [22/Apr/2009:18:54:38 +1200] "GET /stories/business/070301/63.htm HTTP/1.1" 200 54721 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:38 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:54:38 +1200] "GET /latest.php HTTP/1.0" 200 3021 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:38 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:38 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:38 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:38 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:38 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:38 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:54:38 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:38 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:38 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:38 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:39 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:39 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:39 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:39 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.32.127.27 - - [22/Apr/2009:18:54:39 +1200] "GET /gallery.php HTTP/1.1" 200 73910 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy.aol.com - - [22/Apr/2009:18:54:39 +1200] "GET /faq.html HTTP/1.1" 200 32800 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:54:39 +1200] "GET /adclick.php?c=TG3A HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:54:39 +1200] "GET /adclick.php?c=AW2M HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:39 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:54:39 +1200] "GET /currency.php HTTP/1.0" 200 3687 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:39 +1200] "GET /news.html HTTP/1.1" 200 3700 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:54:39 +1200] "GET /stories.php?date=yesterday HTTP/1.0" 200 2019 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:39 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 1340 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:39 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:54:39 +1200] "GET /stories/politics/060301/22.htm HTTP/1.0" 200 6509 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:39 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:39 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:39 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:39 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:39 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:39 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.245.112.114 - - [22/Apr/2009:18:54:39 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1179 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:39 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:39 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:40 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:40 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-521.global-gateway.net.nz - - [22/Apr/2009:18:54:40 +1200] "GET /news.html HTTP/1.1" 200 32800 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:54:40 +1200] "GET /adclick.php?c=EB2Q HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:54:40 +1200] "GET /adclick.php?c=TG3A HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:54:40 +1200] "GET /adclick.php?c=2ER3 HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:54:40 +1200] "GET /news.html HTTP/1.0" 200 1856 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:54:40 +1200] "GET /news.html HTTP/1.0" 200 4218 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:54:40 +1200] "GET /latest.php?category=business HTTP/1.0" 200 618 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:54:40 +1200] "GET /stories/science/080325/82.htm HTTP/1.0" 200 685 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.aol.com - - [22/Apr/2009:18:54:40 +1200] "GET /stories/science/080325/82.htm HTTP/1.0" 200 65051 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:40 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:40 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:40 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 1405 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:40 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:40 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:40 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:40 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:40 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:40 +1200] "GET /currency.php HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:40 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:40 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:54:40 +1200] "GET /styles/ie4.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:54:40 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 1438 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:40 +1200] "GET /latest.php HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:40 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:41 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:54:41 +1200] "GET /robots.txt HTTP/1.0" 404 15 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:41 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:41 +1200] "GET /latest-news.rss HTTP/1.1" 200 630 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:41 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:41 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 204 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.245.112.114 - - [22/Apr/2009:18:54:41 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:41 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:41 +1200] "GET /currency.php HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:41 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:41 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:41 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1012 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:41 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:41 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:41 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1099 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:41 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1048 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:41 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-418.optus.com.au - - [22/Apr/2009:18:54:41 +1200] "GET /stories/entertainment/070825/233.htm HTTP/1.0" 200 61398 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.47.82.88 - - [22/Apr/2009:18:54:41 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:41 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.47.82.88 - - [22/Apr/2009:18:54:41 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:41 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:42 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:42 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:42 +1200] "GET /currency.php HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:42 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 1372 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:42 +1200] "GET /news.html HTTP/1.1" 200 1380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:42 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:54:42 +1200] "GET /faq.html HTTP/1.1" 200 50789 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:42 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 1004 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:42 +1200] "GET /news.html HTTP/1.1" 200 4231 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:42 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:42 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:42 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:42 +1200] "GET /news.html HTTP/1.1" 200 4231 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:42 +1200] "GET /latest.php?category=business HTTP/1.1" 200 630 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /crossdomain.xml HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1084 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.47.82.88 - - [22/Apr/2009:18:54:43 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-531.dialup.xtra.co.nz - - [22/Apr/2009:18:54:43 +1200] "GET /news.html HTTP/1.1" 200 151488 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1017 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.32.127.27 - - [22/Apr/2009:18:54:43 +1200] "GET /news.html HTTP/1.1" 200 74181 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-333.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /news.html HTTP/1.0" 200 6609 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:43 +1200] "GET /styles/ie4.css HTTP/1.1" 200 3387 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.paradise.net.nz - - [22/Apr/2009:18:54:44 +1200] "GET /crossdomain.xml HTTP/1.1" 200 62845 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.paradise.net.nz - - [22/Apr/2009:18:54:44 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.paradise.net.nz - - [22/Apr/2009:18:54:44 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.paradise.net.nz - - [22/Apr/2009:18:54:44 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:45 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:45 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 1405 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.dialup.xtra.co.nz - - [22/Apr/2009:18:54:45 +1200] "GET /stories/politics/080201/41.htm HTTP/1.1" 200 48851 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.paradise.net.nz - - [22/Apr/2009:18:54:45 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:45 +1200] "GET /stories/science/080325/82.htm HTTP/1.1" 200 697 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-364.ihug.co.nz - - [22/Apr/2009:18:54:45 +1200] "GET /news.html HTTP/1.0" 200 7114 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:45 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 204 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:45 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.paradise.net.nz - - [22/Apr/2009:18:54:45 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:45 +1200] "GET /latest.php?category=business HTTP/1.1" 200 630 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:45 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1084 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:45 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1017 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.32.127.27 - - [22/Apr/2009:18:54:46 +1200] "GET /latest.php?category=business HTTP/1.1" 200 115828 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-690.optus.com.au - - [22/Apr/2009:18:54:46 +1200] "GET /stories.php HTTP/1.0" 200 61093 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.169.133.249 - - [22/Apr/2009:18:54:46 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:46 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-274.optus.com.au - - [22/Apr/2009:18:54:46 +1200] "GET /stories/sport/070922/52.htm HTTP/1.0" 200 63667 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.169.133.249 - - [22/Apr/2009:18:54:46 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:46 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:46 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:54:47 +1200] "GET /latest.php HTTP/1.1" 200 22372 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:54:47 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:47 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:47 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:47 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-646.crawl.yahoo.net - - [22/Apr/2009:18:54:47 +1200] "GET /adclick.php?c=AG3F HTTP/1.1" 301 336 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:47 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:47 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:54:47 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-333.aol.com - - [22/Apr/2009:18:54:47 +1200] "GET /news.html HTTP/1.0" 200 6752 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:47 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:54:47 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:54:47 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.169.133.249 - - [22/Apr/2009:18:54:48 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:48 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.169.133.249 - - [22/Apr/2009:18:54:48 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:48 +1200] "GET /styles/ie4.css HTTP/1.1" 200 3387 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.32.127.27 - - [22/Apr/2009:18:54:48 +1200] "GET /stories/business/070801/12.htm HTTP/1.1" 200 120794 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:48 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 62529 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:48 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:48 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:49 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:49 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 332 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:49 +1200] "GET /news.html HTTP/1.1" 200 2666 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:49 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 979 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:49 +1200] "GET /stories/national/080201/1.htm HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:54:49 +1200] "GET /stories.php HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:49 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 445 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-397.aol.com - - [22/Apr/2009:18:54:49 +1200] "GET /stories.php HTTP/1.1" 200 6677 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:49 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:54:49 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-689.telstra.com.au - - [22/Apr/2009:18:54:49 +1200] "GET /crossdomain.xml HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:50 +1200] "GET /news.html HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:50 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:54:50 +1200] "GET /stories.php HTTP/1.0" 200 45869 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-501.googlebot.com - - [22/Apr/2009:18:54:50 +1200] "GET /stories/politics/060301/22.htm HTTP/1.0" 200 7044 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:50 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:50 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:50 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.39.35.118 - - [22/Apr/2009:18:54:50 +1200] "GET /stories/business/070201/7.htm HTTP/1.1" 200 6695 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:54:51 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 32800 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.32.127.27 - - [22/Apr/2009:18:54:51 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 68977 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.240.42.25 - - [22/Apr/2009:18:54:51 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:51 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1179 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:51 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:51 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:51 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 1405 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:51 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bitstream.orcon.net.nz - - [22/Apr/2009:18:54:51 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 204 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:51 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:51 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:51 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:51 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:51 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:51 +1200] "GET /images/photos/8834.jpg HTTP/1.1" 200 1642 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-600.comcast.net - - [22/Apr/2009:18:54:51 +1200] "GET /news.html HTTP/1.0" 200 55807 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-276.aol.com - - [22/Apr/2009:18:54:51 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:51 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:52 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:52 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:52 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:52 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:52 +1200] "GET /gallery.php?section=business HTTP/1.1" 200 60724 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:52 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:52 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:52 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:52 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:52 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-333.aol.com - - [22/Apr/2009:18:54:52 +1200] "GET /news.html HTTP/1.0" 200 6682 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:54:52 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 61292 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:52 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:53 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 3033 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:53 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:53 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:53 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:53 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:53 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:53 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:53 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:53 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:53 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:53 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:53 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:53 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:54 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:54 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 989 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:54:54 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 62527 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:54 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 156973 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:54 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:54 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:54 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 1610 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:54 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1373 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:54 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:54 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-551.ask.com - - [22/Apr/2009:18:54:55 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-564.aol.com - - [22/Apr/2009:18:54:55 +1200] "GET /news.html HTTP/1.1" 200 107073 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.240.42.25 - - [22/Apr/2009:18:54:55 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:56 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.32.127.27 - - [22/Apr/2009:18:54:56 +1200] "GET /stories.php?date=2006 HTTP/1.1" 200 82859 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.147.202.14 - - [22/Apr/2009:18:54:56 +1200] "GET /adclick.php?c=10S2 HTTP/1.1" 301 336 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.240.42.25 - - [22/Apr/2009:18:54:56 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 4230 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:56 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 989 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:56 +1200] "GET /stories/entertainment/070825/233.htm HTTP/1.1" 200 3698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:54:56 +1200] "GET /adclick.php?c=EB2Q HTTP/1.0" 301 317 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-739.dialup.xtra.co.nz - - [22/Apr/2009:18:54:56 +1200] "GET /news.html HTTP/1.0" 200 54569 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:57 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /news.html HTTP/1.1" 200 49860 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:54:57 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 61292 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:57 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-452.aol.com - - [22/Apr/2009:18:54:57 +1200] "GET /news.html HTTP/1.0" 200 1574 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.crawl.yahoo.net - - [22/Apr/2009:18:54:57 +1200] "GET /latest.php?category=business HTTP/1.0" 200 7031 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /stories/business/070801/55.htm HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.147.202.14 - - [22/Apr/2009:18:54:57 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 56113 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:57 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 990 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-290.optus.com.au - - [22/Apr/2009:18:54:57 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:57 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:54:58 +1200] "GET /stories.php?date=2006 HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.240.42.25 - - [22/Apr/2009:18:54:58 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /stories/national/080201/1.htm HTTP/1.0" 200 44847 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:54:58 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:54:58 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.240.42.25 - - [22/Apr/2009:18:54:58 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 4230 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:58 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:54:58 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:54:58 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:54:58 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:54:58 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-514.optus.com.au - - [22/Apr/2009:18:54:59 +1200] "GET /latest.php HTTP/1.0" 200 44918 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy.aol.com - - [22/Apr/2009:18:54:59 +1200] "GET /faq.html HTTP/1.1" 200 58024 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:54:59 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:54:59 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.87.247.241 - - [22/Apr/2009:18:54:59 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6304 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.240.42.25 - - [22/Apr/2009:18:54:59 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:54:59 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 989 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:54:59 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-600.comcast.net - - [22/Apr/2009:18:54:59 +1200] "GET /news.html HTTP/1.0" 200 106959 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:00 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:00 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:00 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:00 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:00 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:55:00 +1200] "GET /stories.php?date=2005 HTTP/1.0" 200 70275 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:00 +1200] "GET /gallery.php HTTP/1.1" 200 3033 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:00 +1200] "GET /stories/business/071203/53.htm HTTP/1.1" 200 69201 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:00 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.55.104.165 - - [22/Apr/2009:18:55:01 +1200] "GET /feedback.php HTTP/1.1" 200 95394 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:01 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-335.bellsouth.net - - [22/Apr/2009:18:55:01 +1200] "GET /business-news.rss HTTP/1.0" 200 46440 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:01 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.240.42.25 - - [22/Apr/2009:18:55:01 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 989 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.93.44.189 - - [22/Apr/2009:18:55:01 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 60252 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:01 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:01 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:01 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:02 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:02 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:02 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:02 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:02 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 445 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:02 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:02 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:02 +1200] "GET /adclick.php?c=JAKL HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:02 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:02 +1200] "GET /links.html HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:02 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.32.127.27 - - [22/Apr/2009:18:55:02 +1200] "GET /crossdomain.xml HTTP/1.1" 200 53423 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-648.comcast.net - - [22/Apr/2009:18:55:02 +1200] "GET /crossdomain.xml HTTP/1.0" 200 6944 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:02 +1200] "GET /latest.php?category=national HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:02 +1200] "GET /news.html HTTP/1.1" 200 1380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:02 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:02 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:03 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.dialup.xtra.co.nz - - [22/Apr/2009:18:55:03 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 51625 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.78.155.100 - - [22/Apr/2009:18:55:03 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6304 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.dialup.xtra.co.nz - - [22/Apr/2009:18:55:03 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:03 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:03 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:03 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:03 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:03 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:03 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.79.187.149 - - [22/Apr/2009:18:55:03 +1200] "GET /stories/science/070922/33.htm HTTP/1.0" 200 177335 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:03 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:03 +1200] "GET /adclick.php?c=AG3F HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:03 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.dialup.xtra.co.nz - - [22/Apr/2009:18:55:03 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:03 +1200] "GET /latest.php HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:03 +1200] "GET /feedback.php HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:03 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:03 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:03 +1200] "GET /news.html HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:03 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:03 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:55:03 +1200] "GET /news.html HTTP/1.1" 200 7020 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:04 +1200] "GET /latest.php HTTP/1.1" 200 991 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:04 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:55:04 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 47253 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:04 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:04 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:04 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:04 +1200] "GET /adclick.php?c=JAKL HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-633.global-gateway.net.nz - - [22/Apr/2009:18:55:04 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:04 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.32.127.27 - - [22/Apr/2009:18:55:04 +1200] "GET /stories/politics/080201/41.htm HTTP/1.1" 200 57615 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:04 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:04 +1200] "GET /latest.php?category=national HTTP/1.1" 200 3700 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:04 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:04 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 1378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:04 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:04 +1200] "GET /latest.php HTTP/1.1" 200 4232 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:04 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:05 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /styles/site.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:05 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /business-news.rss HTTP/1.1" 200 57977 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:55:05 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 55184 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:55:05 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 61298 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:05 +1200] "GET /links.html HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /latest.php HTTP/1.1" 200 3033 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1179 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1373 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:05 +1200] "GET /latest.php?category=weather HTTP/1.1" 200 1370 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:05 +1200] "GET /latest.php?category=national HTTP/1.1" 200 3700 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:06 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:06 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:06 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-267.jetstream.xtra.co.nz - - [22/Apr/2009:18:55:06 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:06 +1200] "GET /stories/science/080325/82.htm HTTP/1.1" 200 697 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:06 +1200] "GET /latest.php HTTP/1.1" 200 4232 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:06 +1200] "GET /latest.php?category=national HTTP/1.1" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:06 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:06 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:06 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:06 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:06 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:06 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:06 +1200] "GET /styles/firefox.css HTTP/1.1" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:06 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:06 +1200] "GET /styles/site.css HTTP/1.1" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:06 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:06 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:06 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:07 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-701.aol.com - - [22/Apr/2009:18:55:07 +1200] "GET /stories/science/080325/82.htm HTTP/1.0" 200 58568 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:07 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:07 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.85.238.10 - - [22/Apr/2009:18:55:07 +1200] "GET /spacer.gif HTTP/1.1" 404 18869 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:07 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:07 +1200] "GET /news.html HTTP/1.1" 200 107073 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:07 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.55.234.11 - - [22/Apr/2009:18:55:07 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 2073 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:07 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:07 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:07 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:07 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:07 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:07 +1200] "GET /styles/ie4.css HTTP/1.1" 200 3387 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:07 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1179 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:08 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.crawl.yahoo.net - - [22/Apr/2009:18:55:08 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:08 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:08 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:08 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.198.254.100 - - [22/Apr/2009:18:55:08 +1200] "GET /images/photos/824.jpg HTTP/1.0" 304 - "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:08 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:08 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:08 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:09 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:55:09 +1200] "GET /stories/world/080201/47.htm HTTP/1.0" 200 47740 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:09 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1373 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:09 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:09 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:09 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:09 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:09 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:10 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 1405 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.32.127.27 - - [22/Apr/2009:18:55:10 +1200] "GET /stories/business/070301/63.htm HTTP/1.1" 200 57769 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:55:10 +1200] "GET /news.html HTTP/1.0" 200 74097 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.79.187.149 - - [22/Apr/2009:18:55:10 +1200] "GET /news.html HTTP/1.0" 200 177860 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:10 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:10 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 204 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:10 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-255.bellsouth.net - - [22/Apr/2009:18:55:10 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:10 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:10 +1200] "GET /news.html HTTP/1.1" 200 4232 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:10 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:10 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 320 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.55.234.11 - - [22/Apr/2009:18:55:10 +1200] "GET /news.html HTTP/1.1" 200 107075 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:10 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:55:11 +1200] "GET /adclick.php?c=GD52 HTTP/1.0" 301 324 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:11 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:11 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.32.127.27 - - [22/Apr/2009:18:55:11 +1200] "GET /faq.html HTTP/1.1" 200 58026 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-281.global-gateway.net.nz - - [22/Apr/2009:18:55:11 +1200] "GET /currency.php HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:12 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 200 49714 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:12 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-482.optus.com.au - - [22/Apr/2009:18:55:12 +1200] "GET /stories/weather/070801/33.htm HTTP/1.0" 200 56135 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:13 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:13 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:13 +1200] "GET /news.html HTTP/1.0" 200 51404 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:55:13 +1200] "GET /adclick.php?c=3ERO HTTP/1.0" 302 367 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:13 +1200] "GET /adclick.php?c=10S2 HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:13 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:13 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:13 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:55:13 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 686 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:55:14 +1200] "GET /links.html HTTP/1.0" 200 46744 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:14 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:14 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:55:14 +1200] "GET /stories/national/070309/19.htm HTTP/1.0" 200 54316 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:14 +1200] "GET /latest.php HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:14 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:14 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.32.127.27 - - [22/Apr/2009:18:55:14 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 59834 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:14 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:14 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:14 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:55:14 +1200] "GET /adclick.php?c=2ER3 HTTP/1.0" 302 367 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:14 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:15 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:15 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:55:15 +1200] "GET /news.html HTTP/1.0" 200 618 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:15 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:15 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:15 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-736.paradise.net.nz - - [22/Apr/2009:18:55:15 +1200] "GET /stories/sport/080420/33.htm HTTP/1.0" 200 6536 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:15 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:15 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:55:15 +1200] "GET /adclick.php?c=X3HG HTTP/1.0" 302 366 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:15 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.78.155.100 - - [22/Apr/2009:18:55:16 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6304 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:16 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:55:16 +1200] "GET /stories/sport/080314/24.htm HTTP/1.0" 200 4218 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:16 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-544.paradise.net.nz - - [22/Apr/2009:18:55:16 +1200] "GET /stories.php?date=2005 HTTP/1.0" 200 45594 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:16 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:16 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:16 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:17 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:17 +1200] "GET /news.html HTTP/1.1" 302 283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:17 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:17 +1200] "GET /stories/business/070301/63.htm HTTP/1.1" 200 47528 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:17 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-454.crawl.yahoo.net - - [22/Apr/2009:18:55:17 +1200] "GET /news.html HTTP/1.0" 200 60074 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:17 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:17 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:17 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:17 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:17 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:17 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:17 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:17 +1200] "GET /stories/business/070801/55.htm HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:55:17 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 1438 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:17 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-394.bitstream.orcon.net.nz - - [22/Apr/2009:18:55:17 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 301 336 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:17 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 21951 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:17 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:17 +1200] "GET /js/panel.js HTTP/1.1" 200 949 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:18 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:55:18 +1200] "GET /adclick.php?c=JAKL HTTP/1.0" 302 366 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:18 +1200] "GET /js/menu.js HTTP/1.1" 200 6059 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-496.paradise.net.nz - - [22/Apr/2009:18:55:18 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 60057 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-502.crawl.yahoo.net - - [22/Apr/2009:18:55:18 +1200] "GET /stories/national/080201/1.htm HTTP/1.0" 200 59027 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.32.127.27 - - [22/Apr/2009:18:55:18 +1200] "GET /stories/business/070801/37.htm HTTP/1.1" 200 59627 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:55:18 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 3687 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:55:18 +1200] "GET /stories.php?date=2007 HTTP/1.0" 200 47005 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.50.245.82 - - [22/Apr/2009:18:55:19 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:19 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:19 +1200] "GET /latest.php HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:19 +1200] "GET /news.html HTTP/1.1" 200 2725 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:19 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-394.bitstream.orcon.net.nz - - [22/Apr/2009:18:55:19 +1200] "GET /links.html HTTP/1.1" 200 58988 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.50.245.82 - - [22/Apr/2009:18:55:19 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 445 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.79.187.149 - - [22/Apr/2009:18:55:19 +1200] "GET /stories/business/070801/12.htm HTTP/1.0" 200 177225 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.50.245.82 - - [22/Apr/2009:18:55:20 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:20 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:20 +1200] "GET /adclick.php?c=AG3F HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:20 +1200] "GET /feedback.php HTTP/1.1" 200 4232 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:20 +1200] "GET /news.html HTTP/1.1" 200 107073 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:20 +1200] "GET /latest.php HTTP/1.1" 200 991 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:20 +1200] "GET /news.html HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:20 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 49032 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:20 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:20 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.50.245.82 - - [22/Apr/2009:18:55:20 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.50.245.82 - - [22/Apr/2009:18:55:20 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:20 +1200] "GET /latest.php?category=national HTTP/1.1" 200 48184 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-361.global-gateway.net.nz - - [22/Apr/2009:18:55:21 +1200] "GET /faq.html HTTP/1.0" 200 6323 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.aol.com - - [22/Apr/2009:18:55:21 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:21 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:21 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:21 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:21 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:21 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:21 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:21 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:21 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:21 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:21 +1200] "GET /stories/business/071203/53.htm HTTP/1.1" 200 59623 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-617.global-gateway.net.nz - - [22/Apr/2009:18:55:22 +1200] "GET /stories.php HTTP/1.0" 200 68766 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.41.145.69 - - [22/Apr/2009:18:55:22 +1200] "GET /stories/national/080201/1.htm HTTP/1.1" 200 136345 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-401.telstra.com.au - - [22/Apr/2009:18:55:22 +1200] "GET /stories.php HTTP/1.0" 200 57849 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.aol.com - - [22/Apr/2009:18:55:22 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:22 +1200] "GET /latest-news.rss HTTP/1.0" 200 50092 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:22 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:22 +1200] "GET /latest.php?category=national HTTP/1.0" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:22 +1200] "GET /gallery.php HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:22 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:22 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:22 +1200] "GET /js/adclient.js HTTP/1.0" 200 5993 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:22 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:22 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:22 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:22 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:22 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:22 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:22 +1200] "GET /js/menu.js HTTP/1.0" 200 6377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:22 +1200] "GET /adclick.php?c=GD52 HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:23 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:23 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:23 +1200] "GET /stories/business/070801/55.htm HTTP/1.0" 200 3020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:23 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:23 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:23 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:23 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:23 +1200] "GET /adclick.php?c=JAKL HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:23 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:23 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:23 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:55:23 +1200] "GET /feedback.php HTTP/1.0" 200 53987 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:23 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:55:23 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:23 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:23 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:23 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:23 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:55:24 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:24 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 979 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:24 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:55:24 +1200] "GET /adclick.php?c=2ER3 HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:55:24 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:55:24 +1200] "GET /stories/sport/080420/33.htm HTTP/1.1" 200 51627 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-742.crawl.yahoo.net - - [22/Apr/2009:18:55:24 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 445 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:24 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:24 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:24 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:24 +1200] "GET /news.html HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:55:24 +1200] "GET /gallery.php?section=health HTTP/1.0" 200 58566 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" crawler.ask.com - - [22/Apr/2009:18:55:25 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:25 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:25 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:25 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:25 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:25 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:55:25 +1200] "GET /gallery.php?section=sport HTTP/1.0" 200 3020 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.aol.com - - [22/Apr/2009:18:55:25 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:25 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:25 +1200] "GET /news.html HTTP/1.1" 200 4232 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:25 +1200] "GET /adclick.php?c=GD52 HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:25 +1200] "GET /adclick.php?c=3ERO HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:25 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1341 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:25 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:25 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:25 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:25 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:25 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:25 +1200] "GET /latest.php HTTP/1.0" 200 3687 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:25 +1200] "GET /stories/science/070922/33.htm HTTP/1.0" 200 2019 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:26 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:26 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:26 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:26 +1200] "GET /latest.php HTTP/1.1" 200 4232 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:55:26 +1200] "GET /stories/sport/080420/33.htm HTTP/1.0" 200 49726 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:26 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.79.187.149 - - [22/Apr/2009:18:55:26 +1200] "GET /stories.php?date=2007 HTTP/1.0" 200 172558 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:26 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:26 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:26 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:26 +1200] "GET /adclick.php?c=AW2M HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:26 +1200] "GET /adclick.php?c=LME2 HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-340.aol.com - - [22/Apr/2009:18:55:26 +1200] "GET /stories/business/070801/12.htm HTTP/1.0" 200 55508 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:26 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:26 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy.aol.com - - [22/Apr/2009:18:55:26 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 200 49716 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:26 +1200] "GET /feedback.php HTTP/1.0" 200 4219 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:26 +1200] "GET /adclick.php?c=AG3F HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:26 +1200] "GET /images/photos/534.jpg HTTP/1.1" 200 1370 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:26 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:26 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 545 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:26 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 561 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:27 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:27 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:27 +1200] "GET /latest.php HTTP/1.0" 200 979 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:27 +1200] "GET /latest.php?category=business HTTP/1.1" 200 1380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:27 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 445 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:27 +1200] "GET /news.html HTTP/1.0" 200 686 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:27 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:27 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 1362 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:27 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:27 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:27 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:27 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:27 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:27 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:27 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:27 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:27 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:27 +1200] "GET /stories/national/080201/1.htm HTTP/1.1" 200 1338 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:27 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1017 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:27 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:27 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:27 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:27 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1084 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:28 +1200] "GET /adclick.php?c=JAKL HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:28 +1200] "GET /feedback.php HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:28 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:28 +1200] "GET /latest.php HTTP/1.1" 200 991 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:28 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:28 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 1610 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:28 +1200] "GET /links.html HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:28 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:28 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 1004 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:28 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:28 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.196.179.98 - - [22/Apr/2009:18:55:28 +1200] "GET /news.html HTTP/1.0" 200 106957 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:28 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:55:28 +1200] "GET /adclick.php?c=NT4P HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.32.127.27 - - [22/Apr/2009:18:55:28 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 58714 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:29 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/photos/8834.jpg HTTP/1.1" 200 1642 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:29 +1200] "GET /news.html HTTP/1.1" 200 4230 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:29 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 376 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:55:29 +1200] "GET /stories.php?date=2007 HTTP/1.0" 200 52848 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/photos/534.jpg HTTP/1.1" 200 1370 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 1362 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:29 +1200] "GET /latest.php?category=business HTTP/1.1" 200 66883 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:29 +1200] "GET /news.html HTTP/1.1" 200 3700 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:29 +1200] "GET /latest.php HTTP/1.0" 200 52591 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.googlebot.com - - [22/Apr/2009:18:55:29 +1200] "GET /stories/politics/060301/22.htm HTTP/1.1" 200 48435 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.aol.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1031 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.196.179.98 - - [22/Apr/2009:18:55:29 +1200] "GET /news.html HTTP/1.0" 200 4219 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" crawler.ask.com - - [22/Apr/2009:18:55:29 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 989 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/photos/34.jpg HTTP/1.1" 200 398 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.ask.com - - [22/Apr/2009:18:55:29 +1200] "GET /latest.php HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:29 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 890 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:30 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:55:30 +1200] "GET /latest.php?category=national HTTP/1.1" 200 48184 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:30 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-259.dialup.xtra.co.nz - - [22/Apr/2009:18:55:30 +1200] "GET /latest.php HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:30 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 1004 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:30 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:30 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1084 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:55:30 +1200] "GET /news.html HTTP/1.1" 200 82000 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:30 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1017 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:30 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:30 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:30 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1179 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-454.crawl.yahoo.net - - [22/Apr/2009:18:55:30 +1200] "GET /stories/politics/080201/41.htm HTTP/1.0" 200 60018 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:30 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.32.127.27 - - [22/Apr/2009:18:55:30 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 53738 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.aol.com - - [22/Apr/2009:18:55:30 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1373 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:30 +1200] "GET /crossdomain.xml HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:30 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1350 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-636.ihug.co.nz - - [22/Apr/2009:18:55:30 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:55:30 +1200] "GET /stories/world/070801/12.htm HTTP/1.1" 200 60069 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:55:30 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:30 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 1352 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.aol.com - - [22/Apr/2009:18:55:31 +1200] "GET /adclick.php?c=H34K HTTP/1.0" 301 324 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:55:31 +1200] "GET /adclick.php?c=X3HG HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy.aol.com - - [22/Apr/2009:18:55:31 +1200] "GET /links.html HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.bitstream.orcon.net.nz - - [22/Apr/2009:18:55:32 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:55:32 +1200] "GET /currency.php HTTP/1.0" 200 686 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" www.bitstream.orcon.net.nz - - [22/Apr/2009:18:55:32 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:32 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:32 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:32 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:33 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:33 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:33 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.aol.com - - [22/Apr/2009:18:55:33 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:33 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:33 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:33 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:33 +1200] "GET /latest.php?category=national HTTP/1.1" 200 3700 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:55:34 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.0" 200 52455 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy.paradise.net.nz - - [22/Apr/2009:18:55:34 +1200] "GET /stories/sport/080314/24.htm HTTP/1.0" 200 6850 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:34 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-514.optus.com.au - - [22/Apr/2009:18:55:34 +1200] "GET /gallery.php?section=health HTTP/1.0" 200 61685 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:34 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:34 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.bitstream.orcon.net.nz - - [22/Apr/2009:18:55:34 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.bitstream.orcon.net.nz - - [22/Apr/2009:18:55:34 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:34 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-290.optus.com.au - - [22/Apr/2009:18:55:34 +1200] "GET /latest.php?category=sport HTTP/1.0" 200 6171 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:35 +1200] "GET /latest.php HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:35 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 47418 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.79.187.149 - - [22/Apr/2009:18:55:35 +1200] "GET /stories/science/080325/82.htm HTTP/1.0" 200 178661 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:55:35 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 48381 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.ask.com - - [22/Apr/2009:18:55:35 +1200] "GET /adclick.php?c=3ERO HTTP/1.0" 301 324 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:35 +1200] "GET /js/adclient.js HTTP/1.0" 200 5993 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:36 +1200] "GET /js/menu.js HTTP/1.0" 200 6377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:36 +1200] "GET /news.html HTTP/1.0" 200 51402 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:36 +1200] "GET /adclick.php?c=PBNI HTTP/1.0" 302 368 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:36 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.0" 200 3021 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:36 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:36 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:36 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:36 +1200] "GET /adclick.php?c=PBNI HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:36 +1200] "GET /adclick.php?c=GD52 HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:37 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:37 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 1360 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:37 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:37 +1200] "GET /latest.php HTTP/1.0" 200 3687 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:37 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.googlebot.com - - [22/Apr/2009:18:55:37 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 56252 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:37 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:55:37 +1200] "GET /stories/national/070309/19.htm HTTP/1.0" 200 59653 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:37 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:37 +1200] "GET /adclick.php?c=LME2 HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:37 +1200] "GET /adclick.php?c=AW2M HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:37 +1200] "GET /adclick.php?c=X41R HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:37 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:37 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.82.108.146 - - [22/Apr/2009:18:55:37 +1200] "GET /latest.php?category=national HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-434.optus.com.au - - [22/Apr/2009:18:55:37 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:37 +1200] "GET /latest.php HTTP/1.0" 200 979 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:37 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:37 +1200] "GET /feedback.php HTTP/1.0" 200 4219 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-478.dsl.clear.net.nz - - [22/Apr/2009:18:55:37 +1200] "GET /latest.php HTTP/1.0" 200 686 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-434.optus.com.au - - [22/Apr/2009:18:55:38 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:55:38 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:38 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.82.108.146 - - [22/Apr/2009:18:55:38 +1200] "GET /stories/business/070801/37.htm HTTP/1.1" 200 61063 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:55:38 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-648.comcast.net - - [22/Apr/2009:18:55:38 +1200] "GET /links.html HTTP/1.0" 200 6864 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.82.108.146 - - [22/Apr/2009:18:55:38 +1200] "GET /styles/site.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.32.127.27 - - [22/Apr/2009:18:55:38 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 62845 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:55:39 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:39 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:39 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:55:39 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:55:39 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:39 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.82.108.146 - - [22/Apr/2009:18:55:39 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:40 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:40 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.32.127.27 - - [22/Apr/2009:18:55:40 +1200] "GET /stories/sport/080314/24.htm HTTP/1.1" 200 45596 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:55:40 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-397.aol.com - - [22/Apr/2009:18:55:40 +1200] "GET /latest.php?category=national HTTP/1.0" 200 6608 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:55:41 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:55:41 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:41 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:41 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:41 +1200] "GET /stories/weather/070801/33.htm HTTP/1.1" 200 990 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:41 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.82.108.146 - - [22/Apr/2009:18:55:41 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:41 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-692.aol.com - - [22/Apr/2009:18:55:41 +1200] "GET /feedback.php HTTP/1.0" 200 59066 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:42 +1200] "GET /styles/ie4.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.55.232.23 - - [22/Apr/2009:18:55:42 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 95328 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:42 +1200] "GET /styles/site.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.79.187.149 - - [22/Apr/2009:18:55:42 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.0" 200 179138 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.dialup.xtra.co.nz - - [22/Apr/2009:18:55:42 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:42 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:43 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:43 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:55:43 +1200] "GET /stories.php?date=2005 HTTP/1.1" 200 69531 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:43 +1200] "GET /stories/business/071203/53.htm HTTP/1.1" 200 52193 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-724.aol.com - - [22/Apr/2009:18:55:44 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.234.145.173 - - [22/Apr/2009:18:55:44 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:55:45 +1200] "GET /stories/national/080201/1.htm HTTP/1.1" 200 136345 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.aol.com - - [22/Apr/2009:18:55:45 +1200] "GET /stories/science/080325/82.htm HTTP/1.0" 200 6775 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-724.aol.com - - [22/Apr/2009:18:55:45 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.234.145.173 - - [22/Apr/2009:18:55:46 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-391.ask.com - - [22/Apr/2009:18:55:46 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 49319 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy.paradise.net.nz - - [22/Apr/2009:18:55:47 +1200] "GET /stories/sport/070922/52.htm HTTP/1.0" 200 41687 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.79.187.149 - - [22/Apr/2009:18:55:48 +1200] "GET /stories/world/070801/12.htm HTTP/1.0" 200 175604 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.telstra.com.au - - [22/Apr/2009:18:55:48 +1200] "GET /stories.php HTTP/1.1" 200 92731 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:48 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:48 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-751.bellsouth.net - - [22/Apr/2009:18:55:49 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-751.bellsouth.net - - [22/Apr/2009:18:55:49 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:55:49 +1200] "GET /latest.php?category=sport HTTP/1.0" 200 49520 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:50 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:50 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-751.bellsouth.net - - [22/Apr/2009:18:55:50 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-751.bellsouth.net - - [22/Apr/2009:18:55:50 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:55:50 +1200] "GET /stories/politics/060301/22.htm HTTP/1.0" 200 58462 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:50 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:55:50 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:55:50 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:55:50 +1200] "GET /adclick.php?c=AG3F HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:50 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:55:50 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:55:50 +1200] "GET /latest.php?category=business HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:55:50 +1200] "GET /news.html HTTP/1.1" 200 2666 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:55:50 +1200] "GET /stories.php HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:55:51 +1200] "GET /latest.php?category=national HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:55:51 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 67118 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.bitstream.orcon.net.nz - - [22/Apr/2009:18:55:51 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:55:51 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:55:51 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:55:51 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:55:51 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.bitstream.orcon.net.nz - - [22/Apr/2009:18:55:51 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:51 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-273.telstra.com.au - - [22/Apr/2009:18:55:51 +1200] "GET /news.html HTTP/1.0" 200 6608 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:55:51 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 332 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:55:51 +1200] "GET /news.html HTTP/1.1" 200 2666 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:55:51 +1200] "GET /stories.php HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:51 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.bitstream.orcon.net.nz - - [22/Apr/2009:18:55:51 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-675.dialup.xtra.co.nz - - [22/Apr/2009:18:55:52 +1200] "GET /stories/national/080201/1.htm HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-273.telstra.com.au - - [22/Apr/2009:18:55:52 +1200] "GET /stories/science/070922/33.htm HTTP/1.0" 200 43619 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" www.bitstream.orcon.net.nz - - [22/Apr/2009:18:55:52 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:52 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:52 +1200] "GET /stories/business/070201/7.htm HTTP/1.1" 200 3699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:52 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:52 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.comcast.net - - [22/Apr/2009:18:55:52 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 7469 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy.aol.com - - [22/Apr/2009:18:55:52 +1200] "GET /sport-news.rss HTTP/1.1" 200 125155 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:52 +1200] "GET /news.html HTTP/1.1" 200 3700 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:53 +1200] "GET /stories/politics/060301/22.htm HTTP/1.1" 200 1381 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-623.bellsouth.net - - [22/Apr/2009:18:55:53 +1200] "GET /business-news.rss HTTP/1.0" 200 50196 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.223.221.198 - - [22/Apr/2009:18:55:53 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6174 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:53 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:55:53 +1200] "GET /links.html HTTP/1.0" 200 49519 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:54 +1200] "GET /currency.php HTTP/1.1" 200 71220 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.87.247.241 - - [22/Apr/2009:18:55:54 +1200] "GET /latest.php HTTP/1.1" 200 6595 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.79.187.149 - - [22/Apr/2009:18:55:54 +1200] "GET /latest.php?category=business HTTP/1.0" 200 179739 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:54 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:54 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:55:55 +1200] "GET /stories/weather/070801/33.htm HTTP/1.0" 200 48385 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:55:55 +1200] "GET /stories/national/080201/1.htm HTTP/1.1" 200 66837 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.160.217.201 - - [22/Apr/2009:18:55:55 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 32800 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:55 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-382.dsl.clear.net.nz - - [22/Apr/2009:18:55:55 +1200] "GET /news.html HTTP/1.0" 200 6997 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:55 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:55 +1200] "GET /latest.php HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:55:55 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:56 +1200] "GET /stories/science/080325/82.htm HTTP/1.1" 200 1381 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-597.googlebot.com - - [22/Apr/2009:18:55:56 +1200] "GET /news.html HTTP/1.1" 200 7127 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:56 +1200] "GET /stories/science/070922/33.htm HTTP/1.1" 200 699 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:55:56 +1200] "GET /stories/national/070309/19.htm HTTP/1.1" 200 65677 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-589.aol.com - - [22/Apr/2009:18:55:56 +1200] "GET /business-news.rss HTTP/1.0" 200 6973 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:56 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-402.optus.com.au - - [22/Apr/2009:18:55:56 +1200] "GET /latest-news.rss HTTP/1.1" 200 630 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:56 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:56 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:56 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:55:56 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:57 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:57 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:55:57 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:57 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:57 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:57 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-391.ask.com - - [22/Apr/2009:18:55:57 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 56211 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:55:57 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:55:57 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-549.googlebot.com - - [22/Apr/2009:18:55:57 +1200] "GET /currency.php HTTP/1.1" 200 50068 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:55:57 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-647.ask.com - - [22/Apr/2009:18:55:57 +1200] "GET /stories/business/070201/7.htm HTTP/1.1" 200 6565 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:57 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:57 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:58 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:58 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:58 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:55:58 +1200] "GET /stories/business/070201/7.htm HTTP/1.1" 200 48333 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.224.2.247 - - [22/Apr/2009:18:55:58 +1200] "GET /latest.php?category=national HTTP/1.1" 200 6643 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.224.2.247 - - [22/Apr/2009:18:55:58 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6304 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.224.2.247 - - [22/Apr/2009:18:55:58 +1200] "GET /news.html HTTP/1.1" 200 6170 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:58 +1200] "GET /gallery.php HTTP/1.1" 200 3033 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:59 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:55:59 +1200] "GET /stories/business/071203/53.htm HTTP/1.1" 200 52189 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.224.2.247 - - [22/Apr/2009:18:55:59 +1200] "GET /latest.php?category=business HTTP/1.1" 200 6459 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.224.2.247 - - [22/Apr/2009:18:55:59 +1200] "GET /stories.php HTTP/1.1" 200 6677 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:55:59 +1200] "GET /stories/national/070309/19.htm HTTP/1.1" 200 65677 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:59 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:59 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:59 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.paradise.net.nz - - [22/Apr/2009:18:55:59 +1200] "GET /news.html HTTP/1.1" 200 78805 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:59 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:59 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:59 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:55:59 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:55:59 +1200] "GET /stories/business/070801/37.htm HTTP/1.1" 200 70040 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:00 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:00 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-514.optus.com.au - - [22/Apr/2009:18:56:00 +1200] "GET /news.html HTTP/1.0" 200 61889 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:00 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:56:00 +1200] "GET /news.html HTTP/1.0" 200 49335 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy.optus.com.au - - [22/Apr/2009:18:56:00 +1200] "GET /news.html HTTP/1.0" 200 6691 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:00 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:56:00 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:01 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:01 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.paradise.net.nz - - [22/Apr/2009:18:56:01 +1200] "GET /faq.html HTTP/1.0" 200 6620 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:02 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:02 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-416.paradise.net.nz - - [22/Apr/2009:18:56:02 +1200] "GET /stories/national/070309/19.htm HTTP/1.0" 200 54336 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:56:02 +1200] "GET /stories/business/071203/53.htm HTTP/1.0" 200 56987 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.82.108.146 - - [22/Apr/2009:18:56:03 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:03 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.115.109.124 - - [22/Apr/2009:18:56:03 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 59346 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.82.108.146 - - [22/Apr/2009:18:56:03 +1200] "GET /stories/business/070201/7.htm HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:03 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.82.108.146 - - [22/Apr/2009:18:56:04 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:56:04 +1200] "GET /news.html HTTP/1.0" 200 106959 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:04 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:56:04 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:56:04 +1200] "GET /stories/science/080325/82.htm HTTP/1.0" 200 58228 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:56:05 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.48.58.131 - - [22/Apr/2009:18:56:05 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 116367 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:56:05 +1200] "GET /gallery.php HTTP/1.0" 200 54606 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:56:05 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:05 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:56:05 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:06 +1200] "GET /adclick.php?c=10S2 HTTP/1.1" 302 378 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:06 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:56:06 +1200] "GET /stories/entertainment/070801/34.htm HTTP/1.1" 200 1372 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:06 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:06 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 445 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:06 +1200] "GET /latest.php HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:56:06 +1200] "GET /latest.php HTTP/1.0" 200 51101 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-273.telstra.com.au - - [22/Apr/2009:18:56:07 +1200] "GET /stories/politics/060301/22.htm HTTP/1.0" 200 6542 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:07 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 1379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:07 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-697.global-gateway.net.nz - - [22/Apr/2009:18:56:07 +1200] "GET /stories/business/070801/55.htm HTTP/1.0" 200 54513 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:08 +1200] "GET /latest-news.rss HTTP/1.1" 200 4231 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:08 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:08 +1200] "GET /adclick.php?c=JAKL HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:08 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.79.187.149 - - [22/Apr/2009:18:56:08 +1200] "GET /news.html HTTP/1.0" 200 176363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:56:08 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 66649 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:08 +1200] "GET /news.html HTTP/1.1" 200 3700 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:08 +1200] "GET /adclick.php?c=H34K HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:09 +1200] "GET /feedback.php HTTP/1.1" 200 4232 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:09 +1200] "GET /stories/politics/060301/22.htm HTTP/1.1" 200 1340 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:56:09 +1200] "GET /stories/business/070801/55.htm HTTP/1.1" 200 68613 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:56:09 +1200] "GET /gallery.php?section=business HTTP/1.0" 200 47238 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:56:09 +1200] "GET /latest.php HTTP/1.0" 200 48185 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:09 +1200] "GET /stories/national/070309/19.htm HTTP/1.1" 200 4231 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:09 +1200] "GET /stories/science/070922/33.htm HTTP/1.1" 200 699 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:09 +1200] "GET /news.html HTTP/1.1" 200 989 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:10 +1200] "GET /latest.php HTTP/1.1" 200 991 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-312.comcast.net - - [22/Apr/2009:18:56:10 +1200] "GET /stories/science/070922/33.htm HTTP/1.1" 200 699 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:10 +1200] "GET /stories/national/070309/19.htm HTTP/1.1" 200 990 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:10 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.39.35.118 - - [22/Apr/2009:18:56:10 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6304 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:10 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.223.221.198 - - [22/Apr/2009:18:56:11 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6174 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:11 +1200] "GET /links.html HTTP/1.1" 200 698 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:11 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.87.247.241 - - [22/Apr/2009:18:56:11 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 69750 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:11 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:56:11 +1200] "GET /stories/politics/080201/49.htm HTTP/1.0" 200 47142 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:11 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:11 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:12 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.86.178.69 - - [22/Apr/2009:18:56:12 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 32800 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.196.179.98 - - [22/Apr/2009:18:56:12 +1200] "GET /js/adclient.js HTTP/1.0" 200 5993 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.79.187.149 - - [22/Apr/2009:18:56:12 +1200] "GET /stories/politics/080201/41.htm HTTP/1.0" 200 73642 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" crawler.ask.com - - [22/Apr/2009:18:56:12 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 58485 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.30.102.238 - - [22/Apr/2009:18:56:12 +1200] "GET /latest.php?category=business HTTP/1.1" 200 68468 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:13 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.196.179.98 - - [22/Apr/2009:18:56:13 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 1438 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:13 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" crawler.googlebot.com - - [22/Apr/2009:18:56:13 +1200] "GET /news.html HTTP/1.1" 200 78708 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.196.179.98 - - [22/Apr/2009:18:56:13 +1200] "GET /js/menu.js HTTP/1.0" 200 6377 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:56:13 +1200] "GET /stories/science/080325/82.htm HTTP/1.0" 200 47678 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:13 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:56:14 +1200] "GET /stories/business/070801/55.htm HTTP/1.1" 200 68611 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:14 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:14 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:14 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 1362 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:14 +1200] "GET /images/photos/534.jpg HTTP/1.1" 200 1370 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:56:14 +1200] "GET /stories.php?date=yesterday HTTP/1.0" 200 59523 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.196.179.98 - - [22/Apr/2009:18:56:14 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 1438 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:14 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:14 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1017 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:14 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1084 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:14 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 1004 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:14 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:56:14 +1200] "GET /adclick.php?c=TG3A HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:14 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:15 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:15 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:15 +1200] "GET /styles/ie4.css HTTP/1.1" 200 3387 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.115.109.124 - - [22/Apr/2009:18:56:15 +1200] "GET /business-news.rss HTTP/1.1" 200 51873 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:15 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:15 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:56:15 +1200] "GET /news.html HTTP/1.0" 200 3020 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:15 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:15 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:15 +1200] "GET /business-news.rss HTTP/1.1" 200 59174 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:15 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 204 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:15 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:16 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-361.global-gateway.net.nz - - [22/Apr/2009:18:56:16 +1200] "GET /stories.php?date=2005 HTTP/1.0" 200 6285 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.78.155.100 - - [22/Apr/2009:18:56:16 +1200] "GET /stories/world/080201/47.htm HTTP/1.1" 200 6304 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:16 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:16 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:16 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-326.crawl.yahoo.net - - [22/Apr/2009:18:56:16 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 1405 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:16 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:16 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:56:16 +1200] "GET /news.html HTTP/1.0" 200 1856 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:16 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:56:16 +1200] "GET /adclick.php?c=BDS2 HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:56:16 +1200] "GET /adclick.php?c=AG3F HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:16 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:16 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:16 +1200] "GET /news.html HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:16 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:16 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:56:17 +1200] "GET /adclick.php?c=NT4P HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.15.223.198 - - [22/Apr/2009:18:56:17 +1200] "GET /business-news.rss HTTP/1.1" 200 56172 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:56:17 +1200] "GET /adclick.php?c=3ERO HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:56:17 +1200] "GET /adclick.php?c=3ERO HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-748.ihug.co.nz - - [22/Apr/2009:18:56:17 +1200] "GET /adclick.php?c=X3HG HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-484.aol.com - - [22/Apr/2009:18:56:17 +1200] "GET /latest.php?category=business HTTP/1.0" 200 58800 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:17 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:56:17 +1200] "GET /gallery.php?section=health HTTP/1.0" 200 47246 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:56:17 +1200] "GET /stories/politics/080201/49.htm HTTP/1.0" 200 3688 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.30.102.238 - - [22/Apr/2009:18:56:18 +1200] "GET /faq.html HTTP/1.1" 200 175731 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.196.179.98 - - [22/Apr/2009:18:56:18 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 1438 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.196.179.98 - - [22/Apr/2009:18:56:18 +1200] "GET /stories.php HTTP/1.0" 200 2713 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.196.179.98 - - [22/Apr/2009:18:56:18 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 4219 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-681.global-gateway.net.nz - - [22/Apr/2009:18:56:18 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 60365 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:18 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:18 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:18 +1200] "GET /adclick.php?c=YI32 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:18 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:18 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:18 +1200] "GET /images/photos/534.jpg HTTP/1.1" 200 1370 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:18 +1200] "GET /news.html HTTP/1.1" 200 3700 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:56:18 +1200] "GET /gallery.php?section=health HTTP/1.0" 200 979 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:18 +1200] "GET /stories/entertainment/070825/233.htm HTTP/1.1" 200 1340 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:19 +1200] "GET /adclick.php?c=10S2 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:19 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:56:19 +1200] "GET /gallery.php?section=health HTTP/1.0" 200 979 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:19 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:19 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:19 +1200] "GET /stories/national/070309/19.htm HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:56:19 +1200] "GET /robots.txt HTTP/1.0" 404 15 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:19 +1200] "GET /stories/national/070309/19.htm HTTP/1.1" 200 990 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-481.telstra.com.au - - [22/Apr/2009:18:56:19 +1200] "HEAD /latest.php HTTP/1.1" 200 0 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.79.187.149 - - [22/Apr/2009:18:56:19 +1200] "GET /stories/world/070801/12.htm HTTP/1.0" 200 98654 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-481.telstra.com.au - - [22/Apr/2009:18:56:19 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 1817 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.196.179.98 - - [22/Apr/2009:18:56:19 +1200] "GET /latest.php HTTP/1.0" 200 686 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-314.bitstream.orcon.net.nz - - [22/Apr/2009:18:56:19 +1200] "GET /news.html HTTP/1.0" 200 6691 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:19 +1200] "GET /crossdomain.xml HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:19 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 1362 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:56:19 +1200] "GET /stories/politics/060301/22.htm HTTP/1.0" 200 63242 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:19 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 1004 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:56:19 +1200] "GET /crossdomain.xml HTTP/1.1" 200 53421 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:19 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1084 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-513.telstra.com.au - - [22/Apr/2009:18:56:20 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.1" 200 1017 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:56:20 +1200] "GET /stories/science/070922/33.htm HTTP/1.0" 200 48138 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.15.223.198 - - [22/Apr/2009:18:56:20 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:20 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:20 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-583.ask.com - - [22/Apr/2009:18:56:21 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 6892 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:21 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:21 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.187.79.74 - - [22/Apr/2009:18:56:21 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 19267 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:21 +1200] "GET /images/photos/534.jpg HTTP/1.1" 200 1370 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:21 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 1362 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:21 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:21 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 997 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:21 +1200] "GET /latest.php HTTP/1.0" 200 57479 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:22 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1130 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:22 +1200] "GET /js/adclient.js HTTP/1.0" 200 5993 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:22 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.1" 200 1012 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:22 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:22 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:22 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-477.aol.com - - [22/Apr/2009:18:56:22 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:22 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:22 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:22 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.15.223.198 - - [22/Apr/2009:18:56:23 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-481.telstra.com.au - - [22/Apr/2009:18:56:23 +1200] "HEAD /gallery.php?section=health HTTP/1.1" 200 0 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:23 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:23 +1200] "GET /styles/ie4.css HTTP/1.1" 200 3387 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.aol.com - - [22/Apr/2009:18:56:23 +1200] "GET /news.html HTTP/1.0" 200 70625 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:23 +1200] "GET /stories/world/080201/47.htm HTTP/1.0" 200 51713 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-314.bitstream.orcon.net.nz - - [22/Apr/2009:18:56:23 +1200] "GET /links.html HTTP/1.0" 200 7272 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.142.80.43 - - [22/Apr/2009:18:56:23 +1200] "GET /js/menu.js HTTP/1.0" 200 6377 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.160.115.89 - - [22/Apr/2009:18:56:23 +1200] "GET /latest.php?category=national HTTP/1.1" 200 53082 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bellsouth.net - - [22/Apr/2009:18:56:23 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:56:23 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.160.115.89 - - [22/Apr/2009:18:56:23 +1200] "GET /latest.php?category=national HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:56:24 +1200] "GET /news.html HTTP/1.1" 200 176579 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:24 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.bellsouth.net - - [22/Apr/2009:18:56:24 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:24 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:24 +1200] "GET /adclick.php?c=2ER3 HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:24 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.0" 200 96 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" cache.bellsouth.net - - [22/Apr/2009:18:56:24 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.15.223.198 - - [22/Apr/2009:18:56:24 +1200] "GET /styles/firefox.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:24 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:24 +1200] "GET /gallery.php?section=sport HTTP/1.0" 200 3020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-499.dialup.xtra.co.nz - - [22/Apr/2009:18:56:24 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-481.telstra.com.au - - [22/Apr/2009:18:56:25 +1200] "GET /latest.php HTTP/1.1" 200 58468 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:25 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 1405 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:25 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 204 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-454.crawl.yahoo.net - - [22/Apr/2009:18:56:25 +1200] "GET /latest.php?category=sport HTTP/1.0" 200 47994 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:56:25 +1200] "GET /stories/politics/080201/41.htm HTTP/1.1" 200 57613 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:25 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:25 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.160.115.89 - - [22/Apr/2009:18:56:25 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:56:25 +1200] "GET /business-news.rss HTTP/1.1" 200 55417 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.160.115.89 - - [22/Apr/2009:18:56:25 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:56:25 +1200] "GET /stories/science/070922/33.htm HTTP/1.0" 200 48555 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.160.115.89 - - [22/Apr/2009:18:56:26 +1200] "GET /styles/site.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:56:26 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:26 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-463.bellsouth.net - - [22/Apr/2009:18:56:26 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.160.115.89 - - [22/Apr/2009:18:56:26 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.15.223.198 - - [22/Apr/2009:18:56:26 +1200] "GET /styles/site.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.ask.com - - [22/Apr/2009:18:56:26 +1200] "GET /adclick.php?c=AW2M HTTP/1.1" 302 379 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.160.115.89 - - [22/Apr/2009:18:56:26 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.15.223.198 - - [22/Apr/2009:18:56:26 +1200] "GET /styles/msie6.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-418.optus.com.au - - [22/Apr/2009:18:56:26 +1200] "GET /stories/business/071203/53.htm HTTP/1.0" 200 32768 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.160.115.89 - - [22/Apr/2009:18:56:26 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.160.115.89 - - [22/Apr/2009:18:56:27 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:56:27 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:27 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.160.115.89 - - [22/Apr/2009:18:56:27 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.160.115.89 - - [22/Apr/2009:18:56:27 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:56:27 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.79.187.149 - - [22/Apr/2009:18:56:27 +1200] "GET /stories/entertainment/070825/233.htm HTTP/1.0" 200 174925 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" bot-434.optus.com.au - - [22/Apr/2009:18:56:27 +1200] "GET /latest.php?category=sport HTTP/1.0" 200 6509 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:27 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:56:28 +1200] "GET /stories.php?date=yesterday HTTP/1.1" 200 3032 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:56:28 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.30.102.238 - - [22/Apr/2009:18:56:28 +1200] "GET /stories/business/070301/63.htm HTTP/1.1" 200 57767 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:28 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:28 +1200] "GET /feedback.php HTTP/1.0" 200 59116 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-569.global-gateway.net.nz - - [22/Apr/2009:18:56:28 +1200] "GET /stories/politics/080201/49.htm HTTP/1.0" 200 6497 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-481.telstra.com.au - - [22/Apr/2009:18:56:28 +1200] "GET /gallery.php?section=health HTTP/1.1" 200 58215 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:28 +1200] "GET /links.html HTTP/1.1" 200 51429 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:28 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:56:29 +1200] "GET /faq.html HTTP/1.1" 200 58024 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-429.aol.com - - [22/Apr/2009:18:56:29 +1200] "GET /stories/politics/060301/22.htm HTTP/1.1" 200 45884 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:29 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:29 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:29 +1200] "GET /latest.php?category=national HTTP/1.0" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:29 +1200] "GET /stories.php?date=2007 HTTP/1.0" 200 57931 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.160.115.89 - - [22/Apr/2009:18:56:29 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:30 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:30 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:30 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.18.172.10 - - [22/Apr/2009:18:56:30 +1200] "GET /news.html HTTP/1.1" 200 120828 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.160.115.89 - - [22/Apr/2009:18:56:30 +1200] "GET /adclick.php?c=NT4P HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:56:30 +1200] "GET /business-news.rss HTTP/1.1" 200 58071 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:30 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:31 +1200] "GET /styles/msie6.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:56:31 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.160.115.89 - - [22/Apr/2009:18:56:31 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:56:31 +1200] "GET /stories/sport/080314/24.htm HTTP/1.1" 200 50827 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:31 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:31 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.160.115.89 - - [22/Apr/2009:18:56:31 +1200] "GET /stories/politics/080201/41.htm HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:31 +1200] "GET /images/photos/993.jpg HTTP/1.0" 200 966 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:31 +1200] "GET /images/photos/993.jpg HTTP/1.0" 200 261 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:31 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.0" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:56:31 +1200] "GET /stories/business/070801/37.htm HTTP/1.1" 200 59627 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:56:31 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 59832 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.160.115.89 - - [22/Apr/2009:18:56:32 +1200] "GET /stories/business/070801/37.htm HTTP/1.1" 200 1381 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:32 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.0" 200 1016 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:32 +1200] "GET /styles/site.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:32 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:32 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.160.115.89 - - [22/Apr/2009:18:56:32 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:32 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.0" 200 874 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:32 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.0" 200 181 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:32 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.0" 200 139 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:32 +1200] "GET /images/photos/993.jpg HTTP/1.0" 200 897 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-672.paradise.net.nz - - [22/Apr/2009:18:56:32 +1200] "GET /latest.php?category=national HTTP/1.0" 200 54055 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-737.telstra.com.au - - [22/Apr/2009:18:56:32 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 1817 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.160.115.89 - - [22/Apr/2009:18:56:32 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:32 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.0" 200 915 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:32 +1200] "GET /images/photos/84.jpg HTTP/1.0" 200 957 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-437.googlebot.com - - [22/Apr/2009:18:56:32 +1200] "GET /styles/msie7.css HTTP/1.0" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:32 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.0" 200 914 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.160.115.89 - - [22/Apr/2009:18:56:32 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" cache.ask.com - - [22/Apr/2009:18:56:32 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 62733 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.142.80.43 - - [22/Apr/2009:18:56:32 +1200] "GET /images/photos/455.jpg HTTP/1.0" 200 836 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:32 +1200] "GET /images/photos/84.jpg HTTP/1.0" 200 313 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:56:32 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:56:33 +1200] "GET /faq.html HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:33 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.0" 200 1196 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:33 +1200] "GET /images/photos/5332.jpg HTTP/1.0" 200 831 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.15.223.198 - - [22/Apr/2009:18:56:33 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.160.115.89 - - [22/Apr/2009:18:56:33 +1200] "GET /news.html HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:33 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 49028 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:33 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.160.115.89 - - [22/Apr/2009:18:56:33 +1200] "GET /latest.php?category=business HTTP/1.1" 200 630 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy-352.paradise.net.nz - - [22/Apr/2009:18:56:33 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-352.paradise.net.nz - - [22/Apr/2009:18:56:33 +1200] "GET /feedback.php HTTP/1.1" 200 62697 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:56:33 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:33 +1200] "GET /images/photos/84.jpg HTTP/1.0" 200 1657 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" bot-332.ihug.co.nz - - [22/Apr/2009:18:56:33 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:33 +1200] "GET /images/photos/5334.jpg HTTP/1.0" 200 2834 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy.aol.com - - [22/Apr/2009:18:56:33 +1200] "GET /latest.php HTTP/1.1" 200 57551 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-637.aol.com - - [22/Apr/2009:18:56:33 +1200] "GET /stories/national/080201/1.htm HTTP/1.0" 200 6405 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.142.80.43 - - [22/Apr/2009:18:56:33 +1200] "GET /adclick.php?c=TG3A HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:33 +1200] "GET /adclick.php?c=ABTJ HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:33 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:34 +1200] "GET /latest.php?category=national HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:56:34 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 59607 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.30.102.238 - - [22/Apr/2009:18:56:34 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 58714 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.160.115.89 - - [22/Apr/2009:18:56:34 +1200] "GET /latest.php HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:34 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.160.115.89 - - [22/Apr/2009:18:56:34 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:34 +1200] "GET /images/photos/5334.jpg HTTP/1.0" 200 988 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:56:34 +1200] "GET /latest.php?category=business HTTP/1.0" 200 49524 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.234.247.139 - - [22/Apr/2009:18:56:34 +1200] "GET /stories/business/071203/53.htm HTTP/1.1" 200 6429 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.142.80.43 - - [22/Apr/2009:18:56:34 +1200] "GET /latest.php?category=national HTTP/1.0" 200 3688 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:34 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:34 +1200] "GET /stories.php?date=yesterday HTTP/1.0" 200 1360 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.54.64.221 - - [22/Apr/2009:18:56:34 +1200] "GET /stories/business/070801/12.htm HTTP/1.1" 200 47695 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:34 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:35 +1200] "GET /adclick.php?c=X41R HTTP/1.0" 302 366 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:35 +1200] "GET /adclick.php?c=GD52 HTTP/1.0" 302 365 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:35 +1200] "GET /adclick.php?c=X3HG HTTP/1.0" 302 367 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-531.dialup.xtra.co.nz - - [22/Apr/2009:18:56:35 +1200] "GET /feedback.php HTTP/1.1" 200 54022 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.aol.com - - [22/Apr/2009:18:56:35 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.142.80.43 - - [22/Apr/2009:18:56:35 +1200] "GET /stories.php?date=2006 HTTP/1.0" 200 978 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:36 +1200] "GET /adclick.php?c=GD52 HTTP/1.0" 302 365 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:36 +1200] "GET /currency.php HTTP/1.0" 200 686 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.aol.com - - [22/Apr/2009:18:56:36 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" www.aol.com - - [22/Apr/2009:18:56:36 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.142.80.43 - - [22/Apr/2009:18:56:36 +1200] "GET /images/photos/455.jpg HTTP/1.0" 200 986 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.aol.com - - [22/Apr/2009:18:56:36 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.142.80.43 - - [22/Apr/2009:18:56:36 +1200] "GET /latest.php?category=sport HTTP/1.0" 200 4218 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:36 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:37 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:37 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:37 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.paradise.net.nz - - [22/Apr/2009:18:56:37 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 50568 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:37 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:37 +1200] "GET /stories.php?date=2006 HTTP/1.0" 200 978 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-343.ask.com - - [22/Apr/2009:18:56:37 +1200] "GET /adclick.php?c=BDS2 HTTP/1.1" 302 349 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:37 +1200] "GET /stories/business/070801/55.htm HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:37 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:56:37 +1200] "GET /adclick.php?c=X3HG HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-688.paradise.net.nz - - [22/Apr/2009:18:56:37 +1200] "GET /stories.php?date=2005 HTTP/1.0" 200 58803 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.15.223.198 - - [22/Apr/2009:18:56:37 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:38 +1200] "GET /images/favicon.ico HTTP/1.0" 200 2824 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.234.247.139 - - [22/Apr/2009:18:56:38 +1200] "GET /news.html HTTP/1.1" 200 6040 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.15.223.198 - - [22/Apr/2009:18:56:38 +1200] "GET /styles/msie7.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:56:38 +1200] "GET /adclick.php?c=X41R HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:38 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:38 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:56:38 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 376 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:38 +1200] "GET /images/ad/A94L.jpeg HTTP/1.0" 200 5612 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:38 +1200] "GET /images/nav/tab_right_middle.gif HTTP/1.0" 200 1179 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.79.187.149 - - [22/Apr/2009:18:56:38 +1200] "GET /stories.php HTTP/1.0" 200 177650 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-343.ask.com - - [22/Apr/2009:18:56:38 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 330 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:38 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:38 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:38 +1200] "GET /images/photos/824.jpg HTTP/1.0" 200 245 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-657.telstra.com.au - - [22/Apr/2009:18:56:38 +1200] "GET /latest.php HTTP/1.0" 200 6323 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.82.108.146 - - [22/Apr/2009:18:56:38 +1200] "GET /latest-news.rss HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:56:38 +1200] "GET /stories/politics/080201/41.htm HTTP/1.0" 200 73644 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:38 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.0" 200 279 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:38 +1200] "GET /images/photos/84.jpg HTTP/1.0" 200 1199 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.82.108.146 - - [22/Apr/2009:18:56:38 +1200] "GET /latest.php HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:38 +1200] "GET /images/photos/5332.jpg HTTP/1.0" 200 1061 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:38 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.0" 200 1020 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dyn-512.paradise.net.nz - - [22/Apr/2009:18:56:38 +1200] "GET /links.html HTTP/1.0" 200 50846 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:38 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:38 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:39 +1200] "GET /images/ad/RH4Y.jpeg HTTP/1.0" 200 1031 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:39 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.0" 200 1376 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.142.80.43 - - [22/Apr/2009:18:56:39 +1200] "GET /images/photos/355.jpg HTTP/1.0" 200 1373 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-352.paradise.net.nz - - [22/Apr/2009:18:56:39 +1200] "GET /feedback.php HTTP/1.1" 200 32800 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.30.102.238 - - [22/Apr/2009:18:56:39 +1200] "GET /stories/entertainment/061105/30.htm HTTP/1.1" 200 62845 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.160.115.89 - - [22/Apr/2009:18:56:39 +1200] "GET /styles/site.css HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.142.80.43 - - [22/Apr/2009:18:56:39 +1200] "GET /images/photos/5332.jpg HTTP/1.0" 304 - "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-454.crawl.yahoo.net - - [22/Apr/2009:18:56:39 +1200] "GET /latest.php?category=business HTTP/1.0" 200 67963 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:39 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:39 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.87.247.241 - - [22/Apr/2009:18:56:39 +1200] "GET /news.html HTTP/1.1" 200 58373 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.30.102.238 - - [22/Apr/2009:18:56:39 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 53738 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.15.223.198 - - [22/Apr/2009:18:56:39 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:39 +1200] "GET /adclick.php?c=GD52 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:39 +1200] "GET /adclick.php?c=3ERO HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:40 +1200] "GET /news.html HTTP/1.1" 200 1868 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:40 +1200] "GET /latest.php HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:40 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:40 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-263.ask.com - - [22/Apr/2009:18:56:40 +1200] "GET /business-news.rss HTTP/1.0" 200 6689 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.118.184.192 - - [22/Apr/2009:18:56:40 +1200] "GET /news.html HTTP/1.1" 200 6574 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:40 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:40 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:40 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:40 +1200] "GET /news.html HTTP/1.1" 200 2725 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:56:40 +1200] "GET /stories/business/070201/7.htm HTTP/1.0" 200 52689 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" www.aol.com - - [22/Apr/2009:18:56:40 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" www.aol.com - - [22/Apr/2009:18:56:40 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.54.64.221 - - [22/Apr/2009:18:56:40 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:40 +1200] "GET /latest.php HTTP/1.1" 200 3033 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:56:40 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 53738 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.aol.com - - [22/Apr/2009:18:56:40 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:40 +1200] "GET /adclick.php?c=TG3A HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:40 +1200] "GET /adclick.php?c=PBNI HTTP/1.1" 302 376 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:41 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:41 +1200] "GET /adclick.php?c=JAKL HTTP/1.1" 302 380 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:41 +1200] "GET /adclick.php?c=AG3F HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:41 +1200] "GET /latest.php?category=business HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:41 +1200] "GET /adclick.php?c=EB2Q HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:41 +1200] "GET /adclick.php?c=LME2 HTTP/1.1" 302 377 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:41 +1200] "GET /styles/firefox.css HTTP/1.1" 200 758 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:41 +1200] "GET /news.html HTTP/1.1" 200 989 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:41 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 378 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:41 +1200] "GET /news.html HTTP/1.1" 200 698 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:56:41 +1200] "GET /adclick.php?c=H34K HTTP/1.0" 302 368 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:41 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:56:41 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:41 +1200] "GET /gallery.php?section=entertainment HTTP/1.1" 200 3699 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:56:41 +1200] "GET /adclick.php?c=ABTJ HTTP/1.1" 302 380 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.54.64.221 - - [22/Apr/2009:18:56:42 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:42 +1200] "GET /latest.php?category=weather HTTP/1.1" 200 1341 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:42 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:42 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:42 +1200] "GET /styles/site.css HTTP/1.1" 200 19 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:56:42 +1200] "GET /stories/science/070922/33.htm HTTP/1.0" 200 687 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:56:42 +1200] "GET /stories/sport/080314/24.htm HTTP/1.0" 200 53343 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:42 +1200] "GET /latest.php?category=business HTTP/1.1" 200 4231 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:56:42 +1200] "GET /latest.php HTTP/1.1" 200 3033 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:42 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:42 +1200] "GET /stories.php?date=2007 HTTP/1.1" 200 990 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:42 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-409.global-gateway.net.nz - - [22/Apr/2009:18:56:42 +1200] "GET /stories/business/070801/55.htm HTTP/1.0" 200 59035 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:42 +1200] "GET /stories/science/080325/82.htm HTTP/1.1" 200 697 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:42 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:42 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:56:42 +1200] "GET /latest.php?category=national HTTP/1.1" 304 - "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:42 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:43 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:43 +1200] "GET /styles/msie7.css HTTP/1.1" 200 37 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:43 +1200] "GET /styles/msie7.css HTTP/1.1" 200 1693 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:43 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:56:43 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.21.27.9 - - [22/Apr/2009:18:56:43 +1200] "GET /adclick.php?c=2ER3 HTTP/1.0" 302 368 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:43 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:43 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:43 +1200] "GET /js/menu.js HTTP/1.1" 200 6390 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:56:43 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:43 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:56:43 +1200] "GET /js/adclient.js HTTP/1.1" 200 6006 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-527.bellsouth.net - - [22/Apr/2009:18:56:43 +1200] "GET /news.html HTTP/1.1" 200 57400 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:43 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 957 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:43 +1200] "GET /images/ad/N4FQ.jpeg HTTP/1.1" 200 914 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-330.bitstream.orcon.net.nz - - [22/Apr/2009:18:56:43 +1200] "GET /stories.php HTTP/1.0" 200 6535 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" 192.21.27.9 - - [22/Apr/2009:18:56:43 +1200] "GET /news.html HTTP/1.0" 200 619 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:43 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 836 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:43 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 313 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:44 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:44 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:44 +1200] "GET /images/ad/FDE4.jpeg HTTP/1.1" 200 1196 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" proxy.aol.com - - [22/Apr/2009:18:56:44 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 49028 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:56:44 +1200] "GET /adclick.php?c=X3HG HTTP/1.0" 302 366 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:44 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 831 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:44 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:44 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:56:44 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.54.64.221 - - [22/Apr/2009:18:56:44 +1200] "GET /images/nav/tab_left_center.gif HTTP/1.1" 200 96 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:44 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1657 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:44 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 2834 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:56:44 +1200] "GET /stories.php HTTP/1.0" 200 4218 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:44 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 445 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:44 +1200] "GET /gallery.php?section=sport HTTP/1.1" 200 3032 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:44 +1200] "GET /images/ad/NXM2.jpeg HTTP/1.1" 200 1016 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:44 +1200] "GET /images/nav/tab_right_center.gif HTTP/1.1" 200 181 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:45 +1200] "GET /images/photos/84.jpg HTTP/1.1" 200 1199 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:45 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 1061 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.86.178.69 - - [22/Apr/2009:18:56:45 +1200] "GET /stories/politics/080201/41.htm HTTP/1.1" 200 32800 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:45 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 874 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-569.global-gateway.net.nz - - [22/Apr/2009:18:56:45 +1200] "GET /stories/politics/080201/49.htm HTTP/1.1" 200 50936 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.aol.com - - [22/Apr/2009:18:56:45 +1200] "GET /stories/weather/070801/33.htm HTTP/1.0" 200 6310 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:45 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:45 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dyn-716.ihug.co.nz - - [22/Apr/2009:18:56:45 +1200] "GET /gallery.php?section=entertainment HTTP/1.0" 200 50541 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:45 +1200] "GET /images/photos/5334.jpg HTTP/1.1" 200 988 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:45 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 986 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:45 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:45 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:45 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:45 +1200] "GET /styles/ie4.css HTTP/1.1" 200 3387 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.30.102.238 - - [22/Apr/2009:18:56:45 +1200] "GET /latest.php HTTP/1.1" 200 69570 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" 192.21.27.9 - - [22/Apr/2009:18:56:46 +1200] "GET /latest.php?category=politics HTTP/1.0" 200 1438 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:46 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 445 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:46 +1200] "GET /images/photos/355.jpg HTTP/1.1" 200 1404 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:56:46 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:46 +1200] "GET /images/photos/34.jpg HTTP/1.1" 200 1136 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:46 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:46 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:46 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 279 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.15.223.198 - - [22/Apr/2009:18:56:46 +1200] "GET /adclick.php?c=2ER3 HTTP/1.1" 302 379 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:56:46 +1200] "GET /adclick.php?c=TG3A HTTP/1.0" 302 366 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dyn-258.optus.com.au - - [22/Apr/2009:18:56:46 +1200] "GET /stories.php HTTP/1.0" 200 49512 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:46 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 245 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:46 +1200] "GET /images/nav/tab_left_middle.gif HTTP/1.1" 200 1020 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:46 +1200] "GET /styles/site.css HTTP/1.1" 200 3396 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:46 +1200] "GET /robots.txt HTTP/1.1" 404 27 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:46 +1200] "GET /images/favicon.ico HTTP/1.1" 200 2824 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.21.27.9 - - [22/Apr/2009:18:56:47 +1200] "GET /currency.php HTTP/1.0" 200 3687 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:47 +1200] "GET /images/ad/A94L.jpeg HTTP/1.1" 200 5612 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:47 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 261 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-277.googlebot.com - - [22/Apr/2009:18:56:47 +1200] "GET /stories/science/080325/82.htm HTTP/1.0" 200 53303 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:47 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 1405 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:47 +1200] "GET /images/photos/824.jpg HTTP/1.1" 200 204 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:47 +1200] "GET /styles/msie7.css HTTP/1.1" 200 34363 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:56:47 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" dhcp-569.global-gateway.net.nz - - [22/Apr/2009:18:56:48 +1200] "GET /styles/msie6.css HTTP/1.1" 200 2283 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" www.global-gateway.net.nz - - [22/Apr/2009:18:56:48 +1200] "GET /images/photos/455.jpg HTTP/1.1" 200 2048 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.79.187.149 - - [22/Apr/2009:18:56:48 +1200] "GET /stories.php?date=2005 HTTP/1.0" 200 177010 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:48 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:56:48 +1200] "GET /news.html HTTP/1.1" 200 989 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.82.108.146 - - [22/Apr/2009:18:56:48 +1200] "GET /latest.php?category=politics HTTP/1.1" 200 1450 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" dhcp-637.aol.com - - [22/Apr/2009:18:56:48 +1200] "GET /stories/sport/070922/52.htm HTTP/1.0" 200 6755 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-603.jetstream.xtra.co.nz - - [22/Apr/2009:18:56:48 +1200] "GET /images/photos/5332.jpg HTTP/1.1" 200 244 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.54.64.221 - - [22/Apr/2009:18:56:49 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 966 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:56:49 +1200] "GET /images/photos/993.jpg HTTP/1.1" 200 897 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" www.aol.com - - [22/Apr/2009:18:56:49 +1200] "GET /stories/politics/080201/49.htm HTTP/1.0" 200 60264 "-" "Mozilla/4.0 (compatible; MSIE 7.0; Windows NT 5.1; .NET CLR 1.1.4322)" "-" 192.240.248.147 - - [22/Apr/2009:18:56:50 +1200] "GET /images/nav/tab_left_top.gif HTTP/1.1" 200 3716 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" proxy-470.crawl.yahoo.net - - [22/Apr/2009:18:56:50 +1200] "GET /stories.php?date=2007 HTTP/1.0" 200 6142 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" dhcp-569.global-gateway.net.nz - - [22/Apr/2009:18:56:50 +1200] "GET /styles/msie6.css HTTP/1.1" 200 679 "-" "Mozilla/5.0 (Windows; U; Windows NT 5.1; en-GB; rv:1.8.1.14) Gecko/20090404 Firefox/2.0.0.14" "-" dhcp-583.ask.com - - [22/Apr/2009:18:56:50 +1200] "GET /latest.php?category=national HTTP/1.0" 200 60042 "-" "Mozilla/5.0 (Macintosh; U; Intel Mac OS X 10_4_11; en) AppleWebKit/525.13 (KHTML, like Gecko) Version/3.1 Safari/525.13" "-" www.dsl.clear.net.nz - - [22/Apr/2009:18:56:50 +1200] "GET /latest.php HTTP/1.0" 200 59269 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" 192.54.64.221 - - [22/Apr/2009:18:56:50 +1200] "GET /images/ad/PD4J.jpeg HTTP/1.1" 200 139 "-" "Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1; SV1; .NET CLR 1.1.4322)" "-" www.aol.com - - [22/Apr/2009:18:56:51 +1200] "GET /images/ad/BG6V.jpeg HTTP/1.1" 200 915 "-" "Mozilla/5.0 (Macintosh; U; PPC Mac OS X; en-us) AppleWebKit/523.15.1 (KHTML, like Gecko) Version/3.0.4 Safari/523.15" "-" logstalgia-1.0.3/configure0000755000203100020310000073665611526610646015420 0ustar andrewcandrewc#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.67 for Logstalgia 1.0.3. # # Report bugs to . # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 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 -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 as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. 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 # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done 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 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="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 " 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 exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || 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 \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else 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 test -z "$as_dir" && as_dir=. 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_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : # 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. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org and $0: acaudwell@gmail.com about your system, including any $0: error possibly output before this message. Then install $0: a modern shell, or manually run the script under such a $0: shell if you do have one." fi exit 1 fi 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=`$as_echo "$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 || $as_echo 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_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 as_fn_append () { eval $1=\$$1\$2 } 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 as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } 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 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$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 || $as_echo 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 ' 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" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } 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 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 -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' 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 if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" 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='Logstalgia' PACKAGE_TARNAME='logstalgia' PACKAGE_VERSION='1.0.3' PACKAGE_STRING='Logstalgia 1.0.3' PACKAGE_BUGREPORT='acaudwell@gmail.com' PACKAGE_URL='' ac_unique_file="src/main.h" # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS sdlappfontdir FONTDIR_FALSE FONTDIR_TRUE FTGL_LIBS FTGL_CFLAGS PKG_CONFIG FT2_LIBS FT2_CFLAGS FT2_CONFIG SDL_LIBS SDL_CFLAGS SDL_CONFIG GLU_LIBS GLU_CFLAGS GL_LIBS GL_CFLAGS EGREP GREP CPP PTHREAD_CFLAGS PTHREAD_LIBS PTHREAD_CC ax_pthread_config am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE ac_ct_CC CFLAGS CC SED CXXCPP XMKMF am__fastdepCXX_FALSE am__fastdepCXX_TRUE CXXDEPMODE AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CXX CPPFLAGS LDFLAGS CXXFLAGS CXX host_os host_vendor host_cpu host build_os build_vendor build_cpu build 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 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' ac_subst_files='' ac_user_opts=' enable_option_checking enable_dependency_tracking with_x with_sdl_prefix with_sdl_exec_prefix enable_sdltest with_ft_prefix with_ft_exec_prefix enable_freetypetest enable_ttf_font_dir ' ac_precious_vars='build_alias host_alias target_alias CXX CXXFLAGS LDFLAGS LIBS CPPFLAGS CCC XMKMF CXXCPP CC CFLAGS CPP PKG_CONFIG FTGL_CFLAGS FTGL_LIBS' # 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' 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 # Accept the important Cygnus configure options, so we can diagnose typos. 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=`$as_echo "$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=`$as_echo "$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 ;; -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=`$as_echo "$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=`$as_echo "$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. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` 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" ;; *) $as_echo "$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 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 $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null 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 || $as_echo 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 Logstalgia 1.0.3 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] --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/logstalgia] --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 Logstalgia 1.0.3:";; 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] --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --disable-sdltest Do not try to compile and run a test SDL program --disable-freetypetest Do not try to compile and run a test FreeType program --enable-ttf-font-dir=DIR directory containing GNU FreeFont TTF fonts Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-x use the X Window System --with-sdl-prefix=PFX Prefix where SDL is installed (optional) --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optional) --with-ft-prefix=PREFIX Prefix where FreeType is installed (optional) --with-ft-exec-prefix=PREFIX Exec prefix where FreeType is installed (optional) Some influential environment variables: CXX C++ compiler command CXXFLAGS 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 XMKMF Path to xmkmf, Makefile generator for X Window System CXXCPP C++ preprocessor CC C compiler command CFLAGS C compiler flags CPP C preprocessor PKG_CONFIG path to pkg-config utility FTGL_CFLAGS C compiler flags for FTGL, overriding pkg-config FTGL_LIBS linker flags for FTGL, overriding pkg-config 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=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$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 guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$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 Logstalgia configure 1.0.3 generated by GNU Autoconf 2.67 Copyright (C) 2010 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_cxx_try_compile LINENO # ---------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext 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\"" $as_echo "$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 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_cxx_try_compile # ac_fn_cxx_try_cpp LINENO # ------------------------ # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" 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\"" $as_echo "$ac_try_echo"; } >&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 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_cxx_try_cpp # ac_fn_cxx_try_link LINENO # ------------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext 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\"" $as_echo "$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 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 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; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_cxx_try_link # 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 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\"" $as_echo "$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 $as_echo "$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 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_try_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$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\"" $as_echo "$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 $as_echo "$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 || $as_test_x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 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; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" 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\"" $as_echo "$ac_try_echo"; } >&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 $as_echo "$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 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval "test \"\${$3+set}\"" = set; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval "test \"\${$3+set}\"" = set; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ---------------------------------- ## ## Report this to acaudwell@gmail.com ## ## ---------------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval "test \"\${$3+set}\"" = set; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_header_mongrel # ac_fn_c_try_run LINENO # ---------------------- # Try to link 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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_try_run # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval "test \"\${$3+set}\"" = set; then : $as_echo_n "(cached) " >&6 else 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 eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_header_compile # ac_fn_cxx_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_cxx_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval "test \"\${$3+set}\"" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_cxx_check_header_compile # ac_fn_cxx_try_run LINENO # ------------------------ # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_cxx_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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_cxx_try_run # ac_fn_cxx_check_header_mongrel LINENO HEADER VAR INCLUDES # --------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_cxx_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval "test \"\${$3+set}\"" = set; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval "test \"\${$3+set}\"" = set; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_cxx_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ( $as_echo "## ---------------------------------- ## ## Report this to acaudwell@gmail.com ## ## ---------------------------------- ##" ) | sed "s/^/$as_me: WARNING: /" >&2 ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval "test \"\${$3+set}\"" = set; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_cxx_check_header_mongrel 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 Logstalgia $as_me 1.0.3, which was generated by GNU Autoconf 2.67. Invocation command line was $ $0 $@ _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 test -z "$as_dir" && as_dir=. $as_echo "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=`$as_echo "$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=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## 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_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$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 $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$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 $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $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,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$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=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`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 am__api_version='1.11' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 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. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # 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. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$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 fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. 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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$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' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 echo timestamp > conftest.file # 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). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$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 case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if test "${ac_cv_path_mkdir+set}" = set; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ '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 fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P 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. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_AWK+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\"" = set; then : $as_echo_n "(cached) " >&6 else 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 fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 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='logstalgia' VERSION='1.0.3' cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. AMTAR=${AMTAR-"${am_missing_run}tar"} am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' # 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if test "${ac_cv_build+set}" = set; then : $as_echo_n "(cached) " >&6 else 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 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if test "${ac_cv_host+set}" = set; then : $as_echo_n "(cached) " >&6 else 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 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$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 # Checks for programs. ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 $as_echo "$CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CXX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 $as_echo "$ac_ct_CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. $as_echo "$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; 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\"" $as_echo "$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 $as_echo "$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 () { ; 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. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C++ compiler works" >&5 $as_echo_n "checking whether the C++ compiler works... " >&6; } ac_link_default=`$as_echo "$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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$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+set}" = set && 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 ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler default output file name" >&5 $as_echo_n "checking for C++ compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$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 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$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 ; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$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 () { FILE *f = fopen ("conftest.out", "w"); 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. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$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 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C++ compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5 ; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if test "${ac_cv_objext+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; 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\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$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 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$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 ; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 $as_echo_n "checking whether $CXX accepts -g... " >&6; } if test "${ac_cv_prog_cxx_g+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes else CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : else ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 $as_echo "$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi 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 DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi depcc="$CXX" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi 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 8's {/usr,}/bin/sh. touch 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 ;; 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 thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu #Disable X11 on Macs unless required if test "$with_x" != yes; then : case "$host_os" in darwin*) with_x="no" ;; esac fi #GL ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 $as_echo_n "checking how to run the C++ preprocessor... " >&6; } if test -z "$CXXCPP"; then if test "${ac_cv_prog_CXXCPP+set}" = set; then : $as_echo_n "(cached) " >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue 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_cxx_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break 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_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 $as_echo "$CXXCPP" >&6; } ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue 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_cxx_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break 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 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C++ preprocessor \"$CXXCPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5 ; } fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for X" >&5 $as_echo_n "checking for X... " >&6; } # Check whether --with-x was given. if test "${with_x+set}" = set; then : withval=$with_x; fi # $have_x is `yes', `no', `disabled', or empty when we do not yet know. if test "x$with_x" = xno; then # The user explicitly disabled X. have_x=disabled else 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+set}" = set; then : $as_echo_n "(cached) " >&6 else # One or both of the vars are not set, and there is no cached value. ac_x_includes=no ac_x_libraries=no rm -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 /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_cxx_try_cpp "$LINENO"; then : # We can compile using X headers with no special include directory. ac_x_includes= else 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 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 () { XrmInitialize () ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : LIBS=$ac_save_LIBS # We can link X programs with no special library path. ac_x_libraries= else LIBS=$ac_save_LIBS for ac_dir in `$as_echo "$ac_x_includes $ac_x_header_dirs" | sed s/include/lib/g` do # Don't even attempt the hair of trying to link an X program! for ac_extension in a so sl dylib la dll; do if test -r "$ac_dir/libX11.$ac_extension"; then ac_x_libraries=$ac_dir break 2 fi done done fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi # $ac_x_libraries = no 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 fi ;; #( *) have_x=yes;; esac eval "$ac_cv_have_x" fi # $with_x != no if test "$have_x" != yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $have_x" >&5 $as_echo "$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'" { $as_echo "$as_me:${as_lineno-$LINENO}: result: libraries $x_libraries, headers $x_includes" >&5 $as_echo "libraries $x_libraries, headers $x_includes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if test "${ac_cv_path_SED+set}" = set; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" { test -f "$ac_path_SED" && $as_test_x "$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 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "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 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$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" $as_echo "$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 fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "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:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$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. $as_echo "$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; 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\"" $as_echo "$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 $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then : $as_echo_n "(cached) " >&6 else 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 () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; 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.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -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 **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF 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 test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : 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= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi 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 8's {/usr,}/bin/sh. touch 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 ;; 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 thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ax_pthread_ok=no # We used to check for pthread.h first, but this fails if pthread.h # requires special compiler flags (e.g. on True64 or Sequent). # It gets checked for in the link test anyway. # First of all, check if the user has set any of the PTHREAD_LIBS, # etcetera environment variables, and if threads linking works using # them: if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" save_LIBS="$LIBS" LIBS="$PTHREAD_LIBS $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS" >&5 $as_echo_n "checking for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS... " >&6; } 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. */ #ifdef __cplusplus extern "C" #endif char pthread_join (); int main () { return pthread_join (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ax_pthread_ok=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_ok" >&5 $as_echo "$ax_pthread_ok" >&6; } if test x"$ax_pthread_ok" = xno; then PTHREAD_LIBS="" PTHREAD_CFLAGS="" fi LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" fi # We must check for the threads library under a number of different # names; the ordering is very important because some systems # (e.g. DEC) have both -lpthread and -lpthreads, where one of the # libraries is broken (non-POSIX). # Create a list of thread flags to try. Items starting with a "-" are # C compiler flags, and other items are library names, except for "none" # which indicates that we try without any flags at all, and "pthread-config" # which is a program returning the flags for the Pth emulation library. ax_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" # The ordering *is* (sometimes) important. Some notes on the # individual items follow: # pthreads: AIX (must check this before -lpthread) # none: in case threads are in libc; should be tried before -Kthread and # other compiler flags to prevent continual compiler warnings # -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) # -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) # lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) # -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) # -pthreads: Solaris/gcc # -mthreads: Mingw32/gcc, Lynx/gcc # -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it # doesn't hurt to check since this sometimes defines pthreads too; # also defines -D_REENTRANT) # ... -mt is also the pthreads flag for HP/aCC # pthread: Linux, etcetera # --thread-safe: KAI C++ # pthread-config: use pthread-config program (for GNU Pth library) case "${host_cpu}-${host_os}" in *solaris*) # On Solaris (at least, for some versions), libc contains stubbed # (non-functional) versions of the pthreads routines, so link-based # tests will erroneously succeed. (We need to link with -pthreads/-mt/ # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather # a function called by this macro, so we could check for that, but # who knows whether they'll stub that too in a future libc.) So, # we'll just look for -pthreads and -lpthread first: ax_pthread_flags="-pthreads pthread -mt -pthread $ax_pthread_flags" ;; esac if test x"$ax_pthread_ok" = xno; then for flag in $ax_pthread_flags; do case $flag in none) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work without any flags" >&5 $as_echo_n "checking whether pthreads work without any flags... " >&6; } ;; -*) { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether pthreads work with $flag" >&5 $as_echo_n "checking whether pthreads work with $flag... " >&6; } PTHREAD_CFLAGS="$flag" ;; pthread-config) # Extract the first word of "pthread-config", so it can be a program name with args. set dummy pthread-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ax_pthread_config+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ax_pthread_config"; then ac_cv_prog_ax_pthread_config="$ax_pthread_config" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ax_pthread_config="yes" $as_echo "$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_ax_pthread_config" && ac_cv_prog_ax_pthread_config="no" fi fi ax_pthread_config=$ac_cv_prog_ax_pthread_config if test -n "$ax_pthread_config"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_config" >&5 $as_echo "$ax_pthread_config" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test x"$ax_pthread_config" = xno; then continue; fi PTHREAD_CFLAGS="`pthread-config --cflags`" PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: checking for the pthreads library -l$flag" >&5 $as_echo_n "checking for the pthreads library -l$flag... " >&6; } PTHREAD_LIBS="-l$flag" ;; esac save_LIBS="$LIBS" save_CFLAGS="$CFLAGS" LIBS="$PTHREAD_LIBS $LIBS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" # Check for various functions. We must include pthread.h, # since some functions may be macros. (On the Sequent, we # need a special flag -Kthread to make this header compile.) # We check for pthread_join because it is in -lpthread on IRIX # while pthread_create is in libc. We check for pthread_attr_init # due to DEC craziness with -lpthreads. We check for # pthread_cleanup_push because it is one of the few pthread # functions on Solaris that doesn't have a non-functional libc stub. # We try pthread_create on general principles. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include static void routine(void* a) {a=0;} static void* start_routine(void* a) {return a;} int main () { pthread_t th; pthread_attr_t attr; pthread_join(th, 0); pthread_attr_init(&attr); pthread_cleanup_push(routine, 0); pthread_create(&th,0,start_routine,0); pthread_cleanup_pop(0); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ax_pthread_ok=yes fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_pthread_ok" >&5 $as_echo "$ax_pthread_ok" >&6; } if test "x$ax_pthread_ok" = xyes; then break; fi PTHREAD_LIBS="" PTHREAD_CFLAGS="" done fi # Various other checks: if test "x$ax_pthread_ok" = xyes; then save_LIBS="$LIBS" LIBS="$PTHREAD_LIBS $LIBS" save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for joinable pthread attribute" >&5 $as_echo_n "checking for joinable pthread attribute... " >&6; } attr_name=unknown for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { int attr=$attr; return attr; ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : attr_name=$attr; break fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext done { $as_echo "$as_me:${as_lineno-$LINENO}: result: $attr_name" >&5 $as_echo "$attr_name" >&6; } if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then cat >>confdefs.h <<_ACEOF #define PTHREAD_CREATE_JOINABLE $attr_name _ACEOF fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if more special flags are required for pthreads" >&5 $as_echo_n "checking if more special flags are required for pthreads... " >&6; } flag=no case "${host_cpu}-${host_os}" in *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";; *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: ${flag}" >&5 $as_echo "${flag}" >&6; } if test "x$flag" != xno; then PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" fi LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" # More AIX lossage: must compile with xlc_r or cc_r if test x"$GCC" != xyes; then for ac_prog in xlc_r cc_r do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_PTHREAD_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$PTHREAD_CC"; then ac_cv_prog_PTHREAD_CC="$PTHREAD_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_PTHREAD_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi PTHREAD_CC=$ac_cv_prog_PTHREAD_CC if test -n "$PTHREAD_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PTHREAD_CC" >&5 $as_echo "$PTHREAD_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$PTHREAD_CC" && break done test -n "$PTHREAD_CC" || PTHREAD_CC="${CC}" else PTHREAD_CC=$CC fi else PTHREAD_CC="$CC" fi # Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: if test x"$ax_pthread_ok" = xyes; then $as_echo "#define HAVE_PTHREAD 1" >>confdefs.h : else ax_pthread_ok=no fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu 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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "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+set}" = set; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue 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 # Passes both tests. ac_preproc_ok=: break 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 fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue 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 # Passes both tests. ac_preproc_ok=: break 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 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$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 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if test "${ac_cv_path_GREP+set}" = set; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" { test -f "$ac_path_GREP" && $as_test_x "$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 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '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 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if test "${ac_cv_path_EGREP+set}" = set; then : $as_echo_n "(cached) " >&6 else 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 test -z "$as_dir" && as_dir=. 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" { test -f "$ac_path_EGREP" && $as_test_x "$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 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '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 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if test "${ac_cv_header_stdc+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_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 `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the Microsoft C compiler" >&5 $as_echo_n "checking whether we are using the Microsoft C compiler... " >&6; } if test "${ax_cv_c_compiler_ms+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef _MSC_VER choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ax_compiler_ms=yes else ax_compiler_ms=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ax_cv_c_compiler_ms=$ax_compiler_ms fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_c_compiler_ms" >&5 $as_echo "$ax_cv_c_compiler_ms" >&6; } if test X$ax_compiler_ms = Xno; then : GL_CFLAGS="${PTHREAD_CFLAGS}"; GL_LIBS="${PTHREAD_LIBS}" fi # # Use x_includes and x_libraries if they have been set (presumably by # AC_PATH_X). # if test X$no_x != Xyes -a -n "$x_includes"; then : GL_CFLAGS="-I$x_includes $GL_CFLAGS" fi for ac_header in windows.h do : ac_fn_c_check_header_mongrel "$LINENO" "windows.h" "ac_cv_header_windows_h" "$ac_includes_default" if test "x$ac_cv_header_windows_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_WINDOWS_H 1 _ACEOF fi done ax_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$GL_CFLAGS $CPPFLAGS" for ac_header in GL/gl.h OpenGL/gl.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" " # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done CPPFLAGS=$ax_save_CPPFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OpenGL library" >&5 $as_echo_n "checking for OpenGL library... " >&6; } if test "${ax_cv_check_gl_libgl+set}" = set; then : $as_echo_n "(cached) " >&6 else ax_cv_check_gl_libgl=no case $host_cpu in x86_64) ax_check_gl_libdir=lib64 ;; *) ax_check_gl_libdir=lib ;; esac ax_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $GL_CFLAGS" ax_save_LDFLAGS=$LDFLAGS if test X$no_x != Xyes -a -n "$x_libraries"; then : LDFLAGS="$LDFLAGS -L$x_libraries" fi ax_save_LIBS=$LIBS ax_check_libs="-lopengl32 -lGL" for ax_lib in $ax_check_libs; do if test X$ax_compiler_ms = Xyes; then : ax_try_lib=`echo $ax_lib | $SED -e 's/^-l//' -e 's/$/.lib/'` else ax_try_lib=$ax_lib fi LDFLAGS="$ax_save_LDFLAGS $GL_LIBS" LIBS="$ax_try_lib $ax_save_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif # ifdef HAVE_GL_GL_H # include # elif defined(HAVE_OPENGL_GL_H) # include # else # error no gl.h # endif int main () { glBegin(0) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ax_cv_check_gl_libgl=$ax_try_lib; break else ax_check_gl_nvidia_flags="-L/usr/$ax_check_gl_libdir/nvidia" LDFLAGS="$ax_save_LDFLAGS $GL_LIBS $ax_check_gl_nvidia_flags" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif # ifdef HAVE_GL_GL_H # include # elif defined(HAVE_OPENGL_GL_H) # include # else # error no gl.h # endif int main () { glBegin(0) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ax_cv_check_gl_libgl="$ax_check_gl_nvidia_flags $ax_try_lib"; break else ax_check_gl_dylib_flag='-dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib' LDFLAGS="$ax_save_LDFLAGS $GL_LIBS $ax_check_gl_dylib_flag" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif # ifdef HAVE_GL_GL_H # include # elif defined(HAVE_OPENGL_GL_H) # include # else # error no gl.h # endif int main () { glBegin(0) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ax_cv_check_gl_libgl="$ax_check_gl_dylib_flag $ax_try_lib"; break fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext done # # If no_x is "yes", we don't want to wind up using a libGL that is # linked with X11. Test to see if the found libGL includes GLX # functions. If it does and no_x is "yes", we want to reset # ax_cv_check_gl_libgl back to "no". # # Note that LDFLAGS and LIBS should still have whatever values they # had when we broke out of the test loop above; use that. # if test "X$ax_cv_check_gl_libgl" != Xno; then : cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif # ifdef HAVE_GL_GL_H # include # elif defined(HAVE_OPENGL_GL_H) # include # else # error no gl.h # endif int main () { glXQueryVersion(0, 0, 0) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if test X$no_x = Xyes; then : ax_cv_check_gl_libgl=no fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi LIBS=$ax_save_LIBS if test "X$ax_cv_check_gl_libgl" = Xno -a X$no_x = Xyes; then : LDFLAGS="$ax_save_LDFLAGS -framework OpenGL" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif # ifdef HAVE_GL_GL_H # include # elif defined(HAVE_OPENGL_GL_H) # include # else # error no gl.h # endif int main () { glBegin(0) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ax_cv_check_gl_libgl='-framework OpenGL' fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi LDFLAGS=$ax_save_LDFLAGS CPPFLAGS=$ax_save_CPPFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_gl_libgl" >&5 $as_echo "$ax_cv_check_gl_libgl" >&6; } if test "X$ax_cv_check_gl_libgl" = Xno; then : no_gl=yes; GL_CFLAGS=""; GL_LIBS="" else GL_LIBS="$ax_cv_check_gl_libgl $GL_LIBS" fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu GLU_CFLAGS=$GL_CFLAGS ax_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$GL_CFLAGS $CPPFLAGS" for ac_header in GL/glu.h OpenGL/glu.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_cxx_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" " # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done CPPFLAGS=$ax_save_CPPFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking for OpenGL Utility library" >&5 $as_echo_n "checking for OpenGL Utility library... " >&6; } if test "${ax_cv_check_glu_libglu+set}" = set; then : $as_echo_n "(cached) " >&6 else ax_cv_check_glu_libglu=no ax_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$GL_CFLAGS $CPPFLAGS" ax_save_LDFLAGS=$LDFLAGS ax_save_LIBS=$LIBS # # First, check for the possibility that everything we need is already in # GL_LIBS. # LDFLAGS="$ax_save_LDFLAGS $GL_LIBS" # # libGLU typically links with libstdc++ on POSIX platforms. # However, setting the language to C++ means that test program # source is named "conftest.cc"; and Microsoft cl doesn't know what # to do with such a file. # ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test X$ax_compiler_ms = Xyes; then : ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif # ifdef HAVE_GL_GLU_H # include # elif defined(HAVE_OPENGL_GLU_H) # include # else # error no glu.h # endif int main () { gluBeginCurve(0) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ax_cv_check_glu_libglu=yes else LIBS="" ax_check_libs="-lglu32 -lGLU" for ax_lib in ${ax_check_libs}; do if test X$ax_compiler_ms = Xyes; then : ax_try_lib=`echo $ax_lib | $SED -e 's/^-l//' -e 's/$/.lib/'` else ax_try_lib=$ax_lib fi LIBS="$ax_try_lib $ax_save_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif # ifdef HAVE_GL_GLU_H # include # elif defined(HAVE_OPENGL_GLU_H) # include # else # error no glu.h # endif int main () { gluBeginCurve(0) ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ax_cv_check_glu_libglu=$ax_try_lib; break fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext done fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test X$ax_compiler_ms = Xyes; then : ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu LIBS=$ax_save_LIBS LDFLAGS=$ax_save_LDFLAGS CPPFLAGS=$ax_save_CPPFLAGS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_check_glu_libglu" >&5 $as_echo "$ax_cv_check_glu_libglu" >&6; } if test "X$ax_cv_check_glu_libglu" = Xno; then : no_glu=yes; GLU_CFLAGS=""; GLU_LIBS="" else if test "X$ax_cv_check_glu_libglu" = Xyes; then : GLU_LIBS="" else GLU_LIBS="$ax_cv_check_glu_libglu" fi fi # # Some versions of Mac OS X include a broken interpretation of the GLU # tesselation callback function signature when using the C++ compiler. # if test "X$ax_cv_check_glu_libglu" != Xno; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for varargs GLU tesselator callback function type" >&5 $as_echo_n "checking for varargs GLU tesselator callback function type... " >&6; } if test "${ax_cv_varargs_glu_tesscb+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu ax_cv_varargs_glu_tesscb=no ax_save_CXXFLAGS=$CXXFLAGS CXXFLAGS="$GL_CFLAGS $CXXFLAGS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ # ifdef HAVE_GL_GLU_H # include # else # include # endif int main () { GLvoid (*func)(...); gluTessCallback(0, 0, func) ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ax_cv_varargs_glu_tesscb=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext CXXFLAGS=$ax_save_CXXFLAGS ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ax_cv_varargs_glu_tesscb" >&5 $as_echo "$ax_cv_varargs_glu_tesscb" >&6; } if test X$ax_cv_varargs_glu_tesscb = Xyes; then : $as_echo "#define HAVE_VARARGS_GLU_TESSCB 1" >>confdefs.h fi fi CXXFLAGS="$CXXFLAGS $GL_CFLAGS $GLU_CFLAGS" CPPFLAGS="$CPPFLAGS $GL_CFLAGS $GLU_CFLAGS" LIBS="$LIBS $GL_LIBS $GLU_LIBS" #SDL SDL_VERSION=1.2.10 # Check whether --with-sdl-prefix was given. if test "${with_sdl_prefix+set}" = set; then : withval=$with_sdl_prefix; sdl_prefix="$withval" else sdl_prefix="" fi # Check whether --with-sdl-exec-prefix was given. if test "${with_sdl_exec_prefix+set}" = set; then : withval=$with_sdl_exec_prefix; sdl_exec_prefix="$withval" else sdl_exec_prefix="" fi # Check whether --enable-sdltest was given. if test "${enable_sdltest+set}" = set; then : enableval=$enable_sdltest; else enable_sdltest=yes fi if test x$sdl_exec_prefix != x ; then sdl_args="$sdl_args --exec-prefix=$sdl_exec_prefix" if test x${SDL_CONFIG+set} != xset ; then SDL_CONFIG=$sdl_exec_prefix/bin/sdl-config fi fi if test x$sdl_prefix != x ; then sdl_args="$sdl_args --prefix=$sdl_prefix" if test x${SDL_CONFIG+set} != xset ; then SDL_CONFIG=$sdl_prefix/bin/sdl-config fi fi if test "x$prefix" != xNONE; then PATH="$prefix/bin:$prefix/usr/bin:$PATH" fi # Extract the first word of "sdl-config", so it can be a program name with args. set dummy sdl-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_SDL_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $SDL_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_SDL_CONFIG="$SDL_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_SDL_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$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_SDL_CONFIG" && ac_cv_path_SDL_CONFIG="no" ;; esac fi SDL_CONFIG=$ac_cv_path_SDL_CONFIG if test -n "$SDL_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $SDL_CONFIG" >&5 $as_echo "$SDL_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi min_sdl_version=$SDL_VERSION { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SDL - version >= $min_sdl_version" >&5 $as_echo_n "checking for SDL - version >= $min_sdl_version... " >&6; } no_sdl="" if test "$SDL_CONFIG" = "no" ; then no_sdl=yes else SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags` SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs` sdl_major_version=`$SDL_CONFIG $sdl_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` sdl_minor_version=`$SDL_CONFIG $sdl_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` sdl_micro_version=`$SDL_CONFIG $sdl_config_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` if test "x$enable_sdltest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_CXXFLAGS="$CXXFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $SDL_CFLAGS" CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" rm -f conf.sdltest if test "$cross_compiling" = yes; then : echo $ac_n "cross compiling; assumed OK... $ac_c" else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include "SDL.h" char* my_strdup (char *str) { char *new_str; if (str) { new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char)); strcpy (new_str, str); } else new_str = NULL; return new_str; } int main (int argc, char *argv[]) { int major, minor, micro; char *tmp_version; /* This hangs on some systems (?) system ("touch conf.sdltest"); */ { FILE *fp = fopen("conf.sdltest", "a"); if ( fp ) fclose(fp); } /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = my_strdup("$min_sdl_version"); if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_sdl_version"); exit(1); } if (($sdl_major_version > major) || (($sdl_major_version == major) && ($sdl_minor_version > minor)) || (($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro))) { return 0; } else { printf("\n*** 'sdl-config --version' returned %d.%d.%d, but the minimum version\n", $sdl_major_version, $sdl_minor_version, $sdl_micro_version); printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it is\n", major, minor, micro); printf("*** best to upgrade to the required version.\n"); printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIG\n"); printf("*** to point to the correct copy of sdl-config, and remove the file\n"); printf("*** config.cache before re-running configure\n"); return 1; } } _ACEOF if ac_fn_cxx_try_run "$LINENO"; then : else no_sdl=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi CFLAGS="$ac_save_CFLAGS" CXXFLAGS="$ac_save_CXXFLAGS" LIBS="$ac_save_LIBS" fi fi if test "x$no_sdl" = x ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } : else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "$SDL_CONFIG" = "no" ; then echo "*** The sdl-config script installed by SDL could not be found" echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in" echo "*** your path, or set the SDL_CONFIG environment variable to the" echo "*** full path to sdl-config." else if test -f conf.sdltest ; then : else echo "*** Could not run SDL test program, checking why..." CFLAGS="$CFLAGS $SDL_CFLAGS" CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include "SDL.h" int main(int argc, char *argv[]) { return 0; } #undef main #define main K_and_R_C_main int main () { return 0; ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding SDL or finding the wrong" echo "*** version of SDL. If it is not finding SDL, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH" else echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means SDL was incorrectly installed" echo "*** or that you have moved SDL since it was installed. In the latter case, you" echo "*** may want to edit the sdl-config script: $SDL_CONFIG" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext CFLAGS="$ac_save_CFLAGS" CXXFLAGS="$ac_save_CXXFLAGS" LIBS="$ac_save_LIBS" fi fi SDL_CFLAGS="" SDL_LIBS="" as_fn_error $? "*** SDL version $SDL_VERSION not found!" "$LINENO" 5 fi rm -f conf.sdltest CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" CPPFLAGS="$CPPFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" #Freetype2 # Get the cflags and libraries from the freetype-config script # # Check whether --with-ft-prefix was given. if test "${with_ft_prefix+set}" = set; then : withval=$with_ft_prefix; ft_config_prefix="$withval" else ft_config_prefix="" fi # Check whether --with-ft-exec-prefix was given. if test "${with_ft_exec_prefix+set}" = set; then : withval=$with_ft_exec_prefix; ft_config_exec_prefix="$withval" else ft_config_exec_prefix="" fi # Check whether --enable-freetypetest was given. if test "${enable_freetypetest+set}" = set; then : enableval=$enable_freetypetest; else enable_fttest=yes fi if test x$ft_config_exec_prefix != x ; then ft_config_args="$ft_config_args --exec-prefix=$ft_config_exec_prefix" if test x${FT2_CONFIG+set} != xset ; then FT2_CONFIG=$ft_config_exec_prefix/bin/freetype-config fi fi if test x$ft_config_prefix != x ; then ft_config_args="$ft_config_args --prefix=$ft_config_prefix" if test x${FT2_CONFIG+set} != xset ; then FT2_CONFIG=$ft_config_prefix/bin/freetype-config fi fi # Extract the first word of "freetype-config", so it can be a program name with args. set dummy freetype-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_FT2_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $FT2_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_FT2_CONFIG="$FT2_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_FT2_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$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_FT2_CONFIG" && ac_cv_path_FT2_CONFIG="no" ;; esac fi FT2_CONFIG=$ac_cv_path_FT2_CONFIG if test -n "$FT2_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $FT2_CONFIG" >&5 $as_echo "$FT2_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi min_ft_version=9.0.3 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for FreeType -- version >= $min_ft_version" >&5 $as_echo_n "checking for FreeType -- version >= $min_ft_version... " >&6; } no_ft="" if test "$FT2_CONFIG" = "no" ; then no_ft=yes else FT2_CFLAGS=`$FT2_CONFIG $ft_config_args --cflags` FT2_LIBS=`$FT2_CONFIG $ft_config_args --libs` ft_config_major_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` ft_config_minor_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` ft_config_micro_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` ft_min_major_version=`echo $min_ft_version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\1/'` ft_min_minor_version=`echo $min_ft_version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\2/'` ft_min_micro_version=`echo $min_ft_version | \ sed 's/\([0-9]*\).\([0-9]*\).\([0-9]*\)/\3/'` if test x$enable_fttest = xyes ; then ft_config_is_lt="" if test $ft_config_major_version -lt $ft_min_major_version ; then ft_config_is_lt=yes else if test $ft_config_major_version -eq $ft_min_major_version ; then if test $ft_config_minor_version -lt $ft_min_minor_version ; then ft_config_is_lt=yes else if test $ft_config_minor_version -eq $ft_min_minor_version ; then if test $ft_config_micro_version -lt $ft_min_micro_version ; then ft_config_is_lt=yes fi fi fi fi fi if test x$ft_config_is_lt = xyes ; then no_ft=yes else ac_save_CPPFLAGS="$CPPFLAGS" ac_save_LIBS="$LIBS" CPPFLAGS="$CPPFLAGS $FT2_CFLAGS" LIBS="$FT2_LIBS $LIBS" # # Sanity checks for the results of freetype-config to some extent. # if test "$cross_compiling" = yes; then : echo $ECHO_N "cross compiling; assuming OK... $ECHO_C" else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include FT_FREETYPE_H #include #include int main() { FT_Library library; FT_Error error; error = FT_Init_FreeType(&library); if (error) return 1; else { FT_Done_FreeType(library); return 0; } } _ACEOF if ac_fn_cxx_try_run "$LINENO"; then : else no_ft=yes fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi CPPFLAGS="$ac_save_CPPFLAGS" LIBS="$ac_save_LIBS" fi # test $ft_config_version -lt $ft_min_version fi # test x$enable_fttest = xyes fi # test "$FT2_CONFIG" = "no" if test x$no_ft = x ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } : else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if test "$FT2_CONFIG" = "no" ; then # AC_MSG_WARN([ # The freetype-config script installed by FreeType 2 could not be found. # If FreeType 2 was installed in PREFIX, make sure PREFIX/bin is in # your path, or set the FT2_CONFIG environment variable to the # full path to freetype-config. # ]) : else if test x$ft_config_is_lt = xyes ; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Your installed version of the FreeType 2 library is too old. If you have different versions of FreeType 2, make sure that correct values for --with-ft-prefix or --with-ft-exec-prefix are used, or set the FT2_CONFIG environment variable to the full path to freetype-config. " >&5 $as_echo "$as_me: WARNING: Your installed version of the FreeType 2 library is too old. If you have different versions of FreeType 2, make sure that correct values for --with-ft-prefix or --with-ft-exec-prefix are used, or set the FT2_CONFIG environment variable to the full path to freetype-config. " >&2;} else { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: The FreeType test program failed to run. If your system uses shared libraries and they are installed outside the normal system library path, make sure the variable LD_LIBRARY_PATH (or whatever is appropriate for your system) is correctly set. " >&5 $as_echo "$as_me: WARNING: The FreeType test program failed to run. If your system uses shared libraries and they are installed outside the normal system library path, make sure the variable LD_LIBRARY_PATH (or whatever is appropriate for your system) is correctly set. " >&2;} fi fi FT2_CFLAGS="" FT2_LIBS="" as_fn_error $? "FreeType2 is required by FTGL. Please see INSTALL" "$LINENO" 5 fi CXXFLAGS="$CXXFLAGS $FT2_CFLAGS" CPPFLAGS="$CPPFLAGS $FT2_CFLAGS" #FTGL if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for FTGL" >&5 $as_echo_n "checking for FTGL... " >&6; } if test -n "$PKG_CONFIG"; then if test -n "$FTGL_CFLAGS"; then pkg_cv_FTGL_CFLAGS="$FTGL_CFLAGS" else if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ftgl >= 2.1.3\""; } >&5 ($PKG_CONFIG --exists --print-errors "ftgl >= 2.1.3") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_FTGL_CFLAGS=`$PKG_CONFIG --cflags "ftgl >= 2.1.3" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test -n "$PKG_CONFIG"; then if test -n "$FTGL_LIBS"; then pkg_cv_FTGL_LIBS="$FTGL_LIBS" else if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"ftgl >= 2.1.3\""; } >&5 ($PKG_CONFIG --exists --print-errors "ftgl >= 2.1.3") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_FTGL_LIBS=`$PKG_CONFIG --libs "ftgl >= 2.1.3" 2>/dev/null` else pkg_failed=yes fi fi else pkg_failed=untried fi if test $pkg_failed = yes; then if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then FTGL_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "ftgl >= 2.1.3"` else FTGL_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "ftgl >= 2.1.3"` fi # Put the nasty error message in config.log where it belongs echo "$FTGL_PKG_ERRORS" >&5 { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } as_fn_error $? "FTGL 2.1.3 or greater is required. Please see INSTALL" "$LINENO" 5 elif test $pkg_failed = untried; then as_fn_error $? "FTGL 2.1.3 or greater is required. Please see INSTALL" "$LINENO" 5 else FTGL_CFLAGS=$pkg_cv_FTGL_CFLAGS FTGL_LIBS=$pkg_cv_FTGL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } : fi CXXFLAGS="$CXXFLAGS $FTGL_CFLAGS" CPPFLAGS="$CPPFLAGS $FTGL_CFLAGS" LIBS="$LIBS $FTGL_LIBS" #PNG library { $as_echo "$as_me:${as_lineno-$LINENO}: checking for png_read_info in -lpng" >&5 $as_echo_n "checking for png_read_info in -lpng... " >&6; } if test "${ac_cv_lib_png_png_read_info+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lpng $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. */ #ifdef __cplusplus extern "C" #endif char png_read_info (); int main () { return png_read_info (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_png_png_read_info=yes else ac_cv_lib_png_png_read_info=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_png_png_read_info" >&5 $as_echo "$ac_cv_lib_png_png_read_info" >&6; } if test "x$ac_cv_lib_png_png_read_info" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBPNG 1 _ACEOF LIBS="-lpng $LIBS" else as_fn_error $? "PNG library required. Please see INSTALL" "$LINENO" 5 fi #JPEG library { $as_echo "$as_me:${as_lineno-$LINENO}: checking for jpeg_read_header in -ljpeg" >&5 $as_echo_n "checking for jpeg_read_header in -ljpeg... " >&6; } if test "${ac_cv_lib_jpeg_jpeg_read_header+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ljpeg $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. */ #ifdef __cplusplus extern "C" #endif char jpeg_read_header (); int main () { return jpeg_read_header (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_jpeg_jpeg_read_header=yes else ac_cv_lib_jpeg_jpeg_read_header=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_jpeg_jpeg_read_header" >&5 $as_echo "$ac_cv_lib_jpeg_jpeg_read_header" >&6; } if test "x$ac_cv_lib_jpeg_jpeg_read_header" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBJPEG 1 _ACEOF LIBS="-ljpeg $LIBS" else as_fn_error $? "JPEG library required. Please see INSTALL" "$LINENO" 5 fi #SDL_image library with PNG support { $as_echo "$as_me:${as_lineno-$LINENO}: checking for IMG_LoadPNG_RW in -lSDL_image" >&5 $as_echo_n "checking for IMG_LoadPNG_RW in -lSDL_image... " >&6; } if test "${ac_cv_lib_SDL_image_IMG_LoadPNG_RW+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lSDL_image $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. */ #ifdef __cplusplus extern "C" #endif char IMG_LoadPNG_RW (); int main () { return IMG_LoadPNG_RW (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_SDL_image_IMG_LoadPNG_RW=yes else ac_cv_lib_SDL_image_IMG_LoadPNG_RW=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_SDL_image_IMG_LoadPNG_RW" >&5 $as_echo "$ac_cv_lib_SDL_image_IMG_LoadPNG_RW" >&6; } if test "x$ac_cv_lib_SDL_image_IMG_LoadPNG_RW" = x""yes; then : LIBS="$LIBS -lSDL_image" else as_fn_error $? "SDL_image required. Please see INSTALL" "$LINENO" 5 fi #PCRE { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pcre_compile in -lpcre" >&5 $as_echo_n "checking for pcre_compile in -lpcre... " >&6; } if test "${ac_cv_lib_pcre_pcre_compile+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lpcre $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. */ #ifdef __cplusplus extern "C" #endif char pcre_compile (); int main () { return pcre_compile (); ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : ac_cv_lib_pcre_pcre_compile=yes else ac_cv_lib_pcre_pcre_compile=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pcre_pcre_compile" >&5 $as_echo "$ac_cv_lib_pcre_pcre_compile" >&6; } if test "x$ac_cv_lib_pcre_pcre_compile" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBPCRE 1 _ACEOF LIBS="-lpcre $LIBS" else as_fn_error $? "PCRE is required. Please see INSTALL" "$LINENO" 5 fi #Check for required headers ac_fn_cxx_check_header_mongrel "$LINENO" "SDL.h" "ac_cv_header_SDL_h" "$ac_includes_default" if test "x$ac_cv_header_SDL_h" = x""yes; then : else as_fn_error $? "SDL.h is required. Please see INSTALL" "$LINENO" 5 fi ac_fn_cxx_check_header_mongrel "$LINENO" "SDL_image.h" "ac_cv_header_SDL_image_h" "$ac_includes_default" if test "x$ac_cv_header_SDL_image_h" = x""yes; then : else as_fn_error $? "SDL_image.h is required. Please see INSTALL" "$LINENO" 5 fi ac_fn_cxx_check_header_mongrel "$LINENO" "ftgl.h" "ac_cv_header_ftgl_h" "$ac_includes_default" if test "x$ac_cv_header_ftgl_h" = x""yes; then : else as_fn_error $? "ftgl.h is required. Please see INSTALL" "$LINENO" 5 fi ac_fn_cxx_check_header_mongrel "$LINENO" "pcre.h" "ac_cv_header_pcre_h" "$ac_includes_default" if test "x$ac_cv_header_pcre_h" = x""yes; then : else as_fn_error $? "pcre.h is required. Please see INSTALL" "$LINENO" 5 fi #see if ttf-font-dir option is enabled # Check whether --enable-ttf-font-dir was given. if test "${enable_ttf_font_dir+set}" = set; then : enableval=$enable_ttf_font_dir; sdlappfontdir="$enableval" else sdlappfontdir="" fi if test "x$sdlappfontdir" != "x"; then FONTDIR_TRUE= FONTDIR_FALSE='#' else FONTDIR_TRUE='#' FONTDIR_FALSE= fi ac_config_files="$ac_config_files Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, 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_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$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+set}" = set || &/ 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 test "x$cache_file" != "x/dev/null" && { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$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}' # Transform confdefs.h into DEFS. # Protect against shell expansion while executing Makefile rules. # Protect against Makefile macro expansion. # # If the first sed substitution is executed (which looks for macros that # take arguments), then branch to the quote section. Otherwise, # look for a macro that doesn't take arguments. ac_script=' :mline /\\$/{ N s,\\\n,, b mline } t clear :clear s/^[ ]*#[ ]*define[ ][ ]*\([^ (][^ (]*([^)]*)\)[ ]*\(.*\)/-D\1=\2/g t quote s/^[ ]*#[ ]*define[ ][ ]*\([^ ][^ ]*\)[ ]*\(.*\)/-D\1=\2/g t quote b any :quote s/[ `~#$^&*(){}\\|;'\''"<>?]/\\&/g s/\[/\\&/g s/\]/\\&/g s/\$/$$/g H :any ${ g s/^\n// s/\n/ /g p } ' DEFS=`sed -n "$ac_script" confdefs.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=`$as_echo "$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 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__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCXX\" 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 "${FONTDIR_TRUE}" && test -z "${FONTDIR_FALSE}"; then as_fn_error $? "conditional \"FONTDIR\" 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" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$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 -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 as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. 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 # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done 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 $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # 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 $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$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 as_fn_append () { eval $1=\$$1\$2 } 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 as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } 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 || $as_echo 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 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 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 -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' 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=`$as_echo "$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 || $as_echo 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 if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" 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 Logstalgia $as_me 1.0.3, which was generated by GNU Autoconf 2.67. 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 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" 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 Configuration files: $config_files Configuration commands: $config_commands Report bugs to ." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ Logstalgia config.status 1.0.3 configured by $0, generated by GNU Autoconf 2.67, with options \\"\$ac_cs_config\\" Copyright (C) 2010 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 ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --he | --h | --help | --hel | -h ) $as_echo "$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 \$as_echo "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 $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" _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 "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; *) 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+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason 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= trap 'exit_status=$? { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$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 -n "$tmp" && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 # 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 {' >"$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 >>"\$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 >>"\$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 < "$tmp/subs1.awk" > "$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" eval set X " :F $CONFIG_FILES :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="$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=`$as_echo "$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 '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$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 || $as_echo 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=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$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@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$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 "$tmp/subs.awk" >$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' "$tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && { $as_echo "$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 $as_echo "$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 "$tmp/stdin" case $ac_file in -) cat "$tmp/out" && rm -f "$tmp/out";; *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Autoconf 2.62 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. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; 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 { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi logstalgia-1.0.3/install-sh0000755000203100020310000003253711526610646015500 0ustar andrewcandrewc#!/bin/sh # install - install a program, script, or datafile scriptversion=2009-04-28.21; # 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 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 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 trap '(exit $?); exit' 1 2 13 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 starting with `-'. 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 # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # 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-writeable 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 -z "$d" && 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: logstalgia-1.0.3/m4/0000755000203100020310000000000011526610646014002 5ustar andrewcandrewclogstalgia-1.0.3/m4/ax_pthread.m40000644000203100020310000002576111526610646016376 0ustar andrewcandrewc# =========================================================================== # http://www.nongnu.org/autoconf-archive/ax_pthread.html # =========================================================================== # # SYNOPSIS # # AX_PTHREAD([ACTION-IF-FOUND[, ACTION-IF-NOT-FOUND]]) # # DESCRIPTION # # This macro figures out how to build C programs using POSIX threads. It # sets the PTHREAD_LIBS output variable to the threads library and linker # flags, and the PTHREAD_CFLAGS output variable to any special C compiler # flags that are needed. (The user can also force certain compiler # flags/libs to be tested by setting these environment variables.) # # Also sets PTHREAD_CC to any special C compiler that is needed for # multi-threaded programs (defaults to the value of CC otherwise). (This # is necessary on AIX to use the special cc_r compiler alias.) # # NOTE: You are assumed to not only compile your program with these flags, # but also link it with them as well. e.g. you should link with # $PTHREAD_CC $CFLAGS $PTHREAD_CFLAGS $LDFLAGS ... $PTHREAD_LIBS $LIBS # # If you are only building threads programs, you may wish to use these # variables in your default LIBS, CFLAGS, and CC: # # LIBS="$PTHREAD_LIBS $LIBS" # CFLAGS="$CFLAGS $PTHREAD_CFLAGS" # CC="$PTHREAD_CC" # # In addition, if the PTHREAD_CREATE_JOINABLE thread-attribute constant # has a nonstandard name, defines PTHREAD_CREATE_JOINABLE to that name # (e.g. PTHREAD_CREATE_UNDETACHED on AIX). # # ACTION-IF-FOUND is a list of shell commands to run if a threads library # is found, and ACTION-IF-NOT-FOUND is a list of commands to run it if it # is not found. If ACTION-IF-FOUND is not specified, the default action # will define HAVE_PTHREAD. # # Please let the authors know if this macro fails on any platform, or if # you have any other suggestions or comments. This macro was based on work # by SGJ on autoconf scripts for FFTW (http://www.fftw.org/) (with help # from M. Frigo), as well as ac_pthread and hb_pthread macros posted by # Alejandro Forero Cuervo to the autoconf macro repository. We are also # grateful for the helpful feedback of numerous users. # # LICENSE # # Copyright (c) 2008 Steven G. Johnson # # 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 . # # 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 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. AU_ALIAS([ACX_PTHREAD], [AX_PTHREAD]) AC_DEFUN([AX_PTHREAD], [ AC_REQUIRE([AC_CANONICAL_HOST]) AC_LANG_SAVE AC_LANG_C ax_pthread_ok=no # We used to check for pthread.h first, but this fails if pthread.h # requires special compiler flags (e.g. on True64 or Sequent). # It gets checked for in the link test anyway. # First of all, check if the user has set any of the PTHREAD_LIBS, # etcetera environment variables, and if threads linking works using # them: if test x"$PTHREAD_LIBS$PTHREAD_CFLAGS" != x; then save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" save_LIBS="$LIBS" LIBS="$PTHREAD_LIBS $LIBS" AC_MSG_CHECKING([for pthread_join in LIBS=$PTHREAD_LIBS with CFLAGS=$PTHREAD_CFLAGS]) AC_TRY_LINK_FUNC(pthread_join, ax_pthread_ok=yes) AC_MSG_RESULT($ax_pthread_ok) if test x"$ax_pthread_ok" = xno; then PTHREAD_LIBS="" PTHREAD_CFLAGS="" fi LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" fi # We must check for the threads library under a number of different # names; the ordering is very important because some systems # (e.g. DEC) have both -lpthread and -lpthreads, where one of the # libraries is broken (non-POSIX). # Create a list of thread flags to try. Items starting with a "-" are # C compiler flags, and other items are library names, except for "none" # which indicates that we try without any flags at all, and "pthread-config" # which is a program returning the flags for the Pth emulation library. ax_pthread_flags="pthreads none -Kthread -kthread lthread -pthread -pthreads -mthreads pthread --thread-safe -mt pthread-config" # The ordering *is* (sometimes) important. Some notes on the # individual items follow: # pthreads: AIX (must check this before -lpthread) # none: in case threads are in libc; should be tried before -Kthread and # other compiler flags to prevent continual compiler warnings # -Kthread: Sequent (threads in libc, but -Kthread needed for pthread.h) # -kthread: FreeBSD kernel threads (preferred to -pthread since SMP-able) # lthread: LinuxThreads port on FreeBSD (also preferred to -pthread) # -pthread: Linux/gcc (kernel threads), BSD/gcc (userland threads) # -pthreads: Solaris/gcc # -mthreads: Mingw32/gcc, Lynx/gcc # -mt: Sun Workshop C (may only link SunOS threads [-lthread], but it # doesn't hurt to check since this sometimes defines pthreads too; # also defines -D_REENTRANT) # ... -mt is also the pthreads flag for HP/aCC # pthread: Linux, etcetera # --thread-safe: KAI C++ # pthread-config: use pthread-config program (for GNU Pth library) case "${host_cpu}-${host_os}" in *solaris*) # On Solaris (at least, for some versions), libc contains stubbed # (non-functional) versions of the pthreads routines, so link-based # tests will erroneously succeed. (We need to link with -pthreads/-mt/ # -lpthread.) (The stubs are missing pthread_cleanup_push, or rather # a function called by this macro, so we could check for that, but # who knows whether they'll stub that too in a future libc.) So, # we'll just look for -pthreads and -lpthread first: ax_pthread_flags="-pthreads pthread -mt -pthread $ax_pthread_flags" ;; esac if test x"$ax_pthread_ok" = xno; then for flag in $ax_pthread_flags; do case $flag in none) AC_MSG_CHECKING([whether pthreads work without any flags]) ;; -*) AC_MSG_CHECKING([whether pthreads work with $flag]) PTHREAD_CFLAGS="$flag" ;; pthread-config) AC_CHECK_PROG(ax_pthread_config, pthread-config, yes, no) if test x"$ax_pthread_config" = xno; then continue; fi PTHREAD_CFLAGS="`pthread-config --cflags`" PTHREAD_LIBS="`pthread-config --ldflags` `pthread-config --libs`" ;; *) AC_MSG_CHECKING([for the pthreads library -l$flag]) PTHREAD_LIBS="-l$flag" ;; esac save_LIBS="$LIBS" save_CFLAGS="$CFLAGS" LIBS="$PTHREAD_LIBS $LIBS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" # Check for various functions. We must include pthread.h, # since some functions may be macros. (On the Sequent, we # need a special flag -Kthread to make this header compile.) # We check for pthread_join because it is in -lpthread on IRIX # while pthread_create is in libc. We check for pthread_attr_init # due to DEC craziness with -lpthreads. We check for # pthread_cleanup_push because it is one of the few pthread # functions on Solaris that doesn't have a non-functional libc stub. # We try pthread_create on general principles. AC_TRY_LINK([#include static void routine(void* a) {a=0;} static void* start_routine(void* a) {return a;}], [pthread_t th; pthread_attr_t attr; pthread_join(th, 0); pthread_attr_init(&attr); pthread_cleanup_push(routine, 0); pthread_create(&th,0,start_routine,0); pthread_cleanup_pop(0); ], [ax_pthread_ok=yes]) LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" AC_MSG_RESULT($ax_pthread_ok) if test "x$ax_pthread_ok" = xyes; then break; fi PTHREAD_LIBS="" PTHREAD_CFLAGS="" done fi # Various other checks: if test "x$ax_pthread_ok" = xyes; then save_LIBS="$LIBS" LIBS="$PTHREAD_LIBS $LIBS" save_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS $PTHREAD_CFLAGS" # Detect AIX lossage: JOINABLE attribute is called UNDETACHED. AC_MSG_CHECKING([for joinable pthread attribute]) attr_name=unknown for attr in PTHREAD_CREATE_JOINABLE PTHREAD_CREATE_UNDETACHED; do AC_TRY_LINK([#include ], [int attr=$attr; return attr;], [attr_name=$attr; break]) done AC_MSG_RESULT($attr_name) if test "$attr_name" != PTHREAD_CREATE_JOINABLE; then AC_DEFINE_UNQUOTED(PTHREAD_CREATE_JOINABLE, $attr_name, [Define to necessary symbol if this constant uses a non-standard name on your system.]) fi AC_MSG_CHECKING([if more special flags are required for pthreads]) flag=no case "${host_cpu}-${host_os}" in *-aix* | *-freebsd* | *-darwin*) flag="-D_THREAD_SAFE";; *solaris* | *-osf* | *-hpux*) flag="-D_REENTRANT";; esac AC_MSG_RESULT(${flag}) if test "x$flag" != xno; then PTHREAD_CFLAGS="$flag $PTHREAD_CFLAGS" fi LIBS="$save_LIBS" CFLAGS="$save_CFLAGS" # More AIX lossage: must compile with xlc_r or cc_r if test x"$GCC" != xyes; then AC_CHECK_PROGS(PTHREAD_CC, xlc_r cc_r, ${CC}) else PTHREAD_CC=$CC fi else PTHREAD_CC="$CC" fi AC_SUBST(PTHREAD_LIBS) AC_SUBST(PTHREAD_CFLAGS) AC_SUBST(PTHREAD_CC) # Finally, execute ACTION-IF-FOUND/ACTION-IF-NOT-FOUND: if test x"$ax_pthread_ok" = xyes; then ifelse([$1],,AC_DEFINE(HAVE_PTHREAD,1,[Define if you have POSIX threads libraries and header files.]),[$1]) : else ax_pthread_ok=no $2 fi AC_LANG_RESTORE ])dnl AX_PTHREAD logstalgia-1.0.3/m4/ax_check_gl.m40000644000203100020310000001266011526610646016500 0ustar andrewcandrewc# -*- mode: autoconf -*- # # AX_CHECK_GL # # Check for an OpenGL implementation. If GL is found, the required compiler # and linker flags are included in the output variables "GL_CFLAGS" and # "GL_LIBS", respectively. If no usable GL implementation is found, "no_gl" # is set to "yes". # # If the header "GL/gl.h" is found, "HAVE_GL_GL_H" is defined. If the header # "OpenGL/gl.h" is found, HAVE_OPENGL_GL_H is defined. These preprocessor # definitions may not be mutually exclusive. # # version: 2.6 # author: Braden McDaniel # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception, the you may 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. # AC_DEFUN([AX_CHECK_GL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PATH_X])dnl AC_REQUIRE([AC_PROG_SED])dnl AC_REQUIRE([AX_PTHREAD])dnl AC_LANG_PUSH([C]) AX_LANG_COMPILER_MS AS_IF([test X$ax_compiler_ms = Xno], [GL_CFLAGS="${PTHREAD_CFLAGS}"; GL_LIBS="${PTHREAD_LIBS}"]) # # Use x_includes and x_libraries if they have been set (presumably by # AC_PATH_X). # AS_IF([test X$no_x != Xyes -a -n "$x_includes"], [GL_CFLAGS="-I$x_includes $GL_CFLAGS"]) AC_CHECK_HEADERS([windows.h]) ax_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$GL_CFLAGS $CPPFLAGS" AC_CHECK_HEADERS([GL/gl.h OpenGL/gl.h], , , [ # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif ]) CPPFLAGS=$ax_save_CPPFLAGS m4_define([AX_CHECK_GL_PROGRAM], [AC_LANG_PROGRAM([[ # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif # ifdef HAVE_GL_GL_H # include # elif defined(HAVE_OPENGL_GL_H) # include # else # error no gl.h # endif]], [[glBegin(0)]])]) m4_define([AX_CHECK_GL_GLX_PROGRAM], [AC_LANG_PROGRAM([[ # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif # ifdef HAVE_GL_GL_H # include # elif defined(HAVE_OPENGL_GL_H) # include # else # error no gl.h # endif]], [[glXQueryVersion(0, 0, 0)]])]) AC_CACHE_CHECK([for OpenGL library], [ax_cv_check_gl_libgl], [ax_cv_check_gl_libgl=no case $host_cpu in x86_64) ax_check_gl_libdir=lib64 ;; *) ax_check_gl_libdir=lib ;; esac ax_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$CPPFLAGS $GL_CFLAGS" ax_save_LDFLAGS=$LDFLAGS AS_IF([test X$no_x != Xyes -a -n "$x_libraries"], [LDFLAGS="$LDFLAGS -L$x_libraries"]) ax_save_LIBS=$LIBS ax_check_libs="-lopengl32 -lGL" for ax_lib in $ax_check_libs; do AS_IF([test X$ax_compiler_ms = Xyes], [ax_try_lib=`echo $ax_lib | $SED -e 's/^-l//' -e 's/$/.lib/'`], [ax_try_lib=$ax_lib]) LDFLAGS="$ax_save_LDFLAGS $GL_LIBS" LIBS="$ax_try_lib $ax_save_LIBS" AC_LINK_IFELSE([AX_CHECK_GL_PROGRAM], [ax_cv_check_gl_libgl=$ax_try_lib; break], [ax_check_gl_nvidia_flags="-L/usr/$ax_check_gl_libdir/nvidia" LDFLAGS="$ax_save_LDFLAGS $GL_LIBS $ax_check_gl_nvidia_flags" AC_LINK_IFELSE([AX_CHECK_GL_PROGRAM], [ax_cv_check_gl_libgl="$ax_check_gl_nvidia_flags $ax_try_lib"; break], [ax_check_gl_dylib_flag='-dylib_file /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib:/System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib' LDFLAGS="$ax_save_LDFLAGS $GL_LIBS $ax_check_gl_dylib_flag" AC_LINK_IFELSE([AX_CHECK_GL_PROGRAM], [ax_cv_check_gl_libgl="$ax_check_gl_dylib_flag $ax_try_lib"; break])])]) done # # If no_x is "yes", we don't want to wind up using a libGL that is # linked with X11. Test to see if the found libGL includes GLX # functions. If it does and no_x is "yes", we want to reset # ax_cv_check_gl_libgl back to "no". # # Note that LDFLAGS and LIBS should still have whatever values they # had when we broke out of the test loop above; use that. # AS_IF([test "X$ax_cv_check_gl_libgl" != Xno], [AC_LINK_IFELSE([AX_CHECK_GL_GLX_PROGRAM], [AS_IF([test X$no_x = Xyes], [ax_cv_check_gl_libgl=no])])]) LIBS=$ax_save_LIBS AS_IF([test "X$ax_cv_check_gl_libgl" = Xno -a X$no_x = Xyes], [LDFLAGS="$ax_save_LDFLAGS -framework OpenGL" AC_LINK_IFELSE([AX_CHECK_GL_PROGRAM], [ax_cv_check_gl_libgl='-framework OpenGL'])]) LDFLAGS=$ax_save_LDFLAGS CPPFLAGS=$ax_save_CPPFLAGS]) AS_IF([test "X$ax_cv_check_gl_libgl" = Xno], [no_gl=yes; GL_CFLAGS=""; GL_LIBS=""], [GL_LIBS="$ax_cv_check_gl_libgl $GL_LIBS"]) AC_LANG_POP([C]) AC_SUBST([GL_CFLAGS]) AC_SUBST([GL_LIBS]) ])dnl logstalgia-1.0.3/m4/ax_lang_compiler_ms.m40000644000203100020310000000307711526610646020255 0ustar andrewcandrewc# -*- mode: autoconf -*- # # Check whether the compiler for the current language is Microsoft. # # This macro is modeled after _AC_LANG_COMPILER_GNU in the GNU Autoconf # implementation. # # version: 1.0 # author: Braden McDaniel # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception, the you may 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. # AC_DEFUN([AX_LANG_COMPILER_MS], [AC_CACHE_CHECK([whether we are using the Microsoft _AC_LANG compiler], [ax_cv_[]_AC_LANG_ABBREV[]_compiler_ms], [AC_COMPILE_IFELSE([AC_LANG_PROGRAM([], [[#ifndef _MSC_VER choke me #endif ]])], [ax_compiler_ms=yes], [ax_compiler_ms=no]) ax_cv_[]_AC_LANG_ABBREV[]_compiler_ms=$ax_compiler_ms ])]) logstalgia-1.0.3/m4/sdl.m40000644000203100020310000001440411526610646015031 0ustar andrewcandrewc# Configure paths for SDL # Sam Lantinga 9/21/99 # stolen from Manish Singh # stolen back from Frank Belew # stolen from Manish Singh # Shamelessly stolen from Owen Taylor dnl AM_PATH_SDL([MINIMUM-VERSION, [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) dnl Test for SDL, and define SDL_CFLAGS and SDL_LIBS dnl AC_DEFUN([AM_PATH_SDL], [dnl dnl Get the cflags and libraries from the sdl-config script dnl AC_ARG_WITH(sdl-prefix,[ --with-sdl-prefix=PFX Prefix where SDL is installed (optional)], sdl_prefix="$withval", sdl_prefix="") AC_ARG_WITH(sdl-exec-prefix,[ --with-sdl-exec-prefix=PFX Exec prefix where SDL is installed (optional)], sdl_exec_prefix="$withval", sdl_exec_prefix="") AC_ARG_ENABLE(sdltest, [ --disable-sdltest Do not try to compile and run a test SDL program], , enable_sdltest=yes) if test x$sdl_exec_prefix != x ; then sdl_args="$sdl_args --exec-prefix=$sdl_exec_prefix" if test x${SDL_CONFIG+set} != xset ; then SDL_CONFIG=$sdl_exec_prefix/bin/sdl-config fi fi if test x$sdl_prefix != x ; then sdl_args="$sdl_args --prefix=$sdl_prefix" if test x${SDL_CONFIG+set} != xset ; then SDL_CONFIG=$sdl_prefix/bin/sdl-config fi fi if test "x$prefix" != xNONE; then PATH="$prefix/bin:$prefix/usr/bin:$PATH" fi AC_PATH_PROG(SDL_CONFIG, sdl-config, no, [$PATH]) min_sdl_version=ifelse([$1], ,0.11.0,$1) AC_MSG_CHECKING(for SDL - version >= $min_sdl_version) no_sdl="" if test "$SDL_CONFIG" = "no" ; then no_sdl=yes else SDL_CFLAGS=`$SDL_CONFIG $sdlconf_args --cflags` SDL_LIBS=`$SDL_CONFIG $sdlconf_args --libs` sdl_major_version=`$SDL_CONFIG $sdl_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` sdl_minor_version=`$SDL_CONFIG $sdl_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` sdl_micro_version=`$SDL_CONFIG $sdl_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` if test "x$enable_sdltest" = "xyes" ; then ac_save_CFLAGS="$CFLAGS" ac_save_CXXFLAGS="$CXXFLAGS" ac_save_LIBS="$LIBS" CFLAGS="$CFLAGS $SDL_CFLAGS" CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" dnl dnl Now check if the installed SDL is sufficiently new. (Also sanity dnl checks the results of sdl-config to some extent dnl rm -f conf.sdltest AC_TRY_RUN([ #include #include #include #include "SDL.h" char* my_strdup (char *str) { char *new_str; if (str) { new_str = (char *)malloc ((strlen (str) + 1) * sizeof(char)); strcpy (new_str, str); } else new_str = NULL; return new_str; } int main (int argc, char *argv[]) { int major, minor, micro; char *tmp_version; /* This hangs on some systems (?) system ("touch conf.sdltest"); */ { FILE *fp = fopen("conf.sdltest", "a"); if ( fp ) fclose(fp); } /* HP/UX 9 (%@#!) writes to sscanf strings */ tmp_version = my_strdup("$min_sdl_version"); if (sscanf(tmp_version, "%d.%d.%d", &major, &minor, µ) != 3) { printf("%s, bad version string\n", "$min_sdl_version"); exit(1); } if (($sdl_major_version > major) || (($sdl_major_version == major) && ($sdl_minor_version > minor)) || (($sdl_major_version == major) && ($sdl_minor_version == minor) && ($sdl_micro_version >= micro))) { return 0; } else { printf("\n*** 'sdl-config --version' returned %d.%d.%d, but the minimum version\n", $sdl_major_version, $sdl_minor_version, $sdl_micro_version); printf("*** of SDL required is %d.%d.%d. If sdl-config is correct, then it is\n", major, minor, micro); printf("*** best to upgrade to the required version.\n"); printf("*** If sdl-config was wrong, set the environment variable SDL_CONFIG\n"); printf("*** to point to the correct copy of sdl-config, and remove the file\n"); printf("*** config.cache before re-running configure\n"); return 1; } } ],, no_sdl=yes,[echo $ac_n "cross compiling; assumed OK... $ac_c"]) CFLAGS="$ac_save_CFLAGS" CXXFLAGS="$ac_save_CXXFLAGS" LIBS="$ac_save_LIBS" fi fi if test "x$no_sdl" = x ; then AC_MSG_RESULT(yes) ifelse([$2], , :, [$2]) else AC_MSG_RESULT(no) if test "$SDL_CONFIG" = "no" ; then echo "*** The sdl-config script installed by SDL could not be found" echo "*** If SDL was installed in PREFIX, make sure PREFIX/bin is in" echo "*** your path, or set the SDL_CONFIG environment variable to the" echo "*** full path to sdl-config." else if test -f conf.sdltest ; then : else echo "*** Could not run SDL test program, checking why..." CFLAGS="$CFLAGS $SDL_CFLAGS" CXXFLAGS="$CXXFLAGS $SDL_CFLAGS" LIBS="$LIBS $SDL_LIBS" AC_TRY_LINK([ #include #include "SDL.h" int main(int argc, char *argv[]) { return 0; } #undef main #define main K_and_R_C_main ], [ return 0; ], [ echo "*** The test program compiled, but did not run. This usually means" echo "*** that the run-time linker is not finding SDL or finding the wrong" echo "*** version of SDL. If it is not finding SDL, you'll need to set your" echo "*** LD_LIBRARY_PATH environment variable, or edit /etc/ld.so.conf to point" echo "*** to the installed location Also, make sure you have run ldconfig if that" echo "*** is required on your system" echo "***" echo "*** If you have an old version installed, it is best to remove it, although" echo "*** you may also be able to get things to work by modifying LD_LIBRARY_PATH"], [ echo "*** The test program failed to compile or link. See the file config.log for the" echo "*** exact error that occured. This usually means SDL was incorrectly installed" echo "*** or that you have moved SDL since it was installed. In the latter case, you" echo "*** may want to edit the sdl-config script: $SDL_CONFIG" ]) CFLAGS="$ac_save_CFLAGS" CXXFLAGS="$ac_save_CXXFLAGS" LIBS="$ac_save_LIBS" fi fi SDL_CFLAGS="" SDL_LIBS="" ifelse([$3], , :, [$3]) fi AC_SUBST(SDL_CFLAGS) AC_SUBST(SDL_LIBS) rm -f conf.sdltest ]) logstalgia-1.0.3/m4/freetype2.m40000644000203100020310000001427011526610646016155 0ustar andrewcandrewc# Configure paths for FreeType2 # Marcelo Magallon 2001-10-26, based on gtk.m4 by Owen Taylor # # Copyright 2001, 2003, 2007 by # David Turner, Robert Wilhelm, and Werner Lemberg. # # This file is part of the FreeType project, and may only be used, modified, # and distributed under the terms of the FreeType project license, # LICENSE.TXT. By continuing to use, modify, or distribute this file you # indicate that you have read the license and understand and accept it # fully. # # As a special exception to the FreeType project license, this file may be # distributed as part of a program that contains a configuration script # generated by Autoconf, under the same distribution terms as the rest of # that program. # # serial 2 # AC_CHECK_FT2([MINIMUM-VERSION [, ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]]]) # Test for FreeType 2, and define FT2_CFLAGS and FT2_LIBS. # MINIMUM-VERSION is what libtool reports; the default is `7.0.1' (this is # FreeType 2.0.4). # AC_DEFUN([AC_CHECK_FT2], [# Get the cflags and libraries from the freetype-config script # AC_ARG_WITH([ft-prefix], dnl don't quote AS_HELP_STRING! AS_HELP_STRING([--with-ft-prefix=PREFIX], [Prefix where FreeType is installed (optional)]), [ft_config_prefix="$withval"], [ft_config_prefix=""]) AC_ARG_WITH([ft-exec-prefix], dnl don't quote AS_HELP_STRING! AS_HELP_STRING([--with-ft-exec-prefix=PREFIX], [Exec prefix where FreeType is installed (optional)]), [ft_config_exec_prefix="$withval"], [ft_config_exec_prefix=""]) AC_ARG_ENABLE([freetypetest], dnl don't quote AS_HELP_STRING! AS_HELP_STRING([--disable-freetypetest], [Do not try to compile and run a test FreeType program]), [], [enable_fttest=yes]) if test x$ft_config_exec_prefix != x ; then ft_config_args="$ft_config_args --exec-prefix=$ft_config_exec_prefix" if test x${FT2_CONFIG+set} != xset ; then FT2_CONFIG=$ft_config_exec_prefix/bin/freetype-config fi fi if test x$ft_config_prefix != x ; then ft_config_args="$ft_config_args --prefix=$ft_config_prefix" if test x${FT2_CONFIG+set} != xset ; then FT2_CONFIG=$ft_config_prefix/bin/freetype-config fi fi AC_PATH_PROG([FT2_CONFIG], [freetype-config], [no]) min_ft_version=m4_if([$1], [], [7.0.1], [$1]) AC_MSG_CHECKING([for FreeType -- version >= $min_ft_version]) no_ft="" if test "$FT2_CONFIG" = "no" ; then no_ft=yes else FT2_CFLAGS=`$FT2_CONFIG $ft_config_args --cflags` FT2_LIBS=`$FT2_CONFIG $ft_config_args --libs` ft_config_major_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` ft_config_minor_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` ft_config_micro_version=`$FT2_CONFIG $ft_config_args --version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` ft_min_major_version=`echo $min_ft_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\1/'` ft_min_minor_version=`echo $min_ft_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\2/'` ft_min_micro_version=`echo $min_ft_version | \ sed 's/\([[0-9]]*\).\([[0-9]]*\).\([[0-9]]*\)/\3/'` if test x$enable_fttest = xyes ; then ft_config_is_lt="" if test $ft_config_major_version -lt $ft_min_major_version ; then ft_config_is_lt=yes else if test $ft_config_major_version -eq $ft_min_major_version ; then if test $ft_config_minor_version -lt $ft_min_minor_version ; then ft_config_is_lt=yes else if test $ft_config_minor_version -eq $ft_min_minor_version ; then if test $ft_config_micro_version -lt $ft_min_micro_version ; then ft_config_is_lt=yes fi fi fi fi fi if test x$ft_config_is_lt = xyes ; then no_ft=yes else ac_save_CPPFLAGS="$CPPFLAGS" ac_save_LIBS="$LIBS" CPPFLAGS="$CPPFLAGS $FT2_CFLAGS" LIBS="$FT2_LIBS $LIBS" # # Sanity checks for the results of freetype-config to some extent. # AC_RUN_IFELSE([ AC_LANG_SOURCE([[ #include #include FT_FREETYPE_H #include #include int main() { FT_Library library; FT_Error error; error = FT_Init_FreeType(&library); if (error) return 1; else { FT_Done_FreeType(library); return 0; } } ]]) ], [], [no_ft=yes], [echo $ECHO_N "cross compiling; assuming OK... $ECHO_C"]) CPPFLAGS="$ac_save_CPPFLAGS" LIBS="$ac_save_LIBS" fi # test $ft_config_version -lt $ft_min_version fi # test x$enable_fttest = xyes fi # test "$FT2_CONFIG" = "no" if test x$no_ft = x ; then AC_MSG_RESULT([yes]) m4_if([$2], [], [:], [$2]) else AC_MSG_RESULT([no]) if test "$FT2_CONFIG" = "no" ; then # AC_MSG_WARN([ # The freetype-config script installed by FreeType 2 could not be found. # If FreeType 2 was installed in PREFIX, make sure PREFIX/bin is in # your path, or set the FT2_CONFIG environment variable to the # full path to freetype-config. # ]) : else if test x$ft_config_is_lt = xyes ; then AC_MSG_WARN([ Your installed version of the FreeType 2 library is too old. If you have different versions of FreeType 2, make sure that correct values for --with-ft-prefix or --with-ft-exec-prefix are used, or set the FT2_CONFIG environment variable to the full path to freetype-config. ]) else AC_MSG_WARN([ The FreeType test program failed to run. If your system uses shared libraries and they are installed outside the normal system library path, make sure the variable LD_LIBRARY_PATH (or whatever is appropriate for your system) is correctly set. ]) fi fi FT2_CFLAGS="" FT2_LIBS="" m4_if([$3], [], [:], [$3]) fi AC_SUBST([FT2_CFLAGS]) AC_SUBST([FT2_LIBS])]) # end of freetype2.m4 logstalgia-1.0.3/m4/pkg.m40000644000203100020310000001214511526610646015030 0ustar andrewcandrewc# pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # # Copyright © 2004 Scott James Remnant . # # 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 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. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility])dnl if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # # Similar to PKG_CHECK_MODULES, make sure that the first instance of # this or PKG_CHECK_MODULES is called, or make sure to call # PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_ifval([$2], [$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$PKG_CONFIG"; then if test -n "$$1"; then pkg_cv_[]$1="$$1" else PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) fi else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --errors-to-stdout --print-errors "$2"` else $1[]_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD ifelse([$4], , [AC_MSG_ERROR(dnl [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT ])], [AC_MSG_RESULT([no]) $4]) elif test $pkg_failed = untried; then ifelse([$4], , [AC_MSG_FAILURE(dnl [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])], [$4]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) ifelse([$3], , :, [$3]) fi[]dnl ])# PKG_CHECK_MODULES logstalgia-1.0.3/m4/ax_check_glu.m40000644000203100020310000001216511526610646016665 0ustar andrewcandrewc# -*- mode: autoconf -*- # # AX_CHECK_GLU # # Check for GLU. If GLU is found, the required preprocessor and linker flags # are included in the output variables "GLU_CFLAGS" and "GLU_LIBS", # respectively. If no GLU implementation is found, "no_glu" is set to "yes". # # If the header "GL/glu.h" is found, "HAVE_GL_GLU_H" is defined. If the # header "OpenGL/glu.h" is found, HAVE_OPENGL_GLU_H is defined. These # preprocessor definitions may not be mutually exclusive. # # Some implementations (in particular, some versions of Mac OS X) are known # to treat the GLU tesselator callback function type as "GLvoid (*)(...)" # rather than the standard "GLvoid (*)()". If the former condition is # detected, this macro defines "HAVE_VARARGS_GLU_TESSCB". # # version: 2.4 # author: Braden McDaniel # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception, the you may 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. # AC_DEFUN([AX_CHECK_GLU], [AC_REQUIRE([AX_CHECK_GL])dnl AC_REQUIRE([AC_PROG_CXX])dnl GLU_CFLAGS=$GL_CFLAGS ax_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$GL_CFLAGS $CPPFLAGS" AC_CHECK_HEADERS([GL/glu.h OpenGL/glu.h], , , [ # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif ]) CPPFLAGS=$ax_save_CPPFLAGS m4_define([AX_CHECK_GLU_PROGRAM], [AC_LANG_PROGRAM([[ # if defined(HAVE_WINDOWS_H) && defined(_WIN32) # include # endif # ifdef HAVE_GL_GLU_H # include # elif defined(HAVE_OPENGL_GLU_H) # include # else # error no glu.h # endif]], [[gluBeginCurve(0)]])]) AC_CACHE_CHECK([for OpenGL Utility library], [ax_cv_check_glu_libglu], [ax_cv_check_glu_libglu=no ax_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$GL_CFLAGS $CPPFLAGS" ax_save_LDFLAGS=$LDFLAGS ax_save_LIBS=$LIBS # # First, check for the possibility that everything we need is already in # GL_LIBS. # LDFLAGS="$ax_save_LDFLAGS $GL_LIBS" # # libGLU typically links with libstdc++ on POSIX platforms. # However, setting the language to C++ means that test program # source is named "conftest.cc"; and Microsoft cl doesn't know what # to do with such a file. # AC_LANG_PUSH([C++]) AS_IF([test X$ax_compiler_ms = Xyes], [AC_LANG_PUSH([C])]) AC_LINK_IFELSE([AX_CHECK_GLU_PROGRAM], [ax_cv_check_glu_libglu=yes], [LIBS="" ax_check_libs="-lglu32 -lGLU" for ax_lib in ${ax_check_libs}; do AS_IF([test X$ax_compiler_ms = Xyes], [ax_try_lib=`echo $ax_lib | $SED -e 's/^-l//' -e 's/$/.lib/'`], [ax_try_lib=$ax_lib]) LIBS="$ax_try_lib $ax_save_LIBS" AC_LINK_IFELSE([AX_CHECK_GLU_PROGRAM], [ax_cv_check_glu_libglu=$ax_try_lib; break]) done]) AS_IF([test X$ax_compiler_ms = Xyes], [AC_LANG_POP([C])]) AC_LANG_POP([C++]) LIBS=$ax_save_LIBS LDFLAGS=$ax_save_LDFLAGS CPPFLAGS=$ax_save_CPPFLAGS]) AS_IF([test "X$ax_cv_check_glu_libglu" = Xno], [no_glu=yes; GLU_CFLAGS=""; GLU_LIBS=""], [AS_IF([test "X$ax_cv_check_glu_libglu" = Xyes], [GLU_LIBS=""], [GLU_LIBS="$ax_cv_check_glu_libglu"])]) AC_SUBST([GLU_CFLAGS]) AC_SUBST([GLU_LIBS]) # # Some versions of Mac OS X include a broken interpretation of the GLU # tesselation callback function signature when using the C++ compiler. # AS_IF([test "X$ax_cv_check_glu_libglu" != Xno], [AC_CACHE_CHECK([for varargs GLU tesselator callback function type], [ax_cv_varargs_glu_tesscb], [AC_LANG_PUSH([C++]) ax_cv_varargs_glu_tesscb=no ax_save_CXXFLAGS=$CXXFLAGS CXXFLAGS="$GL_CFLAGS $CXXFLAGS" AC_COMPILE_IFELSE([AC_LANG_PROGRAM([[ # ifdef HAVE_GL_GLU_H # include # else # include # endif]], [[GLvoid (*func)(...); gluTessCallback(0, 0, func)]])], [ax_cv_varargs_glu_tesscb=yes]) CXXFLAGS=$ax_save_CXXFLAGS AC_LANG_POP([C++])]) AS_IF([test X$ax_cv_varargs_glu_tesscb = Xyes], [AC_DEFINE([HAVE_VARARGS_GLU_TESSCB], [1], [Use nonstandard varargs form for the GLU tesselator callback])])]) ]) logstalgia-1.0.3/m4/ax_check_glut.m40000644000203100020310000000640611526610646017052 0ustar andrewcandrewc# -*- mode: autoconf -*- # # AX_CHECK_GLUT # # Check for GLUT. If GLUT is found, the required compiler and linker flags # are included in the output variables "GLUT_CFLAGS" and "GLUT_LIBS", # respectively. If GLUT is not found, "no_glut" is set to "yes". # # If the header "GL/glut.h" is found, "HAVE_GL_GLUT_H" is defined. If the # header "GLUT/glut.h" is found, HAVE_GLUT_GLUT_H is defined. These # preprocessor definitions may not be mutually exclusive. # # version: 2.2 # author: Braden McDaniel # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception, the you may 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. # AC_DEFUN([AX_CHECK_GLUT], [AC_REQUIRE([AX_CHECK_GLU])dnl AC_REQUIRE([AC_PATH_XTRA])dnl ax_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$GLU_CFLAGS $CPPFLAGS" AC_CHECK_HEADERS([GL/glut.h GLUT/glut.h]) CPPFLAGS=$ax_save_CPPFLAGS GLUT_CFLAGS=$GLU_CFLAGS m4_define([AX_CHECK_GLUT_PROGRAM], [AC_LANG_PROGRAM([[ # if HAVE_WINDOWS_H && defined(_WIN32) # include # endif # ifdef HAVE_GL_GLUT_H # include # elif defined(HAVE_GLUT_GLUT_H) # include # else # error no glut.h # endif]], [[glutMainLoop()]])]) AC_CACHE_CHECK([for GLUT library], [ax_cv_check_glut_libglut], [ax_cv_check_glut_libglut=no # # If X is present, assume GLUT depends on it. # AC_LANG_PUSH(C) ax_save_CPPFLAGS=$CPPFLAGS CPPFLAGS="$GLUT_CFLAGS $CPPFLAGS" ax_save_LDFLAGS=$LDFLAGS ax_save_LIBS=$LIBS LIBS="" AS_IF([test X$no_x != Xyes], [ax_check_glut_x_libs="$X_PRE_LIBS -lXmu -lXi $X_EXTRA_LIBS"]) ax_check_libs="-lglut32 -lglut" for ax_lib in $ax_check_libs; do AS_IF([test X$ax_compiler_ms = Xyes], [ax_try_lib=`echo $ax_lib | $SED -e 's/^-l//' -e 's/$/.lib/'`], [ax_try_lib=$ax_lib]) LIBS="$ax_try_lib $GLUT_LIBS $ax_check_glut_x_libs $ax_save_LIBS" AC_LINK_IFELSE([AX_CHECK_GLUT_PROGRAM], [ax_cv_check_glut_libglut=$ax_try_lib; break]) done LIBS=$ax_save_LIBS AS_IF([test "X$ax_cv_check_glut_libglut" = Xno -a X$no_x = Xyes], [LDFLAGS="$ax_save_LDFLAGS -framework GLUT" AC_LINK_IFELSE([AX_CHECK_GLUT_PROGRAM], [ax_cv_check_glut_libglut='-framework GLUT'])]) LDFLAGS=$ax_save_LDFLAGS CPPFLAGS=$ax_save_CPPFLAGS AC_LANG_POP(C)]) AS_IF([test "X$ax_cv_check_glut_libglut" = Xno], [no_glut=yes; GLUT_CFLAGS=""; GLUT_LIBS=""], [GLUT_LIBS="$ax_cv_check_glut_libglut"]) AC_SUBST([GLUT_CFLAGS]) AC_SUBST([GLUT_LIBS]) ])dnl logstalgia-1.0.3/Makefile.am0000644000203100020310000000322411526610646015517 0ustar andrewcandrewcACLOCAL_AMFLAGS = -I m4 bin_PROGRAMS = logstalgia logstalgia_SOURCES = \ src/ncsa.cpp src/ncsa.h \ src/ball.cpp src/ball.h \ src/core/bounds.h \ src/core/camera.cpp src/core/camera.h \ src/core/display.cpp src/core/display.h \ src/core/extensions.cpp src/core/extensions.h \ src/core/frustum.cpp src/core/frustum.h \ src/core/fxfont.cpp src/core/fxfont.h \ src/core/logger.cpp src/core/logger.h \ src/core/pi.h \ src/core/plane.cpp src/core/plane.h \ src/core/quadtree.cpp src/core/quadtree.h \ src/core/regex.cpp src/core/regex.h \ src/core/resource.cpp src/core/resource.h \ src/core/sdlapp.cpp src/core/sdlapp.h \ src/core/seeklog.cpp src/core/seeklog.h \ src/core/stringhash.cpp src/core/stringhash.h \ src/core/texture.cpp src/core/texture.h \ src/core/vectors.h \ src/custom.cpp src/custom.h \ src/logentry.cpp src/logentry.h \ src/logstalgia.cpp src/logstalgia.h \ src/main.cpp src/main.h \ src/paddle.cpp src/paddle.h \ src/ppm.cpp src/ppm.h \ src/requestball.cpp src/requestball.h \ src/slider.cpp src/slider.h \ src/summarizer.cpp src/summarizer.h \ src/textarea.cpp src/textarea.h CPPFLAGS = -DSDLAPP_RESOURCE_DIR=\"$(pkgdatadir)\" dist_pkgdata_DATA = data/ball.tga data/example.log data/glow.tga install-data-hook: mkdir -p -m 755 ${DESTDIR}/$(mandir)/man1 $(SED) 's|SDLAPP_RESOURCE_DIR|$(pkgdatadir)|g' data/logstalgia.1 | gzip -f9 > $(DESTDIR)$(mandir)/man1/logstalgia.1.gz uninstall-hook: -rm -f $(DESTDIR)$(mandir)/man1/logstalgia.1.gz if FONTDIR CPPFLAGS += -DSDLAPP_FONT_DIR=\"$(sdlappfontdir)\" else fontsdir = $(pkgdatadir)/fonts dist_fonts_DATA = data/fonts/README data/fonts/FreeMonoBold.ttf data/fonts/FreeSerif.ttf endif logstalgia-1.0.3/missing0000755000203100020310000002623311526610646015067 0ustar andrewcandrewc#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2009-04-28.21; # UTC # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006, # 2008, 2009 Free Software Foundation, Inc. # Originally 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 run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] 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 # normalize program name to check for. program=`echo "$1" | sed ' s/^gnu-//; t s/^gnu//; t s/^g//; t'` # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). This is about non-GNU programs, so use $1 not # $program. case $1 in lex*|yacc*) # Not GNU programs, they don't have --version. ;; tar*) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $program in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te*) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison*|yacc*) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex*|flex*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit $? fi ;; makeinfo*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar*) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # 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: logstalgia-1.0.3/config.guess0000755000203100020310000012763711526610646016022 0ustar andrewcandrewc#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 # Free Software Foundation, Inc. timestamp='2009-12-30' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner. Please send patches (context # diff format) to and include a ChangeLog # entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # You can get the latest version of this script from: # http://git.savannah.gnu.org/gitweb/?p=config.git;a=blob_plain;f=config.guess;hb=HEAD me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ELF__ then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; s390x:SunOS:*:*) echo ${UNAME_MACHINE}-ibm-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:AuroraUX:5.*:* | i86xen:AuroraUX:5.*:*) echo i386-pc-auroraux${UNAME_RELEASE} exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) eval $set_cc_for_build SUN_ARCH="i386" # If there is a compiler, see if it is configured for 64-bit objects. # Note that the Sun cc does not turn __LP64__ into 1 like gcc does. # This test works for both compilers. if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __amd64'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then SUN_ARCH="x86_64" fi fi echo ${SUN_ARCH}-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[456]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep -q __LP64__ then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; authenticamd | genuineintel | EM64T) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; 8664:Windows_NT:*) echo x86_64-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep -q ld.so.1 if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-gnu else echo ${UNAME_MACHINE}-unknown-linux-gnueabi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; i*86:Linux:*:*) LIBC=gnu eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^LIBC'` echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:* | mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef ${UNAME_MACHINE} #undef ${UNAME_MACHINE}el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=${UNAME_MACHINE}el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=${UNAME_MACHINE} #else CPU= #endif #endif EOF eval `$CC_FOR_BUILD -E $dummy.c 2>/dev/null | grep '^CPU'` test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; padre:Linux:*:*) echo sparc-unknown-linux-gnu exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.[02]*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i586. # Note: whatever this is, it MUST be the same as what config.sub # prints for the "djgpp" host, or else GDB configury will decide that # this is a cross-build. echo i586-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; NCR*:*:4.2:* | MPRAS*:*:4.2:*) OS_REL='.3' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep pteron >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.[02]*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; BePC:Haiku:*:*) # Haiku running on Intel PC compatible. echo i586-pc-haiku exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in i386) eval $set_cc_for_build if [ "$CC_FOR_BUILD" != 'no_compiler_found' ]; then if (echo '#ifdef __LP64__'; echo IS_64BIT_ARCH; echo '#endif') | \ (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | \ grep IS_64BIT_ARCH >/dev/null then UNAME_PROCESSOR="x86_64" fi fi ;; unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; i*86:AROS:*:*) echo ${UNAME_MACHINE}-pc-aros exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: logstalgia-1.0.3/THANKS0000644000203100020310000000031111526610646014370 0ustar andrewcandrewcMany thanks to Francois Marier for anwering my many packaging and licensing questions and for sponsoring my program into Debian. Cheers to everyone at Catalyst IT for their support and encouragement. logstalgia-1.0.3/aclocal.m40000644000203100020310000010401111526610646015317 0ustar andrewcandrewc# generated automatically by aclocal 1.11.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],, [m4_warning([this file was generated for autoconf 2.67. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 10 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [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 8's {/usr,}/bin/sh. touch 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 ;; 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 thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 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. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) 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 AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl dnl The `parallel-tests' driver may need to know about EXEEXT, so add the dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _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"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != 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 AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # ------------------------------ # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # 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]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; 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). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR m4_include([m4/ax_check_gl.m4]) m4_include([m4/ax_check_glu.m4]) m4_include([m4/ax_lang_compiler_ms.m4]) m4_include([m4/ax_pthread.m4]) m4_include([m4/freetype2.m4]) m4_include([m4/pkg.m4]) m4_include([m4/sdl.m4]) logstalgia-1.0.3/INSTALL0000644000203100020310000000222311526610646014512 0ustar andrewcandrewcThis file is to help you configure, build and install Logstalgia for your system. Contents ======== 1. Dependencies 2. Building 3. Configure Options 1. Dependencies =============== Logstalgia requires the following libraries to compile: SDL 1.2 (libsdl1.2-dev) SDL Image 1.2 (libsdl-image1.2-dev) PCRE3 (libpcre3-dev) FTGL 2.1.3~rc5-2 (libftgl-dev) PNG library (libpng12-dev) JPEG library (libjpeg62-dev) 2. Building =========== Building on Linux/Mac OS: ./configure make make install If you got the source directly from the Logstalgia.git repository, you will first need to run: autoreconf -f -i To generate the configure script. Building on Windows: On Windows I recommend compiling the project file logstalgia.win32.cbp for the Code Blocks IDE (www.codeblocks.org). A pre-built version for Windows is normally available from the homepage. 3. Configure Options ==================== By default Logstalgia will install some GNU FreeFont TTF Fonts on your system. If you already have these fonts installed, you can configure Logstalgia to use these instead: ./configure --enable-ttf-font-dir=/path/to/freefont/